
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/fraunces-400-600.woff2) format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/ibm-plex-mono-400.woff2) format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/ibm-plex-mono-500.woff2) format('woff2');
}

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/fonts/ibm-plex-sans-400-600.woff2) format('woff2');
}



:root {

  --paper: #F7F4ED;
  --paper-2: #EFEAE0;
  --paper-3: #E5DFD1;
  --white: #FFFFFF;


  --ink: #171512;
  --ink-2: #514C44;

  --ink-3: #635C52;
  --rule: #DCD5C7;
  --rule-2: #C9C0AE;


  --sindoor: #A8322B;
  --sindoor-deep: #8A2621;
  --sindoor-wash: #F5E7E3;
  --gold: #8A6C2B;

  --gold-ink: #7C6023;

  --gold-2: #C6A85E;
  --gold-wash: #F7EFDC;
  --indigo: #1E3A5F;


  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  --font-script: 'Noto Sans Bengali', 'Noto Sans Devanagari', 'Noto Sans Gurmukhi',
    'Noto Sans Tamil', 'Noto Sans Telugu', 'Noto Nastaliq Urdu',
    'Nirmala UI', 'Vrinda', 'Segoe UI', system-ui, sans-serif;

  --fs-display: clamp(2.9rem, 6.2vw, 4.75rem);
  --fs-h1: clamp(2.05rem, 4.2vw, 3.15rem);
  --fs-h2: clamp(1.55rem, 2.9vw, 2.32rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-label: 0.6875rem;

  --lh-tight: 1.04;
  --lh-snug: 1.3;
  --lh-body: 1.62;


  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  --gutter: clamp(1.15rem, 3vw, 2rem);
  --wrap: 1360px;

  --wrap-narrow: 610px;


  --radius: 3px;
  --radius-lg: 6px;
  --radius-phone: 26px;

  --radius-btn: 10px;
  --radius-card: 12px;


  --rule-soft: #E2DACB;
  --card-lip: inset 0 1px 0 var(--white);

  --card-face: linear-gradient(180deg, var(--white), #FBF8F1);


  --btn-face: linear-gradient(#BC3B31, #A02D26 56%, #8F2620);

  --btn-face-quiet: linear-gradient(var(--white), #F1ECE1);
  --btn-edge: #CFC6B4;
  --btn-lift-quiet:
    inset 0 1px 0 var(--white),
    0 1px 2px rgba(23, 21, 18, .06),
    0 6px 14px -8px rgba(23, 21, 18, .30);
  --btn-lift-loud:
    inset 0 1px 0 rgba(255, 255, 255, .26),
    inset 0 -1px 0 rgba(0, 0, 0, .16),
    0 1px 2px rgba(94, 26, 22, .26),
    0 8px 18px -8px rgba(138, 38, 33, .55);
  --shadow-1: 0 1px 2px rgba(23, 21, 18, .05), 0 6px 16px -8px rgba(23, 21, 18, .14);
  --shadow-2: 0 2px 6px rgba(23, 21, 18, .07), 0 18px 44px -18px rgba(23, 21, 18, .3);
  --shadow-3: 0 30px 70px -24px rgba(23, 21, 18, .42);



  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-fast: .16s;
  --dur: .28s;
  --dur-slow: .42s;

  --header-h: 74px;
}

@media (max-width: 860px) {
  :root { --header-h: 62px; }
}



*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
address { font-style: normal; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 34%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

::selection { background: var(--sindoor); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--sindoor);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: var(--s-3) var(--s-5); border-radius: var(--radius);
  transition: top var(--dur) var(--ease);
}
.skip:focus { top: var(--s-4); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}


html:not(.js) .js-only { display: none !important; }



.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-tight);

  letter-spacing: -.021em;
  font-weight: 400;
}
.h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.1; letter-spacing: -.012em; }
.h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.14; letter-spacing: -.012em; }
.h3 { font-family: var(--font-display); font-size: var(--fs-h3); line-height: 1.25; }

.label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.label--accent { color: var(--sindoor); }
.label--gold { color: var(--gold-ink); }

.code { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .06em; }
.price { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; }

