/* ─── Heera Mahal — pre-launch site ─── */

/* Fonts (self-hosted, SIL OFL) */
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('/fonts/EBGaramond-400-Italic.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('/fonts/EBGaramond-500-Italic.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/EBGaramond-400.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/EBGaramond-500.woff2') format('woff2'); }
@font-face { font-family: 'Italiana'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/Italiana-400.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/Jost-300.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/Jost-400.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/Jost-500.woff2') format('woff2'); }

:root {
  --ivory: #F1EFEB;
  --white: #FFFFFF;
  --card: #FBFAF8;
  --ink: #2B2926;
  --ink-soft: #4A453F;
  --muted: #6E6A64;
  --hairline: #DDD7CF;
  --blush: #DAC6BE;
  --accent: #B5988C;
  --quiet: #A8A29A;
  --quiet2: #B7B1A8;
  --note: #9A6A50;
  --fine: #8A857D;
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --display: 'Italiana', var(--serif);
  --sans: 'Jost', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { overflow-x: clip; }
html, body { margin: 0; padding: 0; background: var(--ivory); }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}
body.menu-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }

@keyframes hm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hm-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Shared bits ─── */
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-indent: 0.32em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--ink { color: var(--ink); }

.btn {
  display: inline-block; padding: 16px 30px; border: 1px solid var(--ink);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-indent: 0.24em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background 300ms, color 300ms;
}
.btn--115 { font-size: 11.5px; }
.btn--lg { padding: 17px 34px; }
.btn--filled { background: var(--ink); color: var(--ivory); }
.btn--filled:hover { background: transparent; color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--ivory); }
.btn__lead {
  font-family: var(--serif); font-style: italic;
  text-transform: none; letter-spacing: 0.02em; font-size: 14px;
}

.textlink {
  color: var(--ink); font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.24em; text-indent: 0.24em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 5px;
  transition: opacity 300ms;
}
.textlink:hover { opacity: 0.65; }
.textlink__lead {
  font-family: var(--serif); font-style: italic;
  text-transform: none; letter-spacing: 0.02em; font-size: 14px;
}

.arch-wrap { display: flex; justify-content: center; }
.arch {
  width: min(100%, 420px); aspect-ratio: 5/6;
  border-radius: 999px 999px 999px 999px / 46% 46% 46% 46%;
  overflow: hidden; background: #E4E0D8;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Header ─── */
.hm-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--hairline); background: var(--ivory);
}
.hm-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.hm-brand svg { flex: none; }
.hm-wordmark {
  font-family: var(--display); font-size: clamp(15px, 4.2vw, 19px);
  letter-spacing: 0.2em; text-indent: 0.2em;
}
.hm-nav {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 30px);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
}
.hm-nav__link {
  color: var(--ink); text-decoration: none; padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.hm-nav__link:hover, .hm-nav__link.is-active { border-bottom: 1px solid var(--accent); }
.hm-nav__cta {
  color: var(--ink); text-decoration: none; border: 1px solid var(--ink);
  padding: 11px 20px; transition: background 300ms, color 300ms;
}
.hm-nav__cta:hover, .hm-nav__cta.is-active { background: var(--ink); color: var(--ivory); }
.hm-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  width: 44px; height: 44px; background: none; border: 1px solid var(--hairline);
  cursor: pointer; padding: 0;
}
.hm-burger span { width: 18px; height: 1px; background: var(--ink); display: block; }

