/* Brass & Oak — static barbershop sample.
   Walnut, brass and cognac leather. Mobile-first, no framework. */

/* ---------- Tokens ---------- */
:root {
  --walnut-950: #140d09;
  --walnut-900: #1b120d;
  --walnut-800: #2a1b13;
  --walnut-700: #3b2519;
  --walnut-600: #4e3223;

  --cognac: #8b4a2b;
  --cognac-light: #a85f3b;
  --cognac-deep: #6b3820;

  --gold: #c9a227;
  --gold-light: #e2c56a;
  --gold-deep: #9e7d1c;
  --gold-ink: #7a5f0f;         /* gold for small text on cream — AA */

  --cream: #f4ebdc;
  --cream-2: #ede1cc;
  --paper: #faf5ec;
  --charcoal: #2b2622;
  --charcoal-2: #4a423b;
  --muted: #6b5d52;
  --muted-on-dark: #c9b8a6;
  --cream-on-dark: #f1e6d3;

  --line-gold: rgba(201, 162, 39, 0.38);
  --line-gold-strong: rgba(201, 162, 39, 0.7);
  --line-dark: rgba(43, 38, 34, 0.12);
  --line-light: rgba(244, 235, 220, 0.14);

  --shadow-soft: 0 1px 2px rgba(27, 18, 13, 0.08), 0 24px 48px -28px rgba(27, 18, 13, 0.45);
  --shadow-deep: 0 2px 4px rgba(0, 0, 0, 0.25), 0 40px 80px -30px rgba(0, 0, 0, 0.7);

  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 6px;
  --radius-sm: 3px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 220ms;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-color: var(--line-gold-strong); text-underline-offset: 0.18em; }
a:hover { text-decoration-color: currentColor; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(2.05rem, 4.3vw, 3.25rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); }
p { margin: 0 0 1em; }
em { font-style: italic; }
small { font-size: 0.8em; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Focus — brass ring, visible everywhere */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-header :focus-visible, .hero :focus-visible,
.services :focus-visible, .hours :focus-visible, .site-footer :focus-visible,
.kind-words :focus-visible, .page-hero :focus-visible, .bag-panel :focus-visible, .community :focus-visible { outline-color: var(--gold-light); }

.skip-link {
  position: absolute; left: 1rem; top: -100%;
  background: var(--gold); color: var(--walnut-900);
  padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 0.75rem; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.74rem; line-height: 1.5; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-ink); margin: 0 0 1.1rem;
  text-wrap: balance;
}
/* The rule sits on the first line's x-height so a wrapped eyebrow still reads as one unit. */
.eyebrow .rule { width: 2.25rem; height: 1px; background: var(--gold); flex: none; margin-top: 0.7em; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light .rule { background: var(--gold-light); }
.lede, .section-lede { font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.65; }
.section-lede { max-width: 56ch; color: var(--muted); }
.on-dark .section-lede, .services .section-lede, .hours .section-lede { color: var(--muted-on-dark); }
.text-link {
  display: inline-flex; gap: 0.5rem; align-items: center;
  font-weight: 600; color: var(--gold-ink); text-decoration: none;
  border-bottom: 1px solid var(--line-gold-strong); padding-bottom: 0.15rem;
  transition: border-color var(--dur) var(--ease-out), gap var(--dur) var(--ease-out);
}
.text-link:hover { border-color: var(--gold-ink); gap: 0.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem; min-height: 3rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--dur) var(--ease-out), background var(--dur), border-color var(--dur), box-shadow var(--dur), color var(--dur);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--walnut-900);
  border-color: rgba(158, 125, 28, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.6), 0 10px 24px -14px rgba(201, 162, 39, 0.9);
}
.btn-gold:hover { box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.7), 0 14px 28px -14px rgba(201, 162, 39, 1); }
.btn-ghost {
  background: transparent; color: var(--cream-on-dark);
  border-color: var(--line-gold-strong);
}
.btn-ghost:hover { background: rgba(201, 162, 39, 0.1); border-color: var(--gold-light); }
.booking .btn-ghost { color: var(--charcoal); border-color: var(--line-gold-strong); }
.booking .btn-ghost:hover { background: rgba(201, 162, 39, 0.12); }
.btn-ghost-dark { background: transparent; color: var(--charcoal); border-color: var(--line-gold-strong); }
.btn-ghost-dark:hover { background: rgba(201, 162, 39, 0.12); border-color: var(--gold-deep); }
.btn-small { padding: 0.6rem 1.1rem; min-height: 2.4rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Sample bar ---------- */
.sample-bar {
  background: var(--walnut-950); color: var(--gold-light);
  font-size: 0.74rem; letter-spacing: 0.03em; text-align: center; line-height: 1.4;
  padding: 0.4rem var(--gutter);
  border-bottom: 1px solid var(--line-gold);
}
.sample-bar strong { font-weight: 600; color: var(--gold-light); }
.sample-bar .sample-bar-more { display: none; color: var(--muted-on-dark); }
@media (min-width: 720px) { .sample-bar .sample-bar-more { display: inline; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(27, 18, 13, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-gold);
  color: var(--cream-on-dark);
  transition: box-shadow var(--dur), background var(--dur);
}
.site-header[data-scrolled="true"] { background: rgba(20, 13, 9, 0.94); box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.8); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 4.25rem;
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; padding: 0.4rem 0; }
.brand-word {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.55rem; letter-spacing: 0.03em; color: var(--cream);
}
.brand-word .amp { font-style: italic; color: var(--gold); font-weight: 400; margin: 0 0.06em; }
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 0.3rem; padding-left: 0.1em;
}
.header-tools { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle, .bag-button {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; border: 1px solid var(--line-gold-strong); color: var(--cream-on-dark);
  border-radius: var(--radius); padding: 0.5rem 0.85rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  min-height: 2.4rem;
}
.bag-button { gap: 0.45rem; }
.bag-button:hover { background: rgba(201, 162, 39, 0.1); border-color: var(--gold-light); }
.bag-button svg { width: 16px; height: 16px; flex: none; }
.bag-count {
  min-width: 1.3rem; height: 1.3rem; padding: 0 0.35rem; border-radius: 999px;
  background: var(--gold); color: var(--walnut-900);
  font-size: 0.7rem; font-weight: 700; line-height: 1.3rem; text-align: center;
  font-variant-numeric: tabular-nums;
}
.bag-count[data-empty="true"] { display: none; }
html:not(.js) .bag-button { display: none; }
.bag-button-label { display: none; }
@media (min-width: 480px) { .bag-button-label { display: inline; } }
.nav-toggle .bars { position: relative; width: 18px; height: 12px; display: inline-block; }
.nav-toggle .bars::before, .nav-toggle .bars::after, .nav-toggle .bars {
  border-radius: 1px;
}
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--gold);
  transition: transform var(--dur) var(--ease-out), top var(--dur) var(--ease-out);
}
.nav-toggle .bars::before { top: 1px; }
.nav-toggle .bars::after { top: 10px; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 5.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { top: 5.5px; transform: rotate(-45deg); }

.site-header[data-menu-open="true"] { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--walnut-950); }
.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%; z-index: 1;
  background: var(--walnut-950);
  border-bottom: 1px solid var(--line-gold);
  padding: 0.75rem var(--gutter) 1.25rem;
  flex-direction: column; gap: 0.25rem;
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.8);
}
.site-nav[data-open="true"] { display: flex; }
.site-nav a {
  text-decoration: none; font-weight: 500; font-size: 1.05rem;
  padding: 0.75rem 0.25rem; color: var(--cream-on-dark);
  border-bottom: 1px solid var(--line-light);
}
.site-nav a:not(.btn):hover { color: var(--gold-light); }
/* `.site-nav a` outranks `.btn-small`, so the CTA restates its button metrics here. */
.site-nav a.btn {
  margin-top: 0.75rem; justify-content: center;
  padding: 0.7rem 1.1rem; min-height: 2.6rem; font-size: 0.92rem;
  border: 1px solid rgba(158, 125, 28, 0.6); border-radius: var(--radius);
}