.lede { font-size: clamp(1.075rem, 1.5vw, 1.22rem); line-height: 1.55; color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
.small { font-size: var(--fs-sm); }
.xs { font-size: var(--fs-xs); }

b, strong { font-weight: 600; }

b[lang], .script { font-family: var(--font-script); font-weight: 600; }

hr.rule { border: 0; border-top: 1px solid var(--rule); margin: var(--s-6) 0; }




.js .reveal {
  opacity: 0;
  transform: translateY(15px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease),
    clip-path calc(var(--dur-slow) + .08s) var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
.js .reveal[data-delay="1"] { transition-delay: .06s; }
.js .reveal[data-delay="2"] { transition-delay: .12s; }
.js .reveal[data-delay="3"] { transition-delay: .18s; }
.js .reveal[data-delay="4"] { transition-delay: .24s; }
.js .reveal[data-delay="5"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; clip-path: none; }
}



.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.band { padding-block: clamp(3rem, 7vw, 5.5rem); }
.band--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.band--paper2 { background: var(--paper-2); }
.band--paper3 { background: var(--paper-3); }
.band--ink { background: var(--ink); color: var(--paper); }
.band--ink .label { color: color-mix(in srgb, var(--paper) 62%, transparent); }
.band--ink .muted { color: color-mix(in srgb, var(--paper) 76%, transparent); }
.band--edge { border-top: 1px solid var(--rule); }


.band--deferred { content-visibility: auto; contain-intrinsic-size: auto 720px; }

.band-head { display: flex; align-items: flex-end; gap: var(--s-5); flex-wrap: wrap; margin-bottom: var(--s-6); }
.band-head > :first-child { flex: 1 1 22rem; }

.band-head > :first-child::before {
  content: ""; display: block;
  width: 34px; height: 2px; margin-bottom: 1rem;
  background: var(--sindoor);
}
.band-head__link {
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; padding: 0 1.1rem; border-radius: var(--radius-btn);
  border: 1px solid var(--btn-edge); background: var(--btn-face-quiet);
  box-shadow: var(--btn-lift-quiet);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .09em;
  text-transform: uppercase; white-space: nowrap; text-decoration: none;
}
.band-head__link:hover { border-color: var(--ink); }



.utility {
  background: var(--ink);
  color: color-mix(in srgb, var(--paper) 82%, transparent);
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.utility__in { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: 34px; }
.utility__facts { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.utility__facts span { display: flex; align-items: center; gap: var(--s-2); }
.utility__facts span::before { content: ""; width: 4px; height: 4px; background: var(--sindoor); border-radius: 50%; }
.utility a { text-decoration: none; white-space: nowrap; }
.utility a:hover { color: var(--white); }
@media (max-width: 900px) { .utility__facts span:nth-child(n+2) { display: none; } }




.header {
  position: sticky; top: 0; z-index: 60; isolation: isolate;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  border-bottom: 1px solid var(--rule);
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  backdrop-filter: saturate(160%) blur(14px);
}
.header__in { display: flex; align-items: center; gap: var(--s-5); min-height: var(--header-h); }

.brand { display: flex; align-items: baseline; text-decoration: none; flex: none; }
.brand__mark { font-family: var(--font-display); font-size: 1.34rem; letter-spacing: -.01em; line-height: 1; }
.brand__mark em { font-style: normal; color: var(--sindoor); }

.nav { display: flex; align-items: center; gap: var(--s-5); margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: var(--s-5); }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: var(--fs-sm); font-weight: 500; text-decoration: none;
  padding-block: .4rem; border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__link:hover, .nav__link:focus-visible, .nav__link[aria-current="page"] { border-bottom-color: var(--sindoor); }
.nav__link[aria-current="page"] { color: var(--sindoor); }
.nav__caret { width: 8px; height: 8px; transition: transform var(--dur) var(--ease); }
.nav__item--has-menu[data-open="true"] .nav__caret { transform: rotate(180deg); }

.header__actions { display: flex; align-items: center; gap: var(--s-3); flex: none; }

.saved-link {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .42rem .7rem; border-radius: 100px;
  border: 1px solid var(--rule-2); text-decoration: none;
  font-family: var(--font-mono); font-size: var(--fs-xs); font-variant-numeric: tabular-nums;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.saved-link:hover { border-color: var(--ink); background: var(--white); }
.saved-link svg { width: 14px; height: 14px; stroke: var(--sindoor); fill: var(--sindoor); stroke-width: 1.6; }
.saved-link[hidden] { display: none; }



.nav__item { position: relative; }
.megamenu {
  position: absolute; top: calc(100% + 14px); left: 50%; translate: -50% 0;
  width: min(760px, 88vw);

  max-height: calc(100vh - var(--header-h) - 2.5rem);
  overflow-y: auto;
  background: var(--paper); border: 1px solid var(--rule);
  box-shadow: var(--shadow-2); border-radius: var(--radius-lg);
  padding: var(--s-5); z-index: 70;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__item[data-open="true"] .megamenu { opacity: 1; visibility: visible; transform: none; }
.megamenu__col .label { display: block; margin-bottom: var(--s-3); }
.megamenu__col a { display: block; font-size: var(--fs-sm); text-decoration: none; padding: .28rem 0; color: var(--ink-2); }
.megamenu__col a:hover { color: var(--sindoor); }
.megamenu__foot { grid-column: 1 / -1; border-top: 1px solid var(--rule); padding-top: var(--s-3); display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }



.navtoggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--btn-edge); border-radius: 10px; background: var(--btn-face-quiet); box-shadow: var(--btn-lift-quiet); }
.navtoggle span { display: block; width: 17px; height: 1.5px; background: var(--ink); position: relative; transition: background var(--dur-fast) var(--ease); }
.navtoggle span::before, .navtoggle span::after { content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--ink); transition: transform var(--dur) var(--ease); }
.navtoggle span::before { top: -5.5px; }
.navtoggle span::after { top: 5.5px; }
body.nav-open .navtoggle span { background: transparent; }
body.nav-open .navtoggle span::before { transform: translateY(5.5px) rotate(45deg); }
body.nav-open .navtoggle span::after { transform: translateY(-5.5px) rotate(-45deg); }


@media (max-width: 1140px) {
  .navtoggle { display: inline-flex; order: 3; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
    background: var(--paper); border-top: 1px solid var(--rule);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--s-5) var(--gutter) var(--s-8);
    overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;

    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  }
  body.nav-open .nav { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { font-size: 1.15rem; font-family: var(--font-display); padding: var(--s-4) 0; border-bottom: 1px solid var(--rule); justify-content: space-between; }
  .nav__link:hover, .nav__link[aria-current="page"] { border-bottom-color: var(--rule); }
  .megamenu {
    position: static; width: auto; translate: none; transform: none;
    opacity: 1; visibility: visible; box-shadow: none; border: 0;
    border-bottom: 1px solid var(--rule); border-radius: 0;
    grid-template-columns: 1fr 1fr; padding: var(--s-4) 0 var(--s-5);
    display: none;
  }
  .nav__item[data-open="true"] .megamenu { display: grid; }
  .header__actions .btn--ghost { display: none; }
}




.footer {
  background: #100F0D; color: color-mix(in srgb, var(--paper) 84%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--paper) 10%, transparent);
  padding-block: var(--s-8) var(--s-6);
}
.footer a { text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }

.footer .muted { color: color-mix(in srgb, var(--paper) 66%, transparent); }
.footer .dim { color: color-mix(in srgb, var(--paper) 55%, transparent); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: var(--s-6) var(--s-5); }
@media (max-width: 1100px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .label { display: block; margin-bottom: var(--s-4); color: color-mix(in srgb, var(--paper) 62%, transparent); }
.footer__links li { margin-bottom: .45rem; font-size: var(--fs-sm); }
.footer__brand .brand__mark { color: var(--paper); font-size: 1.5rem; }

.footer__brand .brand__mark em { color: #C9483F; }
.footer__brand p { margin-top: var(--s-3); font-size: var(--fs-sm); max-width: 34ch; }
.footer__social { display: flex; gap: var(--s-3); margin-top: var(--s-4); flex-wrap: wrap; }
.footer__social a { font-size: var(--fs-xs); border: 1px solid color-mix(in srgb, var(--paper) 26%, transparent); padding: .3rem .6rem; border-radius: 100px; }
.footer__social a:hover { border-color: var(--paper); text-decoration: none; }
.footer__base {
  margin-top: var(--s-7); padding-top: var(--s-4);
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .1em; text-transform: uppercase;
  color: color-mix(in srgb, var(--paper) 56%, transparent);
}


.cmyk { display: flex; height: 7px; width: 150px; }
.cmyk i { flex: 1; }
.cmyk i:nth-child(1) { background: #00A0C6; }
.cmyk i:nth-child(2) { background: #BE3A6C; }
.cmyk i:nth-child(3) { background: var(--gold); }
.cmyk i:nth-child(4) { background: var(--sindoor); }
.cmyk i:nth-child(5) { background: var(--rule-2); }



.wa-float {
  position: fixed; right: clamp(.9rem, 3vw, 1.6rem); bottom: clamp(.9rem, 3vw, 1.6rem);
  z-index: 50; display: inline-flex; align-items: center; gap: .5rem;
  background: #128C7E; color: #fff; text-decoration: none;
  padding: .7rem 1rem; border-radius: 100px; box-shadow: var(--shadow-2);
  font-size: var(--fs-sm); font-weight: 500;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.wa-float:hover { background: #0F7A6D; transform: translateY(-2px); }
.wa-float svg { width: 19px; height: 19px; flex: none; }
@media (max-width: 620px) {
  .wa-float__text { display: none; }
  .wa-float { padding: .8rem; }
}

@media (max-width: 940px) {
  body.has-stickybar .wa-float { bottom: calc(72px + clamp(.9rem, 3vw, 1.6rem)); }
}

.footer__legal {
  margin-top: var(--s-7); padding-top: var(--s-4);
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); font-size: var(--fs-sm);
}
.footer__legal + .footer__base { margin-top: var(--s-4); padding-top: var(--s-4); }





.marked,
.estimate,
.tier--featured,
.card--ask,
.startsat,
.drawer__ref,
.grid-empty { position: relative; }

.marked::before,
.estimate::before,
.tier--featured::before,
.card--ask::before,
.startsat::before,
.drawer__ref::before,
.grid-empty::before {
  content: ""; position: absolute; inset: 7px; pointer-events: none;
  border: 1px solid var(--mark-colour, var(--gold));
  opacity: .85;
  --corner: 15px 15px;
  --marks:
    linear-gradient(#000 0 0) top left / var(--corner) no-repeat,
    linear-gradient(#000 0 0) top right / var(--corner) no-repeat,
    linear-gradient(#000 0 0) bottom left / var(--corner) no-repeat,
    linear-gradient(#000 0 0) bottom right / var(--corner) no-repeat;
  -webkit-mask: var(--marks);
  mask: var(--marks);
  transition: inset var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.marked:hover::before,
.card--ask:hover::before,
.tier--featured:hover::before { inset: 4px; opacity: 1; }


.startsat, .grid-empty, .drawer__ref { --mark-colour: var(--rule-2); }
.card--ask { --mark-colour: var(--gold); }




.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.15rem; border-radius: var(--radius-btn);
  font-size: var(--fs-sm); font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap;
  border: 1px solid var(--btn-edge); color: var(--ink); background: transparent;
  box-shadow: var(--btn-lift-quiet);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease),
              filter var(--dur) var(--ease);
}
.btn:focus-visible { border-color: var(--ink); transform: translateY(-2px); }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { border-color: var(--ink); transform: translateY(-2px); }
}

.btn:active { transform: translateY(1px); box-shadow: none; }


@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:focus-visible, .btn:active { transform: none; }
}

.btn--primary {
  background: var(--btn-face);
  border-color: var(--sindoor-deep);
  color: #FFF7F3;
  box-shadow: var(--btn-lift-loud);
}
.btn--primary:hover, .btn--primary:focus-visible {
  color: #FFF7F3; border-color: var(--sindoor-deep); filter: brightness(1.06);
}


.btn--gold {
  background: linear-gradient(color-mix(in srgb, var(--gold) 88%, white), var(--gold) 56%, color-mix(in srgb, var(--gold) 86%, black));
  border-color: color-mix(in srgb, var(--gold) 78%, black);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(0, 0, 0, .16),
    0 1px 2px rgba(70, 54, 20, .24),
    0 8px 18px -8px color-mix(in srgb, var(--gold) 60%, transparent);
}
.btn--gold:hover, .btn--gold:focus-visible { color: var(--white); filter: brightness(1.06); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .42) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .62s var(--ease);
}
.btn--gold:hover::after, .btn--gold:focus-visible::after { transform: translateX(120%); }

.btn--ghost { border-color: var(--btn-edge); background: var(--btn-face-quiet); }
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: var(--ink);
  box-shadow: var(--card-lip), 0 16px 28px -12px rgba(23, 21, 18, .42);
}
.btn--onink { border-color: color-mix(in srgb, var(--paper) 45%, transparent); color: var(--paper); --btn-ink: var(--paper); }
.btn--onink:hover, .btn--onink:focus-visible { color: var(--ink); border-color: var(--paper); }
.btn--sm { min-height: 42px; padding: 0 1.1rem; font-size: .875rem; }
.btn--lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--icon { padding: .78rem; }
.btn svg { width: 15px; height: 15px; flex: none; }

.btn > svg:last-child:not(:first-child) { transition: transform var(--dur) var(--ease); }
.btn:hover > svg:last-child:not(:first-child) { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .btn::before { transform: scaleY(1); opacity: 0; transition: opacity .001ms; }
  .btn:hover::before, .btn:focus-visible::before { opacity: 1; }
  .btn--gold::after { display: none; }
}



.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .34rem .72rem; border-radius: 100px;
  border: 1px solid var(--rule-2); background: var(--white);
  font-size: var(--fs-xs); color: var(--ink-2); text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.chip:active { transform: translateY(1px) scale(.98); }
@media (hover: hover) and (pointer: fine) {
a.chip:hover, button.chip:hover {
  border-color: var(--ink); color: var(--ink);
  transform: translateY(-1px); box-shadow: var(--shadow-1);
}
}
.chip--on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip--on:hover { background: var(--ink); color: var(--paper); }

.chip--proof { background: transparent; border-color: var(--rule-2); }
.chip--proof::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; flex: none;
  background: var(--sindoor);
  box-shadow: 0 0 0 2.5px color-mix(in srgb, var(--sindoor) 16%, transparent);
}
.chip-row { display: flex; flex-wrap: wrap; gap: var(--s-2); }





.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); padding-block: var(--s-4); }

.crumbs a { color: var(--ink-2); text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--ink-2) 34%, transparent); text-underline-offset: 3px; }
.crumbs a:hover { color: var(--sindoor); text-decoration-color: currentColor; }
.crumbs li { display: flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--rule-2); }



