/*
Theme Name: HypeBlende
Theme URI: https://hypeblende.de
Author: HypeBlende
Description: Ein modernes, ruhiges Portfolio-Theme für authentische Fotografie.
Version: 1.0.0
Text Domain: hypeblende
*/

@font-face { font-family: 'DM Sans'; src: url('assets/fonts/dm-sans-300.ttf') format('truetype'); font-style: normal; font-weight: 300; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/dm-sans-400.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/dm-sans-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('assets/fonts/dm-sans-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: 'Hedvig Letters Serif'; src: url('assets/fonts/hedvig-serif.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }

:root {
  --ink: #121212;
  --muted: #696969;
  --paper: #f8f7f4;
  --white: #ffffff;
  --soft: #eae9e5;
  --line: rgba(18, 18, 18, 0.12);
  --serif: 'Hedvig Letters Serif', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
body:has(.whatsapp-dialog[open]), body:has(.contact-success-dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.4rem; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(3.5rem, 7vw, 7.4rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.65rem, 2.2vw, 2.35rem); }
.wrap { width: var(--wrap); margin-inline: auto; }
.eyebrow { margin-bottom: 1.2rem; font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.lead { max-width: 690px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); background: transparent; color: var(--ink); }
.button.light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button.light:hover { background: transparent; color: var(--white); }

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(248, 247, 244, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

@media (min-width: 901px) {
  .site-header { position: sticky; top: 0; }
  .admin-bar .site-header { top: 32px; }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 104px; }
.brand img { width: 175px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: .92rem; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav .current-menu-item a::after { transform: scaleX(1); transform-origin: left; }
.site-nav .customer-login-link { padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px; line-height: 1; transition: background .25s ease, color .25s ease, transform .25s ease; }
.site-nav .customer-login-link::after { display: none; }
.site-nav .customer-login-link:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.header-socials .customer-login-mobile { display: none; }
.nav-dropdown { position: relative; }
.nav-parent-row { display: flex; align-items: center; }
.nav-parent::before { content: ''; position: absolute; top: 50%; right: -13px; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-70%) rotate(45deg); }
.submenu-toggle { display: none; }
.submenu { position: absolute; z-index: 20; top: calc(100% + 13px); left: 50%; display: grid; min-width: 210px; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: rgba(248,247,244,.98); box-shadow: 0 18px 55px rgba(0,0,0,.12); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.submenu::before { content: ''; position: absolute; right: 0; bottom: 100%; left: 0; height: 15px; }
.submenu a { padding: 10px 12px; border-radius: 9px; white-space: nowrap; }
.site-nav .submenu a::after { display: none; }
.submenu a:hover { background: var(--soft); }
.nav-dropdown:hover .submenu, .nav-dropdown:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.header-socials { display: flex; align-items: center; gap: 8px; margin-left: -10px; padding-left: 18px; border-left: 1px solid var(--line); }
.header-socials a { display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease; }
.site-nav .header-socials a::after { display: none; }
.header-socials a:hover { border-color: var(--ink); background: var(--ink); color: var(--white); transform: translateY(-2px); }
.header-socials a:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.header-socials svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.header-socials svg path { fill: currentColor; stroke: none; }
.header-socials .customer-login-mobile svg path { fill: none; stroke: currentColor; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 27px; height: 1px; margin: 7px auto; background: var(--ink); transition: .25s ease; }

.hero { position: relative; display: grid; align-items: end; min-height: calc(100svh - 104px); overflow: hidden; color: var(--white); }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,6,6,.74) 0%, rgba(6,6,6,.38) 53%, rgba(6,6,6,.12) 100%), url('assets/images/portraitfotograf-heiko-luedemann-frankfurt.webp') center 20% / cover no-repeat; transform: scale(1.01); }
.hero-content { position: relative; z-index: 1; padding-block: clamp(90px, 13vh, 150px); }
.hero-copy { max-width: 920px; }
.hero h1 { max-width: 980px; }
.hero h1 em { color: rgba(255,255,255,.62); font-weight: 400; }
.hero .lead { margin-top: 28px; color: rgba(255,255,255,.84); }
.hero .button { margin-top: 25px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.hero-actions .button { margin-top: 0; }
.button.hero-whatsapp { border-color: rgba(255,255,255,.72); background: rgba(12,12,12,.18); color: var(--white); backdrop-filter: blur(8px); }
.button.hero-whatsapp:hover { border-color: var(--white); background: var(--white); color: var(--ink); }

.intro { padding: clamp(100px, 14vw, 190px) 0; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .68fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.intro-copy h2 { max-width: 700px; }
.intro-copy .lead { margin-top: 30px; }
.intro-copy .button { margin-top: 12px; }
.portrait-frame { position: relative; }
.portrait-frame::before { content: ''; position: absolute; top: -28px; right: -28px; width: 72%; height: 72%; border: 1px solid var(--line); border-radius: 28px; }
.portrait-frame img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px; filter: saturate(.82) contrast(1.04); }

.portfolio { padding: clamp(95px, 12vw, 160px) 0; background: var(--ink); color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.section-head .lead { color: rgba(255,255,255,.62); }
.text-link { flex: 0 0 auto; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .92rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-card { position: relative; overflow: hidden; border-radius: 18px; cursor: zoom-in; }
.gallery-card:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-card:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery-card:nth-child(3) { grid-column: span 4; }
.gallery-card:nth-child(4) { grid-column: span 4; }
.gallery-card:nth-child(5) { grid-column: span 7; grid-row: span 2; }
.gallery-card:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.gallery-card:nth-child(1) img { object-position: center top; }
.gallery-card:nth-child(2) img { object-position: center 16%; }
.gallery-card:nth-child(3) img { object-position: center 12%; }
.gallery-card:nth-child(4) img { object-position: center top; }
.gallery-card:nth-child(5) img { object-position: center 36%; }
.gallery-card:nth-child(6) img { object-position: center 18%; }
.gallery-card:hover img { transform: scale(1.045); filter: brightness(.82); }

.process { padding: clamp(105px, 13vw, 175px) 0; }
.process-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; margin-bottom: 75px; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-item { padding: 32px 26px 10px 0; border-right: 1px solid var(--line); }
.process-item + .process-item { padding-left: 26px; }
.process-item:last-child { border-right: 0; }
.process-number { display: block; margin-bottom: 70px; color: var(--muted); font-size: .8rem; letter-spacing: .13em; }
.process-item h3 { margin-bottom: 18px; font-family: var(--sans); font-size: 1.12rem; font-weight: 600; }
.process-item p { color: var(--muted); font-size: .95rem; line-height: 1.55; }

.tfp-explainer { padding: clamp(100px, 12vw, 160px) 0; }
.tfp-explainer-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(55px, 9vw, 120px); align-items: center; }
.tfp-explainer-copy h2 { max-width: 700px; }
.tfp-explainer-copy .lead { margin-top: 28px; }
.tfp-explainer-copy > p:last-child { max-width: 700px; margin-top: 24px; color: var(--muted); }
.tfp-use-card { padding: clamp(34px, 5vw, 58px); border-radius: 28px; background: var(--ink); color: var(--white); }
.tfp-use-card .eyebrow { color: rgba(255,255,255,.55); }
.tfp-use-card h3 { max-width: 650px; margin-bottom: 24px; font-size: clamp(2rem, 3.7vw, 3.8rem); }
.tfp-use-card > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.tfp-channel-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; padding: 0; list-style: none; }
.tfp-channel-list li { padding: 9px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: rgba(255,255,255,.9); font-size: .82rem; }
.tfp-use-card .tfp-use-note { margin: 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); font-size: .92rem; line-height: 1.7; }

.extras { padding: clamp(100px, 12vw, 160px) 0; background: #ecebe7; }
.extras-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(35px, 8vw, 100px); align-items: end; margin-bottom: 55px; }
.extras-heading h2 { max-width: 760px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { min-height: 410px; padding: 38px; border: 1px solid rgba(18,18,18,.1); border-radius: 24px; background: rgba(255,255,255,.68); }
.price-card.included { background: var(--ink); color: var(--white); }
.price-label { margin-bottom: 36px; color: var(--muted); font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.included .price-label, .included p { color: rgba(255,255,255,.65); }
.price { margin-bottom: 32px; color: var(--ink); font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.04em; }
.included .price { color: var(--white); }
.price small { font-family: var(--sans); font-size: .85rem; font-weight: 400; letter-spacing: 0; }
.price-card h3 { margin-bottom: 18px; font-family: var(--sans); font-size: 1.08rem; font-weight: 600; }
.price-card > p:last-child { color: var(--muted); font-size: .94rem; line-height: 1.6; }
.agreement-card { display: flex; align-items: center; justify-content: space-between; gap: 45px; margin-top: 18px; padding: 38px; border-radius: 24px; background: var(--white); }
.agreement-card h3 { margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.agreement-card p { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.agreement-card .button { flex: 0 0 auto; }
.extras-note { margin: 22px 0 0; color: var(--muted); font-size: .88rem; }

.email-preview-hero { padding-bottom: clamp(70px, 9vw, 120px); }
.email-preview-hero h1 { max-width: 940px; }
.email-preview-area { padding: clamp(80px, 10vw, 140px) 0; background: var(--soft); }
.email-preview-list { display: grid; gap: clamp(95px, 12vw, 170px); }
.email-preview-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); align-items: end; gap: 45px; margin-bottom: 35px; }
.email-preview-heading h2 { max-width: 720px; }
.email-preview-meta { display: grid; gap: 8px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.55); color: var(--muted); font-size: .88rem; }
.email-preview-meta strong { color: var(--ink); font-weight: 600; }
.email-preview-browser { overflow: hidden; border: 1px solid rgba(18,18,18,.16); border-radius: 20px; background: #f2f0eb; box-shadow: 0 28px 80px rgba(18,18,18,.12); }
.email-preview-toolbar { display: flex; align-items: center; gap: 7px; min-height: 48px; padding: 0 18px; border-bottom: 1px solid var(--line); background: var(--paper); }
.email-preview-toolbar span { width: 9px; height: 9px; border: 1px solid rgba(18,18,18,.25); border-radius: 50%; }
.email-preview-toolbar p { margin: 0 0 0 7px; color: var(--muted); font-size: .78rem; }
.email-preview-browser iframe { display: block; width: 100%; height: 1050px; border: 0; background: #f2f0eb; }

.cta { position: relative; overflow: hidden; padding: clamp(100px, 13vw, 170px) 0; background: #222 url('assets/images/schwarzweissportrait-am-meer.jpg') center 12% / cover no-repeat; color: var(--white); text-align: center; }
.cta::before { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,.68); }
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { max-width: 880px; margin: 0 auto 28px; }
.cta p { max-width: 620px; margin: 0 auto 34px; color: rgba(255,255,255,.76); font-size: 1.1rem; }

.site-footer { padding: 80px 0 34px; background: #0d0d0d; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr .7fr .75fr; gap: clamp(35px, 5vw, 70px); padding-bottom: 70px; }
.footer-brand img { width: 190px; margin-bottom: 25px; filter: invert(1); }
.footer-brand p { max-width: 400px; color: rgba(255,255,255,.58); }
.footer-title { margin-bottom: 20px; font-family: var(--sans); font-size: .73rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.68); font-size: .94rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .78rem; }

.page-hero { padding: clamp(90px, 11vw, 145px) 0 80px; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3.2rem, 6.5vw, 6.8rem); }
.page-hero .lead { margin-top: 28px; }
.page-content { padding: 0 0 130px; }
.page-content > * { max-width: 820px; }
.page-content h2 { margin: 2.4rem 0 1.1rem; font-size: 2.4rem; }
.gallery-page { padding: 0 0 140px; }
.gallery-page .gallery-grid { grid-auto-rows: 290px; }
.about-feature { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 9vw, 130px); align-items: center; padding: 0 0 110px; }
.about-feature img { width: 100%; border-radius: 28px; }
.about-feature h2 { margin-bottom: 30px; }
.about-feature p { color: var(--muted); }
.about-stories { padding-bottom: 150px; }
.about-story { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(50px, 8vw, 110px); align-items: center; padding: clamp(60px, 7vw, 90px) 0; border-top: 1px solid var(--line); }
.about-story-reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.about-story-image { overflow: hidden; aspect-ratio: 4 / 3; border-radius: 28px; background: var(--soft); }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.about-story-reverse .about-story-image img { object-position: center 18%; }
.about-story-copy h2 { max-width: 680px; margin-bottom: 30px; font-size: clamp(2.5rem, 4.7vw, 4.8rem); }
.about-story-copy p:not(.eyebrow) { color: var(--muted); }
.about-story-copy .button { margin-top: 12px; }
.about-ai-notice { margin-top: 0; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 120px); padding: 0 0 140px; }
.contact-card { padding: 45px; border-radius: 24px; background: var(--white); }
.contact-row { padding: 21px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border: 0; }
.contact-label { display: block; margin-bottom: 4px; color: var(--muted); font-size: .77rem; letter-spacing: .12em; text-transform: uppercase; }

.contact-hero { padding-bottom: clamp(65px, 8vw, 105px); }
.contact-hero h1 { max-width: 980px; }
.contact-form-section { padding: clamp(75px, 9vw, 125px) 0 clamp(110px, 13vw, 175px); background: var(--soft); }
.contact-form-layout { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(50px, 8vw, 115px); align-items: start; }
.contact-form-intro { position: sticky; top: 155px; min-width: 0; }
.contact-form-intro h2 { margin-bottom: 28px; font-size: clamp(2.7rem, 4.5vw, 4.7rem); }
.contact-form-intro > p:not(.eyebrow) { color: var(--muted); }
.contact-benefits { display: grid; margin-top: 42px; border-top: 1px solid var(--line); }
.contact-benefits > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.contact-benefits > div > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .68rem; font-weight: 600; }
.contact-benefits p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.contact-benefits strong { display: block; margin-bottom: 3px; color: var(--ink); font-weight: 600; }
.contact-direct { display: grid; gap: 5px; margin-top: 34px; padding: 25px; border-radius: 16px; background: rgba(255,255,255,.58); }
.contact-direct .contact-label { margin-bottom: 10px; }
.contact-direct-actions { display: grid; gap: 10px; }
.contact-direct-actions .button { width: 100%; min-height: 50px; padding-inline: 20px; border-bottom: 1px solid var(--ink); font-size: .88rem; text-align: center; }
.contact-direct-actions .contact-direct-whatsapp { background: transparent; color: var(--ink); }
.contact-direct-actions .contact-direct-whatsapp:hover { background: var(--ink); color: var(--white); }
.contact-form-card { min-width: 0; padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(18,18,18,.1); border-radius: 28px; background: var(--paper); box-shadow: 0 24px 70px rgba(18,18,18,.07); }
.contact-form-notice { margin-bottom: 30px; padding: 17px 19px; border: 1px solid #b84a3d; border-radius: 12px; background: #fff2ef; color: #7d2920; font-size: .9rem; }
.contact-form-notice.is-warning { border-color: #9a7623; background: #fff8e6; color: #6d5316; }
.shooting-form { display: grid; min-width: 0; }
.form-section { min-width: 0; margin: 0; padding: 0 0 42px; border: 0; }
.form-section + .form-section { padding-top: 42px; border-top: 1px solid var(--line); }
.form-section legend { display: flex; align-items: center; gap: 13px; margin: 0 0 8px; padding: 0; font: 400 clamp(1.65rem, 2.5vw, 2.25rem)/1.2 var(--serif); }
.form-section legend span { display: grid; flex: 0 0 auto; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--white); font: 600 .74rem/1 var(--sans); }
.form-section-note { margin: 0 0 27px 49px; color: var(--muted); font-size: .88rem; }
.form-grid { display: grid; gap: 19px; }
.form-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: grid; min-width: 0; gap: 8px; margin-bottom: 21px; }
.form-field label, .form-option-title { color: var(--ink); font-size: .86rem; font-weight: 500; }
.form-field label span, .privacy-check strong { color: #a43429; }
.form-field label small { color: var(--muted); font-size: .72rem; font-weight: 400; }
.form-field input, .form-field textarea, .form-field select { width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid rgba(18,18,18,.18); border-radius: 10px; outline: 0; background: var(--white); color: var(--ink); font: 400 .93rem/1.5 var(--sans); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 145px; resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 23px, calc(100% - 15px) 23px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-field small { color: var(--muted); font-size: .75rem; line-height: 1.5; }
.form-field label em { color: var(--muted); font-size: .72rem; font-style: normal; font-weight: 400; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #95918a; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(18,18,18,.08); }
.choice-grid { display: grid; gap: 10px; }
.shooting-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice-card span { display: flex; align-items: center; min-height: 58px; padding: 12px 16px; border: 1px solid rgba(18,18,18,.17); border-radius: 10px; background: rgba(255,255,255,.68); color: var(--ink); font-size: .86rem; line-height: 1.35; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.choice-card:hover span { border-color: rgba(18,18,18,.5); transform: translateY(-1px); }
.choice-card input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.choice-card input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 3px; }
.choice-card-small span { justify-content: center; min-height: 62px; padding-inline: 11px; text-align: center; font-size: .78rem; }
.form-option-group { margin: 8px 0 28px; }
.form-option-title { margin: 0 0 11px; }
.privacy-check { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; margin-top: 6px; padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.55); cursor: pointer; }
.privacy-check input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--ink); }
.privacy-check span { color: var(--muted); font-size: .82rem; line-height: 1.6; }
.privacy-check a { color: var(--ink); border-bottom: 1px solid currentColor; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; }
.form-submit-row > p { margin: 0; color: var(--muted); font-size: .75rem; }
.contact-submit { gap: 22px; min-width: 210px; cursor: pointer; }
.contact-submit:disabled { opacity: .62; cursor: wait; transform: none; }
.form-security-note { margin: 18px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.55; text-align: right; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.editing-request-section { padding-top: clamp(65px, 7vw, 95px); scroll-margin-top: 120px; }
.editing-request-layout { grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr); gap: clamp(48px, 6vw, 90px); }
.editing-request-intro { position: sticky; }
.editing-request-intro h2 { max-width: 580px; font-size: clamp(2.35rem, 2.65vw, 3.05rem); line-height: 1.06; overflow-wrap: normal; }
.editing-request-note { display: grid; gap: 7px; margin-top: 34px; padding: 23px 25px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.58); }
.editing-request-note strong { font-size: .9rem; font-weight: 600; }
.editing-request-note span { color: var(--muted); font-size: .82rem; line-height: 1.65; }
.editing-request-form { gap: 0; }
.editing-request-form .form-grid { align-items: start; }
.editing-request-form .form-field { min-width: 0; }
.editing-request-form .form-field input,
.editing-request-form .form-field textarea { width: 100%; }
.editing-request-form .form-section-heading { display: flex; align-items: center; gap: 14px; margin: 8px 0 28px; padding-top: 38px; border-top: 1px solid var(--line); }
.editing-request-form .form-section-heading.is-first { margin-top: 0; padding-top: 0; border-top: 0; }
.editing-request-form .form-section-heading > span { display: grid; flex: 0 0 auto; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .72rem; font-weight: 600; }
.editing-request-form .form-section-heading h3 { margin: 0 0 2px; font-size: clamp(1.55rem, 2.3vw, 2.05rem); }
.editing-request-form .form-section-heading p { margin: 0; color: var(--muted); font-size: .78rem; }
.editing-request-form .form-fieldset { min-width: 0; margin: 0 0 27px; padding: 0; border: 0; }
.editing-request-form .form-fieldset legend { margin-bottom: 12px; color: var(--ink); font-size: .86rem; font-weight: 500; }
.editing-request-form .form-fieldset legend span { color: #a43429; }
.editing-request-form .contact-submit { width: 100%; margin-top: 25px; }
.editing-submit-note { margin: 15px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.6; text-align: center; }
.form-notice { margin-bottom: 30px; padding: 17px 19px; border: 1px solid #b84a3d; border-radius: 12px; background: #fff2ef; color: #7d2920; font-size: .9rem; }
.form-notice-warning { border-color: #9a7623; background: #fff8e6; color: #6d5316; }

.contact-success-dialog { width: min(650px, calc(100% - 32px)); max-width: none; padding: 0; border: 0; border-radius: 26px; background: transparent; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.36); }
.contact-success-dialog::backdrop { background: rgba(8,8,8,.76); backdrop-filter: blur(6px); }
.contact-success-card { position: relative; padding: clamp(34px, 6vw, 58px); border-radius: 26px; background: var(--paper); text-align: center; }
.contact-success-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 25px; border-radius: 50%; background: var(--ink); color: var(--white); font: 400 1.65rem/1 var(--sans); }
.contact-success-card .eyebrow { margin-bottom: 13px; }
.contact-success-card h2 { margin-bottom: 24px; font-size: clamp(2.3rem, 5vw, 3.9rem); }
.contact-success-card p:not(.eyebrow) { color: var(--muted); font-size: .96rem; }
.contact-success-card .button { margin-top: 8px; cursor: pointer; }
.contact-success-close { position: absolute; top: 18px; right: 20px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font: 300 1.55rem/1 var(--sans); cursor: pointer; }

.dog-page { overflow: hidden; }
.dog-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(42px, 5vw, 72px); }
.dog-hero-copy { padding-top: 0; }
.dog-hero-copy h1 { max-width: 720px; font-size: clamp(3.5rem, 5.7vw, 6.1rem); }
.dog-hero-copy .lead { margin-top: 22px; }
.dog-hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.dog-text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 12px; border-bottom: 1px solid var(--ink); font-size: .88rem; font-weight: 500; }
.dog-hero-note { margin: 16px 0 0; color: var(--muted); font-size: .82rem; }
.dog-hero-image { margin: 0; }
.dog-hero-image img { width: 100%; height: clamp(360px, 30vw, 440px); border-radius: 30px; object-fit: cover; object-position: 56% center; }
.dog-hero-image figcaption { margin-top: 10px; color: var(--muted); font-size: .78rem; }
.dog-intro { padding: clamp(90px, 11vw, 160px) 0; background: var(--soft); }
.dog-intro-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.dog-intro-image { overflow: hidden; aspect-ratio: 2 / 3; border-radius: 28px; }
.dog-intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 72%; }
.dog-intro-copy h2 { max-width: 760px; margin-bottom: 30px; }
.dog-intro-copy p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.dog-motion { padding-block: clamp(100px, 12vw, 175px); }
.dog-section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr); gap: clamp(40px, 8vw, 120px); align-items: end; margin-bottom: 48px; }
.dog-section-heading h2 { max-width: 780px; }
.dog-section-heading > p { margin: 0; color: var(--muted); }
.dog-motion-image { margin: 0; overflow: hidden; aspect-ratio: 3 / 1.65; border-radius: 30px; }
.dog-motion-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.dog-stories { padding: clamp(90px, 11vw, 160px) 0; background: var(--ink); color: var(--white); }
.dog-story-grid { display: grid; gap: 0; }
.dog-story-card { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(50px, 9vw, 125px); align-items: center; }
.dog-story-card:first-child { margin-bottom: clamp(55px, 6vw, 90px); }
.dog-story-card-reverse { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); margin-top: clamp(55px, 6vw, 90px); }
.dog-story-image { overflow: hidden; aspect-ratio: 4 / 5; border-radius: 28px; background: #242424; }
.dog-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.dog-story-card-reverse .dog-story-image { aspect-ratio: 2 / 3; }
.dog-story-card-reverse .dog-story-image img { object-position: center 50%; }
.dog-story-copy h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 5vw, 5rem); }
.dog-story-copy p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.62); }
.dog-story-divider { display: grid; place-items: center; width: 100vw; min-height: 168px; margin-left: calc(50% - 50vw); padding: 32px 24px; background: var(--soft); color: var(--ink); }
.dog-story-divider-inner { width: min(100%, 920px); text-align: center; }
.dog-story-divider-mark { display: grid; grid-template-columns: 1fr 62px 1fr; gap: clamp(18px, 3vw, 42px); align-items: center; }
.dog-story-divider-mark span { height: 1px; background: rgba(17,17,17,.45); }
.dog-story-divider-mark svg { width: 54px; height: 54px; margin: auto; fill: currentColor; }
.dog-story-divider p { margin: 7px 0 0; font-size: .68rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.dog-process { padding-block: clamp(100px, 12vw, 175px); }
.dog-process-heading { max-width: 960px; margin-bottom: 65px; }
.dog-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dog-process-grid article { padding: 44px clamp(25px, 4vw, 55px); border-right: 1px solid var(--line); }
.dog-process-grid article:first-child { padding-left: 0; }
.dog-process-grid article:last-child { padding-right: 0; border-right: 0; }
.dog-process-grid span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 30px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .72rem; font-weight: 600; }
.dog-process-grid h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }
.dog-process-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.dog-process-link { margin: 34px 0 0; }
.dog-gear { padding: clamp(90px, 11vw, 155px) 0; background: var(--soft); }
.dog-gear-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 9vw, 130px); }
.dog-gear-grid h2 { max-width: 720px; }
.dog-gear-copy > p { color: var(--muted); }
.dog-gear-copy .dog-gear-quote { margin: 35px 0; padding: 25px 0 25px 28px; border-left: 2px solid var(--ink); color: var(--ink); font: 400 clamp(1.4rem, 2.3vw, 2rem)/1.35 var(--serif); }
.dog-camera-data { display: flex; flex-wrap: wrap; gap: 8px; }
.dog-camera-data span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.62); color: var(--muted); font-size: .75rem; }
.dog-faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 130px); padding-block: clamp(90px, 11vw, 155px); }
.dog-faq-heading h2 { max-width: 720px; }
.dog-faq-grid { border-top: 1px solid var(--line); }
.dog-faq-grid article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.dog-faq-grid h3 { margin-bottom: 10px; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.dog-faq-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.dog-cta { padding-block: clamp(110px, 14vw, 195px); text-align: center; }
.dog-cta h2 { max-width: 980px; margin: 0 auto 28px; }
.dog-cta > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 34px; color: var(--muted); }