/* ─── Mobile menu ─── */
.hm-menu {
  position: fixed; inset: 0; z-index: 100; background: var(--ivory);
  display: none; flex-direction: column; padding: 12px 20px 28px; overflow: auto;
}
.hm-menu.is-open { display: flex; }
.hm-menu__top { display: flex; justify-content: space-between; align-items: center; }
.hm-menu__brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.hm-menu__brand span { font-family: var(--display); font-size: 16px; letter-spacing: 0.2em; text-indent: 0.2em; }
.hm-menu__close {
  width: 44px; height: 44px; background: none; border: 1px solid var(--hairline);
  cursor: pointer; font-family: var(--serif); font-size: 24px; line-height: 1;
  color: var(--ink); padding: 0;
}
.hm-menu__nav { display: flex; flex-direction: column; margin-top: 44px; }
.hm-menu__nav a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 2px; border-top: 1px solid var(--hairline); text-decoration: none;
}
.hm-menu__nav a:last-child { border-bottom: 1px solid var(--hairline); }
.hm-menu__name { font-family: var(--serif); font-size: 29px; color: var(--ink); }
.hm-menu__num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--quiet); }
.hm-menu__nav a.is-active .hm-menu__name { font-style: italic; color: var(--accent); }
.hm-menu__nav a.is-active .hm-menu__num { color: var(--accent); }
.hm-menu__cta {
  margin-top: auto; display: block; text-align: center; padding: 18px 24px;
  background: var(--ink); color: var(--ivory);
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.24em; text-indent: 0.24em; text-transform: uppercase; text-decoration: none;
}
.hm-menu__note {
  margin: 14px 0 0; text-align: center; font-family: var(--serif);
  font-style: italic; font-size: 15px; color: var(--muted);
}

@media (max-width: 760px) {
  .hm-nav { display: none; }
  .hm-burger { display: flex; }
}

/* ─── Footer ─── */
.hm-footer {
  background: var(--ink); color: var(--ivory); text-align: center;
  padding: clamp(72px, 11vw, 110px) 24px clamp(40px, 6vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 26px; overflow: hidden;
}
.hm-footer__wordmark {
  font-family: var(--display); font-weight: 400; font-size: clamp(40px, 9vw, 120px);
  line-height: 1; letter-spacing: 0.06em; white-space: nowrap; color: var(--ivory);
}
.hm-footer__tag { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--quiet2); }
.hm-footer__nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
}
.hm-footer__nav a { color: var(--ivory); text-decoration: none; transition: opacity 300ms; }
.hm-footer__nav a:hover { opacity: 0.65; }
.hm-footer__wa {
  color: var(--ivory); font-family: var(--sans); font-size: 10.5px;
  letter-spacing: 0.24em; text-indent: 0.24em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 5px; transition: opacity 300ms;
}
.hm-footer__wa:hover { opacity: 0.7; }
.hm-footer__fine {
  margin: 14px 0 0; font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--fine);
}

/* ─── Home · hero ─── */
.hero { position: relative; }
.hero__media { position: relative; width: 100%; height: clamp(440px, 62vh, 660px); background: #3A3733; }
.hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(1);
}
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(43,41,38,0.18) 0%, rgba(43,41,38,0) 30%, rgba(43,41,38,0) 62%, rgba(43,41,38,0.22) 100%);
}
.hero__titlewrap {
  position: absolute; left: 0; right: 0; bottom: -0.16em; z-index: 2; pointer-events: none;
  animation: hm-rise 1100ms ease-out both; animation-delay: 150ms;
}
.hero__title {
  font-family: var(--display); font-weight: 400; text-align: center; color: #FFFFFF;
  font-size: clamp(42px, 10.5vw, 160px); line-height: 1; letter-spacing: 0.06em;
  white-space: nowrap; text-shadow: 0 2px 28px rgba(43,41,38,0.25);
}

/* ─── Home · marquee ─── */
.marquee { background: var(--ink); color: var(--ivory); padding: 14px 0; overflow: hidden; }
.marquee__track { display: inline-flex; align-items: center; animation: hm-marquee 42s linear infinite; will-change: transform; }
.marquee__item {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; padding: 0 28px; white-space: nowrap;
}
.marquee__diamond { font-size: 8px; opacity: 0.55; align-self: center; }

