/* ============================================================
   Shree Ji Handicrafts — design system
   Palette sampled from the company logo: saffron #F07818, red #A81818
   ============================================================ */

:root {
  /* --- colour ------------------------------------------------ */
  --ink:        #1E1611;   /* headings, primary text            */
  --ink-2:      #574539;   /* body copy                         */
  --ink-3:      #826E5F;   /* meta, captions  (AA on paper)     */
  --paper:      #FCFAF6;   /* page ground                       */
  --surface:    #FFFFFF;   /* cards                             */
  --sand:       #F2EBE0;   /* tinted section                    */
  --sand-2:     #E6DACA;   /* hairlines on sand                 */
  --line:       #E4DCD0;   /* hairlines on paper                */
  --red:        #9E1B14;   /* primary action (from logo)        */
  --red-dark:   #7C130E;
  --saffron:    #DE6C10;   /* accent (from logo)                */
  --brass:      #89631F;   /* eyebrows, small caps (AA on sand) */
  --espresso:   #241A13;   /* dark sections, footer             */

  /* --- type -------------------------------------------------- */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --t-xs:   0.75rem;   /* 12 */
  --t-sm:   0.875rem;  /* 14 */
  --t-base: 1rem;      /* 16 */
  --t-md:   1.125rem;  /* 18 */
  --t-lg:   1.375rem;  /* 22 */
  --t-xl:   1.75rem;   /* 28 */
  --t-2xl:  2.25rem;   /* 36 */
  --t-3xl:  3rem;      /* 48 */
  --t-4xl:  4rem;      /* 64 */

  /* --- space (8px scale) ------------------------------------- */
  --s-1: 0.5rem;  --s-2: 1rem;   --s-3: 1.5rem; --s-4: 2rem;
  --s-5: 3rem;    --s-6: 4rem;   --s-7: 6rem;   --s-8: 8rem;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(30,22,17,.05), 0 8px 24px -12px rgba(30,22,17,.15);
  --shadow-lg: 0 2px 4px rgba(30,22,17,.06), 0 24px 48px -24px rgba(30,22,17,.28);
  --wrap: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-2);
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.2vw, var(--t-4xl)); }
h2 { font-size: clamp(1.75rem, 3.6vw, var(--t-3xl)); }
h3 { font-size: var(--t-lg); }
p  { margin: 0 0 var(--s-2); max-width: 68ch; text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   layout helpers
   ============================================================ */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(var(--s-6), 9vw, var(--s-8)); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--espresso); color: #D9CCBF; }
.section--dark h2, .section--dark h3 { color: #FBF6EF; }

.eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--s-2);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--brass); flex: none;
}
.section--dark .eyebrow { color: var(--saffron); }
.section--dark .eyebrow::before { background: var(--saffron); }

.lede { font-size: var(--t-md); color: var(--ink-2); max-width: 60ch; }
.section-head { max-width: 62ch; margin-bottom: var(--s-5); }

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 600;
  letter-spacing: .01em;
  padding: .875rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--surface); }
.btn--outline:hover { border-color: var(--ink); }

/* ============================================================
   header
   ============================================================ */
.topbar {
  background: var(--espresso);
  color: #C6B6A6;
  font-size: var(--t-xs);
  letter-spacing: .02em;
}
.topbar__inner { display: flex; gap: var(--s-3); align-items: center; justify-content: space-between; padding-block: .5rem; flex-wrap: wrap; }
@media (max-width: 720px) { .topbar__inner > span:first-child { display: none; } .topbar__inner { justify-content: center; } }
.topbar a { color: #E4D7C8; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__meta { color: #A08D7C; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,246,.88);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: var(--s-3); padding-block: .875rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; margin-right: auto; }
.brand img { width: 52px; height: auto; mix-blend-mode: multiply; }
.brand__name { font-family: var(--display); font-size: var(--t-base); color: var(--ink); line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }
.brand__sub { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }

.nav { display: flex; gap: var(--s-3); align-items: center; }
.nav a:not(.btn) {
  font-size: var(--t-sm); font-weight: 500; color: var(--ink-2);
  text-decoration: none; padding: .4rem 0; position: relative;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--saffron);
  transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem .7rem; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 4px 0; transition: transform .2s var(--ease), opacity .2s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: var(--s-2) 1.25rem var(--s-3);
    box-shadow: var(--shadow);
  }
  .nav[hidden] { display: none; }
  .nav a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: var(--s-2); justify-content: center; }
  .header__cta { display: none; }
}

/* ============================================================
   hero
   ============================================================ */
