/* ============================================================
   MAHALLATI JEWELLERY — design system
   Palette keyed to the brand logo: rose-gold/copper #C08F72,
   espresso ink, warm ivory canvas. Editorial, gallery-led.
   ============================================================ */

:root {
  --bg: #FBF8F4;
  --surface: #FFFFFF;
  --surface-2: #F3ECE4;
  --text: #1C1A17;
  --muted: #6E665C;
  --primary: #C08F72;
  --primary-deep: #A6745A;
  --secondary: #1C1814;
  --secondary-2: #2A241F;
  --accent: #8C6A4E;
  --border: #E7DDD1;
  --border-dark: rgba(255,255,255,.14);
  --focus: #A6745A;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow-sm: 0 1px 2px rgba(28,24,20,.05);
  --shadow-md: 0 18px 40px -24px rgba(28,24,20,.35);
  --shadow-lg: 0 40px 90px -40px rgba(28,24,20,.45);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 1px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: .003em; }
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.01em;
}
.h-xl { font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.02; }
.h-lg { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.h-md { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.centered { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.7; font-weight: 300; }
.muted { color: var(--muted); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.container-wide { max-width: 1480px; }
.section { padding-block: clamp(64px, 10vw, 132px); }
.section-sm { padding-block: clamp(48px, 7vw, 88px); }
.band-ivory { background: var(--bg); }
.band-champagne { background: var(--surface-2); }
.band-dark { background: var(--secondary); color: #EFE7DD; }
.band-dark .muted { color: #B7ABA0; }
.band-dark .eyebrow { color: var(--primary); }
.band-dark .eyebrow::before { background: var(--primary); }

.rule { height: 1px; background: var(--border); border: 0; margin: 0; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: .8rem; }
.stack > * + * { margin-top: 1.3rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--secondary);
  --btn-fg: #F7F1EA;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 1.05em 1.9em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { --btn-bg: var(--primary-deep); --btn-fg: #FFF7F0; border-color: var(--primary-deep); }
.btn-primary:hover { --btn-bg: var(--secondary); border-color: var(--secondary); }
.btn-dark:hover { --btn-bg: var(--primary-deep); border-color: var(--primary-deep); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { --btn-bg: var(--text); --btn-fg: var(--bg); border-color: var(--text); }
.btn-ghost-light {
  --btn-bg: transparent; --btn-fg: #F2EAE0; border-color: rgba(255,255,255,.32);
}
.btn-ghost-light:hover { --btn-bg: #F2EAE0; --btn-fg: var(--secondary); border-color: #F2EAE0; }
.btn-sm { padding: .82em 1.4em; font-size: .72rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text);
  padding-bottom: 3px;
  position: relative;
}
.link-arrow .ar { transition: transform .35s var(--ease); }
.link-arrow:hover .ar { transform: translateX(5px); }
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(251,248,244,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { background: rgba(251,248,244,.95); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1480px; margin: 0 auto; padding-inline: var(--gut);
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: .76rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--text);
  position: relative; padding: .4em 0; transition: color .3s;
}
.nav-link::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px; background: var(--primary-deep);
  transform: scaleX(0); transform-origin: center; transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--primary-deep); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary-deep); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-icon-btn { background: none; border: 0; color: var(--text); display: grid; place-items: center; padding: 6px; }
.nav-burger { display: none; background: none; border: 0; padding: 8px; color: var(--text); }
.nav-burger svg { display: block; }

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: block; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 22px; }
}

/* Mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 70; background: var(--bg);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.mmenu.open { transform: translateY(0); visibility: visible; }
.mmenu-top { height: 64px; display: flex; align-items: center; justify-content: space-between; padding-inline: var(--gut); border-bottom: 1px solid var(--border); }
.mmenu-top img { height: 22px; }
.mmenu-body { flex: 1; padding: var(--gut); display: flex; flex-direction: column; gap: .2rem; overflow-y: auto; }
.mmenu-link {
  font-family: var(--serif); font-size: 2rem; font-weight: 500; padding: .42em 0; color: var(--text);
  border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;
}
.mmenu-link .ix { font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; color: var(--primary-deep); }
.mmenu-foot { padding: var(--gut); border-top: 1px solid var(--border); display: grid; gap: .7rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 76px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; min-height: min(92vh, 880px); }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 7vw, 96px) var(--gut);
  background: var(--bg);
}
.hero-media { position: relative; overflow: hidden; background: var(--surface-2); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-since { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--primary-deep); }
.hero h1 { margin: .28em 0 .32em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.hero-meta { margin-top: 2.6rem; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-meta .item { display: grid; gap: .15rem; }
.hero-meta .k { font-family: var(--serif); font-size: 1.6rem; color: var(--primary-deep); }
.hero-meta .v { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { order: -1; aspect-ratio: 4/3.4; }
  .hero-media img { position: static; }
  .hero-copy { padding-block: clamp(36px, 9vw, 64px); }
}

/* ---------- Marquee / trust strip ---------- */
.trust {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4.5rem); padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: .65rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.trust-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }

/* ---------- Section heading ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head .ttl { max-width: 22ch; }
.sec-head p.lede { max-width: 42ch; }

/* ---------- Collection cards ---------- */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.coll-card { position: relative; display: block; overflow: hidden; background: var(--surface-2); border-radius: var(--radius); }
.coll-card .img-wrap { aspect-ratio: 3/3.7; overflow: hidden; }
.coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.coll-card:hover img { transform: scale(1.05); }
.coll-card .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,12,.72) 0%, rgba(20,16,12,.12) 42%, rgba(20,16,12,0) 70%); }
.coll-card .cc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(18px,2.2vw,28px); color: #fff; }
.coll-card .cc-ix { font-size: .68rem; letter-spacing: .28em; color: rgba(255,255,255,.7); text-transform: uppercase; }
.coll-card .cc-name { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.85rem); margin: .15em 0 .15em; }
.coll-card .cc-desc { font-size: .82rem; color: rgba(255,255,255,.82); font-weight: 300; max-width: 30ch; }
.coll-card .cc-cta { margin-top: .9rem; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; display: inline-flex; gap: .5em; align-items: center; color: #fff; }
.coll-card .cc-cta .ar { transition: transform .35s var(--ease); }
.coll-card:hover .cc-cta .ar { transform: translateX(5px); }
.coll-card.feature { grid-row: span 2; grid-column: span 1; }

@media (max-width: 860px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-card.feature { grid-column: span 2; }
  .coll-card.feature .img-wrap { aspect-ratio: 3/2.6; }
}
@media (max-width: 520px) {
  .coll-grid { grid-template-columns: 1fr; }
  .coll-card .img-wrap { aspect-ratio: 3/3.2; }
  .coll-card.feature .img-wrap { aspect-ratio: 3/3.2; }
}

/* ---------- Product gallery ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.5vw, 24px); }
.prod-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .45s var(--ease), transform .45s var(--ease), border-color .45s; display: flex; flex-direction: column; }
.prod-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--surface); }
.prod-imgwrap { position: relative; aspect-ratio: 1; background: var(--surface); overflow: hidden; }
.prod-imgwrap img { width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .9s var(--ease); }
.prod-tile:hover .prod-imgwrap img { transform: scale(1.05); }
.prod-gem { position: absolute; top: 12px; left: 12px; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); background: rgba(255,255,255,.86); padding: .4em .7em; border-radius: 40px; border: 1px solid var(--border); }
.prod-fav { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,.9); display: grid; place-items: center; opacity: 0; transform: translateY(-4px); transition: opacity .35s, transform .35s, color .3s; color: var(--muted); }
.prod-tile:hover .prod-fav { opacity: 1; transform: translateY(0); }
.prod-fav:hover, .prod-fav.on { color: var(--primary-deep); border-color: var(--primary); }
.prod-body { padding: 16px 16px 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod-name { font-family: var(--serif); font-size: 1.18rem; line-height: 1.18; }
.prod-meta { font-size: .73rem; color: var(--muted); letter-spacing: .04em; }
.prod-sku { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--primary-deep); margin-top: 2px; }
.prod-enquire { margin-top: 12px; }
.prod-enquire button { width: 100%; }

@media (max-width: 980px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .prod-name { font-size: 1.05rem; } }

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: clamp(26px,4vw,40px); }
.chip {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: .62em 1.15em; border: 1px solid var(--border); border-radius: 40px; background: var(--surface); color: var(--muted);
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--primary); color: var(--text); }
.chip.active { background: var(--secondary); color: #F2EAE0; border-color: var(--secondary); }

/* ---------- Signature band (Lady Magnolia) ---------- */
.sig { position: relative; overflow: hidden; }
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.sig-media { position: relative; min-height: 440px; background: var(--surface); }
.sig-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sig-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 90px) var(--gut); }
.sig-mark { width: 46px; height: 46px; opacity: .9; margin-bottom: 1.4rem; }
@media (max-width: 860px) {
  .sig-grid { grid-template-columns: 1fr; }
  .sig-media { min-height: 0; aspect-ratio: 4/3.2; }
  .sig-media img { position: static; }
}