/* ─── Home · statement ─── */
.statement {
  max-width: 760px; margin: 0 auto;
  padding: clamp(90px, 14vw, 150px) 24px clamp(64px, 9vw, 96px);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.statement h2 { font-size: clamp(30px, 5.8vw, 52px); line-height: 1.25; text-wrap: balance; }
.statement p { max-width: 560px; font-size: clamp(17px, 2.4vw, 19px); line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.statement .btn { margin-top: 8px; }

/* ─── Home · credibility ─── */
.cred {
  max-width: 1060px; margin: 0 auto; padding: 0 24px clamp(88px, 13vw, 140px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0;
  border-top: 1px solid var(--hairline);
}
.cred__cell {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; padding: 36px 20px 0;
}
.cred__cell + .cred__cell { border-left: 1px solid var(--hairline); }
.cred__title { font-family: var(--serif); font-size: 19px; }
.cred__cell p { font-size: 14px; line-height: 1.65; color: var(--muted); }
@media (max-width: 760px) {
  .cred { grid-template-columns: 1fr; }
  .cred__cell + .cred__cell { border-left: none; border-top: 1px solid var(--hairline); margin-top: 32px; }
}

/* ─── Home · first look ─── */
.firstlook {
  background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: clamp(88px, 13vw, 140px) 24px;
}
.firstlook__inner { max-width: 1060px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(40px, 6vw, 64px); }
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.section-head h2 { font-size: clamp(28px, 5vw, 44px); line-height: 1.25; text-wrap: balance; }
.section-head p { max-width: 520px; font-size: 16.5px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(20px, 3.5vw, 36px); }
.pcard { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pcard__media { width: 100%; aspect-ratio: 4/5; background: var(--ivory); overflow: hidden; transition: transform 400ms ease; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.pcard__media:hover { transform: translateY(-4px); }
.pcard__media:hover img { transform: scale(1.03); }
.pcard figcaption { display: flex; align-items: baseline; gap: 12px; }
.pcard__num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; color: var(--accent); }
.pcard__name { font-family: var(--serif); font-style: italic; font-size: 16.5px; }
.center-row { display: flex; justify-content: center; }

/* ─── Home · prize band ─── */
.prize { background: var(--blush); padding: clamp(88px, 13vw, 140px) 24px; }
.prize__grid {
  max-width: 1000px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px); align-items: center;
}
.prize__text { display: flex; flex-direction: column; gap: 22px; }
.prize__text h2 { font-size: clamp(28px, 5vw, 44px); line-height: 1.3; text-wrap: balance; }
.prize__text > p { max-width: 460px; font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); text-wrap: pretty; }
.prize__rows { display: flex; flex-direction: column; gap: 12px; margin-top: 2px; }
.prize__row { display: flex; align-items: center; gap: 14px; }
.prize__row-num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-soft); }
.prize__row-rule { width: 26px; height: 1px; background: var(--ink-soft); flex: none; }
.prize__row-text { font-size: 16px; }
.prize__text .btn { margin-top: 6px; align-self: flex-start; }
.voucher-wrap { display: flex; justify-content: center; }
.voucher {
  width: min(100%, 380px); background: var(--card); border: 1px solid var(--ink);
  padding: 34px 30px; display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; box-shadow: 8px 8px 0 rgba(43,41,38,0.12);
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.voucher:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 rgba(43,41,38,0.14); }
.voucher__label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-indent: 0.3em; text-transform: uppercase; color: var(--muted);
}
.voucher__amount { font-family: var(--display); font-size: clamp(52px, 9vw, 72px); line-height: 1; color: var(--ink); }
.voucher__divider { width: 100%; border-top: 1px dashed var(--quiet2); margin: 4px 0; }
.voucher__lines {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}

/* ─── Home · about teaser ─── */
.teaser {
  max-width: 1120px; margin: 0 auto; padding: clamp(88px, 13vw, 140px) 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.teaser__text { display: flex; flex-direction: column; gap: 20px; max-width: 480px; }
.teaser__text h2 { font-size: clamp(28px, 4.5vw, 40px); line-height: 1.25; text-wrap: balance; }
.teaser__text p { font-size: 16.5px; line-height: 1.8; color: var(--muted); text-wrap: pretty; }
.teaser__text .textlink { align-self: flex-start; }

/* ─── Home · FAQ ─── */
.faq { background: var(--white); border-top: 1px solid var(--hairline); padding: clamp(72px, 11vw, 110px) 24px; }
.faq__inner { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(28px, 4vw, 40px); }
.faq__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.faq__head h2 { font-size: clamp(26px, 4.8vw, 40px); line-height: 1.25; }
.faq__list { display: flex; flex-direction: column; }
.faq__list details { border-top: 1px solid var(--hairline); padding: 4px 0; }
.faq__list details:last-child { border-bottom: 1px solid var(--hairline); }
.faq__list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 2px; font-family: var(--serif); font-size: 18px;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__plus { font-family: var(--sans); font-size: 14px; color: var(--accent); flex: none; }
.faq__list details p { padding: 0 2px 20px; font-size: 15.5px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }

/* ─── Home · final CTA ─── */
.final { background: var(--ivory); padding: clamp(80px, 12vw, 120px) 24px; text-align: center; }
.final__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.final__inner h2 { font-size: clamp(28px, 5.2vw, 44px); line-height: 1.25; text-wrap: balance; }
.final__inner .btn { margin-top: 4px; }
.final__note { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--muted); }