/* The full nav needs ~1000px before brand, seven links, CTA and Bag sit on one line without wrapping. */
@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .header-tools { order: 3; }
  .brand-word, .site-nav a { white-space: nowrap; }
  .site-nav {
    display: flex; position: static; flex-direction: row; align-items: center; gap: clamp(1.2rem, 2vw, 1.9rem);
    background: transparent; border: 0; padding: 0; box-shadow: none;
    margin-left: auto; margin-right: 1.25rem;
  }
  .site-nav a { font-size: 0.92rem; padding: 0.4rem 0; border: 0; position: relative; letter-spacing: 0.01em; }
  .site-nav a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--ease-out);
  }
  .site-nav a:not(.btn):hover::after, .site-nav a:not(.btn)[aria-current="true"]::after { transform: scaleX(1); }
  .site-nav a.btn { margin: 0; padding: 0.6rem 1.1rem; min-height: 2.4rem; font-size: 0.88rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--walnut-900); color: var(--cream-on-dark);
  min-height: min(92svh, 900px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: 62% 50%; z-index: -2; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 90% at 78% 40%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(90deg, rgba(20, 13, 9, 0.96) 0%, rgba(20, 13, 9, 0.9) 34%, rgba(27, 18, 13, 0.62) 62%, rgba(27, 18, 13, 0.4) 100%),
    linear-gradient(180deg, rgba(20, 13, 9, 0.25) 0%, rgba(20, 13, 9, 0.1) 40%, rgba(20, 13, 9, 0.85) 100%);
}
.hero-inner {
  display: grid; gap: 2.5rem;
  padding-block: clamp(2.75rem, 7vw, 5.5rem) clamp(2.5rem, 5.5vw, 4rem);
  flex: 1; align-content: center;
}
.hero-copy { max-width: 40rem; }
.hero h1 { color: var(--cream); margin-bottom: 1.1rem; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero .lede { color: var(--muted-on-dark); max-width: 36rem; margin-bottom: 1.8rem; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow .rule { background: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }
.hero-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem 1.25rem;
  border-top: 1px solid var(--line-gold); padding-top: 1.4rem; max-width: 36rem;
}
.hero-facts li { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.hero-facts strong { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 4vw, 1.55rem); line-height: 1; color: var(--cream); white-space: nowrap; }
.hero-facts span { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); line-height: 1.35; }
@media (min-width: 560px) {
  .hero-facts { display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem; }
  .hero-facts span { font-size: 0.78rem; }
}

.hero-portrait { margin: 0; justify-self: center; width: min(100%, 30rem); }
.portrait-frame {
  position: relative; border-radius: var(--radius); overflow: visible;
  box-shadow: var(--shadow-deep);
}
.portrait-frame::before {
  content: ""; position: absolute; inset: -0.85rem; border: 1px solid var(--line-gold-strong);
  border-radius: calc(var(--radius) + 6px); pointer-events: none;
  transform: translate(0.55rem, 0.55rem);
}
.portrait-frame img {
  border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  outline: 1px solid rgba(201, 162, 39, 0.25); outline-offset: -1px;
  filter: saturate(0.94) contrast(1.02);
}
.hero-portrait figcaption {
  display: flex; flex-direction: column; gap: 0.15rem; margin-top: 1.5rem; padding-left: 0.1rem;
}
.cap-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); line-height: 1.1; }
.cap-role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); }

.materials {
  position: relative; border-top: 1px solid var(--line-gold);
  background: rgba(20, 13, 9, 0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
/* Phones: a 2×2 grid with no separators, so a wrapped row never ends on an orphan dot. */
.materials-inner {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem 1rem;
  padding-block: 0.9rem; text-align: center;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.05em; color: var(--muted-on-dark);
}
.materials .dot { display: none; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: none; }
@media (min-width: 720px) {
  .materials-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.75rem 1.1rem; font-size: 1.05rem; letter-spacing: 0.06em; padding-block: 0.95rem; }
  .materials .dot { display: block; }
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
  .hero-portrait { justify-self: end; width: 100%; max-width: 34rem; transform: translateY(1.5rem); }
  .portrait-frame img { aspect-ratio: 4 / 3; }
}

/* ---------- Sections ---------- */
/* Section pacing: ~3.5–5.5rem a side. The old 7.5rem a side stacked into 15rem of empty cream between bands. */
.section { padding-block: clamp(3.5rem, 6.5vw, 5.5rem); position: relative; }
.section-head { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); max-width: 60rem; }
/* First band under a sub-page hero sits closer; the hero already carries the breathing room. */
.page-hero + .section { padding-top: clamp(2.75rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: 0.7rem; }

/* Paper grain on cream sections — subtle, static */
.about, .gallery, .booking {
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 500px at 90% -10%, rgba(201, 162, 39, 0.08), transparent 60%),
    repeating-linear-gradient(0deg, rgba(43, 38, 34, 0.012) 0 1px, transparent 1px 3px);
}
.gallery { background-color: var(--paper); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 2.75rem; align-items: center; }
.about-photo { margin: 0; position: relative; }
.about-photo img {
  border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: 45% 40%; width: 100%;
  box-shadow: var(--shadow-soft);
}
.about-photo::after {
  content: ""; position: absolute; left: -0.9rem; top: 1.25rem; bottom: -0.9rem; width: 40%;
  border: 1px solid var(--line-gold-strong); border-right: 0; border-radius: var(--radius) 0 0 var(--radius);
  pointer-events: none;
}
.about-photo figcaption {
  margin-top: 1rem; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--muted);
}
.about-copy h2 { margin-bottom: 1.1rem; }
.about-copy p { color: var(--charcoal-2); max-width: 56ch; }
.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
  margin: 2rem 0 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-gold);
}
.stats dt { font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.65rem); line-height: 1.05; color: var(--charcoal); }
.stats dd { margin: 0.25rem 0 0; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 6vw, 6rem); }
  .about-photo { max-width: 30rem; }
}

/* ---------- Services (walnut) ---------- */
.services {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(139, 74, 43, 0.35), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(201, 162, 39, 0.12), transparent 60%),
    var(--walnut-900);
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
}
.services h2 { color: var(--cream); }
.menu-grid { display: grid; gap: 2.25rem; }
.menu-group {
  padding: 1.75rem 1.5rem 1.4rem;
  background: rgba(244, 235, 220, 0.035);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  position: relative;
}
.menu-group::before {
  content: ""; position: absolute; inset: 6px; border: 1px solid rgba(201, 162, 39, 0.16); border-radius: 3px; pointer-events: none;
}
.menu-group h3 {
  color: var(--gold-light); font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 1.1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--line-gold);
}
.menu li + li { margin-top: 1.1rem; }
.menu .item { display: flex; align-items: baseline; gap: 0.6rem; }
.menu .name { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; color: var(--cream); }
.menu .name small { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); margin-left: 0.3rem; }
.menu .leader { flex: 1; border-bottom: 1px dotted rgba(201, 162, 39, 0.55); transform: translateY(-0.35em); min-width: 1.5rem; }
.menu .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu .desc { margin: 0.3rem 0 0; font-size: 0.92rem; color: var(--muted-on-dark); line-height: 1.5; max-width: 40ch; }
.menu-note {
  margin: 2.5rem auto 0; text-align: center; color: var(--muted-on-dark); font-size: 0.98rem; max-width: 48ch;
}
.menu-note strong { color: var(--cream); font-weight: 600; }

@media (min-width: 720px) { .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; } .menu-group { padding: 2rem 1.75rem 1.6rem; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 42vw;
  grid-auto-flow: dense;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--walnut-800); box-shadow: var(--shadow-soft);
  outline: 1px solid var(--line-gold); outline-offset: -1px;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
  filter: saturate(0.96);
}
.tile:hover img { transform: scale(1.035); filter: saturate(1.02); }
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.25rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(20, 13, 9, 0.78));
  color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.03em;
}
/* Mobile: 2 columns — wide tile spans both, the tall tile spans two rows, the rest fill in. */
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.credits-line { margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted); }
.credits-line a { color: var(--gold-ink); }

@media (min-width: 720px) {
  /* Desktop: a fixed 3×3 composition, no holes. */
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 22vw, 300px);
    grid-template-areas:
      "tall wide wide"
      "tall n1   n2"
      "n3   w2   w2";
    gap: 1rem;
  }
  .g-tall { grid-area: tall; } .g-wide { grid-area: wide; } .g-n1 { grid-area: n1; }
  .g-n2 { grid-area: n2; } .g-n3 { grid-area: n3; } .g-w2 { grid-area: w2; }
  .tile-cap { font-size: 1.15rem; padding-inline: 1.25rem; }
}