/* ---------- Heritage split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.1; }
.split-media.grayscale img { filter: grayscale(1) contrast(1.02); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pillar { background: var(--bg); padding: clamp(22px,3vw,34px); }
.pillar .pn { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .35rem; }
.pillar .pix { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--primary-deep); }
.band-dark .pillars { background: var(--border-dark); border-color: var(--border-dark); }
.band-dark .pillar { background: var(--secondary); }
@media (max-width: 760px) { .pillars { grid-template-columns: repeat(2,1fr); } }

/* ---------- Boutiques / Visit ---------- */
.boutique-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,26px); }
.boutique-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px,3vw,34px); display: flex; flex-direction: column; transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.boutique-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.boutique-card .bname { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .2rem; }
.boutique-card .btag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 1rem; }
.boutique-card address { font-style: normal; color: var(--muted); font-size: .94rem; line-height: 1.6; margin-bottom: .6rem; }
.boutique-card .bnote { font-size: .8rem; color: var(--muted); }
.boutique-card .bactions { margin-top: auto; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }
@media (max-width: 900px) { .boutique-grid { grid-template-columns: 1fr; } }

.map-placeholder {
  position: relative; border: 1px dashed var(--primary); border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(192,143,114,.05) 14px 28px),
    var(--surface-2);
  min-height: 320px; display: grid; place-items: center; text-align: center; padding: 40px 24px;
}
.map-placeholder .mp-mark { width: 52px; height: 52px; opacity: .75; margin: 0 auto 1rem; }
.map-placeholder .mp-label { font-family: var(--serif); font-size: 1.5rem; }
.map-placeholder .mp-sub { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--primary-deep); margin-top: .4rem; }
.map-placeholder .mp-note { font-size: .85rem; color: var(--muted); margin-top: .7rem; max-width: 40ch; }