/* ─── Collection ─── */
.page-intro {
  max-width: 760px; margin: 0 auto;
  padding: clamp(72px, 11vw, 120px) 24px clamp(56px, 8vw, 80px);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.page-intro h1 { font-size: clamp(32px, 6vw, 54px); line-height: 1.2; text-wrap: balance; }
.page-intro p { max-width: 540px; font-size: 17px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }

.products { max-width: 1120px; margin: 0 auto; padding: 0 24px clamp(88px, 13vw, 140px); }
.products__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
}
.prod { margin: 0; display: flex; flex-direction: column; gap: 0; background: var(--white); border: 1px solid var(--hairline); }
.prod__media { position: relative; width: 100%; aspect-ratio: 4/5; background: var(--card); overflow: hidden; }
.prod__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.prod__media:hover img { transform: scale(1.03); }
.tag {
  position: absolute; top: 14px; left: 14px; border: 1px solid;
  font-family: var(--sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.22em; text-indent: 0.22em; text-transform: uppercase;
  padding: 7px 12px; pointer-events: none;
}
.tag--design { background: var(--card); color: var(--ink); border-color: var(--hairline); }
.tag--pre { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.tag--soon { background: var(--blush); color: var(--ink); border-color: var(--blush); }
.prod figcaption { display: flex; flex-direction: column; gap: 10px; padding: 20px 20px 22px; border-top: 1px solid var(--hairline); }
.prod__titlerow { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.prod__name { font-family: var(--serif); font-size: 19px; }
.prod__num { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.prod__note { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted); }
.prod__cta {
  margin-top: 4px; align-self: flex-start; color: var(--ink);
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em; text-indent: 0.22em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding: 12px 0 6px; transition: opacity 300ms;
}
.prod__cta:hover { opacity: 0.6; }

.band-blush { background: var(--blush); padding: clamp(72px, 11vw, 110px) 24px; text-align: center; }
.band-blush__inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.band-blush__inner h2 { font-size: clamp(26px, 4.8vw, 40px); line-height: 1.3; text-wrap: balance; }
.band-blush__inner p { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); text-wrap: pretty; }
.band-blush__inner .btn { margin-top: 4px; }
.maxw-480 { max-width: 480px; }
.maxw-460 { max-width: 460px; }

/* ─── About ─── */
.about-head {
  max-width: 760px; margin: 0 auto;
  padding: clamp(72px, 11vw, 120px) 24px clamp(56px, 8vw, 88px);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.about-head h1 { font-size: clamp(32px, 6vw, 54px); line-height: 1.2; text-wrap: balance; }
.story {
  max-width: 1120px; margin: 0 auto; padding: 0 24px clamp(88px, 13vw, 140px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.story__text { display: flex; flex-direction: column; gap: 20px; max-width: 500px; }
.story__text p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); text-wrap: pretty; }
.story__text strong { font-weight: 500; }
.story__closer { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--muted) !important; }
.principles {
  background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: clamp(72px, 11vw, 110px) 24px;
}
.principles__grid {
  max-width: 1060px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(32px, 5vw, 56px);
}
.principle { display: flex; flex-direction: column; gap: 14px; }
.principle__title { font-family: var(--serif); font-size: 21px; }
.principle p { font-size: 15px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }

/* ─── Survey ─── */
.survey-hero { background: var(--blush); padding: clamp(56px, 9vw, 88px) 24px; text-align: center; }
.survey-hero__inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.survey-hero h1 { font-size: clamp(30px, 5.5vw, 48px); line-height: 1.25; text-wrap: balance; }
.survey-hero p { max-width: 500px; font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); text-wrap: pretty; }
.survey-hero strong { font-weight: 500; }

.designs-strip { max-width: 720px; margin: 0 auto; padding: clamp(48px, 7vw, 72px) 24px 0; }
.designs-strip__inner { display: flex; flex-direction: column; gap: 18px; }
.designs-strip__caption { text-align: center; font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--muted); }
.designs-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.thumb { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.thumb__media { width: 100%; aspect-ratio: 4/5; background: var(--white); border: 1px solid var(--hairline); overflow: hidden; }
.thumb__media img { width: 100%; height: 100%; object-fit: cover; }
.thumb figcaption { display: flex; align-items: baseline; gap: 8px; justify-content: center; }
.thumb__num { font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); }
.thumb__name { font-family: var(--serif); font-style: italic; font-size: 14px; }