/* ---------- Hours + location (cognac walnut) ---------- */
.hours {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(139, 74, 43, 0.5), transparent 60%),
    linear-gradient(180deg, var(--walnut-800), var(--walnut-900));
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-gold);
}
.hours h2 { color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.25rem; }
.hours-grid { display: grid; gap: 1.5rem; align-items: stretch; }
.hours-card, .location-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(20, 13, 9, 0.55);
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.hours-table th, .hours-table td { padding: 0.7rem 0; border-bottom: 1px solid var(--line-light); text-align: left; }
.hours-table th { font-weight: 500; color: var(--cream); font-family: var(--font-display); font-size: 1.15rem; }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; color: var(--cream-on-dark); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.closed { color: var(--muted-on-dark); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.hours-note { margin: 1.25rem 0 0; font-size: 0.92rem; color: var(--muted-on-dark); }
.hours-note em { color: var(--gold-light); }
.location-card address { line-height: 1.7; font-size: 1.02rem; margin-bottom: 1.25rem; }
.location-card address strong { color: var(--cream); font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.location-card address a { color: var(--gold-light); text-decoration-color: var(--line-gold-strong); }
.location-facts li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; color: var(--muted-on-dark); font-size: 0.95rem; }
.location-facts li::before {
  content: ""; position: absolute; left: 0; top: 0.65em; width: 0.7rem; height: 1px; background: var(--gold);
}
.fine-print { margin: 1.25rem 0 0; font-size: 0.78rem; color: var(--muted-on-dark); opacity: 0.8; }

@media (min-width: 900px) { .hours-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; } }

/* ---------- Booking ---------- */
.booking-grid { display: grid; gap: 2.5rem; align-items: start; }
.booking-copy p { color: var(--charcoal-2); max-width: 52ch; }
.booking-points { margin: 1.5rem 0; }
.booking-points li { position: relative; padding-left: 1.5rem; margin-bottom: 0.7rem; color: var(--charcoal-2); }
.booking-points li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 0.8rem; height: 1px; background: var(--gold-deep); }
.demo-flag {
  display: inline-block; padding: 0.7rem 1rem; border-radius: var(--radius);
  background: rgba(201, 162, 39, 0.12); border: 1px solid var(--line-gold); font-size: 0.9rem; color: var(--charcoal);
}

.booking-form {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line-gold-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.booking-form::before {
  content: ""; position: absolute; inset: 7px; border: 1px solid var(--line-gold); border-radius: 3px; pointer-events: none;
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--charcoal-2); margin-bottom: 0.45rem; }
.field label .optional { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted); margin-left: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 0.95rem;
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  color: var(--charcoal); transition: border-color var(--dur), box-shadow var(--dur);
}
.field input::placeholder, .field textarea::placeholder { color: #9a8b7d; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(43, 38, 34, 0.28); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.28);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%239e7d1c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem;
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field-row { display: grid; gap: 1rem; }
.field [aria-invalid="true"] { border-color: #a5432a; box-shadow: 0 0 0 3px rgba(165, 67, 42, 0.15); }
.error { margin: 0.4rem 0 0; font-size: 0.82rem; color: #8f3a22; }
.form-fine { margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--muted); text-align: center; }

.booking-form[data-state="done"] > :not(.confirmation) { display: none; }
.confirmation { text-align: center; padding: 1rem 0.25rem 0.5rem; }
.confirmation:focus-visible { outline: none; }
.confirmation-mark { color: var(--gold-deep); display: flex; justify-content: center; margin-bottom: 1rem; }
.confirmation h3 { margin-bottom: 0.6rem; }
.confirmation p { color: var(--charcoal-2); max-width: 40ch; margin-inline: auto; }
.confirmation-demo { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.confirmation .btn { margin-top: 0.75rem; }

@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .booking-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 6vw, 5.5rem); } .booking-copy { position: sticky; top: 6rem; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--walnut-950); color: var(--muted-on-dark);
  border-top: 1px solid var(--line-gold);
  padding-block: 3rem 2rem;
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand-word { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.footer-brand p { margin: 0; }
/* Eight links read as two short columns rather than one tall stack. */
.footer-nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 0.5rem 2.5rem; align-content: start; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a, .footer-contact a { text-decoration: none; color: var(--cream-on-dark); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-legal { padding-top: 1.5rem; font-size: 0.78rem; line-height: 1.6; color: rgba(201, 184, 166, 0.85); }
.footer-legal p { max-width: 90ch; }
.footer-legal a { color: var(--gold-light); }
.footer-legal strong { color: var(--cream-on-dark); }
.copyright { margin: 0.5rem 0 0; opacity: 0.8; }

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.1fr; gap: 2rem 2.5rem; } }

/* ---------- Kind words (testimonials, walnut) ---------- */
.kind-words {
  background:
    radial-gradient(800px 500px at 0% 100%, rgba(139, 74, 43, 0.42), transparent 60%),
    radial-gradient(700px 400px at 100% 0%, rgba(201, 162, 39, 0.1), transparent 60%),
    linear-gradient(180deg, var(--walnut-900), var(--walnut-800));
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
}
.kind-words h2 { color: var(--cream); }
.kind-words-grid { display: grid; gap: 2.5rem; align-items: start; }
.kind-words .section-head { margin-bottom: 0; }
.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.1rem;
  margin: 1.6rem 0 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-gold);
}
.rating-number { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--cream); }
.rating-meta { display: flex; flex-direction: column; gap: 0.3rem; }
.rating-meta span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); }
.stars { display: inline-flex; gap: 0.15rem; color: var(--gold); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.kind-words .text-link { color: var(--gold-light); border-color: var(--line-gold-strong); }
.kind-words .text-link:hover { border-color: var(--gold-light); }

.quote-grid { display: grid; gap: 1.1rem; }
.quote-card {
  --qc-bg: rgba(244, 235, 220, 0.035);
  --qc-border: var(--line-gold);
  --qc-inner: rgba(201, 162, 39, 0.16);
  --qc-text: var(--cream);
  --qc-muted: var(--muted-on-dark);
  --qc-rule: var(--line-light);
  position: relative; margin: 0;
  padding: 2.2rem 1.5rem 1.5rem;
  background: var(--qc-bg);
  border: 1px solid var(--qc-border); border-radius: var(--radius);
  display: flex; flex-direction: column;
}
.quote-card::before {
  content: ""; position: absolute; inset: 6px; border: 1px solid var(--qc-inner); border-radius: 3px; pointer-events: none;
}
.quote-card::after {
  content: "\201C"; position: absolute; top: 0.5rem; left: 1.2rem;
  font-family: var(--font-display); font-size: 4.6rem; line-height: 1; color: var(--gold); opacity: 0.9;
}
.quote-card blockquote {
  margin: 0; flex: 1;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.18rem, 1.5vw, 1.4rem); line-height: 1.45; color: var(--qc-text);
  text-wrap: pretty;
}
.quote-card blockquote p { margin: 0; }
.quote-card figcaption {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--qc-rule);
}
.initials {
  flex: none; width: 2.7rem; height: 2.7rem; border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--walnut-900);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.6), 0 6px 14px -8px rgba(201, 162, 39, 0.9);
}
.quote-who { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.quote-name { font-weight: 600; font-size: 0.95rem; color: var(--qc-text); }
.quote-role { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--qc-muted); }
.quote-card .stars { margin-left: auto; align-self: flex-start; }
.quote-card .stars svg { width: 12px; height: 12px; }

@media (min-width: 720px) { .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1040px) {
  .kind-words-grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.55fr); gap: clamp(2.5rem, 5vw, 5rem); }
  .kind-words .section-head { position: sticky; top: 6rem; }
}

