/*
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; }
.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; }
.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.jpg') 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.35fr .65fr .7fr; gap: 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-reverse .about-story-image { order: 2; }
.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: 6px; }
.contact-direct a { width: fit-content; border-bottom: 1px solid currentColor; font-size: .92rem; }
.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 { 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 input::placeholder, .form-field textarea::placeholder { color: #95918a; }
.form-field input:focus, .form-field textarea: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; }

.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; }

.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; }

@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; }
  .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 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 { grid-template-columns: minmax(0, 1fr); }
  .contact-form-intro { position: static; }
  .about-story-reverse .about-story-image { order: 0; }
  .intro-copy { order: 2; }
  .portrait-frame { order: 1; }
  .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; }
  .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); }
  .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%; }
  .form-security-note { text-align: left; }
  .contact-success-card { padding: 42px 24px 28px; }
  .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; }
  .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; }
}
