/* =================================================================
   KHUSHI JEWELLERS — design system
   Palette keyed to the brand logo: warm petal GOLD + emerald
   centre-gem GREEN, set on the cream/ivory of the storefront fascia.
   Mobile-first. Tested 360–414px.
   ================================================================= */

:root {
  /* Core palette (from CLAUDE-DESIGN §0) */
  --bg:        #FBF8F2;   /* warm ivory page */
  --bg-2:      #F4EEE2;   /* slightly deeper ivory band */
  --surface:   #FFFFFF;   /* product tiles / cards */
  --ink:       #2A2622;   /* warm near-black */
  --ink-soft:  #4A443C;
  --muted:     #8A7F70;   /* warm taupe secondary */
  --primary:   #C39A2B;   /* signature gold */
  --primary-d: #A9831F;   /* deeper gold for text on ivory (AA) */
  --secondary: #0E6E54;   /* emerald */
  --secondary-d:#0A5742;
  --accent:    #D7AA48;   /* lighter logo gold */
  --border:    #ECE3D2;   /* soft warm border */
  --border-2:  #E0D4BD;
  --focus:     #0E6E54;

  --gold-grad: linear-gradient(135deg, #E7C25A 0%, #C39A2B 48%, #9A7415 100%);
  --ink-scrim: linear-gradient(180deg, rgba(20,16,12,0) 0%, rgba(20,16,12,.10) 38%, rgba(20,16,12,.72) 100%);

  --shadow-sm: 0 1px 2px rgba(42,38,34,.05), 0 1px 3px rgba(42,38,34,.06);
  --shadow-md: 0 4px 14px rgba(42,38,34,.07), 0 2px 6px rgba(42,38,34,.05);
  --shadow-lg: 0 22px 50px -18px rgba(42,38,34,.28), 0 8px 20px -10px rgba(42,38,34,.16);

  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;
  --nav-h: 70px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: rgba(195,154,43,.22); color: var(--ink); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.08; color: var(--ink); letter-spacing: .005em; }
.display {
  font-size: clamp(2.5rem, 5.6vw, 4.1rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.005em;
}
.h-section { font-size: clamp(2rem, 5.2vw, 3.4rem); line-height: 1.06; }
.h-card { font-size: clamp(1.35rem, 3vw, 1.7rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary-d);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lede { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); font-weight: 400; line-height: 1.6; }
.muted { color: var(--muted); }
.serif-accent { font-family: var(--ff-display); font-style: italic; color: var(--secondary); font-weight: 500; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; }
section { position: relative; }
.section-pad { padding-block: clamp(56px, 9vw, 120px); }
.section-pad-sm { padding-block: clamp(40px, 6vw, 80px); }
.band-2 { background: var(--bg-2); }
.band-ink { background: var(--ink); color: #F3ECDF; }
.band-ink h1,.band-ink h2,.band-ink h3 { color: #FBF8F2; }
.divider-row { display: flex; align-items: center; gap: 16px; }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.stack > * + * { margin-top: var(--s, 1rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  min-height: 48px; line-height: 1;
  cursor: pointer; text-align: center;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--ink); color: #FBF8F2; }
.btn-primary:hover { background: var(--secondary-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-grad); color: #2A2010; box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(169,131,31,.6); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border-2); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #FBF8F2; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #FBF8F2; border: 1px solid rgba(255,255,255,.42); }
.btn-outline-light:hover { background: #FBF8F2; color: var(--ink); transform: translateY(-2px); }
.btn-ghost { padding-inline: 0; color: var(--primary-d); font-weight: 700; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-d); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,242,.86);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand img { height: 40px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.32rem; letter-spacing: .03em; color: var(--ink); }
.brand .brand-sub { font-size: .54rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: none; }
.nav-cta { display: none; }
.nav-links a { font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 8px 2px; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.hamburger { display: inline-flex; flex-direction: column; gap: 5px; padding: 12px; margin-right: -8px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 55;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  display: flex; flex-direction: column;
  padding: 28px var(--gutter) 40px;
  overflow-y: auto;
  visibility: hidden;
}
.nav-open .drawer { transform: translateX(0); visibility: visible; }
.drawer a.d-link { font-family: var(--ff-display); font-size: 2rem; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--ink); display: flex; justify-content: space-between; align-items: center; }
.drawer a.d-link .idx { font-family: var(--ff-body); font-size: .7rem; font-weight: 700; color: var(--accent); letter-spacing: .1em; }
.drawer .drawer-cta { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
.drawer .drawer-meta { margin-top: 20px; font-size: .85rem; color: var(--muted); }
.drawer .drawer-meta a { color: var(--secondary); font-weight: 700; }

@media (min-width: 980px) {
  :root { --nav-h: 84px; }
  .hamburger { display: none; }
  .drawer { display: none; }
  .nav-links { display: flex; gap: clamp(20px, 2.4vw, 38px); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 0; }
.hero-copy { padding: clamp(40px,8vw,76px) 0 clamp(36px,6vw,56px); }
.hero-copy .display { margin: 18px 0 0; }
.hero-copy .display em { font-style: italic; color: var(--primary-d); }
.hero-copy .lede { margin-top: 22px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-media { position: relative; min-height: 56vw; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media .scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,16,12,.18), rgba(20,16,12,0) 40%); }
.hero-badge {
  position: absolute; left: 0; bottom: 18px; z-index: 3;
  background: rgba(251,248,242,.94); backdrop-filter: blur(6px);
  padding: 14px 20px; border-radius: 2px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .est { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 600; color: var(--primary-d); line-height: 1; }
.hero-badge .est-txt { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); max-width: 13ch; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.02fr 1fr; align-items: stretch; gap: clamp(32px,5vw,72px); }
  .hero-copy { padding-block: clamp(70px,9vw,128px); align-self: center; }
  .hero-media { min-height: 640px; }
  .hero-badge { left: -38px; bottom: 48px; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-item { padding: 22px 18px; text-align: center; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.trust-item:nth-child(2n) { border-right: none; }
.trust-item .t-ico { color: var(--primary); margin: 0 auto 10px; width: 26px; height: 26px; }
.trust-item .t-big { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 600; color: var(--ink); line-height: 1; }
.trust-item .t-sub { font-size: .74rem; color: var(--muted); margin-top: 6px; letter-spacing: .04em; }
@media (min-width: 760px) {
  .trust-grid { grid-template-columns: repeat(4,1fr); }
  .trust-item { border-bottom: none; padding: 30px 20px; }
  .trust-item:nth-child(2n) { border-right: 1px solid var(--border); }
  .trust-item:last-child { border-right: none; }
}

/* ---------- Section header ---------- */
.sec-head { max-width: 620px; }
.sec-head.center { margin-inline: auto; }
.sec-head .h-section { margin-top: 14px; }
.sec-head p { margin-top: 16px; }
.sec-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }

/* ---------- Collection cards ---------- */
.coll-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .coll-grid { grid-template-columns: repeat(3,1fr); gap: 22px; } }
.coll-card { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--ink); aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.coll-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.coll-card:hover img { transform: scale(1.06); }
.coll-card .scrim { position: absolute; inset: 0; background: var(--ink-scrim); }
.coll-card .c-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px; color: #FBF8F2; z-index: 2; }
.coll-card .c-kicker { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.coll-card .c-title { font-family: var(--ff-display); font-size: 1.85rem; font-weight: 600; margin-top: 6px; color: #fff; }
.coll-card .c-desc { font-size: .9rem; color: rgba(243,236,223,.82); margin-top: 6px; max-width: 32ch; }
.coll-card .c-go { margin-top: 16px; display: inline-flex; align-items: center; gap: .5em; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.coll-card .c-go svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.coll-card:hover .c-go svg { transform: translateX(5px); }

/* ---------- Piece grid ---------- */
.piece-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (min-width: 640px) { .piece-grid { grid-template-columns: repeat(3,1fr); gap: 22px; } }
@media (min-width: 1000px) { .piece-grid { grid-template-columns: repeat(4,1fr); } }
.piece-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .piece-grid.cols-3 { grid-template-columns: repeat(3,1fr); } }

.piece {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.piece:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.piece-img { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; cursor: zoom-in; }
.piece-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 10%; transition: transform .9s var(--ease); }
.piece:hover .piece-img img { transform: scale(1.05); }
.piece-img .zoom { position: absolute; top: 10px; right: 10px; z-index: 3; width: 34px; height: 34px; border-radius: 50%; background: rgba(251,248,242,.9); display: grid; place-items: center; color: var(--ink); opacity: 0; transform: translateY(-4px); transition: opacity .3s, transform .3s; box-shadow: var(--shadow-sm); }
.piece:hover .piece-img .zoom { opacity: 1; transform: translateY(0); }
.piece-img .zoom svg { width: 16px; height: 16px; }
.tag { position: absolute; top: 10px; left: 10px; z-index: 3; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(14,110,84,.94); color: #fff; padding: 5px 9px; border-radius: 2px; }
.tag.gold { background: var(--gold-grad); color: #2A2010; }
.piece-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.piece-body .p-name { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 600; line-height: 1.15; }
.piece-body .p-meta { font-size: .78rem; color: var(--muted); letter-spacing: .02em; }
.piece-body .p-enq { margin-top: 12px; }
.piece-body .p-enq button { width: 100%; padding: 11px; border: 1px solid var(--border-2); border-radius: 2px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); transition: background .3s, color .3s, border-color .3s; display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 44px; }
.piece-body .p-enq button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.piece-body .p-enq button svg { width: 15px; height: 15px; }

/* ---------- Filter chips ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { padding: 9px 16px; border: 1px solid var(--border-2); border-radius: 100px; font-size: .76rem; font-weight: 700; letter-spacing: .05em; color: var(--ink-soft); background: var(--surface); transition: all .25s; min-height: 40px; }
.chip:hover { border-color: var(--primary); color: var(--primary-d); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Feature band (split) ---------- */
.feature { display: grid; gap: 0; align-items: center; }
.feature-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { padding: clamp(36px,7vw,72px) 0; }
.feature-body.pad-x { padding-inline: var(--gutter); }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); }
  .feature.reverse .feature-media { order: 2; }
  .feature-media { aspect-ratio: auto; min-height: 540px; }
}
.feature-list { display: grid; gap: 14px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.feature-list .fl-ico { flex: none; width: 38px; height: 38px; border-radius: 50%; background: rgba(14,110,84,.08); color: var(--secondary); display: grid; place-items: center; margin-top: 2px; }
.feature-list .fl-ico svg { width: 18px; height: 18px; }
.feature-list .fl-t { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; line-height: 1.2; }
.feature-list .fl-d { font-size: .9rem; color: var(--muted); }

/* full-bleed bridal band */
.bridal-band { position: relative; overflow: hidden; background: var(--ink); color: #FBF8F2; }
.bridal-band .bb-media { position: absolute; inset: 0; }
.bridal-band .bb-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.bridal-band .bb-scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20,16,12,.92) 0%, rgba(20,16,12,.62) 52%, rgba(20,16,12,.32) 100%); }
.bridal-band .bb-inner { position: relative; z-index: 2; padding-block: clamp(64px,11vw,150px); }
.bridal-band .bb-inner h2 { color: #fff; }
.bridal-band .bb-inner .lede { color: rgba(243,236,223,.9); }
.bb-box { max-width: 600px; }

/* ---------- Heritage / quote ---------- */
.quote { font-family: var(--ff-display); font-size: clamp(1.5rem, 3.6vw, 2.5rem); font-weight: 500; font-style: italic; line-height: 1.32; color: var(--ink); }
.quote .qmark { color: var(--accent); font-size: 1.2em; }
.quote-by { margin-top: 22px; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.quote-by b { color: var(--secondary); }

.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
.stat .s-num { font-family: var(--ff-display); font-size: clamp(2.2rem,5vw,3.2rem); font-weight: 600; color: var(--primary-d); line-height: 1; }
.stat .s-lbl { font-size: .78rem; color: var(--muted); margin-top: 8px; letter-spacing: .04em; }

/* ---------- Visit / map ---------- */
.visit-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; } }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row:last-child { border-bottom: none; }
.info-row .i-ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(195,154,43,.1); color: var(--primary-d); display: grid; place-items: center; }
.info-row .i-ico svg { width: 19px; height: 19px; }
.info-row .i-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.info-row .i-val { font-size: 1rem; color: var(--ink); margin-top: 3px; }
.info-row .i-val a { color: var(--secondary); font-weight: 700; }

.map-ph {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px;
  background:
    repeating-linear-gradient(45deg, rgba(195,154,43,.05) 0 14px, transparent 14px 28px),
    var(--bg-2);
  border: 1px dashed var(--border-2);
  display: grid; place-items: center; text-align: center; padding: 30px;
}
.map-ph .mp-ico { width: 46px; height: 46px; color: var(--primary); margin: 0 auto 14px; }
.map-ph .mp-t { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; }
.map-ph .mp-sub { font-size: .82rem; color: var(--muted); margin-top: 6px; font-family: var(--ff-body); }
.map-ph code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .74rem; background: rgba(42,38,34,.06); padding: 3px 8px; border-radius: 3px; color: var(--ink-soft); margin-top: 14px; display: inline-block; letter-spacing: .02em; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.field label .req { color: var(--secondary); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 3px;
  padding: 13px 15px; width: 100%; transition: border-color .25s, box-shadow .25s;
  min-height: 50px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(14,110,84,.12); }
.field-2 { display: grid; gap: 16px; }
@media (min-width: 560px) { .field-2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .8rem; color: var(--muted); }
.form-note a { color: var(--secondary); font-weight: 700; }
.form-success { display: none; padding: 20px; background: rgba(14,110,84,.07); border: 1px solid rgba(14,110,84,.25); border-radius: var(--radius); color: var(--secondary-d); font-weight: 600; align-items: center; gap: 12px; }
.form-success svg { width: 22px; height: 22px; flex: none; }
.form-success.show { display: flex; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(24,19,14,.92); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox .lb-stage { max-width: 640px; width: 100%; text-align: center; }
.lightbox .lb-img { background: #fff; border-radius: var(--radius); padding: 4%; }
.lightbox .lb-img img { width: 100%; height: auto; max-height: 68vh; object-fit: contain; }
.lightbox .lb-cap { color: #FBF8F2; margin-top: 18px; }
.lightbox .lb-cap .lb-name { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; }
.lightbox .lb-cap .lb-meta { font-size: .85rem; color: rgba(243,236,223,.7); margin-top: 4px; }
.lightbox .lb-cap .btn { margin-top: 16px; }
.lightbox .lb-close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; background: rgba(251,248,242,.12); color: #fff; display: grid; place-items: center; transition: background .25s; }
.lightbox .lb-close:hover { background: rgba(251,248,242,.24); }
.lightbox .lb-close svg { width: 22px; height: 22px; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(251,248,242,.12); color: #fff; display: grid; place-items: center; transition: background .25s; }
.lightbox .lb-nav:hover { background: rgba(251,248,242,.24); }
.lightbox .lb-prev { left: 14px; } .lightbox .lb-next { right: 14px; }
.lightbox .lb-nav svg { width: 22px; height: 22px; }
@media (max-width: 620px) { .lightbox .lb-nav { width: 42px; height: 42px; top: auto; bottom: 18px; transform: none; } .lightbox .lb-prev { left: 30%; } .lightbox .lb-next { right: 30%; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(243,236,223,.74); padding-top: clamp(48px,7vw,80px); }
.footer a { transition: color .25s; }
.footer a:hover { color: #fff; }
.foot-grid { display: grid; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(243,236,223,.12); }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; } }
.foot-brand .brand-name { font-family: var(--ff-display); font-size: 1.6rem; color: #fff; font-weight: 600; letter-spacing: .03em; }
.foot-brand img { height: 176px; margin-bottom: 14px; }
.foot-brand p { font-size: .9rem; max-width: 34ch; margin-top: 12px; }
.foot-col h4 { font-family: var(--ff-body); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { font-size: .92rem; }
.foot-contact .fc-row { font-size: .92rem; margin-bottom: 12px; }
.foot-contact .fc-row b { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(243,236,223,.5); margin-bottom: 3px; }
.foot-social { display: flex; gap: 12px; margin-top: 18px; }
.foot-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(243,236,223,.2); display: grid; place-items: center; color: #fff; }
.foot-social a:hover { background: var(--primary); border-color: var(--primary); color: #2A2010; }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding-block: 26px; font-size: .8rem; color: rgba(243,236,223,.5); }
.foot-note { background: rgba(243,236,223,.05); border-top: 1px solid rgba(243,236,223,.1); padding: 16px 0; }
.foot-note p { font-size: .74rem; color: rgba(243,236,223,.42); line-height: 1.6; max-width: 96ch; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--surface); border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr 1fr; box-shadow: 0 -4px 18px rgba(42,38,34,.1); padding-bottom: env(safe-area-inset-bottom); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 9px 4px; font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); border-right: 1px solid var(--border); min-height: 56px; }
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.primary { color: var(--secondary); }
.mobile-bar a.primary svg { color: var(--secondary); }
body { padding-bottom: 0; }
@media (max-width: 979px) { body.has-bar { padding-bottom: 64px; } }
@media (min-width: 980px) { .mobile-bar { display: none; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Misc ---------- */
.pill-note { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; color: var(--secondary-d); background: rgba(14,110,84,.08); padding: 8px 14px; border-radius: 100px; }
.pill-note svg { width: 15px; height: 15px; }
.hairline { height: 1px; background: var(--border); border: none; }
.gold-rule { width: 56px; height: 2px; background: var(--gold-grad); border: none; }
.breadcrumb { font-size: .78rem; color: var(--muted); letter-spacing: .04em; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--primary-d); }
.breadcrumb .sep { opacity: .5; }
.page-head { padding-block: clamp(40px,7vw,76px) clamp(28px,4vw,44px); }