/* ---------- Product cards (home shelf, shop, PDP "also") ---------- */
.shelf {
  background-color: var(--cream);
  background-image:
    radial-gradient(1000px 500px at 10% -10%, rgba(201, 162, 39, 0.1), transparent 60%),
    repeating-linear-gradient(0deg, rgba(43, 38, 34, 0.012) 0 1px, transparent 1px 3px);
}
.shelf-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; }
.shelf-head .section-head { margin-bottom: 0; }
.shelf-head .text-link { margin-bottom: 0.4rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }
.product-grid.is-scroller {
  grid-template-columns: none;
  grid-auto-flow: column; grid-auto-columns: min(68%, 17rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); padding-bottom: 0.75rem;
  scrollbar-width: thin; scrollbar-color: var(--line-gold-strong) transparent;
}
.product-grid.is-scroller > * { scroll-snap-align: start; }
.product-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line-gold); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color var(--dur);
}
.product-card:hover { transform: translateY(-3px); border-color: var(--line-gold-strong); box-shadow: 0 2px 4px rgba(27, 18, 13, 0.08), 0 30px 50px -28px rgba(27, 18, 13, 0.5); }
.product-media {
  display: block; position: relative; aspect-ratio: 1 / 1; padding: 7% 10% 3%;
  background:
    radial-gradient(60% 40% at 50% 100%, rgba(201, 162, 39, 0.14), transparent 70%),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream-2) 100%);
  border-bottom: 1px solid var(--line-gold);
}
.product-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 500ms var(--ease-out); }
.product-card:hover .product-media img { transform: translateY(-4px); }
.product-body { display: flex; flex-direction: column; gap: 0.35rem; padding: 0.9rem 0.9rem 1rem; flex: 1; }
.product-kicker { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.product-name { font-size: 1.15rem; margin: 0; line-height: 1.15; }
.product-name a { text-decoration: none; color: var(--charcoal); }
.product-name a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.product-name a:hover { color: var(--cognac-deep); }
.product-blurb { margin: 0; font-size: 0.84rem; color: var(--muted); line-height: 1.5; flex: 1; padding-bottom: 0.35rem; }
/* Price line over a full-width button: identical on every card at every width (a side-by-side
   footer wrapped on "From $45 · Choose amount" and left one card out of step). margin-top:auto
   keeps the footer on the card's baseline even when the blurb is hidden. */
.product-foot { display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--line-dark); }
.product-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--charcoal); font-variant-numeric: tabular-nums; white-space: nowrap; line-height: 1; }
.product-price small { font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-left: 0.25rem; }
.product-foot .btn { position: relative; z-index: 2; width: 100%; }
/* Two-up phone cards drop the blurb; the product page carries the story. */
.product-grid:not(.is-scroller) .product-blurb { display: none; }

@media (min-width: 560px) {
  .product-body { padding: 1.05rem 1.1rem 1.15rem; }
  .product-kicker { font-size: 0.68rem; letter-spacing: 0.16em; }
  .product-name { font-size: 1.32rem; }
  .product-blurb { font-size: 0.88rem; }
  .product-price { font-size: 1.3rem; }
  .product-price small { font-size: 0.68rem; }
  .product-grid:not(.is-scroller) .product-blurb { display: block; }
}
@media (min-width: 720px) {
  .product-grid, .product-grid.is-scroller {
    grid-auto-flow: row; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-columns: auto; gap: 1rem;
    overflow: visible; margin-inline: 0; padding-inline: 0; padding-bottom: 0; scroll-snap-type: none;
  }
  .product-media { aspect-ratio: 4 / 5; padding: 8% 10% 4%; }
}
@media (min-width: 1040px) {
  .product-grid, .product-grid.is-scroller { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.1rem; }
  .product-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
  .product-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
}

/* ---------- Sub-page hero ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--walnut-900); color: var(--cream-on-dark);
  border-bottom: 1px solid var(--line-gold);
}
.page-hero-bg, .page-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-bg img { object-fit: cover; object-position: 50% 45%; z-index: -2; filter: saturate(0.9); }
.page-hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 13, 9, 0.95) 0%, rgba(20, 13, 9, 0.86) 45%, rgba(27, 18, 13, 0.55) 100%),
    linear-gradient(180deg, rgba(20, 13, 9, 0.2), rgba(20, 13, 9, 0.75));
}
.page-hero-inner { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.25rem, 5vw, 3.75rem); max-width: 46rem; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 0.8rem; }
.page-hero h1 em { color: var(--gold-light); font-weight: 400; }
.page-hero .lede { color: var(--muted-on-dark); max-width: 38rem; margin: 0; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow .rule { background: var(--gold-light); }
.crumbs { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--muted-on-dark); margin: 0 0 1.4rem; }
.crumbs a { color: var(--cream-on-dark); text-decoration: none; border-bottom: 1px solid var(--line-gold-strong); padding-bottom: 0.1rem; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--gold-deep); }
.crumbs [aria-current] { color: var(--cream); }
.page-hero.is-compact .page-hero-inner { padding-block: clamp(1.25rem, 2.5vw, 1.75rem); }
.page-hero.is-compact .crumbs { margin-bottom: 0; }

/* ---------- Shop page ---------- */
.shop-intro { display: grid; gap: 1.5rem; align-items: start; margin-bottom: 0.5rem; }
.shop-intro .section-lede { margin: 0; }
.shop-facts { display: grid; gap: 0.55rem; font-size: 0.85rem; color: var(--muted); }
.shop-facts li { position: relative; padding-left: 1.1rem; }
.shop-facts li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 0.6rem; height: 1px; background: var(--gold-deep); }
.shelf-note { margin: 2.75rem auto 0; text-align: center; color: var(--muted); font-size: 0.98rem; max-width: 52ch; }
@media (min-width: 900px) {
  .shop-intro { grid-template-columns: minmax(0, 1fr) minmax(0, 20rem); gap: 3rem; }
  .shop-facts { padding: 1.4rem 1.5rem; border: 1px solid var(--line-gold); border-radius: var(--radius); background: var(--paper); }
}

/* ---------- Product detail page ---------- */
.pdp { padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(3.5rem, 6.5vw, 5.5rem); }
.pdp-grid { display: grid; gap: 2.25rem; align-items: start; }
.pdp-media {
  position: relative; padding: max(9%, 3.4rem) 12% 5%;
  background:
    radial-gradient(60% 40% at 50% 100%, rgba(201, 162, 39, 0.16), transparent 70%),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream-2) 100%);
  border: 1px solid var(--line-gold-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.pdp-media::before { content: ""; position: absolute; inset: 7px; border: 1px solid var(--line-gold); border-radius: 3px; pointer-events: none; }
.pdp-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; }
.pdp-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 0.35rem 0.65rem; border-radius: 999px;
  background: var(--walnut-900); color: var(--gold-light); border: 1px solid var(--line-gold-strong);
}
.pdp-details .eyebrow { margin-bottom: 0.8rem; }
.pdp-details h1 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-bottom: 0.5rem; }
.pdp-sub { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--muted); margin: 0 0 1.25rem; }
.pdp-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.6rem;
  font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--charcoal);
  padding: 1.1rem 0; border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
  font-variant-numeric: tabular-nums;
}
.pdp-price small { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.pdp-story { margin-top: 1.4rem; }
.pdp-story p { color: var(--charcoal-2); max-width: 56ch; }
.spec-list { margin: 1.4rem 0 0; display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 0.55rem 1.25rem; align-items: baseline; }
.spec-list dt { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.spec-list dd { margin: 0; font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); }

.variant-group { margin-top: 1.6rem; border: 0; padding: 0; min-width: 0; }
.variant-group legend { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--charcoal-2); margin-bottom: 0.6rem; padding: 0; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { position: relative; }
.pill input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.pill span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 4.5rem; min-height: 2.6rem;
  padding: 0.5rem 1rem; border: 1px solid var(--line-dark); border-radius: var(--radius);
  font-family: var(--font-display); font-size: 1.15rem; color: var(--charcoal); background: #fff;
  transition: border-color var(--dur), background var(--dur), color var(--dur), box-shadow var(--dur);
}
.pill input:hover + span { border-color: rgba(43, 38, 34, 0.35); }
.pill input:checked + span {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--walnut-900); border-color: rgba(158, 125, 28, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.6);
}
.pill input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }

