/* ============================================================
   La Marquise Jewellery — Shared Design System
   Palette keyed to logo.webp: pearl-ivory ground, rose-gold /
   champagne accents, charcoal-ink type. Editorial & gallery-like.
   ============================================================ */

:root {
  --bg: #FBF7F1;          /* warm pearl / ivory page ground */
  --bg-2: #F4EBDF;        /* deeper ivory band */
  --surface: #FFFFFF;     /* cards / product grounds */
  --text: #26241F;        /* primary ink */
  --muted: #7A746B;       /* secondary text / captions */
  --primary: #BC7350;     /* rose-gold / copper — CTA */
  --primary-deep: #9E5C3D;/* hover/pressed */
  --secondary: #D7AE8C;   /* champagne-gold — dividers/hover */
  --accent: #E6CBB1;      /* soft champagne-blush detail */
  --ink-soft: #4A463F;    /* softened ink for long copy */
  --border: #ECE2D5;      /* hairline borders on ivory */
  --border-strong: #DECDB8;
  --focus: #BC7350;
  --charcoal: #1F1D19;    /* near-black sections */

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(38,36,31,.04), 0 6px 18px rgba(38,36,31,.05);
  --shadow-md: 0 10px 40px rgba(38,36,31,.10);
  --shadow-lg: 0 30px 80px rgba(38,36,31,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--text); }

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

/* ---------------- Typography ---------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.display {
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

p { margin: 0 0 1.1em; color: var(--ink-soft); }
.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}
.eyebrow.muted { color: var(--muted); }

.serif-italic { font-family: var(--serif); font-style: italic; }

/* ---------------- Layout ---------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1480px; margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 132px); }
.section-tight { padding-block: clamp(48px, 7vw, 88px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

.divider-mark {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--secondary); margin: 0;
}
.divider-mark::before, .divider-mark::after {
  content: ""; width: clamp(36px, 8vw, 70px); height: 1px; background: var(--border-strong);
}
.divider-mark .diamond { width: 7px; height: 7px; background: var(--primary); transform: rotate(45deg); }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-fg: var(--surface); --btn-bg: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 30px; min-height: 52px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg); border-radius: var(--radius);
  cursor: pointer; transition: all .4s var(--ease); white-space: nowrap;
}
.btn:hover { background: var(--primary-deep); border-color: var(--primary-deep); transform: translateY(-1px); }
.btn .ico { width: 16px; height: 16px; }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--text); color: var(--surface); border-color: var(--text); transform: translateY(-1px); }

.btn-light {
  --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.5);
}
.btn-light:hover { background: #fff; color: var(--text); border-color: #fff; }

.btn-sm { min-height: 44px; padding: 12px 22px; font-size: .74rem; }

.link-underline {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); padding-bottom: 4px; position: relative;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--primary); transform: scaleX(.4); transform-origin: left; transition: transform .45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline .arr { transition: transform .4s var(--ease); }
.link-underline:hover .arr { transform: translateX(5px); }

/* ---------------- Navbar ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,241,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1480px; margin: 0 auto; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo img { height: 46px; width: auto; }
/* Typographic brand lockup */
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand-name { font-family: var(--serif); font-size: 1.72rem; font-weight: 500; letter-spacing: .05em; color: var(--text); }
.brand-sub { font-family: var(--sans); font-size: .56rem; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: var(--muted); padding-left: .14em; }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-sub { color: var(--accent); }
.brand-sm .brand-name { font-size: 1.4rem; }
.brand-sm .brand-sub { font-size: .5rem; letter-spacing: .4em; }
.footer-brand { margin-bottom: 22px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-size: .82rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); position: relative; padding: 6px 0;
}
.nav-link::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background: var(--primary); transform: scaleX(0); transform-origin:center; transition: transform .4s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px; margin: -10px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--text); transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 80;
  background: var(--bg); transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; padding: 28px 30px 40px; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-menu-close { background: none; border: 0; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--text); }