.cards { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); }
.cards--4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
@media (max-width: 480px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); } }

.card { position: relative; display: flex; flex-direction: column; gap: .55rem; }

.card__media {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 9 / 16; background: var(--paper-2);
  border: 1px solid var(--rule-soft); border-radius: var(--radius-card);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .55),
    0 2px 4px rgba(23, 21, 18, .05),
    0 12px 26px -16px rgba(23, 21, 18, .38);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .card__media {
    transform: translateY(-3px);
    border-color: var(--rule-2);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, .5),
      0 10px 26px -12px rgba(23, 21, 18, .38);
  }
  .card:hover .card__media img { transform: scale(1.035); }
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.card__badge {
  position: absolute; left: 8px; top: 8px; z-index: 2;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  background: color-mix(in srgb, var(--ink) 88%, transparent); color: var(--paper);
  padding: .22rem .45rem; border-radius: 2px;
}

.card__play {
  position: absolute; inset: auto 9px 9px auto; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 72%, transparent); color: var(--paper);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover .card__play, .card:focus-within .card__play {
  background: var(--ink); transform: scale(1.06);
}
.card__play svg { width: 12px; height: 12px; }
.card__save {
  position: absolute; right: 7px; top: 7px; z-index: 3;

  width: 36px; height: 36px; border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border: 1px solid var(--rule); display: grid; place-items: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.card__save svg { width: 15px; height: 15px; stroke: var(--sindoor); fill: none; stroke-width: 1.7; }
.card__save[aria-pressed="true"] { background: var(--sindoor); border-color: var(--sindoor); }
.card__save[aria-pressed="true"] svg { stroke: var(--white); fill: var(--white); }
.card__save:active { transform: scale(.92); }
@media (hover: hover) and (pointer: fine) {
  .card__save:hover { border-color: var(--ink); }
}

.card__code { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.card__name { font-family: var(--font-display); font-size: 1.06rem; line-height: 1.2; }
.card__name a { text-decoration: none; }
.card__name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card__meta { font-size: var(--fs-xs); color: var(--ink-2); display: flex; flex-wrap: wrap; gap: .3rem .5rem; }
.card__price { font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; padding-top: .5rem; border-top: 1px solid var(--rule-soft); }


.card--ask {
  display: flex; flex-direction: column; justify-content: center; gap: var(--s-3);
  aspect-ratio: 9 / 16; padding: var(--s-5);
  border: 1px dashed var(--rule-2); border-radius: var(--radius-card);
  background: var(--gold-wash); text-align: left;
}
.card--ask .h3 { font-size: 1.15rem; }



.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(196px, 1fr); gap: var(--s-5); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--s-3); scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--rule-2); border-radius: 4px; }
@media (min-width: 1000px) { .rail { grid-auto-columns: minmax(0, 1fr); grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); overflow: visible; } }