.men-page { overflow: hidden; }
.men-hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(40px, 5.5vw, 80px); align-items: center; padding-block: clamp(44px, 5vw, 72px); }
.men-hero-copy h1 { max-width: 780px; font-size: clamp(3.5rem, 5.35vw, 5.5rem); }
.men-hero-copy .lead { max-width: 700px; margin-top: 24px; }
.men-hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.men-text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 12px; border-bottom: 1px solid currentColor; font-size: .88rem; font-weight: 500; }
.men-hero-note { margin: 17px 0 0; color: var(--muted); font-size: .82rem; }
.men-hero-image { margin: 0; }
.men-hero-image img { width: 100%; aspect-ratio: 7 / 5; border-radius: 30px; object-fit: cover; object-position: 68% 22%; }
.men-hero-image figcaption { margin-top: 10px; color: var(--muted); font-size: .78rem; }
.men-intro { padding: clamp(90px, 11vw, 160px) 0; background: var(--soft); }
.men-intro-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr); gap: clamp(48px, 7vw, 100px); align-items: center; }
.men-intro-image { overflow: hidden; aspect-ratio: 5 / 4; border-radius: 28px; }
.men-intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.men-intro-copy h2 { max-width: 660px; margin-bottom: 28px; font-size: clamp(2.8rem, 4.5vw, 4.7rem); }
.men-intro-copy p:not(.eyebrow) { color: var(--muted); }
.men-story { padding: clamp(95px, 12vw, 175px) 0; background: var(--ink); color: var(--white); }
.men-story-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: 0 clamp(50px, 8vw, 120px); align-items: end; margin-bottom: clamp(70px, 9vw, 125px); }
.men-story-heading .eyebrow { grid-column: 1 / -1; }
.men-story-heading h2 { max-width: 900px; }
.men-story-heading > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.62); }
.men-story-row { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.men-story-row-reverse { grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr); }
.men-story-image { overflow: hidden; border-radius: 28px; background: #242424; }
.men-story-image-tall { aspect-ratio: 4 / 5; }
.men-story-image-wide { aspect-ratio: 1 / 1; }
.men-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.men-story-image-wide img { object-position: center 30%; }
.men-story-copy h3 { max-width: 680px; margin-bottom: 26px; font: 400 clamp(2.7rem, 4.8vw, 4.8rem)/1.02 var(--serif); letter-spacing: -.03em; }
.men-story-copy p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.62); }
.men-story-divider { display: grid; place-items: center; width: 100vw; min-height: 154px; margin: clamp(55px, 6vw, 82px) 0; margin-left: calc(50% - 50vw); padding: 30px 24px; background: var(--soft); color: var(--ink); }
.men-story-divider-inner { width: min(100%, 920px); text-align: center; }
.men-story-divider-mark { display: grid; grid-template-columns: 1fr 62px 1fr; gap: clamp(18px, 3vw, 42px); align-items: center; }
.men-story-divider-mark span { height: 1px; background: rgba(17,17,17,.45); }
.men-story-divider-mark svg { width: 52px; height: 52px; margin: auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.men-story-divider p { margin: 7px 0 0; font-size: .68rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.men-quiet { padding: clamp(90px, 11vw, 160px) 0; background: var(--soft); }
.men-quiet-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.men-quiet-copy h2 { max-width: 720px; margin-bottom: 30px; }
.men-quiet-copy p:not(.eyebrow) { max-width: 690px; color: var(--muted); }
.men-camera-note { max-width: 690px; margin-top: 34px; padding: 24px 26px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.52); }
.men-camera-note span { display: block; margin-bottom: 6px; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.men-camera-note strong { display: block; font: 400 clamp(1.25rem, 2vw, 1.65rem)/1.35 var(--serif); }
.men-camera-note p { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.men-camera-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 500; }
.men-quiet-image { overflow: hidden; margin: 0; aspect-ratio: 5 / 6; border-radius: 28px; }
.men-quiet-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.men-process { padding-block: clamp(100px, 12vw, 175px); }
.men-process-heading { max-width: 960px; margin-bottom: 65px; }
.men-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.men-process-grid article { padding: 44px clamp(25px, 4vw, 55px); border-right: 1px solid var(--line); }
.men-process-grid article:first-child { padding-left: 0; }
.men-process-grid article:last-child { padding-right: 0; border-right: 0; }
.men-process-grid span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 30px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .72rem; font-weight: 600; }
.men-process-grid h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.2vw, 2.15rem); }
.men-process-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.men-process-link { margin: 34px 0 0; }
.men-faq { padding: clamp(90px, 11vw, 155px) 0; background: var(--soft); }
.men-faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 130px); }
.men-faq-heading h2 { max-width: 680px; }
.men-faq-list { border-top: 1px solid var(--line); }
.men-faq-list article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.men-faq-list h3 { margin-bottom: 10px; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.men-faq-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.men-cta { padding-block: clamp(110px, 14vw, 195px); text-align: center; }
.men-cta h2 { max-width: 980px; margin: 0 auto 28px; }
.men-cta > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 34px; color: var(--muted); }