/* ---------- Forms / modal ---------- */
.modal-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(20,16,12,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .35s; display: flex; align-items: flex-end; justify-content: center; }
.modal-scrim.show { opacity: 1; }
@media (min-width: 720px) { .modal-scrim { align-items: center; padding: 24px; } }
.modal {
  background: var(--bg); width: 100%; max-width: 560px; max-height: 94vh; overflow-y: auto;
  border-radius: 10px 10px 0 0; transform: translateY(24px); transition: transform .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 720px) { .modal { border-radius: 6px; transform: scale(.97); } }
.modal-scrim.show .modal { transform: translateY(0); }
@media (min-width: 720px) { .modal-scrim.show .modal { transform: scale(1); } }
.modal-head { padding: 26px var(--gut) 18px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; position: sticky; top: 0; background: var(--bg); }
.modal-head .mh-title { font-family: var(--serif); font-size: 1.7rem; line-height: 1.1; }
.modal-head .mh-sub { font-size: .8rem; color: var(--muted); margin-top: .25rem; }
.modal-close { background: none; border: 1px solid var(--border); border-radius: 50%; width: 38px; height: 38px; display: grid; place-items: center; color: var(--text); flex-shrink: 0; transition: background .3s, color .3s; }
.modal-close:hover { background: var(--text); color: var(--bg); }
.modal-body { padding: 22px var(--gut) 30px; }