.buy-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 1.6rem; }
.qty { display: inline-flex; align-items: stretch; border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; overflow: hidden; }
.qty button {
  width: 2.9rem; min-height: 3rem; border: 0; background: transparent; color: var(--charcoal); font-size: 1.15rem;
  transition: background var(--dur), color var(--dur);
}
.qty button:hover { background: rgba(201, 162, 39, 0.14); color: var(--cognac-deep); }
.qty button:focus-visible { outline-offset: -3px; }
.qty output { min-width: 2.6rem; display: grid; place-items: center; font-weight: 600; font-size: 0.98rem; border-inline: 1px solid var(--line-dark); font-variant-numeric: tabular-nums; }
.buy-row .btn-gold { flex: 1 1 12rem; max-width: 22rem; }
.pdp-secondary { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; font-size: 0.9rem; color: var(--charcoal-2); }
.pdp-secondary .text-link { font-size: 0.9rem; }
.pdp-details .demo-flag {
  margin-top: 1.6rem; display: block; padding: 0;
  background: none; border: 0; border-top: 1px solid var(--line-gold); padding-top: 0.9rem;
  font-size: 0.82rem; color: var(--muted); max-width: 52ch;
}
.pdp-details .demo-flag p { margin: 0; }
.pdp-details .demo-flag strong { color: var(--charcoal-2); }

.pdp-blocks { display: grid; gap: 1.25rem; margin-top: clamp(2.25rem, 4.5vw, 3.5rem); }
.pdp-block {
  padding: 1.6rem 1.5rem 1.4rem; background: var(--paper);
  border: 1px solid var(--line-gold); border-radius: var(--radius); position: relative;
}
.pdp-block::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(201, 162, 39, 0.16); border-radius: 3px; pointer-events: none; }
.pdp-block h3 { font-size: 1.45rem; margin-bottom: 0.9rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line-gold); color: var(--charcoal); }
.pdp-block ul li, .pdp-block ol li { position: relative; padding-left: 1.4rem; margin-bottom: 0.55rem; color: var(--charcoal-2); font-size: 0.95rem; line-height: 1.55; }
.pdp-block ul li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 0.7rem; height: 1px; background: var(--gold-deep); }
.pdp-block ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.pdp-block ol li { counter-increment: step; padding-left: 1.9rem; }
.pdp-block ol li::before { content: counter(step); position: absolute; left: 0; top: 0.05em; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-ink); }
.pdp-block p:last-child { margin-bottom: 0; }
.pdp-block .fine { font-size: 0.8rem; color: var(--muted); margin-top: 0.8rem; }

.also { padding-block: clamp(3rem, 6vw, 4.75rem); background-color: var(--paper); border-top: 1px solid var(--line-gold); }
.also .section-head { margin-bottom: 0; }
.also .product-grid { margin-top: clamp(1.5rem, 3vw, 2.25rem); }

@media (min-width: 720px) { .pdp-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) {
  .pdp-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 5rem); }
  .pdp-media { position: sticky; top: 6rem; }
}

/* ---------- Bag panel ---------- */
.bag-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(20, 13, 9, 0.62);
  opacity: 0; pointer-events: none; transition: opacity 260ms var(--ease-out);
}
.bag-backdrop[data-open="true"] { opacity: 1; pointer-events: auto; }
.bag-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(100%, 27rem);
  display: flex; flex-direction: column;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(139, 74, 43, 0.35), transparent 60%),
    var(--walnut-900);
  color: var(--cream-on-dark);
  border-left: 1px solid var(--line-gold);
  box-shadow: -30px 0 80px -30px rgba(0, 0, 0, 0.8);
  transform: translateX(102%); visibility: hidden;
  transition: transform 340ms var(--ease-out), visibility 0s linear 340ms;
}
.bag-panel[data-open="true"] { transform: none; visibility: visible; transition: transform 340ms var(--ease-out), visibility 0s; }
.bag-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem var(--gutter) 1rem; border-bottom: 1px solid var(--line-gold); }
.bag-head h2 { margin: 0; font-size: 1.7rem; color: var(--cream); }
.bag-head h2 small { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-left: 0.6rem; }
.bag-close {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line-gold-strong); color: var(--cream-on-dark);
}
.bag-close:hover { background: rgba(201, 162, 39, 0.12); color: var(--gold-light); }
.bag-close svg { width: 14px; height: 14px; }
.bag-body { flex: 1; overflow-y: auto; padding: 0.5rem var(--gutter) 1rem; }
.bag-empty { text-align: center; padding: 3.5rem 1rem 3rem; color: var(--muted-on-dark); }
.bag-empty .brand-word { display: block; font-size: 2rem; margin-bottom: 0.75rem; }
.bag-empty p { margin: 0 auto 1.25rem; max-width: 28ch; }
.bag-list { margin: 0; padding: 0; list-style: none; }
.bag-item { display: grid; grid-template-columns: 4rem minmax(0, 1fr); gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line-light); }
.bag-thumb { aspect-ratio: 4 / 5; padding: 0.25rem; border-radius: var(--radius-sm); background: linear-gradient(180deg, #fbf7ef, var(--cream-2)); border: 1px solid var(--line-gold); }
.bag-thumb img { width: 100%; height: 100%; object-fit: contain; }
.bag-item-top { display: flex; justify-content: space-between; gap: 0.75rem; align-items: baseline; }
.bag-item-name { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; line-height: 1.2; color: var(--cream); }
.bag-item-name a { text-decoration: none; color: inherit; }
.bag-item-name a:hover { color: var(--gold-light); }
.bag-item-meta { margin: 0.15rem 0 0; font-size: 0.76rem; letter-spacing: 0.04em; color: var(--muted-on-dark); }
.bag-item-price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-light); white-space: nowrap; font-variant-numeric: tabular-nums; }
.bag-item-controls { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 0.7rem; }
.bag-panel .qty { background: rgba(244, 235, 220, 0.05); border-color: var(--line-gold); }
.bag-panel .qty button { width: 2.3rem; min-height: 2.3rem; color: var(--cream-on-dark); font-size: 1rem; }
.bag-panel .qty button:hover { background: rgba(201, 162, 39, 0.18); color: var(--gold-light); }
.bag-panel .qty output { min-width: 2.2rem; font-size: 0.92rem; color: var(--cream); border-color: var(--line-gold); }
.bag-remove { background: none; border: 0; padding: 0.25rem 0; font-size: 0.8rem; color: var(--muted-on-dark); text-decoration: underline; text-decoration-color: var(--line-gold-strong); text-underline-offset: 0.18em; }
.bag-remove:hover { color: var(--gold-light); }
.bag-foot { padding: 1rem var(--gutter) 1.25rem; border-top: 1px solid var(--line-gold); background: rgba(20, 13, 9, 0.6); }
.bag-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.9rem; font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); }
.bag-total small { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); }
.bag-total output { font-variant-numeric: tabular-nums; color: var(--gold-light); }
.bag-fine { margin: 0.75rem 0 0; font-size: 0.76rem; line-height: 1.5; color: var(--muted-on-dark); text-align: center; }
.bag-fine strong { color: var(--cream-on-dark); }
.bag-panel .field label { color: var(--muted-on-dark); }
.bag-panel .field input { background: rgba(244, 235, 220, 0.06); border-color: var(--line-gold); color: var(--cream); }
.bag-panel .field input::placeholder { color: rgba(201, 184, 166, 0.55); }
.bag-panel .field input:focus-visible { border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25); }
.bag-panel .error { color: #e7a58f; }
.bag-panel .btn-ghost { color: var(--cream-on-dark); }
.bag-reserve h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 0.4rem; }
.bag-reserve > p { color: var(--muted-on-dark); font-size: 0.92rem; }
.bag-reserve-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }
.bag-reserve-actions .btn-gold { flex: 1 1 10rem; }
.bag-done { text-align: center; padding: 2rem 0.25rem 1rem; }
.bag-done .confirmation-mark { color: var(--gold-light); }
.bag-done h3 { color: var(--cream); margin-bottom: 0.6rem; }
.bag-done p { color: var(--muted-on-dark); max-width: 34ch; margin-inline: auto; }
.bag-done .confirmation-demo { font-size: 0.82rem; }
.bag-done ul { margin: 1rem auto 1.25rem; max-width: 22rem; text-align: left; border-top: 1px solid var(--line-light); }
.bag-done li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line-light); font-size: 0.9rem; color: var(--cream-on-dark); }
.bag-done li span:last-child { font-family: var(--font-display); color: var(--gold-light); font-size: 1.05rem; }
.bag-panel [hidden] { display: none !important; }
body[data-bag-shown="true"] { overflow: hidden; }

