@font-face {
  font-family: "Italiana";
  src: url("assets/fonts/italiana-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@layer reset, base, layout, components, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure { margin: 0; }
  button, input, select, textarea { font: inherit; }
  button { border: 0; }
  img { display: block; max-width: 100%; }
}

@layer base {
  :root {
    --paper: #efe7da;
    --paper-2: #e3d8c5;
    --ink: #1d1a17;
    --wine: #4b171e;

    --rose: #a6574c;
    --line: rgba(29, 26, 23, .24);
    --serif: "Italiana", "Times New Roman", serif;
    --sans: "DM Sans", Arial, sans-serif;
    --content: 1240px;
    --gutter: clamp(18px, 4vw, 64px);
  }

  body {
    min-width: 320px;
    color: var(--ink);
    background-color: var(--paper);
    background-image:
      radial-gradient(rgba(66, 42, 29, .045) .7px, transparent .7px),
      radial-gradient(rgba(255, 255, 255, .14) .7px, transparent .7px);
    background-position: 0 0, 5px 7px;
    background-size: 8px 8px;
    font-family: var(--sans);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
  }

  ::selection { color: var(--paper); background: var(--wine); }
  h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; }
  h1 em, h2 em { font-weight: 400; }
  button, a { color: inherit; }
  button { cursor: pointer; }
  a { text-decoration-thickness: 1px; text-underline-offset: .22em; }
  .eyebrow {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .19em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  .skip-link {
    position: fixed; left: 12px; top: -80px; z-index: 100;
    padding: 10px 14px; color: var(--paper); background: var(--ink);
  }
  .skip-link:focus { top: 12px; }
  :focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }
}