.mobile-menu a.m-link {
  font-family: var(--serif); font-size: 1.9rem; padding: 13px 0; color: var(--text);
  border-bottom: 1px solid var(--border); display: block;
}
.mobile-menu a.m-link:last-of-type { border-bottom: 0; }
.mobile-menu .btn { width: 100%; margin-top: 22px; }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(31,29,25,.4); opacity: 0; visibility: hidden;
  transition: .4s var(--ease); z-index: 70;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* ---------------- Hero ---------------- */
.hero { position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
  min-height: min(86vh, 820px);
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 7vw, 96px) clamp(28px, 6vw, 92px);
  padding-left: var(--gutter);
}
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy .display { margin-bottom: 8px; }
.hero-copy .lead { margin: 24px 0 38px; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; overflow: hidden; background: var(--bg-2); }
.hero-cards { position: absolute; inset: 0; }
.hero-cards .hc {
  position: absolute; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--accent); background: var(--surface);
  box-shadow: 0 18px 44px rgba(31,29,25,.22);
  aspect-ratio: 4 / 5;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.hero-cards .hc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-cards .hc:hover {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.04) !important;
  box-shadow: 0 30px 60px rgba(31,29,25,.32);
  z-index: 20 !important;
}

/* ---------------- Marquee / trust ---------------- */
.trustbar { border-block: 1px solid var(--border); background: var(--surface); }
.trustbar-inner {
  display: flex; align-items: center; justify-content: center; gap: clamp(24px,5vw,64px);
  padding: 20px var(--gutter); flex-wrap: wrap; text-align: center;
}
.trust-item { display: flex; align-items: center; gap: 11px; color: var(--muted); }
.trust-item .t-ico { color: var(--primary); width: 20px; height: 20px; flex: none; }
.trust-item span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------------- Collection showcase ---------------- */
.showcase { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.4vw,30px); }
.feature {
  position: relative; overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  min-height: 460px; display: flex; align-items: flex-end;
  isolation: isolate; cursor: pointer;
}
.feature.tall { min-height: 560px; }
.feature img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 1s var(--ease);
}
.feature::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(to top, rgba(31,29,25,.62) 0%, rgba(31,29,25,.12) 45%, rgba(31,29,25,0) 70%);
}
.feature:hover img.bg { transform: scale(1.05); }
.feature-body { padding: clamp(26px, 3vw, 44px); color: #fff; }
.feature-body .eyebrow { color: var(--accent); margin-bottom: 12px; }
.feature-body h3 { color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.4rem); margin-bottom: 8px; }
.feature-body p { color: rgba(255,255,255,.86); margin-bottom: 18px; max-width: 42ch; font-size: .98rem; }
.feature-body .link-underline { color: #fff; }
.feature-body .link-underline::after { background: var(--accent); }

/* light feature variant (no image overlay) */
.feature.light { background: var(--bg-2); align-items: stretch; }
.feature.light::after { display: none; }
.feature.light .feature-body { color: var(--text); display:flex; flex-direction: column; justify-content: center; }
.feature.light .feature-body h3 { color: var(--text); }
.feature.light .feature-body p { color: var(--ink-soft); }
.feature.light .feature-body .eyebrow { color: var(--primary); }
.feature.light .feature-body .link-underline { color: var(--text); }
.feature.light .feature-body .link-underline::after { background: var(--primary); }

/* ---------------- Category grid ---------------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(10px,1.4vw,18px); }
.cat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 16px 20px; text-align: center; transition: all .4s var(--ease); cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.cat-thumb { aspect-ratio: 1; margin-bottom: 16px; overflow: hidden; border-radius: var(--radius); background: var(--bg-2); }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card:hover .cat-thumb img { transform: scale(1.06); }
.cat-card .c-name { font-family: var(--serif); font-size: 1.25rem; }

/* ---------------- Gallery / products ---------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(36px,5vw,56px); }
.chip {
  font-family: var(--sans); font-size: .76rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 20px; min-height: 42px; border: 1px solid var(--border-strong); background: transparent;
  color: var(--muted); border-radius: 100px; cursor: pointer; transition: all .35s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--text); }
.chip.active { background: var(--text); color: #fff; border-color: var(--text); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,30px); }
.product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: all .45s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.product-img { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.product:hover .product-img img { transform: scale(1.05); }
.product-img .view-pill {
  position: absolute; left: 50%; bottom: 16px; transform: translate(-50%, 14px);
  background: rgba(255,255,255,.95); color: var(--text); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; padding: 9px 18px; border-radius: 100px; opacity: 0;
  transition: all .45s var(--ease); white-space: nowrap; box-shadow: var(--shadow-sm);
}
.product:hover .view-pill { opacity: 1; transform: translate(-50%, 0); }
.product-meta { padding: 18px 18px 22px; }
.product-meta .p-coll { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 7px; }
.product-meta .p-name { font-family: var(--serif); font-size: 1.18rem; line-height: 1.18; margin-bottom: 4px; }
.product-meta .p-mat { font-size: .82rem; color: var(--muted); }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(31,29,25,.72);
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  padding: clamp(16px,4vw,48px); opacity: 0; visibility: hidden; transition: .4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-panel {
  background: var(--surface); border-radius: var(--radius); max-width: 940px; width: 100%;
  max-height: 90vh; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-lg); transform: translateY(16px) scale(.98); transition: transform .5s var(--ease);
}
.lightbox.open .lb-panel { transform: none; }
.lb-img { background: #fff; display: flex; align-items: center; }
.lb-img img { width: 100%; height: 100%; object-fit: cover; max-height: 90vh; }
.lb-body { padding: clamp(28px,3.4vw,52px); display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.lb-body .eyebrow { margin-bottom: 14px; }
.lb-body h3 { font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 14px; }
.lb-body .lb-mat { color: var(--muted); font-size: .9rem; margin-bottom: 8px; display:flex; gap:8px; align-items:center;}
.lb-note {
  font-size: .82rem; color: var(--muted); border-left: 2px solid var(--accent);
  padding: 4px 0 4px 14px; margin: 18px 0 26px; line-height: 1.5;
}
.lb-actions { display: flex; flex-direction: column; gap: 10px; }
.lb-actions .btn { width: 100%; }
.lb-close {
  position: absolute; top: 18px; right: 20px; z-index: 2; width: 44px; height: 44px;
  border-radius: 100px; background: rgba(255,255,255,.9); border: 1px solid var(--border);
  font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--text);
  display: flex; align-items: center; justify-content: center;
}

/* ---------------- Heritage strip ---------------- */
.heritage { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.heritage h2 { color: #fff; }
.heritage p { color: rgba(255,255,255,.74); }
.heritage .eyebrow { color: var(--accent); }
.heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items: center; }
.stat-row { display: flex; gap: clamp(28px,5vw,64px); margin-top: 40px; flex-wrap: wrap; }
.stat .s-num { font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.2rem); color: #fff; line-height: 1; }
.stat .s-lab { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-top: 10px; }
.heritage-media { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.heritage-media img { width:100%; height:100%; object-fit: cover; }

/* ---------------- Boutique teaser / directory ---------------- */
.boutique-list { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,1.8vw,24px); }
.boutique-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; transition: all .4s var(--ease); display: flex; flex-direction: column;
}
.boutique-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); transform: translateY(-3px); }
.boutique-card .b-tag { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.boutique-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.boutique-card .b-addr { font-size: .92rem; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.boutique-card .b-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.b-mini {
  display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; letter-spacing: .06em;
  padding: 9px 14px; min-height: 40px; border: 1px solid var(--border-strong); border-radius: 100px;
  color: var(--text); transition: all .3s var(--ease);
}
.b-mini:hover { background: var(--text); color: #fff; border-color: var(--text); }
.b-mini .ico { width: 14px; height: 14px; }
.area-head { display: flex; align-items: baseline; gap: 16px; margin: 0 0 26px; }
.area-head h2 { font-size: clamp(1.6rem,3vw,2.3rem); }
.area-head .count { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* map placeholder */
.map-placeholder {
  background:
    repeating-linear-gradient(45deg, var(--bg-2) 0 14px, var(--surface) 14px 28px);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; color: var(--muted); padding: 30px;
}
.map-placeholder .mp-ico { width: 40px; height: 40px; color: var(--secondary); }
.map-placeholder .mp-label { font-family: var(--sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; }
.map-placeholder .mp-sub { font-size: .82rem; max-width: 36ch; }

/* ---------------- Instagram strip ---------------- */
.ig-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; }
.ig-cell { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--bg-2); }
.ig-cell img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig-cell:hover img { transform: scale(1.08); }
.ig-cell::after {
  content:""; position:absolute; inset:0; background: rgba(188,115,80,0); transition: background .4s var(--ease);
}
.ig-cell:hover::after { background: rgba(188,115,80,.16); }

/* ---------------- CTA band ---------------- */
.cta-band { background: var(--bg-2); border-block: 1px solid var(--border); text-align: center; }
.cta-band .display { font-size: clamp(2.2rem,5vw,4rem); margin-bottom: 18px; }
.cta-band .btnrow { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------------- Forms ---------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(188,115,80,.12);
}
.field .err { color: #a23b2d; font-size: .76rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0533f; }
.field.invalid .err { display: block; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 100px; background: var(--bg-2); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; border: 1px solid var(--border);
}

/* contact info rows */
.info-row { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; }
.info-row .i-ico { width: 22px; height: 22px; color: var(--primary); flex: none; margin-top: 3px; }
.info-row .i-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.info-row .i-val { font-size: 1.02rem; color: var(--text); }
.info-row a.i-val:hover { color: var(--primary); }

/* ---------------- Footer ---------------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding-block: clamp(54px,7vw,84px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,56px); }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; margin-bottom: 22px; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 20px; }
.footer p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 34ch; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: rgba(255,255,255,.66); font-size: .92rem; transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); transition: all .3s var(--ease);
}
.socials a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer-bottom .disclaimer { max-width: 60ch; }

/* ---------------- Mobile action bar ---------------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; display: none;
  background: rgba(251,247,241,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 8px;
}
.action-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text);
  padding: 7px 4px; border-radius: var(--radius); min-height: 48px; justify-content: center;
}
.action-bar a.primary { background: var(--primary); color: #fff; }
.action-bar a .ab-ico { width: 19px; height: 19px; }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* ---------------- Page header (interior pages) ---------------- */
.page-head { background: var(--bg-2); border-bottom: 1px solid var(--border); padding-block: clamp(48px,7vw,92px); }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 { margin-bottom: 18px; }
.crumbs { font-size: .78rem; letter-spacing: .08em; color: var(--muted); margin-bottom: 26px; }
.crumbs a:hover { color: var(--primary); }
.crumbs .sep { margin: 0 8px; color: var(--border-strong); }

/* utilities */
.hide-mobile { }
.show-mobile { display: none !important; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 920px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; min-height: unset; }
  .hero-media { min-height: 70vh; order: -1; }
  .hero-copy { padding: clamp(40px,9vw,64px) var(--gutter) clamp(48px,9vw,64px); }
  .showcase-row { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-media { order: -1; aspect-ratio: 16/10; }
  .boutique-list { grid-template-columns: repeat(2,1fr); }
  .lb-panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .lb-img img { max-height: 44vh; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .action-bar { display: flex; }
  body { padding-bottom: 76px; }
  .footer { margin-bottom: 0; }
  .feature { min-height: 380px; }
  .feature.tall { min-height: 420px; }
  .hero-cta .btn { flex: 1; }
  .footer-bottom { flex-direction: column; }
  .product-meta { padding: 14px 14px 18px; }
  .product-meta .p-name { font-size: 1.05rem; }
}

@media (max-width: 400px) {
  :root { --gutter: 18px; }
  .product-meta .p-mat { font-size: .76rem; }
  .action-bar a span.ab-txt { font-size: .58rem; }
}