.survey-wrap { max-width: 720px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) 24px 0; }
.panel { background: var(--white); border: 1px solid var(--hairline); padding: clamp(36px, 7vw, 60px) clamp(24px, 5.5vw, 56px); }

.hm-form { display: flex; flex-direction: column; gap: 30px; }
.progress { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.progress__title { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--muted); }
.progress__dots { display: flex; align-items: center; gap: 12px; }
.progress .dot {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em;
  color: var(--quiet2); font-weight: 300; transition: color 300ms;
}
.progress .dot.is-active { color: var(--ink); font-weight: 500; }
.progress .rule { width: 26px; height: 1px; background: var(--hairline); display: inline-block; transition: background 300ms; }
.progress .rule.is-done { background: var(--ink); }

.step { display: none; flex-direction: column; gap: 20px; }
.step.is-active { display: flex; }
.step--roomy { gap: 26px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field--group { gap: 12px; }
.field__label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-indent: 0.22em; text-transform: uppercase; color: var(--muted);
}
.field__label .optional {
  text-transform: none; letter-spacing: 0.04em;
  font-family: var(--serif); font-style: italic; font-size: 13px;
}
input, select, textarea, button { font-family: inherit; }
.field input, .field select, .field textarea {
  padding: 15px 16px; border: 1px solid var(--hairline); background: var(--card);
  font-size: 17px; font-family: var(--serif); color: var(--ink); width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
::placeholder { color: var(--quiet); opacity: 1; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6"><path d="M0 0l5 6 5-6z" fill="%236E6A64"/></svg>');
  background-repeat: no-repeat; background-position: right 16px center;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips--center { justify-content: center; }
.chip {
  padding: 12px 20px; border: 1px solid var(--hairline); background: var(--white); color: var(--ink);
  font-family: var(--serif); font-size: 15.5px; cursor: pointer; min-height: 44px;
  transition: background 250ms, color 250ms, border-color 250ms;
}
.chip.is-selected { border-color: var(--ink); background: var(--ink); color: var(--ivory); }

.step4-head { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.step4-head .field__label { text-indent: 0; }
.step4-head__sub { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--muted); }
.nri-note { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--muted); }

.form-foot { display: flex; flex-direction: column; gap: 18px; }
.form-note { text-align: center; font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--note); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-actions .next-btn { margin-left: auto; }
.back-btn {
  padding: 12px 4px; background: none; border: none; color: var(--muted);
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em; text-indent: 0.22em;
  text-transform: uppercase; cursor: pointer; min-height: 44px; transition: color 300ms;
}
.back-btn:hover { color: var(--ink); }
.back-btn[hidden] { display: none; }
.form-privacy { text-align: center; font-family: var(--serif); font-style: italic; font-size: 14.5px; color: var(--muted); }

.thanks { display: none; flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 14px 0; }
.thanks.is-visible { display: flex; }
.thanks__eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-indent: 0.3em; text-transform: uppercase; color: var(--accent);
}
.thanks h3 { font-size: clamp(30px, 6vw, 42px); line-height: 1.2; }
.thanks__copy { max-width: 440px; font-size: 16px; line-height: 1.75; color: var(--muted); text-wrap: pretty; }
.thanks__wa { margin-top: 6px; }
.thanks__browse {
  color: var(--ink); font-family: var(--sans); font-size: 10.5px;
  letter-spacing: 0.22em; text-indent: 0.22em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 4px; transition: opacity 300ms;
}
.thanks__browse:hover { opacity: 0.6; }
.thanks__note { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--muted); }

.survey-footer-gap { margin-top: clamp(72px, 11vw, 110px); }

/* ─── Motion prefs ─── */
@media (prefers-reduced-motion: reduce) {
  .hero__titlewrap { animation: none; }
  .marquee__track { animation-play-state: paused; }
}