@layer layout {
  .wordmark { display: inline-flex; width: max-content; align-items: baseline; text-decoration: none; }
  .wordmark span { font-family: var(--serif); font-size: 2rem; line-height: 1; }
  .wordmark i { color: #d88975; font-family: var(--serif); font-size: 2.5rem; line-height: .5; }

  .hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(620px, 76dvh, 720px);
    color: var(--paper);
    background: var(--wine);
    isolation: isolate;
    overflow: hidden;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(29,26,23,.82), rgba(75,23,30,.5) 31%, rgba(29,26,23,.26) 50%, rgba(75,23,30,.52) 69%, rgba(29,26,23,.82)),
      linear-gradient(180deg, rgba(29,26,23,.28), rgba(29,26,23,.12) 48%, rgba(29,26,23,.5));
    pointer-events: none;
  }
  .hero__portrait {
    position: absolute;
    inset: 12% 0;
    z-index: -2;
    overflow: hidden;
  }
  .hero__portrait picture { display: block; width: 100%; height: 100%; }
  .hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: saturate(.82) contrast(1.05);
    transform: scale(1.02);
  }
  .hero__center {
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  .hero__center .eyebrow {
    padding: 8px 12px;
    background: rgba(29,26,23,.38);
    backdrop-filter: blur(8px);
  }
  .hero h1 {
    max-width: 1100px;
    margin: 14px auto 16px;
    font-size: clamp(4.6rem, 6.5vw, 6.5rem);
    letter-spacing: -.05em;
    text-wrap: balance;
    text-shadow: 0 3px 28px rgba(29,26,23,.52);
  }
  .hero__dek {
    max-width: 640px;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    text-shadow: 0 2px 18px rgba(29,26,23,.7);
  }
  .hero__center .button { margin-top: 18px; }
  .hero__marquee {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 3;
    padding: 10px 0;
    border-block: 1px solid rgba(239,231,218,.3);
    background: rgba(29,26,23,.28);
    backdrop-filter: blur(8px);
  }
  .hero__marquee + .hero__marquee { margin-top: 0; }
  .hero__marquee .marquee__group { gap: 10px; padding-right: 10px; }
  .hero__marquee .frame { height: clamp(150px, 20vh, 190px); }
  .hero__marquee .frame--portrait { width: clamp(108px, 13vw, 144px); }
  .hero__marquee .frame--landscape { width: clamp(196px, 23vw, 270px); }
  .hero__marquee--top { top: 0; }
  .hero__marquee--bottom { bottom: 0; }

  .manifesto {
    display: grid; grid-template-columns: 1fr minmax(280px, 3.4fr) 1fr; gap: clamp(20px, 4vw, 64px);
    max-width: var(--content); margin: 0 auto; padding: clamp(94px, 13vw, 180px) var(--gutter);
    border-bottom: 1px solid var(--line);
  }
  .manifesto h2 { max-width: 820px; font-size: clamp(2.35rem, 5vw, 5.4rem); letter-spacing: -.032em; }
  .manifesto > p:last-child { align-self: end; font-size: .86rem; }

  .portfolio { padding: clamp(68px, 9vw, 120px) 0; overflow: hidden; }
  .section-head {
    display: flex; align-items: end; justify-content: space-between; gap: 24px;
    max-width: var(--content); margin: 0 auto 44px; padding: 0 var(--gutter);
  }
  .section-head h2 { margin-top: 11px; font-size: clamp(3rem, 5.6vw, 6rem); letter-spacing: -.04em; }

  .gallery-showcase { padding: clamp(32px, 5vw, 64px) 0 clamp(52px, 7vw, 88px); overflow: hidden; overflow-anchor: none; }
  .gallery-showcase__intro { max-width: var(--content); margin: 0 auto 48px; padding: 0 var(--gutter); }
  .gallery-showcase__intro h2 { max-width: 880px; margin: 18px 0 24px; font-size: clamp(3.2rem, 6vw, 6.8rem); letter-spacing: -.045em; }
  .gallery-showcase__intro > p:last-child { max-width: 540px; }
  .gallery-block + .gallery-block { margin-top: clamp(82px, 9vw, 126px); }
  .gallery-block__head {
    max-width: 720px; margin: 0 auto 38px; padding: 0 var(--gutter); text-align: center;
  }
  .gallery-block__head h3 { margin-bottom: 14px; font-size: clamp(3rem, 5vw, 5.8rem); letter-spacing: -.04em; }
  .gallery-block__head p { max-width: 560px; margin-inline: auto; font-size: .92rem; }
  .gallery-stage { position: relative; height: 620px; overflow: hidden; perspective: 1400px; contain: layout paint; }
  .gallery-card {
    position: absolute; top: 0; left: 50%; display: block; height: 570px; padding: 0; overflow: hidden;
    background: var(--paper-2); border: 0; opacity: 0; pointer-events: none;
    transform: translateX(-50%) scale(.62); transition: transform .62s cubic-bezier(.16,1,.3,1), opacity .45s ease, filter .45s ease;
    box-shadow: 0 26px 70px rgba(42,27,24,.18); will-change: transform, opacity;
  }
  .gallery-card--portrait { width: min(430px, 68vw); }
  .gallery-card--wide { width: min(700px, 80vw); }
  .gallery-card.is-active { z-index: 3; opacity: 1; pointer-events: auto; cursor: zoom-in; transform: translateX(-50%) translateZ(80px); }
  .gallery-card.is-before { z-index: 1; opacity: .48; pointer-events: auto; cursor: e-resize; transform: translateX(calc(-50% - min(35vw, 470px))) rotateY(20deg) scale(.72); filter: saturate(.75); }
  .gallery-card.is-after { z-index: 1; opacity: .48; pointer-events: auto; cursor: w-resize; transform: translateX(calc(-50% + min(35vw, 470px))) rotateY(-20deg) scale(.72); filter: saturate(.75); }
  .gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
  .gallery-card.is-active:hover img { transform: scale(1.018); filter: contrast(1.03); }
  .gallery-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; padding-inline: var(--gutter); }
  .gallery-nav button {
    width: 48px; height: 48px; color: var(--ink); background: transparent;
    border: 1px solid var(--ink); font-size: 1.15rem;
    transition: color .2s ease, background .2s ease;
  }
  .gallery-nav button:hover { color: var(--paper); background: var(--ink); }

  .gallery-count { min-width: 72px; font-size: .7rem; letter-spacing: .14em; text-align: center; }

  .about { position: relative; min-height: 470px; overflow: hidden; color: var(--paper); background: var(--wine); isolation: isolate; }
  .about__portrait {
    position: absolute; inset: 0 0 auto auto; z-index: -1; width: 68%; height: 560px; overflow: hidden;
    background-color: var(--wine);
    background-size: 148% auto; background-position: 20% 58%; background-repeat: no-repeat;
  }
  .about__portrait.is-image-ready {
    background-image: url("assets/images/brenda-smile-480.webp");
    background-image: image-set(url("assets/images/brenda-smile-480.webp") 1x, url("assets/images/brenda-smile-960.webp") 2x);
  }
  .about__portrait::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--wine) 0%, rgba(75,23,30,.96) 18%, rgba(75,23,30,.7) 42%, rgba(75,23,30,.12) 72%, transparent 100%), linear-gradient(0deg, rgba(75,23,30,.55) 0%, transparent 35%);
  }
  .about__copy { display: flex; flex-direction: column; justify-content: center; min-height: 470px; width: min(62%, 820px); padding: 20px 0 22px max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter))); }
  .about__copy h2 { margin: 12px 0 20px; font-size: clamp(4.2rem, 7vw, 8rem); letter-spacing: -.05em; }
  .about__copy h2 em { color: #e3a28f; }
  .about__copy > p:not(.eyebrow) { max-width: 475px; margin-bottom: 12px; text-wrap: pretty; }
  .about__copy .button { margin-top: 16px; }

  .process {
    display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 9vw, 130px);
    max-width: none; margin: 0;
    padding-block: clamp(68px, 8vw, 108px);
    padding-inline: max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
    color: var(--paper); background: var(--wine);
  }
  .process__title h2 { margin-top: 20px; font-size: clamp(3.5rem, 6vw, 6.8rem); letter-spacing: -.045em; }
  .process__steps { margin: 0; padding: 0; list-style: none; }
  .process__steps li { display: grid; grid-template-columns: 54px 1fr; gap: 25px; padding: 31px 0; border-top: 1px solid rgba(239,231,218,.3); }
  .process__steps li:last-child { border-bottom: 1px solid rgba(239,231,218,.3); }
  .process__steps li > span { padding-top: 5px; font-size: .63rem; letter-spacing: .18em; }
  .process__steps h3 { margin-bottom: 12px; font-size: clamp(1.7rem, 2.4vw, 2.5rem); }
  .process__steps p { max-width: 520px; font-size: .9rem; opacity: .78; }


  .inquiry { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(35px, 8vw, 120px); padding: clamp(60px, 8vw, 110px) var(--gutter); color: var(--ink); background: var(--paper); }
  .inquiry__aside { max-width: 540px; justify-self: end; }
  .inquiry__aside h2 { margin: 26px 0 28px; font-size: clamp(3.5rem, 6.4vw, 7.2rem); letter-spacing: -.045em; }
  .inquiry__aside > p:not(.eyebrow) { max-width: 450px; opacity: .78; }
  .inquiry-reassurance { margin-top: 18px; font-size: .86rem; }
  .inquiry-form { width: min(100%, 650px); align-self: center; scroll-margin-top: 24px; }
  .field { grid-column: 1 / -1; }
  .field--half { grid-column: span 1; }
  .field label { display: block; margin-bottom: 9px; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
  .field label span { opacity: .55; font-weight: 400; }
  .field input, .field select, .field textarea {
    width: 100%; min-height: 54px; padding: 13px 0; color: var(--ink); background: transparent;
    border: 0; border-bottom: 1px solid rgba(29,26,23,.38); border-radius: 0; outline: 0;
  }
  .field textarea { min-height: 112px; resize: vertical; }
  .field input::placeholder, .field textarea::placeholder { color: rgba(29,26,23,.5); }
  .field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--wine); box-shadow: 0 1px 0 var(--wine); }
  .field select { color-scheme: light; }
  .date-control { position: relative; }
  .date-control input { padding-right: 128px; color-scheme: light; cursor: pointer; }
  .date-picker-button {
    position: absolute; right: 0; bottom: 1px; min-height: 52px; padding: 0 0 0 16px;
    color: var(--wine); background: transparent; border-left: 1px solid rgba(29,26,23,.22);
    cursor: pointer; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  }
  .date-picker-button:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
  .field-hint { display: block; margin-top: 6px; color: rgba(29,26,23,.62); font-size: .72rem; }
  .choice-check { display: flex !important; align-items: center; gap: 9px; width: max-content; max-width: 100%; margin-top: 13px !important; cursor: pointer; font-size: .76rem !important; font-weight: 400 !important; letter-spacing: 0 !important; text-transform: none !important; }
  .choice-check input { flex: 0 0 auto; width: 17px; min-height: 17px; height: 17px; padding: 0; accent-color: var(--wine); }
  .field.is-pending > .date-control, .field.is-pending > input { opacity: .42; }
  .field-error { display: block; min-height: 17px; padding-top: 4px; color: #7f2733; font-size: .72rem; }
  .field-error:empty { display: none; }
  .quiz-progress { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; margin-bottom: 34px; color: rgba(29,26,23,.68); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
  .quiz-progress__line { height: 1px; overflow: hidden; background: rgba(29,26,23,.2); }
  .quiz-progress__line i { display: block; width: 25%; height: 100%; background: var(--wine); transition: width .35s cubic-bezier(.16,1,.3,1); }
  .quiz-step { min-height: 0; }
  .quiz-step[hidden] { display: none; }
  .quiz-step h3 { max-width: 570px; margin-bottom: 28px; font-size: clamp(2.35rem, 4vw, 4.1rem); letter-spacing: -.035em; line-height: 1; }
  .choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .choice-card { position: relative; display: block; cursor: pointer; }
  .choice-card--wide { grid-column: 1 / -1; }
  .choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .choice-card span { display: flex; align-items: center; min-height: 58px; padding: 13px 16px; border: 1px solid rgba(29,26,23,.38); font-size: .86rem; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .15s ease; }
  .choice-card:hover span { border-color: rgba(29,26,23,.82); }
  .choice-card input:focus-visible + span { outline: 2px solid var(--wine); outline-offset: 3px; }
  .choice-card input:checked + span { color: var(--paper); background: var(--wine); border-color: var(--wine); }
  .choice-card:active span { transform: translateY(1px); }
  .quiz-field--compact { margin-top: 24px; }
  .quiz-actions { display: grid; grid-template-columns: auto minmax(190px, 1fr); gap: 10px; margin-top: 12px; }
  .quiz-back { min-height: 52px; padding: 12px 18px; color: var(--ink); background: transparent; border: 1px solid rgba(29,26,23,.42); font: inherit; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .quiz-next { width: 100%; color: var(--paper); background: var(--wine); border-color: var(--wine); }
  .quiz-next:hover, .quiz-back:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
  .button--form { grid-column: 1 / -1; width: 100%; margin-top: 12px; }
  .button--form svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; }
  .form-note, .form-status { margin-top: 14px; font-size: .7rem; opacity: .62; }
  .form-status { min-height: 18px; color: #7f2733; opacity: 1; }

  .instagram-collage { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(220px, 21vw, 320px); overflow: hidden; background: var(--ink); }
  .instagram-collage__photo { display: block; overflow: hidden; color: inherit; }
  .instagram-collage__photo img { width: 100%; height: 100%; object-fit: cover; }
  .instagram-collage__photo:nth-child(1) img { object-position: center 28%; }
  .instagram-collage__photo:nth-child(2) img { object-position: center 42%; }
  .instagram-collage__photo:nth-child(4) img { object-position: center 36%; }
  .instagram-collage__photo:nth-child(7) img { object-position: center 36%; }
  .instagram-collage__card {
    position: absolute; top: 50%; left: 50%; z-index: 2; min-width: min(340px, 76vw); padding: 24px 30px;
    transform: translate(-50%, -50%); color: var(--paper); background: var(--wine); text-align: center;
  }
  .instagram-collage__card h2 { margin-bottom: 14px; font-size: clamp(2.4rem, 4.2vw, 4.6rem); letter-spacing: -.04em; }
  .instagram-collage__card a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 0 7px; border-bottom: 1px solid rgba(239,231,218,.72); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
  .instagram-collage__card a:hover { border-bottom-color: var(--paper); }

  .site-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 38px var(--gutter); color: var(--paper); background: var(--ink); border-top: 1px solid rgba(239,231,218,.18); }
  .site-footer p { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
  .site-footer__meta { display: grid; justify-items: end; gap: 8px; }
  .site-footer__meta > div { display: flex; gap: 18px; }
  .site-footer__meta a, .site-footer__meta button { padding: 0; color: rgba(239,231,218,.72); background: transparent; border: 0; font-size: .64rem; text-decoration: underline; text-underline-offset: 3px; }
  .wordmark--footer span { font-size: 1.65rem; }
  .mobile-cta { display: none; }
  .whatsapp-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 49;
    display: grid; place-items: center; width: 60px; height: 60px;
    background: #25d366; border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
    box-shadow: 0 12px 34px rgba(29,26,23,.28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .whatsapp-fab img { display: block; width: 29px; height: 29px; }
  .whatsapp-fab:hover { background: #1fbd5a; box-shadow: 0 15px 38px rgba(29,26,23,.34); transform: translateY(-2px); }
  .whatsapp-fab:active { transform: scale(.97); }
  .whatsapp-fab:focus-visible { outline: 3px solid var(--paper); outline-offset: 3px; }
  .tracking-consent {
    position: fixed; left: 18px; bottom: 18px; z-index: 70; width: min(420px, calc(100vw - 36px)); padding: 22px;
    color: var(--paper); background: var(--wine); border: 1px solid rgba(239,231,218,.45); box-shadow: 0 18px 60px rgba(29,26,23,.32);
  }
  .tracking-consent[hidden] { display: none; }
  .tracking-consent h2 { margin-bottom: 10px; font-size: 1.8rem; }
  .tracking-consent p { font-size: .78rem; line-height: 1.5; opacity: .88; }
  .tracking-consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
  .tracking-consent__actions button { min-height: 44px; padding: 10px 12px; color: var(--paper); background: transparent; border: 1px solid rgba(239,231,218,.65); font-size: .66rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
  .tracking-consent__actions button:last-child { color: var(--wine); background: var(--paper); }
  .tracking-consent > a { display: inline-block; margin-top: 12px; color: rgba(239,231,218,.78); font-size: .68rem; }
  .is-consent-open .whatsapp-fab, .is-consent-open .mobile-cta { opacity: 0; pointer-events: none; }

  .legal-page { min-height: 100dvh; }
  .legal-page__content { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: clamp(48px, 8vw, 96px) 0; }
  .legal-page__back { display: inline-block; margin-bottom: 58px; font-size: .76rem; font-weight: 600; text-transform: uppercase; }
  .legal-page h1 { margin: 18px 0 12px; font-size: clamp(3.7rem, 9vw, 7rem); letter-spacing: -.045em; }
  .legal-page__updated { margin-bottom: 52px; color: rgba(29,26,23,.62); font-size: .78rem; }
  .legal-page h2 { margin: 42px 0 12px; font-size: clamp(1.9rem, 4vw, 2.8rem); }
  .legal-page p { max-width: 680px; margin-bottom: 14px; }
}

@layer components {
  .button {
    display: inline-flex; justify-content: center; align-items: center; gap: 14px; width: max-content;
    min-height: 52px; padding: 14px 22px; color: var(--ink); background: var(--paper);
    border: 1px solid var(--paper); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
  }
  .button[hidden] { display: none; }
  .button:hover { color: var(--paper); background: transparent; }
  .button--small { min-height: 40px; padding: 10px 16px; font-size: .65rem; }
  .button--dark { color: var(--paper); background: transparent; }
  .button--dark:hover { color: var(--ink); background: var(--paper); }
  .inquiry .quiz-next, .button--form { color: var(--paper); background: var(--wine); border-color: var(--wine); }
  .inquiry .quiz-next:hover, .button--form:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }

  .photo-lightbox {
    width: 100vw; max-width: none; height: 100dvh; max-height: none; padding: 0;
    color: var(--paper); background: rgba(22, 15, 13, .96); border: 0;
  }
  .photo-lightbox[open] { display: grid; place-items: center; }
  .photo-lightbox::backdrop { background: rgba(10, 7, 6, .82); backdrop-filter: blur(6px); }
  .photo-lightbox__figure { display: grid; place-items: center; width: 100%; height: 100%; padding: 64px 24px 30px; }
  .photo-lightbox__figure img { max-width: min(92vw, 1500px); max-height: 82dvh; object-fit: contain; box-shadow: 0 22px 80px rgba(0,0,0,.35); }
  .photo-lightbox__figure figcaption { margin-top: 12px; font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
  .photo-lightbox__close {
    position: fixed; top: 18px; right: 18px; z-index: 2; padding: 10px 14px;
    color: var(--paper); background: transparent; border: 1px solid rgba(255,255,255,.7);
    font: inherit; font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  }
  .text-link { width: max-content; margin-top: 30px; padding: 8px 0; background: transparent; border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
  .text-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
  .text-link:hover span { transform: translate(3px, 3px); }

  .marquee { width: 100%; overflow: hidden; }
  .marquee + .marquee { margin-top: 18px; }
  .marquee__track { display: flex; width: max-content; animation: scroll-left 42s linear infinite; will-change: transform; }
  .marquee--right .marquee__track { animation-name: scroll-right; animation-duration: 48s; }
  .marquee__group { display: flex; flex-shrink: 0; gap: 18px; padding-right: 18px; }
  .frame { position: relative; flex: 0 0 auto; height: clamp(230px, 24vw, 340px); overflow: hidden; background: var(--paper-2); }
  .frame--portrait { width: clamp(165px, 18vw, 240px); }
  .frame--landscape { width: clamp(270px, 31vw, 430px); }
  .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
  .frame:hover img { transform: scale(1.025); }
  .hero__marquee .frame { height: clamp(150px, 20vh, 190px); }
  .hero__marquee .frame--portrait { width: clamp(108px, 13vw, 144px); }
  .hero__marquee .frame--landscape { width: clamp(196px, 23vw, 270px); }
  .is-marquee-paused .marquee__track { animation-play-state: paused; }
  @keyframes scroll-left { to { transform: translateX(-50%); } }
  @keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
}

@layer responsive {
  @media (max-width: 900px) {
    .hero h1 { font-size: clamp(3.8rem, 9vw, 6.2rem); }
    .manifesto { grid-template-columns: 1fr 4fr; }
    .manifesto > p:last-child { grid-column: 2; }
    .about__copy { width: 70%; padding: 50px 0 50px 7vw; }
    .process, .faq { gap: 55px; }
    .site-footer { grid-template-columns: 1fr; }
    .site-footer__meta > p { display: none; }
  }

  @media (max-width: 760px) {
    body { padding-bottom: 68px; }
    .wordmark span { font-size: 1.7rem; }
    .hero {
      min-height: clamp(620px, 82dvh, 690px);
    }
    .hero::after {
      background:
        linear-gradient(90deg, rgba(29,26,23,.72), rgba(75,23,30,.32) 50%, rgba(29,26,23,.72)),
        linear-gradient(180deg, rgba(29,26,23,.34), rgba(29,26,23,.12) 45%, rgba(29,26,23,.52));
    }
    .hero__portrait { inset: 14% 0; }
    .hero__portrait img { object-position: center 40%; opacity: .84; }
    .hero__center {
      width: calc(100% - 24px);
      padding: 12px 12px 16px;
    }
    .hero__center .eyebrow {
      max-width: 310px;
      font-size: .58rem;
      line-height: 1.45;
    }
    .hero h1 {
      max-width: 100%;
      margin: 16px 0 18px;
      font-size: clamp(2.8rem, 11.5vw, 3.4rem);
      line-height: .98;
    }
    .hero__dek { max-width: 350px; font-size: .94rem; }
    .hero__center .button { width: min(100%, 320px); margin-top: 22px; }
    .hero__marquee { padding: 6px 0; }
    .hero__marquee .marquee__group { gap: 7px; padding-right: 7px; }
    .hero__marquee .frame { height: 116px; }
    .hero__marquee .frame--portrait { width: 84px; }
    .hero__marquee .frame--landscape { width: 154px; }

    .manifesto { display: block; padding-block: 90px; }
    .manifesto h2 { margin: 24px 0 30px; font-size: 2.8rem; }
    .section-head { align-items: center; margin-bottom: 28px; }
    .section-head h2 { font-size: 3.8rem; }
    .frame { height: 250px; }
    .frame--portrait { width: 172px; }
    .frame--landscape { width: 290px; }

    .gallery-showcase { padding: 32px 0 56px; }
    .gallery-showcase__intro { margin-bottom: 38px; }
    .gallery-showcase__intro h2 { font-size: 3.45rem; }
    .gallery-block + .gallery-block { margin-top: 86px; }
    .gallery-block__head { margin-bottom: 28px; }
    .gallery-block__head h3 { font-size: clamp(3rem, 14vw, 3.5rem); }
    .gallery-block__head p { max-width: 310px; font-size: .82rem; }
    .gallery-nav button { width: 44px; height: 44px; }
    .gallery-stage { height: 510px; }
    .gallery-card { height: 480px; }
    .gallery-card--portrait { width: min(74vw, 315px); }
    .gallery-card--wide { width: min(88vw, 430px); }
    .gallery-card.is-before { transform: translateX(calc(-50% - 39vw)) rotateY(18deg) scale(.68); }
    .gallery-card.is-after { transform: translateX(calc(-50% + 39vw)) rotateY(-18deg) scale(.68); }
    .gallery-nav { gap: 7px; }

    .gallery-count { min-width: 62px; font-size: .62rem; }

    .about { min-height: 560px; }
    .about__portrait {
      width: 100%;
      height: 650px;
      background-size: auto 136%;
      background-position: 24% 100%;
    }
    .about__portrait::after { background: linear-gradient(0deg, var(--wine) 0%, rgba(75,23,30,.96) 24%, rgba(75,23,30,.7) 48%, rgba(75,23,30,.08) 74%), linear-gradient(90deg, rgba(75,23,30,.7) 0%, transparent 70%); }
    .about__copy { justify-content: flex-end; min-height: 560px; width: 100%; padding: 165px var(--gutter) 20px; }
    .about__copy h2 { font-size: 3.65rem; }
    .about__copy > p:not(.eyebrow) { max-width: 345px; font-size: .92rem; }
    .about__copy .button { width: 100%; }

    .process { display: block; }
    .process { padding-block: 62px 52px; }
    .process__title { margin-bottom: 40px; }
    .process__title h2 { font-size: 4.3rem; }

    .inquiry { display: block; padding-block: 58px 72px; }
    .inquiry__aside { margin-bottom: 28px; }
    .inquiry__aside h2 { margin: 14px 0 16px; font-size: clamp(2.25rem, 9vw, 2.75rem); line-height: 1.04; }
    .inquiry__aside > p:not(.eyebrow) { font-size: .86rem; }

    .inquiry-form { display: block; }
    .quiz-progress { margin-bottom: 28px; }
    .quiz-step { min-height: 0; }
    .quiz-step h3 { margin-bottom: 24px; font-size: 2.65rem; }
    .choice-grid { grid-template-columns: 1fr; gap: 8px; }
    .choice-card--wide { grid-column: auto; }
    .choice-card span { min-height: 54px; }
    .field { margin-bottom: 22px; }
    .quiz-actions { margin-top: 10px; }
    .button--form { width: 100%; margin-top: 10px; }
    .form-note { margin-top: 14px; }

    .instagram-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 205px; }
    .instagram-collage__card { min-width: min(320px, calc(100vw - 36px)); padding: 20px 24px; }
    .instagram-collage__card h2 { font-size: 3rem; }
    .site-footer { display: flex; align-items: flex-start; flex-direction: column; padding: 34px var(--gutter); }
    .site-footer__meta { justify-items: start; }
    .tracking-consent { right: 10px; bottom: 80px; left: 10px; width: auto; }
    .tracking-consent__actions { grid-template-columns: 1fr; }
    .mobile-cta {
      position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 50;
      display: block; min-height: 48px; padding: 12px 18px;
      color: var(--paper); background: var(--wine); border: 1px solid rgba(239,231,218,.55);
      box-shadow: 0 10px 30px rgba(29,26,23,.25);
      font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
      transition: opacity .2s ease, transform .2s ease;
    }
    .mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
    .whatsapp-fab { right: 14px; bottom: 16px; width: 54px; height: 54px; transition: bottom .2s ease, opacity .2s ease, transform .2s ease; }
    .is-mobile-cta-visible .whatsapp-fab { bottom: 88px; }
    .is-form-reached .whatsapp-fab { opacity: 0; pointer-events: none; transform: translateY(12px); }
    .whatsapp-fab img { width: 27px; height: 27px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .marquee__track { animation: none !important; }
  }
}