.studio-portrait-page { overflow: hidden; background: var(--paper); }
.studio-portrait-hero { background: #080808; color: var(--white); }
.studio-portrait-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr); gap: clamp(42px, 7vw, 110px); align-items: center; min-height: min(780px, calc(100svh - 112px)); padding-block: clamp(52px, 7vw, 96px); }
.studio-portrait-hero-copy h1 { max-width: 700px; font-size: clamp(3.8rem, 6.2vw, 6.7rem); }
.studio-portrait-hero-copy h1 span { display: block; margin-bottom: 27px; color: rgba(255,255,255,.72); font: 600 .72rem/1.3 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.studio-portrait-hero-copy .lead { max-width: 690px; margin-top: 26px; color: rgba(255,255,255,.68); }
.studio-portrait-hero .eyebrow { color: rgba(255,255,255,.72); }
.studio-portrait-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.studio-portrait-button-light { background: var(--white); color: var(--ink); }
.studio-portrait-button-light:hover { background: #ddd9d2; color: var(--ink); }
.studio-portrait-text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 12px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: .88rem; font-weight: 500; }
.studio-portrait-note { margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: .8rem; }
.studio-portrait-hero-image { margin: 0; }
.studio-portrait-hero-image img { width: 100%; height: clamp(500px, 65vh, 680px); object-fit: contain; object-position: center; }
.studio-portrait-hero-image figcaption { width: 100%; margin-top: 10px; color: rgba(255,255,255,.46); font-size: .76rem; text-align: center; }

.studio-portrait-intro { padding: clamp(85px, 10vw, 145px) 0; background: var(--soft); }
.studio-portrait-intro-grid { display: grid; grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr); gap: clamp(52px, 9vw, 135px); align-items: center; }
.studio-portrait-intro-image { overflow: hidden; margin: 0; aspect-ratio: 4 / 5; border-radius: 28px; background: #07100f; }
.studio-portrait-intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.studio-portrait-intro-copy h2 { max-width: 790px; margin-bottom: 30px; }
.studio-portrait-intro-copy { transform: translateY(14px); }
.studio-portrait-intro-copy p:not(.eyebrow) { max-width: 700px; color: var(--muted); }

.studio-portrait-character { padding: clamp(85px, 10vw, 145px) 0; background: #080808; color: var(--white); }
.studio-portrait-character-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .76fr); gap: clamp(52px, 9vw, 135px); align-items: center; }
.studio-portrait-character-copy h2 { max-width: 820px; margin-bottom: 30px; }
.studio-portrait-character-copy p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.62); }
.studio-portrait-character .eyebrow { color: rgba(255,255,255,.72); }
.studio-portrait-character-image { overflow: hidden; margin: 0; aspect-ratio: 4 / 5; border-radius: 28px; background: #080808; }
.studio-portrait-character-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 14%; }