.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field label .req { color: var(--primary-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .85em .9em; transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,143,114,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: .76rem; color: var(--muted); margin-top: .2rem; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .fs-mark { width: 56px; height: 56px; margin: 0 auto 1.2rem; }
.form-piece { display: flex; gap: 14px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; margin-bottom: 1.3rem; }
.form-piece img { width: 64px; height: 64px; object-fit: contain; background: var(--surface-2); border-radius: 2px; }
.form-piece .fp-name { font-family: var(--serif); font-size: 1.15rem; line-height: 1.1; }
.form-piece .fp-sku { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--primary-deep); }

/* ---------- Newsletter / CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner { display: grid; gap: 1.6rem; max-width: 720px; }
.news-form { display: flex; gap: .6rem; flex-wrap: wrap; max-width: 480px; }
.news-form input { flex: 1; min-width: 200px; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.4); color: #F2EAE0; padding: .7em .2em; font-size: 1rem; font-family: var(--sans); }
.news-form input::placeholder { color: rgba(242,234,224,.55); }
.news-form input:focus { outline: none; border-bottom-color: var(--primary); }

/* ---------- Footer ---------- */
.footer { background: var(--secondary); color: #CFC4B8; padding-top: clamp(56px, 8vw, 92px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(40px,5vw,64px); }
.footer-brand .fmark { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.footer-brand .fmark img { width: 40px; height: 40px; }
.footer-brand .fword { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .12em; color: #F2EAE0; line-height: 1; }
.footer-brand .fword small { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .42em; color: var(--primary); margin-top: 5px; }
.footer-brand p { font-size: .9rem; color: #B0A498; max-width: 34ch; line-height: 1.7; }
.footer h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1.1rem; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer ul a, .footer address a { font-size: .92rem; color: #C4B9AD; transition: color .3s; }
.footer ul a:hover, .footer address a:hover { color: #F2EAE0; }
.footer address { font-style: normal; font-size: .9rem; line-height: 1.7; color: #B0A498; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-block: 24px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .76rem; color: #8E837A; letter-spacing: .03em; }
.footer-bottom .fb-links { display: flex; gap: 1.4rem; }
.footer-bottom .fb-links a { font-size: .74rem; letter-spacing: .1em; color: #8E837A; }
.disclaimer { font-size: .7rem; color: #756B62; line-height: 1.6; padding-bottom: 28px; max-width: 80ch; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: flex-start; } }

/* ---------- Mobile action bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; background: rgba(251,248,244,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)); }
.mobile-bar .mb-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mobile-bar a, .mobile-bar button { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 4px; border-radius: var(--radius); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--border); background: var(--surface); color: var(--text); }
.mobile-bar .mb-primary { background: var(--secondary); color: #F2EAE0; border-color: var(--secondary); }
.mobile-bar svg { width: 18px; height: 18px; }
@media (max-width: 980px) { .mobile-bar { display: block; } body { /* room for bar handled per-page via padding */ } }

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; align-items: center; gap: .5rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.crumb a:hover { color: var(--primary-deep); }
.crumb .sep { opacity: .5; }

/* ---------- Page header (interior) ---------- */
.page-head { padding-top: calc(76px + clamp(36px,6vw,70px)); padding-bottom: clamp(30px,5vw,52px); }
.page-head .ph-title { margin: .35em 0 .3em; }
.page-hero-media { position: relative; height: clamp(220px, 36vw, 420px); overflow: hidden; border-radius: var(--radius); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media .scrim { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,16,12,.45), rgba(20,16,12,0) 60%); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* utility */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,40px); }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.pad-bottom-bar { } 
@media (max-width: 980px) { .pad-bottom-bar { padding-bottom: 78px; } }
.hide-desktop { display: none; }
@media (max-width: 980px) { .hide-desktop { display: block; } .hide-mobile { display: none; } }