.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: var(--s-3); }
.tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: .25rem;
  min-height: 132px; padding: var(--s-5);
  border: 1px solid var(--rule-soft); border-radius: var(--radius-card);
  background: transparent; box-shadow: var(--card-lip);
  text-decoration: none; overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tile:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--card-lip), var(--shadow-1); }

.tile::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--sindoor); transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}
.tile:hover::after, .tile:focus-visible::after { transform: scaleX(1); }
.tile__name { font-family: var(--font-display); font-size: 1.14rem; line-height: 1.15; }
.tile__from { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--sindoor); font-variant-numeric: tabular-nums; }
.tile__blurb { font-size: var(--fs-xs); color: var(--ink-3); }



.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); align-items: start; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  position: relative; display: flex; flex-direction: column; gap: .85rem;
  padding: 1.75rem; border: 1px solid var(--rule-soft); border-radius: 14px;
  background: var(--card-face); height: 100%;
  box-shadow: var(--card-lip), 0 2px 4px rgba(23, 21, 18, .04),
              0 14px 30px -20px rgba(23, 21, 18, .4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--card-lip), 0 28px 50px -22px rgba(23, 21, 18, .48); }

.tier--featured {
  border: 1px solid var(--gold-2);
  background: linear-gradient(180deg, var(--gold-wash), var(--white) 62%);
  box-shadow: 0 3px 6px rgba(23, 21, 18, .06), 0 26px 52px -22px rgba(138, 108, 43, .5);
}
.tier--featured:hover { transform: translateY(-6px); box-shadow: 0 5px 10px rgba(23, 21, 18, .08), 0 40px 70px -26px rgba(138, 108, 43, .6); }
.tier__head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.tier__badge { flex: none; background: linear-gradient(180deg, #7C6023, #5E4B18); color: var(--white); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .13em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 100px; box-shadow: 0 1px 2px rgba(23, 21, 18, .18); }
.tier__range { font-family: var(--font-mono); font-size: 1.08rem; font-weight: 500; color: var(--sindoor); font-variant-numeric: tabular-nums; }
.tier--featured .tier__range { color: #7C6023; }
.tier__points { display: flex; flex-direction: column; gap: .5rem; margin-top: .25rem; font-size: var(--fs-sm); color: var(--ink-2); }
.tier__points li { display: flex; gap: .6rem; }

.tier__points li::before {
  content: ""; flex: none; width: 15px; height: 15px; margin-top: .32rem;
  background: var(--sindoor);
  --tick: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 15px 15px no-repeat;
  -webkit-mask: var(--tick); mask: var(--tick);
}
.tier--featured .tier__points li::before { background: var(--gold); }
.tier .btn { margin-top: auto; min-height: 50px; }




.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  padding: 1.6rem; display: flex; flex-direction: column; gap: .55rem;
  border: 1px solid var(--rule-soft); border-radius: var(--radius-card);
  background: var(--card-face);
  box-shadow: var(--card-lip), 0 1px 2px rgba(23, 21, 18, .04);
  counter-increment: step; position: relative; overflow: hidden;
}


.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; right: -.4rem; bottom: -1.6rem; z-index: 0;
  font-family: var(--font-display); font-size: 6.5rem; line-height: 1;
  color: var(--ink); opacity: .045; pointer-events: none;
}
.step > * { position: relative; z-index: 1; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step__n { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .16em; color: var(--sindoor); }
.step__title { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.25; }
.step p { font-size: var(--fs-sm); color: var(--ink-2); }



.points { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--s-5); }

.points--ledger { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--s-7); }
.points--ledger .point { flex-direction: row; gap: var(--s-4); border-top: 1px solid var(--rule); padding-block: var(--s-4); }
.points--ledger .point__k { flex: 0 0 10.5rem; padding-top: .15rem; }
@media (max-width: 700px) {
  .points--ledger { grid-template-columns: 1fr; }
  .points--ledger .point { flex-direction: column; gap: .45rem; }
}
.point { display: flex; flex-direction: column; gap: .45rem; }
.point__k { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .15em; text-transform: uppercase; color: var(--sindoor); }
.point p { font-size: var(--fs-sm); color: var(--ink-2); }




.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq details {
  border: 1px solid var(--rule-soft); border-radius: var(--radius-card);
  background: var(--card-face);
  box-shadow: var(--card-lip), 0 1px 2px rgba(23, 21, 18, .04);
  padding: 0 1.25rem;
}
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) var(--s-3); margin-inline: calc(var(--s-3) * -1);
  cursor: pointer; list-style: none; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 1.08rem; line-height: 1.35;
  transition: background var(--dur-fast) var(--ease);
}
.faq summary:hover { background: color-mix(in srgb, var(--ink) 4%, transparent); }
.faq details[open] summary { color: var(--sindoor); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.15rem; color: var(--sindoor); flex: none; line-height: 1.3; transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 1.35rem; max-width: 66ch; color: var(--ink-2); font-size: var(--fs-sm); }



.prose { max-width: 68ch; }
.prose > * + * { margin-top: var(--s-4); }
.prose h2 { font-family: var(--font-display); font-size: var(--fs-h2); margin-top: var(--s-7); line-height: 1.18; }
.prose h3 { font-family: var(--font-display); font-size: var(--fs-h3); margin-top: var(--s-6); }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { display: flex; flex-direction: column; gap: .5rem; }
.prose ul li { display: flex; gap: .65rem; }
.prose ul li::before { content: ""; flex: none; width: 5px; height: 5px; margin-top: .62rem; border-radius: 50%; background: var(--sindoor); }
.prose a { color: var(--indigo); }

.table-scroll { overflow-x: auto; }
table.t { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 480px; }
table.t th { text-align: left; font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; padding: .6rem 1rem .6rem 0; border-bottom: 1px solid var(--ink); }
table.t td { padding: .8rem 1rem .8rem 0; border-bottom: 1px solid var(--rule); color: var(--ink-2); vertical-align: top; }
table.t td:first-child { color: var(--ink); font-weight: 500; }



.phone {
  position: relative; width: 100%; max-width: 268px; margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-phone);
  border: 9px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.phone img, .phone video { width: 100%; height: 100%; object-fit: cover; display: block; }

.phone::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(118deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, .07) 100%);
}
.phone__notch { position: absolute; top: 6px; left: 50%; translate: -50% 0; width: 74px; height: 15px; background: var(--ink); border-radius: 100px; z-index: 2; }
.phone__sound svg { width: 15px; height: 15px; }
.phone-stack { position: relative; }
.phone-stack__caption {
  position: absolute; left: 50%; translate: -50% 0; bottom: -34px;
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}


.card__media img,
.phone img,
.phone video,
.gallery__thumb img,
[data-protect] img,
[data-protect] video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}