.studio-portrait-features { padding: clamp(70px, 8vw, 105px) 0; background: var(--soft); }
.studio-portrait-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.studio-portrait-feature-grid article { padding: 38px clamp(24px, 4vw, 52px); border-right: 1px solid var(--line); }
.studio-portrait-feature-grid article:first-child { padding-left: 0; }
.studio-portrait-feature-grid article:last-child { padding-right: 0; border-right: 0; }
.studio-portrait-feature-grid span { display: block; margin-bottom: 22px; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .14em; }
.studio-portrait-feature-grid h3 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.25vw, 2.15rem); }
.studio-portrait-feature-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.studio-portrait-process { padding: clamp(95px, 11vw, 160px) 0; }
.studio-portrait-process-heading { max-width: 920px; margin-bottom: 58px; }
.studio-portrait-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.studio-portrait-process-grid article { padding: 42px clamp(24px, 4vw, 50px); border-right: 1px solid var(--line); }
.studio-portrait-process-grid article:first-child { padding-left: 0; }
.studio-portrait-process-grid article:last-child { padding-right: 0; border-right: 0; }
.studio-portrait-process-grid span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 28px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .7rem; font-weight: 600; }
.studio-portrait-process-grid h3 { margin-bottom: 16px; font-size: clamp(1.5rem, 2.1vw, 2rem); }
.studio-portrait-process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.studio-portrait-camera-note { display: grid; grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr); gap: 0 clamp(36px, 7vw, 100px); margin-top: 62px; padding: clamp(30px, 5vw, 52px); border: 1px solid var(--line); border-radius: 24px; background: var(--soft); }
.studio-portrait-camera-note .eyebrow { grid-column: 1 / -1; }
.studio-portrait-camera-note h3 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
.studio-portrait-camera-note > p:not(.eyebrow) { margin: 0; color: var(--muted); }