/* ---------- Reviews page ---------- */
.reviews {
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 500px at 90% -10%, rgba(201, 162, 39, 0.08), transparent 60%),
    repeating-linear-gradient(0deg, rgba(43, 38, 34, 0.012) 0 1px, transparent 1px 3px);
}
.reviews .quote-card {
  --qc-bg: var(--paper);
  --qc-border: var(--line-gold);
  --qc-inner: rgba(201, 162, 39, 0.18);
  --qc-text: var(--charcoal);
  --qc-muted: var(--muted);
  --qc-rule: var(--line-dark);
  box-shadow: var(--shadow-soft);
}
.reviews .quote-card::after { color: var(--gold-deep); }
.reviews .quote-card .stars { color: var(--gold-deep); }
.reviews-summary {
  display: grid; gap: 1.25rem; align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem); margin-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--walnut-900); color: var(--cream-on-dark);
  border: 1px solid var(--line-gold-strong); border-radius: var(--radius); box-shadow: var(--shadow-deep);
}
.reviews-summary .rating-summary { margin: 0; padding: 0; border: 0; }
.reviews-summary p { margin: 0; font-size: 0.92rem; color: var(--muted-on-dark); max-width: 60ch; }
.reviews-summary strong { color: var(--cream); }
.reviews .quote-grid { gap: 1.25rem; }
@media (min-width: 900px) {
  .reviews-summary { grid-template-columns: auto minmax(0, 1fr); gap: 2.5rem; }
  .reviews .quote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Reviews: "leave a note of your own" band */
.leave-note {
  display: grid; gap: 1.5rem; align-items: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(139, 74, 43, 0.4), transparent 60%),
    var(--walnut-900);
  color: var(--cream-on-dark); border: 1px solid var(--line-gold-strong); border-radius: var(--radius); box-shadow: var(--shadow-deep);
}
.leave-note .eyebrow { margin-bottom: 0.7rem; }
.leave-note h3 { color: var(--cream); margin-bottom: 0.5rem; }
.leave-note-copy p:last-child { margin: 0; color: var(--muted-on-dark); max-width: 52ch; }
.leave-note-ways { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.leave-note-ways .btn-ghost { color: var(--cream-on-dark); }
.leave-note :focus-visible { outline-color: var(--gold-light); }
@media (min-width: 900px) { .leave-note { grid-template-columns: minmax(0, 1.4fr) auto; gap: 2.5rem; } .leave-note-ways { justify-content: flex-end; } }

/* ---------- Social: the Instagram window ---------- */
.social {
  background-color: var(--paper);
  background-image:
    radial-gradient(1000px 500px at 90% 0%, rgba(139, 74, 43, 0.1), transparent 60%),
    repeating-linear-gradient(0deg, rgba(43, 38, 34, 0.012) 0 1px, transparent 1px 3px);
  border-top: 1px solid var(--line-gold);
}
.social-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; }
.social-head .section-head { margin-bottom: 0; }
.social-head .text-link { margin-bottom: 0.4rem; }

.social-link { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.social-link svg { width: 18px; height: 18px; flex: none; }

.ig-window {
  position: relative; margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--walnut-900); color: var(--cream-on-dark);
  border: 1px solid var(--line-gold-strong); border-radius: 10px; overflow: hidden;
  box-shadow: 0 0 0 4px var(--walnut-950), 0 0 0 5px var(--line-gold), var(--shadow-deep);
}
.ig-chrome {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.9rem; background: var(--walnut-950); border-bottom: 1px solid var(--line-gold);
  font-size: 0.74rem; letter-spacing: 0.03em; color: var(--muted-on-dark);
}
@media (min-width: 720px) { .ig-window { box-shadow: 0 0 0 5px var(--walnut-950), 0 0 0 6px var(--line-gold), var(--shadow-deep); } }
.ig-dots { display: inline-flex; gap: 0.35rem; flex: none; }
.ig-dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.ig-dots i:nth-child(1) { background: var(--cognac); }
.ig-dots i:nth-child(2) { background: var(--gold); }
.ig-dots i:nth-child(3) { background: rgba(244, 235, 220, 0.7); }
.ig-url {
  flex: 1; min-width: 0; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  padding: 0.28rem 0.9rem; border-radius: 999px;
  background: rgba(244, 235, 220, 0.06); border: 1px solid var(--line-light); color: var(--cream-on-dark);
}
.ig-url span { color: var(--gold-light); }
.ig-live {
  display: none; align-items: center; gap: 0.45rem; flex: none;
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light);
}
.ig-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6); animation: ig-pulse 2.4s ease-out infinite; }
@keyframes ig-pulse { 0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55); } 70% { box-shadow: 0 0 0 7px rgba(201, 162, 39, 0); } 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); } }
@media (min-width: 560px) { .ig-live { display: inline-flex; } }

.ig-body { display: grid; }
.ig-profile {
  display: grid; gap: 0.9rem; align-content: start;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(20, 13, 9, 0.35); border-bottom: 1px solid var(--line-gold);
}
.ig-profile-top { display: flex; align-items: center; gap: 1rem; }
.ig-avatar {
  flex: none; width: 3.6rem; height: 3.6rem; border-radius: 50%; padding: 2px;
  background: linear-gradient(140deg, var(--gold-light), var(--gold) 45%, var(--cognac) 100%);
  box-shadow: 0 6px 14px -8px rgba(201, 162, 39, 0.9);
}
.ig-avatar svg { width: 100%; height: 100%; border-radius: 50%; display: block; }
.ig-ident { display: grid; gap: 0.15rem; min-width: 0; }
.ig-handle { font-weight: 600; font-size: 1.02rem; color: var(--cream); text-decoration: none; overflow-wrap: anywhere; }
.ig-handle:hover { color: var(--gold-light); }
.ig-name { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.1; color: var(--cream); }
.ig-cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-on-dark); }
.ig-stats { display: flex; gap: 1.4rem; padding: 0.8rem 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.ig-stats li { display: grid; gap: 0.1rem; }
.ig-stats strong { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; line-height: 1; color: var(--cream); font-variant-numeric: tabular-nums; }
.ig-stats span { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); }
.ig-bio { margin: 0; font-size: 0.9rem; line-height: 1.55; color: var(--muted-on-dark); }
.ig-bio strong { color: var(--cream-on-dark); font-weight: 500; }
.ig-profile .btn { justify-self: start; }
.ig-fine { margin: 0; font-size: 0.72rem; line-height: 1.5; color: var(--muted-on-dark); opacity: 0.85; }

.ig-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; padding: 5px; background: var(--walnut-950); align-content: start; }
.ig-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--walnut-800); border-radius: 2px; outline: 1px solid rgba(201, 162, 39, 0.14); outline-offset: -1px; }
.ig-tile a { display: block; height: 100%; color: var(--cream); text-decoration: none; }
.ig-tile a:focus-visible { outline-offset: -3px; outline-color: var(--gold-light); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out), filter 700ms var(--ease-out); }
.ig-tile a:hover img, .ig-tile a:focus-visible img { transform: scale(1.045); filter: brightness(0.82); }
.ig-tile-meta {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  background: linear-gradient(180deg, rgba(20, 13, 9, 0.2), rgba(20, 13, 9, 0.6));
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--cream);
  opacity: 0; transition: opacity var(--dur) var(--ease-out); pointer-events: none;
}
.ig-tile-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.ig-tile-meta svg { width: 18px; height: 18px; }
.ig-tile a:hover .ig-tile-meta, .ig-tile a:focus-visible .ig-tile-meta { opacity: 1; }
.ig-tile:not([data-ig-ready]) .ig-tile-meta { display: none; }
.ig-tile-kind { position: absolute; top: 0.55rem; right: 0.55rem; color: var(--cream); filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6)); pointer-events: none; }
.ig-tile-kind svg { width: 16px; height: 16px; }