.hero { position: relative; background: var(--espresso); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(24,16,11,.94) 0%, rgba(24,16,11,.82) 42%, rgba(24,16,11,.35) 100%);
}
.hero__inner { position: relative; padding-block: clamp(var(--s-6), 12vw, 9rem); }
.hero__copy { max-width: 40rem; }
.hero h1 { color: #FDFAF6; }
.hero h1 em { font-style: italic; color: var(--saffron); }
.hero p { color: #DCCEC0; font-size: var(--t-md); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }

.hero__facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-3) var(--s-4); margin-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.18); padding-top: var(--s-3);
  max-width: 46rem;
}
.hero__facts dt { font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: #A08D7C; }
.hero__facts dd { margin: .3rem 0 0; font-family: var(--display); font-size: var(--t-base); line-height: 1.35; color: #F6EFE7; }

/* ============================================================
   category cards
   ============================================================ */
.cards { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--sand-2); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: var(--s-2) var(--s-3) var(--s-3); flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-size: var(--t-md); line-height: 1.2; margin-bottom: .45rem; }
.card__body p { font-size: var(--t-sm); color: var(--ink-3); margin-bottom: var(--s-2); }
.card__more { margin-top: auto; font-size: var(--t-sm); font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: .4rem; }
.card:hover .card__more::after { transform: translateX(3px); }
.card__more::after { content: "→"; transition: transform .2s var(--ease); }

/* ============================================================
   product grid
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--s-4); }
.filters button {
  font: inherit; font-size: var(--t-sm); font-weight: 500;
  padding: .5rem 1rem; border-radius: 100px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--ink-2);
  transition: all .18s var(--ease);
}
.filters button:hover { border-color: var(--ink-3); color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.grid { display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
@media (max-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); } }
.product { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.product__media { aspect-ratio: 1; background: var(--sand); overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__body { padding: var(--s-2) var(--s-2) var(--s-3); display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product__cat { font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--brass); }
.product__name { font-family: var(--display); font-size: var(--t-base); color: var(--ink); margin: 0; line-height: 1.3; }
.product__link { margin-top: auto; padding-top: .6rem; font-size: var(--t-sm); font-weight: 600; color: var(--red); text-decoration: none; }
.product__link:hover { text-decoration: underline; }

/* ============================================================
   craftsmanship split
   ============================================================ */
.split { display: grid; gap: clamp(var(--s-4), 5vw, var(--s-6)); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--flip > :first-child { order: 2; } }
.split__media { display: grid; gap: var(--s-2); grid-template-columns: 1fr 1fr; }
.split__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.split__media > picture:first-child { grid-column: 1 / -1; }
.split__media > picture:first-child img { aspect-ratio: 16/10; }

/* ============================================================
   process steps
   ============================================================ */
.steps { counter-reset: step; display: grid; gap: var(--s-3); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { border-top: 2px solid rgba(222,108,16,.5); padding-top: var(--s-2); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-size: var(--t-sm); color: var(--saffron); letter-spacing: .08em;
}
.step h3 { font-size: var(--t-md); margin: .4rem 0 .5rem; }
.step p { font-size: var(--t-sm); color: #B4A292; margin: 0; }

/* ============================================================
   enquiry
   ============================================================ */
.enquiry { display: grid; gap: clamp(var(--s-4), 5vw, var(--s-6)); grid-template-columns: 1fr; }
@media (min-width: 900px) { .enquiry { grid-template-columns: 5fr 6fr; } }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(var(--s-3), 4vw, var(--s-5)); box-shadow: var(--shadow); }
.field { margin-bottom: var(--s-2); }
.field label { display: block; font-size: var(--t-sm); font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: var(--t-sm);
  padding: .75rem .85rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(222,108,16,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field__row { display: grid; gap: var(--s-2); grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .field__row { grid-template-columns: 1fr; } }
.form__note { font-size: var(--t-xs); color: var(--ink-3); margin: var(--s-2) 0 0; }

.contact-list { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: var(--s-2); }
.contact-list li { display: grid; grid-template-columns: 7.5rem 1fr; gap: var(--s-2); align-items: start; padding-bottom: var(--s-2); border-bottom: 1px solid var(--line); font-size: var(--t-sm); }
.contact-list dt, .contact-list .k { font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; color: #756254; padding-top: .15rem; }
.contact-list .v { color: var(--ink); }
.contact-list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--sand-2); }
.contact-list a:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   footer
   ============================================================ */
.footer { background: var(--espresso); color: #A5917F; font-size: var(--t-sm); padding-block: var(--s-6) var(--s-4); }
.footer__grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer h4 { font-family: var(--sans); font-size: var(--t-xs); letter-spacing: .14em; text-transform: uppercase; color: #A08D7C; margin-bottom: var(--s-2); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer a { color: #D6C7B7; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__brand p { color: #A5917F; font-size: var(--t-sm); max-width: 30ch; }
.footer__bottom {
  margin-top: var(--s-5); padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: space-between;
  font-size: var(--t-xs); color: #A08D7C;
}

/* ============================================================
   floating actions
   ============================================================ */
.floats { position: fixed; right: 1rem; bottom: 1rem; z-index: 60; display: grid; gap: .6rem; }
.float {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-lg); text-decoration: none;
  transition: transform .2s var(--ease);
}
.float:hover { transform: scale(1.07); }
.float--wa { background: #25D366; }
.float--call { background: var(--red); }
.float svg { width: 22px; height: 22px; fill: currentColor; }

/* reveal-on-scroll: safe default is VISIBLE, JS opts in */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   multi-page additions
   ============================================================ */
.section--tight { padding-block: clamp(var(--s-4), 5vw, var(--s-6)); }

/* --- breadcrumbs ------------------------------------------------ */
.crumbs { padding-block: var(--s-2) 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; font-size: var(--t-xs); }
.crumbs li + li::before { content: "/"; color: var(--ink-3); margin-right: .5rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--red); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink-2); }

/* --- product detail --------------------------------------------- */
.product-detail { display: grid; gap: clamp(var(--s-4), 5vw, var(--s-6)); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .product-detail { grid-template-columns: 1fr 1fr; } }
.product-detail__media picture { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.product-detail__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail__info .eyebrow a { color: inherit; text-decoration: none; }
.product-detail__info .eyebrow a:hover { text-decoration: underline; }
.product-detail__info h1 { font-size: clamp(1.9rem, 3.4vw, var(--t-2xl)); }

.specs { list-style: none; padding: 0; margin: var(--s-3) 0; display: grid; gap: .6rem; }
.specs li { position: relative; padding-left: 1.35rem; font-size: var(--t-sm); color: var(--ink-2); }
.specs li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--saffron);
}

/* product cards link the whole title, keep the image link silent for a11y */
.product__name a { color: inherit; text-decoration: none; }
.product__name a::after { content: ""; position: absolute; inset: 0; }
.product { position: relative; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.product:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product__media { display: block; }

/* ---------- enquiry form states ---------- */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field__err { font-size: var(--t-xs); color: var(--red); margin: .35rem 0 0; }
.field [aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 3px rgba(158,27,20,.1); }
.form__status { font-size: var(--t-sm); margin: .75rem 0 0; min-height: 1.2em; }
.form__status--bad { color: var(--red); font-weight: 500; }
.form__status--good { color: #1F7A43; font-weight: 500; }

/* ---------- product gallery ---------- */
.gallery__main { position: relative; }
.gallery__frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.gallery__frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
/* Without JS every photo simply stacks, so nothing is ever unreachable. */
.no-js .gallery__frame[hidden] { display: block !important; margin-top: var(--s-2); }

.gallery__thumbs { display: flex; gap: .6rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery__thumbs button {
  width: 84px; padding: 0; border: 1px solid var(--line); background: none;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: border-color .18s var(--ease), opacity .18s var(--ease);
  opacity: .68;
}
.gallery__thumbs button:hover { opacity: 1; border-color: var(--ink-3); }
.gallery__thumbs button[aria-selected="true"] { opacity: 1; border-color: var(--saffron); box-shadow: 0 0 0 2px rgba(222,108,16,.2); }
.gallery__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

/* ---------- gallery page ---------- */
.gallery-grid { display: grid; gap: var(--s-2); grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid__item {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--sand); text-decoration: none;
}
.gallery-grid__item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__cap {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem .7rem .6rem;
  font-size: var(--t-xs); font-weight: 500; color: #fff; line-height: 1.3;
  /* stronger at the base, plus a shadow, so captions hold up over pale photos */
  background: linear-gradient(to top, rgba(24,16,11,.94) 0%, rgba(24,16,11,.72) 45%, rgba(24,16,11,0) 100%);
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
  opacity: 0; transition: opacity .25s var(--ease);
}
.gallery-grid__item:hover .gallery-grid__cap,
.gallery-grid__item:focus-visible .gallery-grid__cap { opacity: 1; }
@media (hover: none) { .gallery-grid__cap { opacity: 1; } }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; gap: clamp(var(--s-4), 5vw, var(--s-6)); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .faq-layout { grid-template-columns: 5fr 7fr; }
  .faq-intro { position: sticky; top: 7rem; } }

.faq-jump { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: var(--s-3); }
.faq-jump a {
  font-size: var(--t-xs); font-weight: 500; color: var(--ink-2); text-decoration: none;
  border: 1px solid var(--line); border-radius: 100px; padding: .35rem .8rem; background: var(--surface);
}
.faq-jump a:hover { border-color: var(--ink); color: var(--ink); }

.faq-group { margin-bottom: var(--s-5); }
.faq-group > h2 {
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); font-family: var(--sans); margin-bottom: var(--s-2);
  padding-bottom: .6rem; border-bottom: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: var(--s-2) 2rem var(--s-2) 0; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  display: inline; font-size: var(--t-md); font-family: var(--display);
  color: var(--ink); margin: 0; font-weight: 500;
}
.faq-item summary::after {
  content: ""; position: absolute; right: .3rem; top: 1.55rem;
  width: 9px; height: 9px; border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover h3 { color: var(--red); }
.faq-answer { padding: 0 0 var(--s-3); }
.faq-answer p { font-size: var(--t-sm); color: var(--ink-2); margin: 0; max-width: 62ch; }