.studio-portrait-faq { padding: clamp(85px, 10vw, 145px) 0; background: var(--soft); }
.studio-portrait-faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 130px); }
.studio-portrait-faq-heading h2 { max-width: 690px; }
.studio-portrait-faq-list { border-top: 1px solid var(--line); }
.studio-portrait-faq-list article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.studio-portrait-faq-list h3 { margin-bottom: 10px; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.studio-portrait-faq-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.studio-portrait-cta { padding-block: clamp(105px, 13vw, 180px); text-align: center; }
.studio-portrait-cta h2 { max-width: 980px; margin: 0 auto 28px; }
.studio-portrait-cta > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 34px; color: var(--muted); }

.editing-page { overflow: hidden; background: var(--paper); }
.editing-hero { background: #0b0b0b; color: var(--white); }
.editing-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: clamp(50px, 8vw, 120px); align-items: center; min-height: min(790px, calc(100svh - 104px)); padding-block: clamp(72px, 9vw, 125px); }
.editing-hero-copy h1 { max-width: 760px; font-size: clamp(3.8rem, 5.7vw, 6.1rem); }
.editing-hero-copy .lead { margin-top: 28px; color: rgba(255,255,255,.7); }
.editing-hero .eyebrow { color: rgba(255,255,255,.66); }
.editing-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.editing-text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 12px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .9rem; }
.editing-hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 48px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.editing-hero-facts div { padding-right: 18px; border-right: 1px solid rgba(255,255,255,.13); }
.editing-hero-facts div + div { padding-left: 18px; }
.editing-hero-facts div:last-child { border-right: 0; }
.editing-hero-facts strong, .editing-hero-facts span { display: block; }
.editing-hero-facts strong { font-size: .88rem; font-weight: 600; }
.editing-hero-facts span { margin-top: 3px; color: rgba(255,255,255,.45); font-size: .72rem; }
.editing-hero-preview { position: relative; min-height: 600px; }
.editing-preview-card { position: absolute; overflow: hidden; width: min(64%, 390px); aspect-ratio: 4 / 5; margin: 0; border-radius: 24px; background: #1a1a1a; box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.editing-preview-card img { width: 100%; height: 100%; object-fit: cover; }
.editing-preview-card figcaption { position: absolute; bottom: 16px; left: 16px; padding: 7px 11px; border-radius: 999px; background: rgba(8,8,8,.76); color: var(--white); font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.editing-preview-before { top: 0; left: 0; transform: rotate(-3deg); }
.editing-preview-after { right: 0; bottom: 0; z-index: 1; transform: rotate(3deg); }

.editing-compare-section { padding: clamp(95px, 12vw, 175px) 0; background: var(--soft); }
.editing-compare-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(430px, 1.22fr); gap: clamp(55px, 9vw, 135px); align-items: center; }
.editing-compare-copy h2 { margin-bottom: 30px; }
.editing-compare-copy p:not(.eyebrow) { color: var(--muted); }
.editing-compare-copy .editing-ai-note { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .78rem; line-height: 1.6; }
.editing-comparison { min-width: 0; }
.editing-comparison-stage { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 28px; background: #171717; box-shadow: 0 34px 80px rgba(18,18,18,.16); }
.editing-comparison-stage:focus-within { outline: 3px solid var(--ink); outline-offset: 5px; }
.editing-comparison-before, .editing-comparison-after, .editing-comparison-after img { width: 100%; height: 100%; object-fit: cover; }
.editing-comparison-before { position: absolute; inset: 0; }
.editing-comparison-after { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--editing-position)) 0 0); }
.editing-comparison-after img { position: absolute; inset: 0; max-width: none; }
.editing-comparison-label { position: absolute; z-index: 3; top: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(10,10,10,.76); color: var(--white); font-size: .67rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.editing-comparison-label-before { left: 18px; }
.editing-comparison-label-after { right: 18px; }
.editing-comparison-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--editing-position); width: 2px; background: var(--white); transform: translateX(-1px); pointer-events: none; }
.editing-comparison-divider span { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid var(--white); border-radius: 50%; background: rgba(12,12,12,.88); color: var(--white); font-size: 1rem; transform: translate(-50%, -50%); box-shadow: 0 8px 25px rgba(0,0,0,.25); }
.editing-comparison-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.editing-comparison > p { margin: 15px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.editing-services { padding: clamp(95px, 11vw, 155px) 0; }
.editing-section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr); gap: clamp(45px, 9vw, 125px); align-items: end; margin-bottom: 65px; }
.editing-section-heading p:not(.eyebrow) { margin: 0; color: var(--muted); }
.editing-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.editing-service-grid article { min-height: 285px; padding: clamp(30px, 5vw, 54px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.editing-service-grid span { display: block; margin-bottom: 46px; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .14em; }
.editing-service-grid h3 { margin-bottom: 15px; }
.editing-service-grid p { max-width: 470px; margin: 0; color: var(--muted); font-size: .9rem; }

.editing-price-section { padding: clamp(95px, 11vw, 155px) 0; background: #0b0b0b; color: var(--white); }
.editing-price-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr); gap: clamp(60px, 10vw, 145px); align-items: center; }
.editing-price-copy h2 { max-width: 750px; margin-bottom: 30px; }
.editing-price-copy p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.62); }
.editing-customer-note { display: grid; gap: 8px; max-width: 720px; margin-top: 34px; padding: 24px 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.05); }
.editing-customer-note strong { font-size: .92rem; font-weight: 600; }
.editing-customer-note span { color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.65; }
.editing-price-section .eyebrow { color: rgba(255,255,255,.65); }
.editing-price-card { padding: clamp(35px, 5vw, 55px); border-radius: 28px; background: var(--paper); color: var(--ink); }
.editing-price-card .eyebrow { color: var(--muted); }
.editing-price-card strong, .editing-price-card > span { display: block; }
.editing-price-card strong { font: 400 clamp(4.2rem, 7vw, 6.7rem)/1 var(--serif); letter-spacing: -.05em; }
.editing-price-card strong small { font: 500 .78rem/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.editing-price-card > span { margin: 8px 0 27px; color: var(--muted); font-size: .78rem; }
.editing-price-card ul { display: grid; gap: 10px; margin: 0 0 30px; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.editing-price-card li { position: relative; padding-left: 22px; color: var(--muted); font-size: .88rem; }
.editing-price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--ink); }
.editing-price-card .button { width: 100%; }

.editing-process { padding: clamp(95px, 11vw, 155px) 0 clamp(70px, 8vw, 105px); }
.editing-process-heading { max-width: 920px; margin-bottom: 58px; }
.editing-process-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.editing-process-grid article { grid-column: span 2; min-width: 0; padding: clamp(28px, 3vw, 40px); border: 1px solid var(--line); border-radius: 20px; background: var(--soft); }
.editing-process-grid article:nth-child(4), .editing-process-grid article:nth-child(5) { grid-column: span 3; }
.editing-process-grid span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 28px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .7rem; font-weight: 600; }
.editing-process-grid h3 { margin-bottom: 16px; font-size: clamp(1.45rem, 1.8vw, 1.85rem); overflow-wrap: normal; }
.editing-process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.editing-faq { padding: clamp(95px, 11vw, 155px) 0; background: var(--soft); }
.editing-faq-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(55px, 9vw, 135px); }
.editing-faq-list { border-top: 1px solid var(--line); }
.editing-faq-list article { padding: 29px 0; border-bottom: 1px solid var(--line); }
.editing-faq-list h3 { margin-bottom: 10px; font-size: clamp(1.4rem, 2vw, 1.9rem); }
.editing-faq-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.editing-cta { padding-block: clamp(110px, 13vw, 180px); text-align: center; }
.editing-cta h2 { max-width: 980px; margin: 0 auto 28px; }
.editing-cta > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 34px; color: var(--muted); }
.gallery-related { display: flex; align-items: center; justify-content: space-between; gap: clamp(35px, 7vw, 100px); margin-top: 70px; padding: clamp(32px, 5vw, 55px); border-radius: 24px; background: var(--soft); }
.gallery-related h2 { margin-bottom: 14px; font-size: clamp(2.2rem, 4vw, 3.8rem); }
.gallery-related p:not(.eyebrow) { max-width: 760px; margin: 0; color: var(--muted); }
.gallery-related .button { flex: 0 0 auto; }