.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 600px;
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
  background: #E8E1D3;
  box-shadow: inset 0 1px 0 var(--white), 0 1px 2px rgba(23, 21, 18, .04);
  overflow: hidden;
}

.chips__item {
  display: flex; align-items: center; gap: .55rem;
  padding: .8rem 1.1rem;
  font-size: .8375rem; line-height: 1.35; color: var(--ink-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .66));
}
.chips__item svg { width: 15px; height: 15px; flex: none; color: var(--sindoor); }


.chips__item:last-child:nth-child(odd) { grid-column: 1 / -1; }

@media (max-width: 640px) { .chips { grid-template-columns: 1fr; } }


.btn--hero {
  min-height: 56px; padding: 0 2rem;
  border-radius: 12px; font-size: 1.02rem; letter-spacing: .004em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -1px 0 rgba(0, 0, 0, .18),
    0 2px 3px rgba(94, 26, 22, .24),
    0 12px 26px -8px rgba(138, 38, 33, .58);
}
.btn--hero:not(.btn--primary) {
  padding: 0 1.7rem;
  background: linear-gradient(180deg, var(--white), #F4F0E7);
  box-shadow:
    inset 0 1px 0 var(--white),
    0 2px 3px rgba(23, 21, 18, .05),
    0 10px 22px -10px rgba(23, 21, 18, .34);
}
.btn--hero:hover, .btn--hero:focus-visible { transform: translateY(-3px); }
.btn--hero svg { width: 16px; height: 16px; flex: none; }


.btn--wa svg { width: 17px; height: 17px; color: #128C7E; }

@media (prefers-reduced-motion: reduce) { .btn--hero:hover, .btn--hero:focus-visible { transform: none; } }






.hero {
  padding-block: clamp(2.5rem, 6vw, 4.75rem) clamp(3rem, 6vw, 5rem);
  background: radial-gradient(120% 90% at 78% 34%, #FBF6EC 0%, var(--paper) 46%, #F2EDE2 100%);
}
.hero__in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .hero__in { grid-template-columns: 1fr; gap: var(--s-7); } }
.hero__eyebrow { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.hero__eyebrow .cmyk { width: 66px; height: 5px; }
.hero .display { margin-bottom: var(--s-4); }
.hero .display em { font-style: italic; color: var(--sindoor); }
.hero__lede { margin-bottom: var(--s-5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-5); }


@media (min-width: 901px) { .hero__media .phone { max-width: 320px; } }



.catalogue { display: grid; grid-template-columns: 216px minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.75rem); align-items: start; }

@media (max-width: 900px) { .catalogue { grid-template-columns: minmax(0, 1fr); } }

.filters { position: sticky; top: calc(var(--header-h) + var(--s-4)); max-height: calc(100vh - var(--header-h) - 2rem); overflow-y: auto; padding-right: var(--s-2); }
.filters__group { border-bottom: 1px solid var(--rule); padding-block: var(--s-4); }
.filters__group:first-child { padding-top: 0; }
.filters__group h3 { margin-bottom: var(--s-3); }
.filters__list { display: flex; flex-direction: column; gap: .1rem; }
.facet { display: flex; align-items: center; gap: .55rem; padding: .3rem 0; font-size: var(--fs-sm); color: var(--ink-2); cursor: pointer; }
.facet:hover { color: var(--ink); }
.facet input { position: absolute; opacity: 0; width: 0; height: 0; }
.facet__box { flex: none; width: 15px; height: 15px; border: 1px solid var(--rule-2); border-radius: 2px; background: var(--white); display: grid; place-items: center; transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.facet__box::after { content: ""; width: 7px; height: 4px; border-left: 1.6px solid var(--white); border-bottom: 1.6px solid var(--white); transform: rotate(-45deg) scale(.4); opacity: 0; transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.facet input:checked + .facet__box { background: var(--ink); border-color: var(--ink); }
.facet input:checked + .facet__box::after { opacity: 1; transform: rotate(-45deg) scale(1); }
.facet input:focus-visible + .facet__box { outline: 2px solid var(--sindoor); outline-offset: 2px; }
.facet__n { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.facet[data-empty="true"] { opacity: .38; }

.searchbar { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); padding: .1rem .8rem; border: 1px solid var(--rule-2); border-radius: 100px; background: var(--white); transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.searchbar:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--sindoor) 14%, transparent); }
.searchbar > svg { width: 16px; height: 16px; flex: none; color: var(--ink-3); }
.searchbar input { flex: 1; min-width: 0; border: 0; background: none; padding: .7rem 0; font-size: var(--fs-sm); }
.searchbar input:focus { outline: none; }
.searchbar input::-webkit-search-cancel-button { display: none; }
.searchbar__clear { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-3); }
.searchbar__clear:hover { background: var(--paper-2); color: var(--ink); }
.searchbar__clear svg { width: 12px; height: 12px; }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; padding-bottom: var(--s-4); border-bottom: 1px solid var(--rule); margin-bottom: var(--s-5); }
.results-bar__controls { display: flex; gap: .6rem; align-items: center; }
.results-bar__count { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.results-bar__count b { color: var(--ink); }
.results-bar select { border: 1px solid var(--rule-2); background: var(--white); border-radius: var(--radius); padding: .4rem 1.9rem .4rem .65rem; font-size: var(--fs-xs); appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23514C44' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .6rem center; background-size: 9px; }

.active-filters { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; margin-bottom: var(--s-4); }
.active-filters:empty { display: none; }
.pill-clear { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .6rem .3rem .7rem; border-radius: 100px; background: var(--ink); color: var(--paper); font-size: var(--fs-xs); border: 0; }
.pill-clear svg { width: 9px; height: 9px; }
.pill-clear:hover { background: var(--sindoor); }


.filters-toggle { display: none; }
@media (max-width: 900px) {
  .filters-toggle { display: inline-flex; }
  .filters {
    position: fixed; inset: 0; z-index: 90; max-height: none;
    background: var(--paper); padding: var(--s-5) var(--gutter) 6rem;
    overflow-y: auto; transform: translateY(100%); visibility: hidden;
    pointer-events: none;
    transition: transform 260ms var(--ease), visibility 260ms;
  }
  body.filters-open .filters { transform: none; visibility: visible; pointer-events: auto; transition: transform var(--dur-slow) var(--ease-out), visibility var(--dur-slow); }
  .filters__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--s-4); border-bottom: 1px solid var(--rule); margin-bottom: var(--s-2); }
  .filters__apply { position: fixed; left: 0; right: 0; bottom: 0; padding: var(--s-3) var(--gutter) calc(var(--s-3) + env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--rule); }
}
@media (min-width: 901px) { .filters__head, .filters__apply { display: none; } }

.grid-empty { padding: var(--s-8) var(--s-5); text-align: center; border: 1px dashed var(--rule-2); border-radius: var(--radius); }



.detail { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 940px) { .detail { grid-template-columns: 1fr; } }