/* Highlights: Instagram-style circles that filter the grid (built by social.js from feed.json). */
.ig-highlights-bar { padding: 0.9rem clamp(0.9rem, 2.5vw, 1.5rem) 0.35rem; background: rgba(20, 13, 9, 0.35); }
.ig-highlights {
  display: flex; gap: clamp(0.9rem, 2.5vw, 1.5rem); overflow-x: auto; padding-bottom: 0.55rem;
  scrollbar-width: thin; scrollbar-color: var(--line-gold-strong) transparent;
}
.ig-highlight { flex: none; }
.ig-highlight button {
  display: grid; justify-items: center; gap: 0.45rem; width: 4.9rem;
  background: none; border: 0; padding: 0.2rem 0; color: var(--muted-on-dark); cursor: pointer;
}
.ig-highlight-ring {
  width: 3.9rem; height: 3.9rem; border-radius: 50%; padding: 3px; display: grid;
  background: var(--walnut-800); border: 1px solid var(--line-gold-strong);
  transition: background var(--dur), border-color var(--dur), transform var(--dur) var(--ease-out);
}
.ig-highlight-ring img, .ig-highlight-all {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: grid; place-items: center;
  outline: 2px solid var(--walnut-900); outline-offset: -2px;
}
.ig-highlight-all { font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); background: var(--walnut-700); }
.ig-highlight-label { font-size: 0.7rem; letter-spacing: 0.04em; line-height: 1.2; text-align: center; white-space: nowrap; }
.ig-highlight button:hover .ig-highlight-ring { border-color: var(--gold-light); transform: translateY(-1px); }
.ig-highlight button[aria-pressed="true"] { color: var(--cream); }
.ig-highlight button[aria-pressed="true"] .ig-highlight-ring {
  background: linear-gradient(140deg, var(--gold-light), var(--gold) 45%, var(--cognac) 100%); border-color: transparent;
}
.ig-highlight button[aria-pressed="true"] .ig-highlight-label { font-weight: 600; }
.ig-highlight button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; border-radius: 6px; }
.ig-filter-note {
  margin: 0; padding: 0.55rem clamp(0.9rem, 2.5vw, 1.5rem); background: rgba(20, 13, 9, 0.35);
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light);
}
.ig-window[data-ig-filter=""] .ig-filter-note, .ig-filter-note[hidden] { display: none; }
.ig-grid > [hidden] { display: none; }
.ig-window:not(.is-full) .ig-highlights-bar, .ig-window:not(.is-full) .ig-filter-note { display: none; }

.ig-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.9rem 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 1.5rem); border-top: 1px solid var(--line-gold); background: rgba(20, 13, 9, 0.55);
}
.ig-foot-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.25rem; }
.ig-others { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; font-size: 0.84rem; }
.ig-others .social-link { color: var(--muted-on-dark); }
.ig-others .social-link:hover { color: var(--gold-light); }
.ig-others .social-link svg { width: 16px; height: 16px; }
.ig-others .ig-tag { display: inline-block; color: var(--gold-light); padding: 0.2rem 0.65rem; border: 1px solid var(--line-gold); border-radius: 999px; }
.ig-others .ig-tag:hover { border-color: var(--gold-light); background: rgba(201, 162, 39, 0.1); }
.ig-updated { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted-on-dark); }
.ig-window[data-ig-state="static"] .ig-updated { display: none; }

@media (min-width: 900px) {
  .ig-body { grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr); }
  .ig-profile { border-bottom: 0; border-right: 1px solid var(--line-gold); }
  .ig-profile-top { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .ig-avatar { width: 4.6rem; height: 4.6rem; }
  .ig-grid { gap: 6px; padding: 6px; }

  /* Full nine-tile window (/social/): the profile runs as a header row above the grid,
     the way Instagram lays it out, instead of a short column beside three rows of tiles. */
  .ig-window.is-full { max-width: 66rem; margin-inline: auto; }
  .ig-window.is-full .ig-body { grid-template-columns: minmax(0, 1fr); }
  .ig-window.is-full .ig-profile {
    grid-template-columns: auto minmax(0, 1fr) auto; grid-template-areas: "top stats follow" "top bio bio" "top fine fine";
    align-items: center; column-gap: 2rem; row-gap: 0.6rem;
    padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
    border-right: 0; border-bottom: 1px solid var(--line-gold);
  }
  .ig-window.is-full .ig-profile-top { grid-area: top; flex-direction: row; align-items: center; gap: 1.25rem; padding-right: 2rem; border-right: 1px solid var(--line-light); align-self: stretch; }
  .ig-window.is-full .ig-avatar { width: 5.2rem; height: 5.2rem; }
  .ig-window.is-full .ig-stats { grid-area: stats; border: 0; padding: 0; gap: 2rem; }
  .ig-window.is-full .ig-profile .btn { grid-area: follow; justify-self: end; }
  .ig-window.is-full .ig-bio { grid-area: bio; max-width: 62ch; }
  .ig-window.is-full .ig-fine { grid-area: fine; }
}
@media (min-width: 1100px) { .ig-body { grid-template-columns: minmax(0, 19rem) minmax(0, 1fr); } .ig-window.is-full .ig-body { grid-template-columns: minmax(0, 1fr); } }

/* Post viewer dialog */
.ig-viewer {
  border: 0; padding: 0; background: transparent; color: var(--cream-on-dark);
  width: min(100% - 1.5rem, 64rem); max-width: none; max-height: calc(100svh - 1.5rem); margin: auto;
}
.ig-viewer::backdrop { background: rgba(20, 13, 9, 0.8); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ig-viewer-inner {
  position: relative; display: grid; max-height: calc(100svh - 1.5rem); overflow: hidden;
  background: var(--walnut-900); border: 1px solid var(--line-gold-strong); border-radius: 8px;
  box-shadow: var(--shadow-deep);
}
.ig-viewer-media { margin: 0; background: var(--walnut-950); border-bottom: 1px solid var(--line-gold); display: grid; place-items: center; }
.ig-viewer-media img { width: 100%; height: auto; max-height: 46svh; object-fit: contain; }
.ig-viewer-side { display: flex; flex-direction: column; gap: 0.85rem; padding: 1.25rem; overflow-y: auto; min-height: 0; }
.ig-viewer-head { display: flex; align-items: center; gap: 0.8rem; }
.ig-viewer-head .ig-avatar { width: 2.7rem; height: 2.7rem; }
.ig-viewer-who { display: grid; gap: 0.1rem; }
.ig-viewer-handle { font-weight: 600; color: var(--cream); text-decoration: none; }
.ig-viewer-handle:hover { color: var(--gold-light); }
.ig-viewer-date { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); }
.ig-viewer-caption { margin: 0; font-family: var(--font-display); font-size: clamp(1.15rem, 1.5vw, 1.35rem); line-height: 1.45; color: var(--cream); text-wrap: pretty; }
.ig-viewer-tags { margin: 0; font-size: 0.84rem; color: var(--gold-light); word-spacing: 0.35em; }
.ig-viewer-counts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 0; padding-top: 0.8rem; border-top: 1px solid var(--line-light); font-size: 0.85rem; color: var(--muted-on-dark); }
.ig-viewer-counts span { display: inline-flex; align-items: center; gap: 0.4rem; }
.ig-viewer-counts svg { width: 16px; height: 16px; }
.ig-viewer-counts b { color: var(--cream); font-weight: 600; }
.ig-viewer-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ig-share svg { width: 15px; height: 15px; }
.ig-share[data-shared="true"] { color: var(--gold-light); border-color: var(--gold-light); }
.ig-viewer-fine { margin: 0; font-size: 0.74rem; line-height: 1.5; color: var(--muted-on-dark); }
.ig-viewer-nav { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line-light); }
.ig-viewer-count { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted-on-dark); font-variant-numeric: tabular-nums; }
.ig-viewer-arrow {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line-gold-strong); color: var(--cream);
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1; padding: 0 0 0.15rem;
}
.ig-viewer-arrow:hover { background: rgba(201, 162, 39, 0.12); color: var(--gold-light); }
.ig-viewer-arrow[disabled] { opacity: 0.35; cursor: not-allowed; }
.ig-viewer-close {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
  background: rgba(20, 13, 9, 0.75); border: 1px solid var(--line-gold-strong); color: var(--cream);
}
.ig-viewer-close:hover { background: rgba(201, 162, 39, 0.2); color: var(--gold-light); }
.ig-viewer-close svg { width: 13px; height: 13px; }
.ig-viewer :focus-visible { outline-color: var(--gold-light); }
body[data-ig-shown="true"] { overflow: hidden; }