.pose-overview { padding: 0 0 150px; }
.pose-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pose-category-card { overflow: hidden; border-radius: 28px; background: var(--ink); color: var(--white); }
.pose-category-card img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: contain; background: #101010; transition: transform .6s ease; }
.pose-category-card:hover img { transform: scale(1.025); }
.pose-category-copy { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; padding: 32px; }
.pose-category-copy h2 { margin-top: 8px; font-size: clamp(2rem, 4vw, 3.5rem); }
.pose-category-copy p { margin: 0; color: rgba(255,255,255,.62); }
.pose-category-arrow { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 1.5rem; }
.pose-page { padding: 0 0 150px; }
.pose-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(35px, 8vw, 100px); margin-bottom: 65px; padding: 35px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pose-intro h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.pose-intro p { margin: 0; color: var(--muted); }
.pose-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 18px; }
.pose-card { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 20px; background: var(--white); cursor: zoom-in; }
.pose-card img { width: 100%; height: auto; background: #0c0c0c; }
.pose-card figcaption { padding: 21px 22px 24px; }
.pose-card figcaption span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.pose-card figcaption h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.pose-tip { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 60px; padding: 35px; border-radius: 22px; background: #ecebe7; }
.pose-tip h3 { margin-bottom: 8px; font-size: 1.8rem; }
.pose-tip p { max-width: 750px; margin: 0; color: var(--muted); }
.ai-image-notice { margin-top: 32px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 16px; background: #f7f5f1; color: var(--muted); }
.ai-image-notice h2 { margin: 0 0 8px; color: var(--ink); font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.ai-image-notice p { max-width: 860px; margin: 0; font-size: .94rem; line-height: 1.7; }
.pose-empty { padding: 35px; border-radius: 18px; background: var(--soft); }

.legal-content { max-width: 900px; padding-bottom: 140px; }
.legal-content section { margin-top: 55px; }
.legal-content h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.legal-content h3 { margin: 28px 0 12px; font-family: var(--sans); font-size: 1.08rem; font-weight: 600; }
.legal-content p, .legal-content li { color: #4f4f4f; }
.legal-content a { border-bottom: 1px solid currentColor; }
.legal-content ul { padding-left: 1.25rem; }
.legal-note { padding: 22px 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }

.cookie-banner { position: fixed; z-index: 2000; right: 22px; bottom: 22px; left: 22px; display: none; max-width: 680px; margin-left: auto; padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; background: rgba(14,14,14,.97); box-shadow: 0 20px 70px rgba(0,0,0,.3); color: var(--white); }
.cookie-banner.show { display: block; }
.cookie-banner h2 { margin-bottom: 12px; font-family: var(--sans); font-size: 1.25rem; font-weight: 600; letter-spacing: 0; }
.cookie-banner p { margin-bottom: 20px; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.55; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { min-height: 44px; padding: 0 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: transparent; color: var(--white); font: 500 .85rem var(--sans); cursor: pointer; }
.cookie-actions .cookie-accept { background: var(--white); color: var(--ink); }
.cookie-settings { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.cookie-settings:hover { color: var(--white); }

.whatsapp-dialog { width: min(620px, calc(100% - 32px)); max-width: none; padding: 0; border: 0; border-radius: 24px; background: transparent; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.36); }
.whatsapp-dialog::backdrop { background: rgba(8,8,8,.76); backdrop-filter: blur(5px); }
.whatsapp-dialog-card { position: relative; padding: 38px; border-radius: 24px; background: var(--paper); }
.whatsapp-dialog .eyebrow { margin-bottom: 12px; }
.whatsapp-dialog h2 { margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.2rem); }
.whatsapp-dialog p { color: var(--muted); font-size: .96rem; line-height: 1.65; }
.whatsapp-dialog .whatsapp-privacy-link { margin-bottom: 0; font-size: .86rem; }
.whatsapp-privacy-link a { border-bottom: 1px solid currentColor; color: var(--ink); }
.whatsapp-dialog-close { position: absolute; top: 18px; right: 20px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font: 300 1.55rem/1 var(--sans); cursor: pointer; }
.whatsapp-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 28px; }
.whatsapp-dialog-actions .button { min-height: 48px; padding-inline: 23px; cursor: pointer; }
.whatsapp-dialog-actions .whatsapp-cancel { background: transparent; color: var(--ink); }
.whatsapp-dialog-actions .whatsapp-cancel:hover { background: var(--ink); color: var(--white); }

.lightbox { position: fixed; z-index: 1000; inset: 0; display: none; place-items: center; padding: 30px; background: rgba(0,0,0,.94); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 28px; border: 0; background: transparent; color: white; font-size: 2.1rem; cursor: pointer; }

.course-page { overflow: hidden; }
.course-hero { position: relative; min-height: min(820px, calc(100vh - 98px)); display: grid; align-items: center; background-image: linear-gradient(90deg, rgba(10,10,10,.93) 0%, rgba(10,10,10,.78) 38%, rgba(10,10,10,.26) 67%, rgba(10,10,10,.08) 100%), url('assets/images/fotokurs-einzelschulung-frankfurt.jpg'); background-position: center; background-size: cover; color: #fff; }
.course-hero-inner { padding-block: clamp(90px, 12vw, 160px); }
.course-hero-copy { max-width: 760px; }
.course-hero .eyebrow { color: rgba(255,255,255,.68); }
.course-hero h1 { max-width: 740px; margin-bottom: 28px; font-size: clamp(4.2rem, 7vw, 7.3rem); line-height: .88; letter-spacing: -.055em; color: #fff; }
.course-hero .lead { max-width: 690px; color: rgba(255,255,255,.74); font-size: clamp(1.04rem, 1.4vw, 1.24rem); line-height: 1.75; }
.course-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.course-primary-button { background: #fff; color: var(--ink); }
.course-primary-button:hover { background: #eae7e0; }
.course-text-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: .92rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); }
.course-hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 740px; margin-top: 68px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.2); }
.course-hero-facts span { display: grid; gap: 5px; padding: 0 24px; color: rgba(255,255,255,.58); font-size: .76rem; line-height: 1.45; }
.course-hero-facts span:first-child { padding-left: 0; }
.course-hero-facts span + span { border-left: 1px solid rgba(255,255,255,.18); }
.course-hero-facts strong { color: #fff; font-size: .92rem; font-weight: 600; }
.course-promise { padding-block: clamp(90px, 12vw, 160px); background: var(--paper); }
.course-promise-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 140px); align-items: start; }
.course-promise h2 { max-width: 580px; margin: 0; }
.course-promise-copy { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.8; }
.course-promise-copy p:first-child { margin-top: 0; color: var(--ink); }
.course-learning { padding-block: clamp(95px, 12vw, 155px); background: var(--soft); }
.course-section-heading { max-width: 920px; margin-bottom: clamp(55px, 7vw, 90px); }
.course-section-heading h2 { max-width: 780px; margin-bottom: 26px; }
.course-section-heading > p:not(.eyebrow) { max-width: 720px; margin: 0; color: var(--muted); }
.course-learning-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.course-learning-grid article { min-height: 290px; padding: clamp(30px, 4vw, 54px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.course-learning-grid article > span { display: block; margin-bottom: 50px; color: var(--muted); font-size: .7rem; letter-spacing: .14em; }
.course-learning-grid h3 { margin: 0 0 15px; font-family: var(--serif); font-size: clamp(1.65rem, 2.4vw, 2.25rem); font-weight: 400; line-height: 1.05; }
.course-learning-grid p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.course-custom-modes { padding-block: clamp(85px, 11vw, 145px); background: #111; color: #fff; }
.course-custom-modes-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.course-custom-image { margin: 0; aspect-ratio: 4 / 4.35; overflow: hidden; border-radius: 32px; }
.course-custom-image img { width: 100%; height: 100%; object-fit: cover; object-position: 46% center; }
.course-custom-copy .eyebrow { color: rgba(255,255,255,.6); }
.course-custom-copy h2 { max-width: 690px; color: #fff; }
.course-custom-copy > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.65); }
.course-mode-list { display: grid; gap: 10px; margin: 36px 0 26px; }
.course-mode-list div { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: center; padding: 17px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; }
.course-mode-list strong { display: grid; place-items: center; width: 48px; height: 38px; border-radius: 20px; background: #fff; color: #111; font-size: .76rem; }
.course-mode-list span { color: rgba(255,255,255,.82); font-size: .9rem; }
.course-small-note { font-size: .78rem; line-height: 1.65; }
.course-process { padding-block: clamp(95px, 12vw, 160px); background: var(--paper); }
.course-process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.course-process-grid article { padding: 34px 28px 20px; border-right: 1px solid var(--line); }
.course-process-grid article:first-child { padding-left: 0; }
.course-process-grid article:last-child { padding-right: 0; border-right: 0; }
.course-process-grid span { display: block; margin-bottom: 44px; color: var(--muted); font-size: .68rem; }
.course-process-grid h3 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(1.35rem, 1.9vw, 1.75rem); font-weight: 400; line-height: 1.08; }
.course-process-grid p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }
.course-advice { padding: 0 0 clamp(95px, 12vw, 160px); background: var(--paper); }
.course-advice-card { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(50px, 8vw, 120px); padding: clamp(42px, 7vw, 84px); border-radius: 32px; background: var(--soft); }
.course-advice-card h2 { margin-bottom: 0; }
.course-advice-card > div:last-child { color: var(--muted); }
.course-advice-card > div:last-child p:first-child { margin-top: 0; color: var(--ink); }
.course-instructor { padding-block: clamp(90px, 12vw, 155px); background: #111; color: #fff; }
.course-instructor-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.course-instructor img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; object-position: center 26%; border-radius: 30px; }
.course-instructor .eyebrow { color: rgba(255,255,255,.58); }
.course-instructor h2 { color: #fff; }
.course-instructor p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.course-request-section { padding-block: clamp(95px, 12vw, 165px); background: var(--soft); }
.course-request-layout { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(50px, 8vw, 115px); align-items: start; }
.course-request-intro { position: sticky; top: 145px; }
.course-request-intro > p:not(.eyebrow) { color: var(--muted); }
.course-form-card { background: var(--paper); }
.course-experience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.course-option-check { margin-top: 26px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.course-faq { padding-block: clamp(90px, 11vw, 150px); background: var(--paper); }
.course-faq-grid { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(55px, 9vw, 135px); }
.course-faq-list details { border-top: 1px solid var(--line); }
.course-faq-list details:last-child { border-bottom: 1px solid var(--line); }
.course-faq-list summary { position: relative; padding: 27px 50px 27px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); }
.course-faq-list summary::-webkit-details-marker { display: none; }
.course-faq-list summary::after { content: '+'; position: absolute; right: 6px; top: 24px; font-family: Arial,sans-serif; font-size: 1.5rem; font-weight: 300; }
.course-faq-list details[open] summary::after { content: '−'; }
.course-faq-list details p { max-width: 700px; padding: 0 45px 28px 0; margin: 0; color: var(--muted); }
.course-ai-note { margin-block: 0; padding-bottom: 42px; color: var(--muted); font-size: .72rem; text-align: center; }

@media (min-width: 901px) and (max-width: 1100px) {
  .brand img { width: 155px; }
  .site-nav { gap: 22px; font-size: .86rem; }
  .header-socials { gap: 6px; margin-left: -6px; padding-left: 12px; }
  .header-socials a { width: 30px; height: 30px; }
}

@media (max-width: 900px) {
  :root { --wrap: min(100% - 36px, 700px); }
  .site-header { backdrop-filter: none; }
  .header-inner { min-height: 88px; }
  .brand img { width: 155px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .site-nav { position: fixed; z-index: 2; top: 0; left: calc((100% - 100vw) / 2); width: 100vw; height: 100svh; display: flex; flex-direction: column; align-items: flex-start; justify-content: safe center; gap: 22px; padding: 90px 35px; overflow-y: auto; background: var(--paper); font-family: var(--serif); font-size: 2rem; transform: translateX(100%); transition: transform .35s ease; }
  .site-nav > .customer-login-link { display: none; }
  .nav-dropdown { display: grid; width: min(100%, 420px); gap: 0; }
  .nav-parent-row { justify-content: space-between; width: 100%; }
  .nav-parent::before { display: none; }
  .submenu-toggle { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -10px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
  .submenu-toggle span { display: block; width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transform-origin: center; transition: transform .25s ease; }
  .nav-dropdown.submenu-open .submenu-toggle span { transform: translateY(2px) rotate(225deg); }
  .submenu-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
  .submenu { position: static; display: grid; min-width: 0; max-height: 0; margin: 0; padding: 0 0 0 16px; overflow: hidden; border: 0; background: transparent; box-shadow: none; opacity: 0; visibility: hidden; transform: none; transition: max-height .3s ease, margin .3s ease, opacity .2s ease, visibility .2s ease; }
  .submenu a { padding: 3px 0; font-family: var(--sans); font-size: 1rem; color: var(--muted); }
  .nav-dropdown:hover .submenu, .nav-dropdown:focus-within .submenu { max-height: 0; margin: 0; opacity: 0; visibility: hidden; transform: none; }
  .nav-dropdown.submenu-open .submenu, .nav-dropdown.submenu-open:hover .submenu, .nav-dropdown.submenu-open:focus-within .submenu { max-height: 60svh; margin-top: 10px; opacity: 1; visibility: visible; }
  .header-socials { gap: 12px; margin: 8px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .header-socials a { width: 42px; height: 42px; }
  .header-socials .customer-login-mobile { display: grid; }
  .header-socials svg { width: 18px; height: 18px; }
  .site-nav.open { transform: translateX(0); }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: calc(100svh - 88px); }
  .hero::before { background-position: 65% 18%; }
  .intro-grid, .about-feature, .about-story, .about-story-reverse, .contact-grid, .contact-form-layout, .tfp-explainer-grid, .email-preview-heading, .dog-hero, .dog-intro-grid, .dog-story-card, .dog-story-card-reverse, .dog-gear-grid, .dog-faq, .men-hero, .men-intro-grid, .men-story-heading, .men-story-row, .men-story-row-reverse, .men-quiet-grid, .men-faq-grid, .studio-portrait-hero-grid, .studio-portrait-intro-grid, .studio-portrait-character-grid, .studio-portrait-faq-grid, .editing-hero-grid, .editing-compare-grid, .editing-section-heading, .editing-price-grid, .editing-faq-grid, .course-promise-grid, .course-custom-modes-grid, .course-advice-card, .course-instructor-grid, .course-request-layout, .course-faq-grid { grid-template-columns: minmax(0, 1fr); }
  .course-hero { min-height: 740px; background-image: linear-gradient(90deg, rgba(10,10,10,.91), rgba(10,10,10,.58)), url('assets/images/fotokurs-einzelschulung-frankfurt.jpg'); background-position: 61% center; }
  .course-hero-copy { max-width: 690px; }
  .course-learning-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-custom-image { max-height: 680px; aspect-ratio: 4 / 3; }
  .course-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-process-grid article, .course-process-grid article:first-child, .course-process-grid article:last-child { padding: 32px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .course-process-grid article:nth-child(2n), .course-process-grid article:last-child { border-right: 0; }
  .course-request-intro { position: static; }
  .course-experience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .editing-hero-grid { min-height: 0; }
  .editing-hero-copy { max-width: 730px; }
  .editing-hero-preview { width: min(100%, 720px); min-height: 680px; margin-inline: auto; }
  .editing-compare-copy { max-width: 760px; }
  .editing-comparison { width: min(100%, 620px); margin-inline: auto; }
  .editing-section-heading { align-items: start; }
  .editing-price-copy { max-width: 780px; }
  .editing-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editing-process-grid article, .editing-process-grid article:first-child, .editing-process-grid article:last-child, .editing-process-grid article:nth-child(4), .editing-process-grid article:nth-child(5) { grid-column: span 1; padding: 32px 26px; border: 1px solid var(--line); }
  .editing-process-grid article:last-child { grid-column: 1 / -1; }
  .editing-process-grid h3 { font-size: clamp(1.45rem, 3.2vw, 1.8rem); }
  .editing-request-intro { position: static; }
  .editing-request-layout { gap: 42px; }
  .editing-request-intro h2 { max-width: 720px; }
  .editing-price-card { width: min(100%, 560px); }
  .studio-portrait-hero-grid { min-height: 0; }
  .studio-portrait-hero-copy { padding-top: 16px; }
  .studio-portrait-hero-image { width: min(100%, 610px); margin-inline: auto; }
  .studio-portrait-hero-image img { height: auto; max-height: 680px; }
  .studio-portrait-intro-image, .studio-portrait-character-image { width: min(100%, 600px); }
  .studio-portrait-intro-copy { transform: none; }
  .studio-portrait-character-image { margin-inline: auto; }
  .studio-portrait-camera-note { grid-template-columns: 1fr; }
  .studio-portrait-camera-note .eyebrow { grid-column: auto; }
  .studio-portrait-camera-note h3 { margin-bottom: 18px; }
  .contact-form-intro { position: static; }
  .dog-hero-image { max-width: 760px; }
  .dog-hero-image img { height: auto; aspect-ratio: 5 / 4; }
  .dog-intro-image { width: min(100%, 600px); }
  .dog-section-heading { grid-template-columns: 1fr; align-items: start; }
  .dog-story-image { width: min(100%, 610px); }
  .dog-story-card-reverse .dog-story-image { margin-left: auto; }
  .men-story-image { width: min(100%, 620px); }
  .men-story-row-reverse .men-story-image { margin-left: auto; }
  .portrait-frame img { max-height: 680px; }
  .section-head, .process-heading { display: grid; grid-template-columns: 1fr; gap: 25px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-card:first-child, .gallery-card:nth-child(6) { grid-row: span 2; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .extras-heading { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .agreement-card { align-items: flex-start; flex-direction: column; }
  .pose-category-grid, .pose-intro { grid-template-columns: 1fr; }
  .pose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pose-tip { align-items: flex-start; flex-direction: column; }
  .gallery-related { align-items: flex-start; flex-direction: column; }
  .process-item:nth-child(2) { border-right: 0; }
  .process-item:nth-child(n+3) { margin-top: 40px; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .email-preview-browser iframe { height: 980px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .intro { padding-block: 78px; }
  .portfolio { padding-block: 82px; }
  .process { padding-block: 82px; }
  .hero-content { padding-block: 75px; }
  .hero .lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .gallery-grid, .gallery-page .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 400px; }
  .gallery-card:nth-child(n) { grid-row: span 1; }
  .process-list { grid-template-columns: 1fr; }
  .process-item, .process-item + .process-item { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-number { margin-bottom: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .contact-card { padding: 30px 24px; }
  .contact-form-card { padding: 28px 20px; border-radius: 20px; }
  .contact-form-intro h2 { overflow-wrap: anywhere; }
  .form-grid-two, .shooting-choice-grid, .choice-grid-three { grid-template-columns: 1fr; }
  .form-section-note { margin-left: 0; }
  .choice-card-small span { justify-content: flex-start; min-height: 54px; text-align: left; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .contact-submit { width: 100%; }
  .course-hero { min-height: 760px; background-image: linear-gradient(180deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.86) 65%, rgba(10,10,10,.94) 100%), url('assets/images/fotokurs-einzelschulung-frankfurt.jpg'); background-position: 62% center; }
  .course-hero-inner { display: flex; align-items: flex-end; min-height: 760px; padding-top: 210px; padding-bottom: 62px; }
  .course-hero h1 { font-size: clamp(3.15rem, 14vw, 4.15rem); overflow-wrap: anywhere; }
  .course-hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .course-hero-actions .button, .course-text-link { width: 100%; justify-content: center; }
  .course-hero-facts { grid-template-columns: 1fr; gap: 15px; margin-top: 42px; }
  .course-hero-facts span, .course-hero-facts span:first-child { padding: 0 0 15px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .course-hero-facts span:last-child { padding-bottom: 0; border-bottom: 0; }
  .course-learning-grid { grid-template-columns: 1fr; border-left: 0; }
  .course-learning-grid article { min-height: 0; padding: 34px 0; border-right: 0; }
  .course-learning-grid article > span { margin-bottom: 25px; }
  .course-custom-image { aspect-ratio: 4 / 3; border-radius: 22px; }
  .course-mode-list div { grid-template-columns: 52px 1fr; padding: 14px; }
  .course-process-grid { grid-template-columns: 1fr; }
  .course-process-grid article, .course-process-grid article:first-child, .course-process-grid article:last-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .course-process-grid article:last-child { border-bottom: 0; }
  .course-process-grid span { margin-bottom: 24px; }
  .course-advice-card { padding: 32px 24px; border-radius: 22px; }
  .course-instructor img { border-radius: 22px; }
  .course-experience-grid { grid-template-columns: 1fr; }
  .course-faq-list summary { padding-right: 42px; }
  .form-security-note { text-align: left; }
  .contact-success-card { padding: 42px 24px 28px; }
  .dog-hero-actions { align-items: stretch; flex-direction: column; }
  .dog-hero-actions .button, .dog-text-link { width: 100%; justify-content: center; }
  .dog-hero-image img { border-radius: 22px; }
  .dog-motion-image { aspect-ratio: 4 / 3; border-radius: 22px; }
  .dog-process-grid { grid-template-columns: 1fr; }
  .dog-process-heading h2 { overflow-wrap: anywhere; font-size: clamp(2.65rem, 10vw, 3rem); letter-spacing: -.02em; hyphens: auto; }
  .dog-process-grid article, .dog-process-grid article:first-child, .dog-process-grid article:last-child { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .dog-process-grid article:last-child { border-bottom: 0; }
  .dog-story-divider { min-height: 138px; padding-inline: 18px; }
  .dog-story-divider-mark { grid-template-columns: 1fr 48px 1fr; gap: 14px; }
  .dog-story-divider-mark svg { width: 44px; height: 44px; }
  .dog-story-divider p { font-size: .58rem; letter-spacing: .18em; }
  .men-hero-actions { align-items: stretch; flex-direction: column; }
  .men-hero-actions .button, .men-text-link { width: 100%; justify-content: center; }
  .men-hero-image img, .men-intro-image, .men-story-image, .men-quiet-image { border-radius: 22px; }
  .men-process-grid { grid-template-columns: 1fr; }
  .men-process-heading h2 { overflow-wrap: anywhere; font-size: clamp(2.65rem, 10vw, 3rem); letter-spacing: -.02em; hyphens: auto; }
  .men-process-grid article, .men-process-grid article:first-child, .men-process-grid article:last-child { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .men-process-grid article:last-child { border-bottom: 0; }
  .men-story-divider { min-height: 132px; margin-block: 48px; padding-inline: 18px; }
  .men-story-divider-mark { grid-template-columns: 1fr 48px 1fr; gap: 14px; }
  .men-story-divider-mark svg { width: 42px; height: 42px; }
  .men-story-divider p { font-size: .58rem; letter-spacing: .16em; }
  .studio-portrait-actions { align-items: stretch; flex-direction: column; }
  .studio-portrait-actions .button, .studio-portrait-text-link { width: 100%; justify-content: center; }
  .studio-portrait-hero-copy h1 { font-size: clamp(3.2rem, 14vw, 4.2rem); }
  .studio-portrait-hero-image img { border-radius: 22px; }
  .studio-portrait-intro-image, .studio-portrait-character-image { border-radius: 22px; }
  .studio-portrait-feature-grid, .studio-portrait-process-grid { grid-template-columns: 1fr; }
  .studio-portrait-feature-grid article, .studio-portrait-feature-grid article:first-child, .studio-portrait-feature-grid article:last-child, .studio-portrait-process-grid article, .studio-portrait-process-grid article:first-child, .studio-portrait-process-grid article:last-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .studio-portrait-feature-grid article:last-child, .studio-portrait-process-grid article:last-child { border-bottom: 0; }
  .studio-portrait-process-heading h2 { overflow-wrap: anywhere; font-size: clamp(2.65rem, 10vw, 3rem); letter-spacing: -.02em; }
  .studio-portrait-camera-note { padding: 28px 23px; border-radius: 19px; }
  .editing-hero-grid { display: block; }
  .editing-hero-copy { margin-bottom: 54px; }
  .editing-hero-copy h1 { font-size: clamp(3.15rem, 12vw, 3.7rem); overflow-wrap: anywhere; }
  .editing-actions { align-items: stretch; flex-direction: column; }
  .editing-actions .button, .editing-text-link { width: 100%; justify-content: center; }
  .editing-hero-facts { grid-template-columns: 1fr; gap: 15px; }
  .editing-hero-facts div, .editing-hero-facts div + div { padding: 0 0 15px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .editing-hero-facts div:last-child { padding-bottom: 0; border-bottom: 0; }
  .editing-hero-preview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; min-height: 0; }
  .editing-preview-card { position: relative; inset: auto; width: 100%; border-radius: 18px; transform: none; }
  .editing-comparison-stage { border-radius: 22px; }
  .editing-comparison-divider span { width: 42px; height: 42px; }
  .editing-service-grid, .editing-process-grid { grid-template-columns: 1fr; border-left: 0; }
  .editing-service-grid article { min-height: 0; padding: 32px 0; border-right: 0; }
  .editing-service-grid span { margin-bottom: 24px; }
  .editing-process-grid article, .editing-process-grid article:first-child, .editing-process-grid article:last-child, .editing-process-grid article:nth-child(4), .editing-process-grid article:nth-child(5) { grid-column: span 1; padding: 28px 23px; border: 1px solid var(--line); }
  .editing-process-heading h2 { overflow-wrap: anywhere; font-size: clamp(2.65rem, 10vw, 3rem); letter-spacing: -.02em; }
  .editing-request-section { padding-top: 72px; }
  .editing-request-layout { gap: 34px; }
  .editing-request-intro h2 { font-size: clamp(2.35rem, 10vw, 3rem); overflow-wrap: normal; }
  .editing-request-form .form-section-heading { align-items: flex-start; gap: 12px; padding-top: 32px; }
  .editing-request-form .form-section-heading h3 { font-size: 1.55rem; }
  .editing-request-form .form-section-heading p { line-height: 1.45; }
  .editing-price-card { padding: 32px 24px; border-radius: 22px; }
  .about-feature { padding-bottom: 80px; }
  .about-story { gap: 34px; padding: 58px 0; }
  .about-story-copy h2 { margin-bottom: 24px; }
  .price-card, .agreement-card { padding: 28px 24px; }
  .agreement-card .button { width: 100%; }
  .pose-category-grid, .pose-grid { grid-template-columns: 1fr; }
  .pose-category-copy { padding: 25px; }
  .gallery-related { margin-top: 45px; padding: 28px 24px; }
  .gallery-related .button { width: 100%; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; padding: 22px; }
  .cookie-actions { display: grid; }
  .whatsapp-dialog-card { padding: 31px 23px 24px; }
  .whatsapp-dialog-actions { display: grid; }
  .whatsapp-dialog-actions .button { width: 100%; }
  .email-preview-meta { padding: 17px; }
  .email-preview-browser { margin-inline: -10px; border-radius: 14px; }
  .email-preview-browser iframe { height: 900px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