.detail__media { position: sticky; top: calc(var(--header-h) + var(--s-4)); }
@media (max-width: 940px) { .detail__media { position: static; } }
.optgroup { padding-block: var(--s-4); border-bottom: 1px solid var(--rule); }
.optgroup__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3); margin-bottom: var(--s-3); }
.opts { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt span {
  min-height: 44px;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .46rem .8rem; border-radius: 100px;
  border: 1px solid var(--rule-2); background: var(--white);
  font-size: var(--fs-xs); color: var(--ink-2); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.opt span:hover { border-color: var(--ink); color: var(--ink); }
.opt input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.opt input:focus-visible + span { outline: 2px solid var(--sindoor); outline-offset: 2px; }

.opt input:disabled + span { opacity: .55; border-style: dashed; cursor: not-allowed; }
.optgroup--na .optgroup__head { opacity: 1; }
.opt__delta { font-family: var(--font-mono); font-size: 11px; opacity: .8; font-variant-numeric: tabular-nums; }

.opt__delta--down { color: var(--indigo); opacity: 1; }
.opt input:checked + span .opt__delta--down { color: inherit; opacity: .8; }


.opt-fixed {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .46rem .8rem; border-radius: 100px;
  border: 1px dashed var(--rule-2); background: var(--paper-2);
  font-size: var(--fs-xs); color: var(--ink-2);
}
.opt-fixed .opt__delta { color: var(--gold-ink); text-transform: uppercase; letter-spacing: .08em; }


.stepper {
  display: inline-flex; align-items: stretch; min-height: 44px;
  border: 1px solid var(--rule-2); background: var(--white);
  border-radius: 100px; overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease);
}
.stepper:focus-within { border-color: var(--ink); }
.stepper__btn {
  width: 2.4rem; flex: none; border: 0; background: none; cursor: pointer;
  font-size: 1.1rem; line-height: 1; color: var(--ink-2);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.stepper__btn:active { background: var(--ink); color: var(--paper); }
.stepper__field {
  display: inline-flex; align-items: center; gap: .4rem;
  padding-block: .46rem; font-size: var(--fs-xs); color: var(--ink-2); cursor: text;
}
.stepper__field input {
  width: 1.9ch; padding: 0; border: 0; background: none;
  font: inherit; font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  color: var(--ink); text-align: center; appearance: textfield;
}

.stepper__field input::-webkit-outer-spin-button,
.stepper__field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper__field input:focus-visible { outline: 2px solid var(--sindoor); outline-offset: 3px; border-radius: 2px; }


.opt-select { position: relative; display: inline-flex; color: var(--ink-2); }
.opt-select select {
  min-height: 44px; appearance: none;
  padding: .46rem 2.1rem .46rem .8rem; border-radius: 100px;
  border: 1px solid var(--rule-2); background: var(--white);
  font: inherit; font-size: var(--fs-xs); color: inherit; cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.opt-select::after {
  content: ''; position: absolute; right: .85rem; top: 50%; margin-top: -2px;
  width: 0; height: 0; pointer-events: none; opacity: .55;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.opt-select.is-set { color: var(--paper); }
.opt-select.is-set select { background: var(--ink); border-color: var(--ink); }
.opt-select select:focus-visible { outline: 2px solid var(--sindoor); outline-offset: 2px; }

.opt-select option, .opt-select optgroup { color: var(--ink); background: var(--white); }

@media (hover: hover) and (pointer: fine) {
  .stepper:hover { border-color: var(--ink); }
  .stepper__btn:hover { background: var(--paper-2); color: var(--ink); }
  .opt-select select:hover { border-color: var(--ink); }
}

.startsat { border: 1px solid var(--rule); background: var(--paper-2); border-radius: var(--radius); padding: var(--s-4); display: flex; align-items: baseline; gap: var(--s-4); flex-wrap: wrap; }
.startsat__n { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 500; font-variant-numeric: tabular-nums; }


.estimate {
  border: 2px solid var(--gold);
  background: linear-gradient(168deg, var(--gold-wash) 0%, var(--white) 46%);
  border-radius: var(--radius); padding: var(--s-5); margin-top: var(--s-5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 26px -18px rgba(138, 108, 43, .55);
  overflow: hidden;
}
.estimate::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    #00A0C6 0 20%, #BE3A6C 20% 40%, var(--gold) 40% 60%, var(--sindoor) 60% 80%, var(--rule-2) 80% 100%);
  opacity: .9;
}
.estimate__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.estimate__n { font-family: var(--font-mono); font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 500; color: var(--gold); font-variant-numeric: tabular-nums; line-height: 1.15; margin-block: .3rem .25rem; transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.estimate__n.is-rolling { opacity: .25; transform: translateY(-4px); }
.estimate__toggle { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.estimate__lines { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--rule); display: flex; flex-direction: column; gap: .35rem; font-size: var(--fs-xs); }
.estimate__lines[hidden] { display: none; }
.estimate__line { display: flex; justify-content: space-between; gap: var(--s-4); color: var(--ink-2); }
.estimate__line b { font-family: var(--font-mono); font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.estimate__line--total { border-top: 1px solid var(--rule); margin-top: .3rem; padding-top: .5rem; color: var(--ink); }

.cta-row { display: flex; gap: var(--s-3); margin-top: var(--s-5); flex-wrap: wrap; }
.cta-row .btn--primary { flex: 1 1 14rem; }
.guarantees { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }

.tabs { display: flex; gap: var(--s-5); border-bottom: 1px solid var(--rule); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { padding: var(--s-3) 0; font-size: var(--fs-sm); font-weight: 500; color: var(--ink-3); border-bottom: 2px solid transparent; white-space: nowrap; margin-bottom: -1px; }
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--sindoor); }
.tab:hover { color: var(--ink); }
.tabpanel .prose { max-width: 68ch; }
.tabpanel { padding-top: var(--s-5); }
.tabpanel[hidden] { display: none; }


.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: var(--s-3) var(--gutter) calc(var(--s-3) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: blur(10px); border-top: 1px solid var(--rule);
}
.stickybar__n { font-family: var(--font-mono); font-weight: 500; font-size: 1.02rem; font-variant-numeric: tabular-nums; line-height: 1.2; }
@media (max-width: 940px) { body.has-stickybar .stickybar { display: flex; } }



.occ-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .occ-hero { grid-template-columns: 1fr; } .occ-hero__media { max-width: 220px; } }
.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 900px) { .guides { grid-template-columns: 1fr; } }
.guide h3 { margin-bottom: var(--s-3); padding-bottom: var(--s-3); border-bottom: 1px solid var(--rule); }
.guide p { font-size: var(--fs-sm); color: var(--ink-2); }
.guide p + p { margin-top: var(--s-3); }
.guide b[lang], .guide .script { font-family: var(--font-script); font-size: 1.06em; }



.guidecards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s-4); }
.guidecard {
  display: flex; gap: var(--s-4); align-items: center;
  padding: var(--s-4); text-decoration: none;
  border: 1px solid var(--rule-soft); border-radius: var(--radius-card);
  background: var(--card-face); box-shadow: var(--card-lip), 0 1px 2px rgba(23, 21, 18, .04);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.guidecard:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-1); }


.guidecard__thumbs { position: relative; flex: none; width: 74px; height: 104px; }
.guidecard__thumbs img {
  position: absolute; inset: 0; width: 58px; height: 103px;
  object-fit: cover; border: 1px solid var(--rule); border-radius: 2px;
  background: var(--paper-2);
  left: calc(var(--k) * 8px);
  transform: rotate(calc((var(--k) - 1) * 4deg));
  transform-origin: bottom center;
  z-index: calc(3 - var(--k));
  transition: transform var(--dur) var(--ease);
}
.guidecard:hover .guidecard__thumbs img { transform: rotate(calc((var(--k) - 1) * 7deg)) translateY(-2px); }