@media (min-width: 720px) {
  .ig-viewer-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .ig-viewer-media { border-bottom: 0; border-right: 1px solid var(--line-gold); }
  .ig-viewer-media img { max-height: calc(100svh - 1.5rem); aspect-ratio: 1 / 1; }
  .ig-viewer-side { padding: 1.6rem 1.6rem 1.4rem; }
}

/* Follow cards (social page) */
.follow { padding-block: clamp(3.25rem, 6vw, 5rem); background-color: var(--cream); border-top: 1px solid var(--line-gold); }
.follow-grid { display: grid; gap: 1rem; margin-top: clamp(1.75rem, 4vw, 2.75rem); }
.follow-card {
  position: relative; display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.5rem 1.4rem 1.4rem; background: var(--paper);
  border: 1px solid var(--line-gold); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.follow-card::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(201, 162, 39, 0.16); border-radius: 3px; pointer-events: none; }
.social-glyph {
  width: 2.8rem; height: 2.8rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--walnut-900); color: var(--gold-light); border: 1px solid var(--line-gold-strong);
}
.social-glyph svg { width: 20px; height: 20px; }
.follow-card h3 { font-size: 1.45rem; margin: 0.35rem 0 0; }
.follow-card .handle { font-weight: 600; color: var(--gold-ink); font-size: 0.92rem; }
.follow-card p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.follow-card p { flex: 1; }
.follow-card .btn { align-self: flex-start; margin-top: 0.75rem; position: relative; z-index: 1; }
.follow-card .tag { position: absolute; top: 1rem; right: 1rem; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--gold-ink); border: 1px solid var(--line-gold-strong); border-radius: 999px; padding: 0.25rem 0.55rem; }
.follow-note { margin: clamp(2rem, 4vw, 2.75rem) auto 0; text-align: center; color: var(--muted); font-size: 0.92rem; max-width: 60ch; line-height: 1.6; }
@media (min-width: 720px) { .follow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }

/* ---------- Community: tag your cut, the Monday note (walnut band on /social/) ---------- */
.community {
  padding-block: clamp(3.5rem, 6.5vw, 5.5rem);
  background:
    radial-gradient(800px 500px at 100% 100%, rgba(139, 74, 43, 0.42), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(201, 162, 39, 0.1), transparent 60%),
    linear-gradient(180deg, var(--walnut-900), var(--walnut-800));
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-gold);
}
.community h2 { color: var(--cream); }
.community .section-lede { color: var(--muted-on-dark); }
.community-grid { display: grid; gap: 1.25rem; align-items: stretch; }
.community-card {
  position: relative; display: flex; flex-direction: column; gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(244, 235, 220, 0.035); border: 1px solid var(--line-gold); border-radius: var(--radius);
}
.community-card::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(201, 162, 39, 0.16); border-radius: 3px; pointer-events: none; }
.community-card .eyebrow { margin-bottom: 0; }
.community-card h3 { color: var(--cream); margin: 0; font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.community-copy { margin: 0; color: var(--muted-on-dark); line-height: 1.6; max-width: 46ch; }
.hash-chip {
  align-self: flex-start; display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1; letter-spacing: 0.01em;
  color: var(--cream); text-decoration: none;
  padding: 0.35rem 0.9rem 0.45rem; border: 1px solid var(--line-gold-strong); border-radius: 999px;
  background: rgba(201, 162, 39, 0.08);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.hash-chip:hover { background: rgba(201, 162, 39, 0.16); border-color: var(--gold-light); color: var(--gold-light); }
.community-steps { margin: 0; padding: 0; list-style: none; counter-reset: step; display: grid; gap: 0.55rem; }
.community-steps li { position: relative; counter-increment: step; padding-left: 1.9rem; font-size: 0.93rem; line-height: 1.55; color: var(--muted-on-dark); }
.community-steps li strong { color: var(--cream-on-dark); font-weight: 600; }
.community-steps li::before { content: counter(step); position: absolute; left: 0; top: 0.05em; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-light); }
.community-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.4rem; margin-top: auto; padding-top: 0.5rem; }
.community .text-link { color: var(--gold-light); border-color: var(--line-gold-strong); }
.community .text-link:hover { border-color: var(--gold-light); }

.note-form { margin-top: auto; }
.note-row { display: grid; gap: 0.6rem; }
.note-row input {
  width: 100%; min-height: 2.75rem; padding: 0.6rem 0.9rem;
  background: rgba(244, 235, 220, 0.06); border: 1px solid var(--line-gold); border-radius: var(--radius);
  color: var(--cream); transition: border-color var(--dur), box-shadow var(--dur);
}
.note-row input::placeholder { color: rgba(201, 184, 166, 0.55); }
.note-row input:focus-visible { outline: none; border-color: var(--gold-light); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25); }
.note-row input[aria-invalid="true"] { border-color: #e7a58f; }
.note-form .error { color: #e7a58f; }
.note-form .form-fine { text-align: left; color: var(--muted-on-dark); opacity: 0.85; }
.note-form[data-state="done"] > :not(.note-done) { display: none; }
.note-done { padding: 0.25rem 0 0; }
.note-done:focus-visible { outline: none; }
.note-done p { color: var(--muted-on-dark); margin-bottom: 0.9rem; }
.note-done strong, .note-done span { color: var(--cream); }
.community .btn-ghost { color: var(--cream-on-dark); }
@media (min-width: 480px) { .note-row { grid-template-columns: minmax(0, 1fr) auto; } }
@media (min-width: 900px) { .community-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; } }

/* "Also listed on" row under the follow cards */
.listed { margin-top: clamp(2rem, 4vw, 2.75rem); padding-top: 1.5rem; border-top: 1px solid var(--line-gold); display: grid; gap: 0.75rem; justify-items: center; text-align: center; }
.listed-title { margin: 0; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold-ink); }
.listed-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1rem; }
.listed-row .social-link {
  padding: 0.5rem 0.95rem; border: 1px solid var(--line-gold-strong); border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; color: var(--charcoal); background: var(--paper);
  transition: background var(--dur), border-color var(--dur), color var(--dur);
}
.listed-row .social-link:hover { background: rgba(201, 162, 39, 0.12); border-color: var(--gold-deep); color: var(--cognac-deep); }
.listed-row .social-link svg { width: 16px; height: 16px; color: var(--gold-ink); }
.listed-fine { margin: 0; font-size: 0.76rem; color: var(--muted); }
.follow .follow-note { margin-top: 1.5rem; }

/* Footer social row */
.footer-social { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-gold-strong); color: var(--gold-light); text-decoration: none;
  background: rgba(201, 162, 39, 0.06);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.footer-social a:hover { background: rgba(201, 162, 39, 0.16); color: var(--cream); border-color: var(--gold-light); }
.footer-social svg { width: 17px; height: 17px; }
.footer-social .footer-handle { font-size: 0.82rem; color: var(--muted-on-dark); margin-left: 0.3rem; }
.footer-social .footer-handle a { width: auto; height: auto; border: 0; border-radius: 0; display: inline; color: var(--cream-on-dark); text-decoration: underline; text-decoration-color: var(--line-gold-strong); text-underline-offset: 0.18em; }
.footer-social .footer-handle a:hover { color: var(--gold-light); background: none; }

/* ---------- Scroll reveals ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
  .tile:hover img { transform: none; }
  .btn:hover { transform: none; }
  .product-card:hover, .product-card:hover .product-media img { transform: none; }
  .bag-panel, .bag-backdrop { transition: none; }
  .ig-live i { animation: none; }
  .ig-tile a:hover img, .ig-tile a:focus-visible img { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .sample-bar, .site-header, .hero-bg, .hero-shade, .booking-form, .materials,
  .bag-panel, .bag-backdrop, .page-hero-bg, .page-hero-shade, .buy-row, .ig-viewer, .ig-chrome { display: none !important; }
  body, .hero, .services, .hours, .site-footer { background: #fff !important; color: #000 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