.guidecard__body { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.guidecard__title { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.22; }
.guidecard__meta { display: flex; gap: var(--s-3); align-items: baseline; font-size: var(--fs-xs); color: var(--ink-3); margin-top: .2rem; }
.guidecard__meta b { font-family: var(--font-mono); font-weight: 500; color: var(--sindoor); font-variant-numeric: tabular-nums; }

.closing { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-4); }
.closing .h2 { max-width: 20ch; }




.work { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s-5); }
.workcard { display: flex; flex-direction: column; gap: .6rem; }
.workcard__media { aspect-ratio: 4 / 5; border: 1px solid var(--rule-soft); border-radius: var(--radius-card); overflow: hidden; background: var(--paper-2); }
.workcard__media img { width: 100%; height: 100%; object-fit: cover; }
.workcard__meta { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

.notice {
  border: 1px solid var(--gold); background: var(--gold-wash);
  border-radius: var(--radius); padding: var(--s-4) var(--s-5);
  font-size: var(--fs-sm); color: var(--ink-2);
}
.notice b { color: var(--ink); }



.split2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.75rem, 4vw, 3.5rem); align-items: start; }
.factlist { display: flex; flex-direction: column; }
.factlist div { display: grid; grid-template-columns: 8.5rem 1fr; gap: var(--s-4); padding-block: var(--s-3); border-bottom: 1px solid var(--rule); font-size: var(--fs-sm); }
.factlist dt { font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); padding-top: .18rem; }
.factlist dd { margin: 0; color: var(--ink-2); }
.factlist a { color: var(--indigo); }
@media (max-width: 460px) { .factlist div { grid-template-columns: 1fr; gap: .2rem; } }

.mesh { display: flex; flex-wrap: wrap; gap: var(--s-2); }




.gallery-rail {
  --gallery-page: 4;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: var(--s-2); margin-top: var(--s-4);
}
.gallery {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--gallery-page) - 1) * var(--s-2)) / var(--gallery-page));
  gap: var(--s-2);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery__thumb { scroll-snap-align: start; }
.gallery-nav {
  display: grid; place-items: center; flex: none;
  width: 44px; height: 44px; border-radius: var(--radius-btn);
  border: 1px solid var(--btn-edge); background: var(--btn-face-quiet);
  box-shadow: var(--btn-lift-quiet); color: var(--ink); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.gallery-nav svg { width: 16px; height: 16px; }
.gallery-nav--prev svg { transform: rotate(90deg); }
.gallery-nav--next svg { transform: rotate(-90deg); }
.gallery-nav:hover { border-color: var(--ink); }
.gallery-nav[disabled] { opacity: .32; cursor: default; box-shadow: none; }
@media (prefers-reduced-motion: reduce) { .gallery { scroll-behavior: auto; } }
.gallery__thumb {
  position: relative; width: 100%; aspect-ratio: 9 / 16; padding: 0; overflow: hidden;
  border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper-2);
  cursor: pointer; transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { border-color: var(--ink); transform: translateY(-2px); }
.gallery__thumb.is-on { border-color: var(--sindoor); box-shadow: 0 0 0 2px color-mix(in srgb, var(--sindoor) 25%, transparent); }
.gallery__play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1;
  background: color-mix(in srgb, var(--ink) 34%, transparent); color: var(--paper);
}
.gallery__play svg { width: 13px; height: 13px; }
.phone video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--ink); }


.figures-lede { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 1.75rem; max-width: 52ch; }

.figure { margin: 0; }


.figure::before {
  content: ""; display: block;
  width: 26px; height: 2px; margin-bottom: .85rem;
  background: var(--sindoor, #A8322B);
}

.figure__n {

  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 2.95rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--sindoor, #A8322B);
  font-weight: 600;

  font-variant-numeric: tabular-nums;
}

.figure__k {
  margin: .55rem 0 0;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink, #171512);
}

.figure__s {
  margin: .5rem 0 0;
  font-size: .86rem;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 24ch;
}


.workcard__media { display: block; }

.workcard__media img { transition: transform .5s cubic-bezier(.2, .7, .3, 1); }

.workcard__media:hover img { transform: scale(1.03); }

@media (prefers-reduced-motion: reduce) {
  .workcard__media img { transition: none; }
  .workcard__media:hover img { transform: none; }
}



.hero { position: relative; overflow: hidden; }


.hero__bloom {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 52% at 76% 44%, rgba(168, 50, 43, .11), transparent 68%);
}
.hero__in { position: relative; }

.hero__media { position: relative; display: grid; place-items: center; min-height: 560px; }


.hero__fan {
  position: absolute; left: 50%; top: 50%;
  width: 186px; aspect-ratio: 9 / 16;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(23, 21, 18, .12);
  box-shadow: 0 22px 46px -20px rgba(23, 21, 18, .5);
  background: var(--paper-2);
}
.hero__fan img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) brightness(.96); }
.hero__fan--left { transform: translate(-50%, -50%) translateX(-176px) translateY(44px) rotate(-11deg); }
.hero__fan--right { transform: translate(-50%, -50%) translateX(176px) translateY(44px) rotate(11deg); }


.hero__fan-veil { position: absolute; inset: 0; }
.hero__fan--left .hero__fan-veil { background: linear-gradient(90deg, rgba(23, 21, 18, .16), transparent 60%); }
.hero__fan--right .hero__fan-veil { background: linear-gradient(270deg, rgba(23, 21, 18, .16), transparent 60%); }

.hero__media .phone-stack { position: relative; z-index: 2; width: 100%; max-width: 296px; }

.phone--hero {
  border-radius: 30px; border: 10px solid var(--ink); background: var(--ink);
  box-shadow: 0 40px 80px -28px rgba(23, 21, 18, .55), 0 6px 16px rgba(23, 21, 18, .22);
}
.phone--hero .phone__notch { top: 7px; width: 78px; height: 16px; border-radius: 100px; }


.phone__gloss {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(118deg,
    rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, .08) 100%);
}


.phone__play {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%; z-index: 3;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(23, 21, 18, .42); border: 1px solid rgba(247, 244, 237, .5);
  color: var(--white); backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .6);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.phone__play svg { width: 22px; height: 22px; margin-left: 3px; }
.phone__play:hover, .phone__play:focus-visible { transform: translate(-50%, -50%) scale(1.06); background: rgba(23, 21, 18, .58); }

.phone__badge {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(23, 21, 18, .72); color: var(--paper);
  padding: .3rem .55rem; border-radius: 6px; backdrop-filter: blur(4px);
}

@media (prefers-reduced-motion: reduce) {
  .phone__play:hover, .phone__play:focus-visible { transform: translate(-50%, -50%); }
}


@media (max-width: 1000px) {
  .hero__media { min-height: 460px; }
}
@media (max-width: 720px) {
  .hero__fan { display: none; }
}


.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.75rem 0;
  margin: 0;
}
.figure { padding-inline: 1.75rem; border-right: 1px solid var(--rule); }
.figure:first-child { padding-inline: 0 1.75rem; }
.figure:last-child { border-right: 0; padding-right: 0; }


@media (max-width: 1000px) {
  .figure, .figure:first-child { padding-inline: 0; border-right: 0; }
}


.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-layout .band-head { margin-bottom: 0; display: block; }
@media (max-width: 1000px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-layout .band-head { margin-bottom: var(--s-5); }
}



.tradtabs {
  display: flex; gap: var(--s-2); flex-wrap: wrap;
  margin-bottom: var(--s-5); padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--rule);
}
.tradtab {
  min-height: 44px; padding: .5rem 1rem; border-radius: 100px;
  border: 1px solid var(--rule-2); background: var(--white);
  font-size: var(--fs-sm); color: var(--ink-2); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.tradtab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.tradtab:active { transform: translateY(1px); }
.tradtab:focus-visible { outline: 2px solid var(--sindoor); outline-offset: 2px; }


.tradpanel__h { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; margin: 0 0 var(--s-3); }
.tradpanel + .tradpanel { margin-top: var(--s-7); }
.js [data-trad-tabs] ~ .tradpanel .tradpanel__h { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.tradpanel__lede { margin-bottom: var(--s-4); }

.cerchips {
  display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-5);
}
.cerchip {
  min-height: 38px; display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .8rem; border-radius: 100px;
  border: 1px solid var(--rule-2); background: transparent;
  font-size: var(--fs-xs); color: var(--ink-2); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.cerchip[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.cerchip:active { transform: translateY(1px); }
.cerchip:focus-visible { outline: 2px solid var(--sindoor); outline-offset: 2px; }
.cerchip__n { font-family: var(--font-mono); font-size: 11px; opacity: .7; font-variant-numeric: tabular-nums; }

.cerpanel + .cerpanel { margin-top: var(--s-6); }
.cerpanel__h {
  display: flex; align-items: baseline; gap: .6rem; margin: 0 0 var(--s-3);
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
}
.cerpanel__h::after {
  content: ""; flex: 1 1 auto; height: 1px; background: var(--rule);

  transform: translateY(-.35em);
}
.cerpanel__n { flex: none; order: 3; font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-3); font-variant-numeric: tabular-nums; }

.js [data-cer-chips] ~ .cerpanel .cerpanel__h { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

@media (hover: hover) and (pointer: fine) {
  .tradtab:hover { border-color: var(--ink); color: var(--ink); }
  .tradtab[aria-selected="true"]:hover { color: var(--paper); }
  .cerchip:hover { border-color: var(--ink); color: var(--ink); }
  .cerchip[aria-selected="true"]:hover { color: var(--paper); }
}


@media (max-width: 620px) {
  .cerchips {
    flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .cerchips::-webkit-scrollbar { display: none; }
  .cerchip { flex: none; scroll-snap-align: start; }
}

.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer[data-open="true"] { visibility: visible; }

.drawer__scrim {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--ink) 52%, transparent);
  opacity: 0; transition: opacity 260ms var(--ease);
}
.drawer[data-open="true"] .drawer__scrim { opacity: 1; transition: opacity var(--dur-slow) var(--ease); }

.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(480px, 100%);
  background: var(--paper);
  border-left: 1px solid var(--rule);
  box-shadow: var(--shadow-3);
  display: flex; flex-direction: column;
  transform: translateX(100%);

  transition: transform 260ms var(--ease);
}
.drawer[data-open="true"] .drawer__panel { transform: none; transition: transform var(--dur-slow) var(--ease-out); }
@media (max-width: 560px) {
  .drawer__panel { width: 100%; top: 4vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-left: 0; border-top: 1px solid var(--rule); transform: translateY(100%); }
  .drawer[data-open="true"] .drawer__panel { transform: none; }
}

.drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--rule);
  background: var(--paper-2); flex: none;
}
.drawer__close { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid transparent; }
.drawer__close:hover { border-color: var(--rule-2); background: var(--white); }
.drawer__close svg { width: 13px; height: 13px; }
.drawer__body { padding: var(--s-5); overflow-y: auto; flex: 1; }

.drawer__summary { display: flex; gap: var(--s-4); align-items: flex-start; }
.drawer__summary img { width: 62px; aspect-ratio: 9 / 16; object-fit: cover; border: 1px solid var(--rule); border-radius: 2px; flex: none; }

.drawer__config { font-size: var(--fs-xs); color: var(--ink-2); margin-top: .4rem; list-style: none; padding: 0; }
.drawer__config li { display: flex; gap: .5rem; padding-block: .12rem; }

.drawer__config li span {
  flex: none; min-width: 5.5rem;
  color: var(--ink-2);
  font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  line-height: 1.5;
}
.drawer__edit { font-size: var(--fs-xs); color: var(--sindoor); text-decoration: underline; text-underline-offset: 3px; margin-top: .4rem; display: inline-block; }

.drawer__estimate {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  background: var(--gold-wash); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: var(--s-3) var(--s-4); margin-block: var(--s-4);
}
.drawer__estimate b { font-family: var(--font-mono); font-weight: 500; color: var(--gold-ink); font-variant-numeric: tabular-nums; }

.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: var(--s-4); }
.field > label { font-size: var(--fs-sm); font-weight: 500; display: flex; gap: .35rem; align-items: baseline; }
.field__req { color: var(--sindoor); }
.field__hint { font-size: var(--fs-xs); color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%; padding: .68rem .8rem;
  border: 1px solid var(--rule-2); border-radius: var(--radius);
  background: var(--white); font-size: var(--fs-sm);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sindoor) 14%, transparent);
}
.field textarea { min-height: 78px; resize: vertical; }
.field__error { font-size: var(--fs-xs); color: var(--sindoor); display: none; }
.field[data-invalid="true"] input, .field[data-invalid="true"] textarea { border-color: var(--sindoor); }
.field[data-invalid="true"] .field__error { display: block; }

.checkline { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-xs); color: var(--ink-2); cursor: pointer; margin-bottom: var(--s-4); }
.checkline input { margin-top: .18rem; accent-color: var(--sindoor); }

.drawer__or { display: flex; align-items: center; gap: var(--s-3); margin-block: var(--s-4); color: var(--ink-3); font-size: var(--fs-xs); }
.drawer__or::before, .drawer__or::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.drawer__note { text-align: center; font-size: var(--fs-xs); color: var(--ink-3); margin-top: var(--s-4); }

.drawer__done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-3); padding-block: var(--s-5); }
.drawer__tick { width: 54px; height: 54px; border-radius: 50%; background: var(--sindoor); color: var(--white); display: grid; place-items: center; }
.drawer__tick svg { width: 24px; height: 24px; }
.drawer__ref { width: 100%; background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--radius); padding: var(--s-4); }
.drawer__ref b { display: block; font-family: var(--font-mono); font-size: 1.32rem; letter-spacing: .06em; margin-top: .3rem; }
.drawer__addons { width: 100%; margin-top: var(--s-4); }
.drawer__addons .cards { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.drawer__addons .card__media { aspect-ratio: 1; }

.drawer__step[hidden] { display: none; }

.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

