/* ==========================================================================
   Satguru's — Warm Atelier stylesheet (2026 redesign)
   Museum-grade whitespace, editorial serif (Newsreader) + clean grotesque
   (Archivo), warm ivory paper, espresso ink, antique gold, and oxblood.
   Sharp corners, hairline rules, no heavy shadows. Every legacy class name
   is preserved so all pages + main.js keep working — only the look changes.
   ========================================================================== */

:root {
  /* Warm Atelier palette */
  --paper: #F8F1E7;       /* warm ivory base */
  --paper-2: #EFE3D4;     /* soft parchment panel */
  --paper-3: #E5D4BE;     /* deeper warm panel */
  --ink: #17100C;         /* espresso-black */
  --ink-2: #3F2B22;       /* warm body ink */
  --text: #5F4D41;        /* leather-brown body text */
  --text-soft: #927C6A;   /* captions / meta */
  --accent: #A98745;      /* antique gold */
  --accent-deep: #76552B;
  --oxblood: #5B1F1B;     /* rare accent for premium emphasis */
  --line: #DFCFBA;        /* warm hairline */
  --line-ink: rgba(23,16,12,0.16);
  --white: #FFFDF8;

  /* legacy aliases (kept so any inline var() references still resolve) */
  --gold: var(--accent);
  --gold-dark: var(--accent-deep);
  --gold-soft: #D7C18E;
  --maroon: var(--oxblood);
  --maroon-soft: #7A3830;
  --cream: var(--paper);
  --cream-2: var(--paper-2);

  --shadow-soft: 0 1px 0 rgba(23,16,12,0.05);
  --shadow-card: 0 24px 60px -40px rgba(23,16,12,0.34);
  --radius: 3px;
  --container: 1240px;
  --container-wide: calc(var(--container) * 1.2);
  --header-height: 88px;
  --header-height-top: 112px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Base ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Newsreader', Georgia, serif;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.08;
  margin: 0 0 0.4em;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--accent); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
/* wider stage for sections that want more breathing room on desktop —
   20% beyond the standard container, same gutters, same element */
.container-wide { max-width: var(--container-wide); }

/* ----- Helpers ----- */
/* .script was a cursive flourish; in the gallery aesthetic it becomes a
   refined serif italic so existing markup keeps a distinct display accent. */
.script {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.text-gold { color: var(--accent); }
.text-cream { color: var(--paper); }
.text-white { color: #fff; }
.center { text-align: center; }
.muted { color: var(--text-soft); }

.section { padding: 130px 0; }
.section-sm { padding: 84px 0; }
.bg-cream { background: var(--paper); }
.bg-cream-2 { background: var(--paper-2); }
.bg-maroon { background: var(--ink); }
.bg-white { background: var(--white); }

.eyebrow, .label {
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  margin: 0 0 16px;
}
.bg-maroon .eyebrow { color: #D0B46F; }

.section-head { max-width: 680px; margin: 0 auto 64px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 54px);
}
.section-head p { color: var(--text); font-size: 17px; }
.bg-maroon .section-head h2 { color: var(--paper); }
.bg-maroon .section-head p,
.bg-maroon p { color: #D8C9B7; }

/* ----- Buttons — restrained: text + hairline / thin underline ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.btn .icon { font-size: 15px; transition: transform 0.35s var(--ease); }
.btn:hover .icon { transform: translateX(5px); }

/* primary = solid ink */
.btn-gold { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-gold:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--oxblood); color: var(--paper); border-color: var(--oxblood); }

.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-light { background: transparent; border-color: rgba(248,241,231,0.44); color: var(--paper); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ==========================================================================
   Header — quiet, blend-difference over hero, hairline underlines
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 241, 231, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.site-header.is-compact {
  background: rgba(248, 241, 231, 0.92);
  box-shadow: 0 18px 48px -42px rgba(23,16,12,0.42);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-top);
  transition: height 0.45s var(--ease);
}
/* Stretches <nav> to the header's full height so the "Shop by Category" li
   (see .nav-has-mega below) can do the same — otherwise its hoverable box is
   only as tall as the link text, leaving a dead zone between it and the
   dropdown below where the mouse briefly isn't over anything hoverable,
   closing the menu before the cursor reaches it. */
.header-inner nav { align-self: stretch; display: flex; }
.logo img {
  height: 92px;
  max-height: calc(100% - 16px);
  width: auto;
  display: block;
  transition: height 0.45s var(--ease), max-height 0.45s var(--ease);
}
.site-header.is-compact .header-inner { height: var(--header-height); }
.site-header.is-compact .logo img { height: 74px; max-height: calc(100% - 12px); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.soon { color: var(--text-soft); }
.nav-menu a.soon::after { display: none; }
.nav-menu a:focus-visible,
.mega-tile:focus-visible,
.nav-mega-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.nav-badge {
  display: inline-block; margin-left: 9px;
  font-family: 'Archivo', sans-serif; font-size: 8px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--oxblood); border: 1px solid var(--oxblood);
  padding: 3px 7px; line-height: 1; vertical-align: 3px;
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--ink);
}

/* ----- "Shop by Category" mega-menu ----- */
/* .mega-menu is positioned absolute against .header-inner (not this <li>) so the
   wide panel centers under the whole header instead of under the trigger link. */
.nav-has-mega { display: flex; align-items: center; align-self: stretch; }
.nav-mega-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--ink); font-size: 12px; padding: 4px;
}
.nav-mega-toggle i { display: inline-block; transition: transform 0.3s var(--ease); }
.nav-has-mega.mega-open .nav-mega-toggle i { transform: rotate(180deg); }
.mega-menu {
  position: absolute;
  top: 100%; left: 50%;
  width: min(760px, 92vw);
  transform: translateX(-50%) translateY(6px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  padding: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 200;
}
.nav-has-mega:hover .mega-menu,
.nav-has-mega:focus-within .mega-menu,
.nav-has-mega.mega-hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner { padding: 0; }

/* One photographic tile per category — 7 category tiles + the Atelier
   feature tile fill a 4x2 grid exactly, so a seven-link menu reads as a
   considered look-book rather than a sparse list of column headings. */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px 18px;
}
.mega-tile { display: flex; flex-direction: column; }
.mega-tile-media {
  display: block; position: relative; aspect-ratio: 4/5;
  overflow: hidden; background: var(--paper-2); margin-bottom: 10px;
}
.mega-tile-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.1) contrast(1.03);
  transition: transform 0.6s var(--ease);
}
.mega-tile:hover .mega-tile-media img { transform: scale(1.06); }
.mega-tile-title {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; line-height: 1.4;
  text-transform: uppercase; color: var(--ink);
  position: relative; padding-bottom: 6px;
}
.mega-tile-title::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.4s var(--ease);
}
.mega-tile:hover .mega-tile-title::after { width: 100%; }

/* ----- Feature tile — the panel's one accent -----
   Copy overlaid on a dark scrim instead of the plain image-above/label-below
   treatment the other seven tiles use, so it reads as a deliberate anchor
   rather than an eighth identical tile. */
.mega-tile-feature {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--ink);
}
.mega-tile-feature img {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.25) contrast(1.08) brightness(0.65);
  transition: transform 0.6s var(--ease);
}
.mega-tile-feature:hover img { transform: scale(1.06); }
/* z-index explicitly stacked above the img — a ::before is the *first*
   generated child, so with z-index:auto it would paint underneath the <img>
   (invisible) rather than as a scrim on top of it. */
.mega-tile-feature::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(23,16,12,0.95) 0%, rgba(23,16,12,0.72) 40%, rgba(23,16,12,0.32) 100%);
}
.mega-tile-feature-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 14px; display: flex; flex-direction: column;
}
.mega-tile-feature-kicker {
  font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: #D0B46F;
  margin-bottom: 4px;
}
.mega-tile-feature-title {
  display: block; font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: 20px; margin-bottom: 8px; color: var(--paper);
}
.mega-tile-feature-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--paper);
}
.mega-tile-feature-cta .icon { font-size: 10px; transition: transform 0.3s var(--ease); }
.mega-tile-feature:hover .mega-tile-feature-cta .icon { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .mega-menu, .nav-menu, .nav-mega-toggle i,
  .mega-tile-media img, .mega-tile-feature img, .mega-tile-feature-cta .icon,
  .mega-tile-title::after {
    transition-duration: 0.001ms !important;
  }
}

/* ==========================================================================
   Hero — full-bleed gallery. Dark ink field, immense type, single image.
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.6s ease, transform 8s ease;
  filter: grayscale(0.15) contrast(1.03);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,16,12,0.86) 0%, rgba(23,16,12,0.58) 45%, rgba(91,31,27,0.22) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-content .eyebrow { color: #D0B46F; }
/* hero-tag was a cursive line; now a small serif-italic kicker */
.hero-tag {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 34px);
  color: #D0B46F;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-content h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero-content p {
  color: #E1D2BF;
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* ----- Hero slideshow controls (indicators + captioned counter) ----- */
.hero-ui {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 40px;
  pointer-events: none;
}
.hero-ui .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
/* current-slide caption + running counter, bottom-left */
.hero-caption {
  pointer-events: auto;
  display: flex; align-items: center; gap: 16px;
  color: var(--white);
}
.hero-caption .hc-count {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: 30px; line-height: 1; color: var(--white);
}
.hero-caption .hc-count b { font-weight: 300; }
.hero-caption .hc-count span { color: #BFA98E; font-size: 18px; }
.hero-caption .hc-label {
  font-family: 'Archivo', sans-serif; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: #E1D2BF;
  padding-left: 16px; border-left: 1px solid rgba(248,241,231,0.3);
}
/* clickable indicator bars, bottom-right */
.hero-dots { pointer-events: auto; display: flex; gap: 10px; align-items: center; }
.hero-dot {
  width: 46px; height: 2px; padding: 0; border: none; cursor: pointer;
  background: rgba(248,241,231,0.28); position: relative; overflow: hidden;
  transition: background 0.4s var(--ease);
}
.hero-dot::after {
  content: ''; position: absolute; inset: 0; width: 0; background: var(--paper);
  transition: width 0.4s var(--ease);
}
.hero-dot:hover { background: rgba(248,241,231,0.5); }
.hero-dot.active::after { width: 100%; }
/* progress fill on the active bar (animates over the slide duration) */
.hero-dot.active.fill::after { width: 100%; transition: width 5s linear; }

@media (max-width: 640px) {
  .hero-ui { bottom: 24px; }
  .hero-ui .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-caption .hc-count { font-size: 24px; }
  .hero-dot { width: 34px; }
}

/* trust strip — thin ruled row, serif figures */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid rgba(248,241,231,0.12);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}
.trust-item {
  text-align: center; color: var(--paper);
  padding: 40px 20px;
  border-right: 1px solid rgba(248,241,231,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item .num {
  font-family: 'Newsreader', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.trust-item .lbl { font-size: 11px; color: #BFA98E; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 8px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-text h2 { font-size: clamp(30px, 3.8vw, 50px); }
.about-text .lead { font-size: 20px; color: var(--ink-2); margin-bottom: 20px; font-family: 'Newsreader', serif; font-weight: 300; line-height: 1.5; }
.about-media {
  position: relative;
  overflow: hidden;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-badge {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 28px;
  font-family: 'Archivo', sans-serif;
}
.about-badge strong { display: block; font-family: 'Newsreader', serif; font-weight: 300; font-size: 34px; line-height: 1; }
.about-badge span { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #D0B46F; }

/* ==========================================================================
   Collection grid (category cards) — bordered, flat, hairline
   ========================================================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  transition: background 0.4s var(--ease);
}
.cat-card:hover { background: var(--paper-2); }
.cat-card .thumb { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--paper-2); }
.cat-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: grayscale(0.08);
}
.cat-card:hover .thumb img { transform: scale(1.05); }
.cat-card .body { padding: 26px 26px 30px; }
.cat-card h3 { font-size: 24px; margin-bottom: 8px; }
.cat-card p { font-size: 15px; color: var(--text-soft); margin: 0; line-height: 1.6; }
.cat-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}
.cat-card .more .icon { transition: transform 0.35s var(--ease); }
.cat-card:hover .more .icon { transform: translateX(5px); }

/* ==========================================================================
   Why choose us — bordered, minimal
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--paper);
  padding: 44px 32px;
  transition: background 0.4s var(--ease);
}
.why-card:hover { background: var(--paper-2); }
.why-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 0;
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  width: auto; justify-content: flex-start;
}
.why-card h3 { font-size: 22px; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--text-soft); margin: 0; }

/* ==========================================================================
   Serving every need (chips) — on dark ink
   ========================================================================== */
.serving { position: relative; }
.serving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 16px;
  background: rgba(248,241,231,0.11);
  border: 1px solid rgba(248,241,231,0.12);
}
.serving-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--ink);
  padding: 22px 24px;
  color: var(--paper);
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: background 0.35s var(--ease);
}
.serving-item:hover { background: var(--oxblood); }
.serving-item .icon { color: #D0B46F; font-size: 18px; }

/* ==========================================================================
   Gallery (collection page) + lightbox
   ========================================================================== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 52px;
}
.filter-btn {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gallery-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: grayscale(0.08); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(23,16,12,0.74), rgba(23,16,12,0) 55%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  display: flex; align-items: flex-end; padding: 22px;
  color: var(--paper); font-family: 'Newsreader', serif; font-size: 18px;
}
.gallery-item:hover .ov { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(17, 10, 7, 0.95);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 0; box-shadow: 0 40px 100px -40px rgba(0,0,0,0.7); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none; color: #fff;
  width: 52px; height: 52px; border-radius: 0; font-size: 20px; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease);
}
.lightbox-nav:hover { background: var(--paper); color: var(--ink); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==========================================================================
   CTA band — flat ink block (no gradient/glow)
   ========================================================================== */
.cta-band {
  background: var(--ink);
  border-radius: 0;
  padding: 96px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--paper); font-size: clamp(30px, 4.6vw, 56px); position: relative; font-weight: 300; }
.cta-band p { color: #D8C9B7; font-size: 17px; max-width: 520px; margin: 0 auto 32px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }
.cta-band .eyebrow { color: #D0B46F !important; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-info .info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-item:first-child { border-top: 1px solid var(--line); }
.contact-info .ic {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 0; color: var(--accent); font-size: 20px;
  border: 1px solid var(--line);
}
.contact-info .info-item strong { display: block; font-family: 'Newsreader', serif; font-weight: 400; color: var(--ink); font-size: 19px; margin-bottom: 2px; }
.contact-info .info-item span { color: var(--text); font-size: 15px; display: block; }
.placeholder-note {
  font-size: 12px; color: var(--accent);
  background: var(--paper-2); border-radius: 0;
  padding: 4px 10px; display: inline-block; margin-top: 6px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: 'Archivo', sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 9px; font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-soft); margin-top: 16px; }

/* ==========================================================================
   Page hero (inner pages) — light, editorial, left-aligned
   ========================================================================== */
.page-hero {
  background: var(--paper);
  padding: 150px 0 70px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--ink); font-size: clamp(40px, 6vw, 82px); font-weight: 300; }
.page-hero .crumbs { color: var(--text-soft); font-family: 'Archivo', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.page-hero .crumbs a { color: var(--accent); }
.page-hero .crumbs a:hover { color: var(--ink); }

/* ==========================================================================
   Footer — light gallery footer, hairline columns
   ========================================================================== */
.site-footer { background: var(--ink); color: #BFA98E; padding: 90px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-brand img { height: 58px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { color: #B7A48E; font-size: 15px; max-width: 300px; line-height: 1.7; }
.footer-col h4 {
  color: var(--paper); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.24em; margin-bottom: 22px; font-family: 'Archivo', sans-serif; font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 13px; }
.footer-col a { color: #B7A48E; font-size: 14px; }
.footer-col a:hover { color: var(--paper); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; color: #B7A48E; font-size: 14px; line-height: 1.6; }
.footer-contact-item .icon { color: #D0B46F; font-size: 17px; margin-top: 2px; flex: none; }
.footer-contact-item strong { color: #E1D2BF; font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 0;
  display: grid; place-items: center;
  border: 1px solid rgba(248,241,231,0.18); color: #D0B46F;
  transition: all 0.35s var(--ease);
}
.footer-social a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(248,241,231,0.12);
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #927C6A;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.js-reveal .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive (base)
   ========================================================================== */
@media (max-width: 1100px) {
  .collection-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .section { padding: 84px 0; }
  .header-cta { gap: 10px; }
  .menu-toggle {
    display: grid; place-items: center; flex: none;
    width: 44px; height: 44px; padding: 0;
    border: 1px solid var(--ink); color: var(--ink);
    font-size: 20px; line-height: 1;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
  }
  .menu-toggle:hover, .menu-toggle:active { background: var(--ink); color: var(--paper); }
  .nav-menu {
    position: fixed; top: var(--header-height-top); left: 0; right: 0;
    max-height: calc(100vh - var(--header-height-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.45s var(--ease), top 0.45s var(--ease);
  }
  .site-header.is-compact .nav-menu { max-height: calc(100vh - var(--header-height)); }
  .site-header.is-compact .nav-menu { top: var(--header-height); }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 16px 24px; }
  .header-cta .btn { display: none; }

  .nav-has-mega { flex-wrap: wrap; }
  .nav-mega-trigger { flex: 1; }
  .nav-mega-toggle {
    display: grid; place-items: center;
    width: 44px; height: 100%; flex: none;
  }
  .mega-menu {
    flex: 0 0 100%;
    position: static; width: auto; max-width: none;
    transform: none; border: none; border-top: 1px solid var(--line); box-shadow: none;
    padding: 0 24px; margin: 0;
    max-height: 0; overflow: hidden; opacity: 1; visibility: visible;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }
  .nav-has-mega.mega-open .mega-menu { max-height: 6000px; padding: 8px 24px 24px; }
  /* Same selectors/specificity as the desktop hover reveal (which also matches
     here via :focus-within on the toggle button) — re-declared so this
     mobile-only reset wins the cascade tie instead of translateX(-50%). */
  .nav-has-mega:hover .mega-menu,
  .nav-has-mega:focus-within .mega-menu,
  .nav-has-mega.mega-open .mega-menu,
  .nav-has-mega.mega-hover .mega-menu {
    transform: none;
  }
  .mega-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 14px;
    padding: 16px 0;
  }
  .mega-tile-title { font-size: 12px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media img { aspect-ratio: 16/11; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid rgba(248,241,231,0.12); }
  .collection-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 28px; }
  .hero { min-height: 80vh; }
  .page-hero { padding: 120px 0 56px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid, .collection-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   CATEGORY PAGES — Minimal Gallery editorial
   ========================================================================== */

/* ----- Editorial split hero — dark ink, single image, huge serif ----- */
.cat-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.cat-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
  min-height: 78vh;
  padding: 130px 0 80px;
}
.cat-hero-text .crumbs {
  font-family: 'Archivo', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #B7A48E; margin-bottom: 30px;
}
.cat-hero-text .crumbs a { color: #B7A48E; }
.cat-hero-text .crumbs a:hover { color: var(--paper); }
.cat-hero-text .crumbs .sep { color: #806650; margin: 0 10px; }
.cat-index {
  font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: #D0B46F; display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.cat-index::before { content: ''; width: 44px; height: 1px; background: #806650; display: inline-block; }
.cat-hero-text h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.cat-hero-text h1 .script {
  display: block;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 0.5em;
  color: #D0B46F;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.05em;
}
.cat-hero-text .lead { color: #E1D2BF; font-size: 19px; max-width: 460px; margin-bottom: 34px; }
.cat-hero-meta {
  display: flex; gap: 48px; margin: 34px 0 38px;
  flex-wrap: wrap;
}
.cat-hero-meta .m strong {
  display: block; font-family: 'Newsreader', serif; font-weight: 300;
  font-size: 34px; color: var(--white); line-height: 1;
}
.cat-hero-meta .m span { font-size: 11px; color: #BFA98E; letter-spacing: 0.14em; text-transform: uppercase; }
.cat-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.cat-hero-media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  transform: none;
}
.cat-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.12) contrast(1.03); }
.cat-hero-stamp {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--ink); color: var(--paper);
  font-family: 'Archivo', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 0;
}

/* ----- Sticky category chip nav ----- */
.cat-subnav {
  position: sticky; top: var(--header-height); z-index: 50;
  background: rgba(248,241,231,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.cat-subnav-inner {
  display: flex; gap: 4px; overflow-x: auto;
  padding: 14px 0; scrollbar-width: none;
}
.cat-subnav-inner::-webkit-scrollbar { display: none; }
.cat-subnav a {
  flex: none;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 0;
  border: 1px solid transparent;
  color: var(--text); white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.cat-subnav a:hover { border-color: var(--line); color: var(--ink); }
.cat-subnav a.active { background: var(--ink); color: var(--paper); }

/* ----- Intro / editorial copy block ----- */
.cat-intro { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 72px; align-items: start; }
.cat-intro .label {
  font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--accent);
}
.cat-intro h2 { font-size: clamp(30px, 3.6vw, 46px); }
.cat-intro .big { font-size: 21px; color: var(--ink-2); font-family: 'Newsreader', serif; font-weight: 300; line-height: 1.5; }

/* ----- Product showcase grid ----- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.product-card {
  background: var(--paper);
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.product-card:hover { background: var(--paper-2); }
.product-card .pimg { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--paper-2); }
.product-card .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); filter: grayscale(0.08); }
.product-card:hover .pimg img { transform: scale(1.05); }
.product-card .ptag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ink); color: var(--paper);
  font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 0;
}
.product-card .pbody { padding: 24px; }
.product-card h3 { font-size: 21px; margin-bottom: 6px; }
.product-card p { font-size: 14px; color: var(--text-soft); margin: 0 0 16px; }
.product-card .pcta {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
}
.product-card .pcta .icon { transition: transform 0.35s var(--ease); }
.product-card:hover .pcta .icon { transform: translateX(5px); }

/* ----- Feature row (alternating) ----- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
}
.feature-row.flip .feature-media { order: 2; }
.feature-media {
  border-radius: 0; overflow: hidden;
  aspect-ratio: 5/6;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.1); }
.feature-list { list-style: none; margin: 26px 0 0; padding: 0; }
.feature-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.feature-list li:first-child { border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: none; }
.feature-list .fic {
  flex: none; width: 34px; height: 34px; border-radius: 0;
  display: grid; place-items: center;
  color: var(--accent); font-size: 20px;
}
.feature-list strong { display: block; font-family: 'Newsreader', serif; font-weight: 400; color: var(--ink); font-size: 19px; margin-bottom: 2px; }
.feature-list span { font-size: 15px; color: var(--text-soft); }

/* ----- Buyer-type pills ----- */
.buyer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.buyer-pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper);
  border-radius: 0; padding: 22px 24px;
  font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 300; color: var(--ink);
  transition: background 0.35s var(--ease);
}
.buyer-pill:hover { background: var(--paper-2); }
.buyer-pill .icon { color: var(--accent); font-size: 18px; }

/* ----- FAQ accordion ----- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none;
  font-family: 'Newsreader', serif; font-size: 23px; font-weight: 300; color: var(--ink);
  padding: 30px 48px 30px 0; position: relative;
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--accent); font-weight: 300; transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}
.faq-a p { margin: 0; padding: 0 60px 30px 0; color: var(--text); font-size: 16px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ----- "Other categories" cross-link strip ----- */
.xlink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.xlink-card {
  position: relative; border-radius: 0; overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: flex-end;
}
.xlink-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: grayscale(0.12); }
.xlink-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,16,12,0.82), rgba(91,31,27,0.08) 65%); }
.xlink-card:hover img { transform: scale(1.05); }
.xlink-card .xl {
  position: relative; z-index: 1; padding: 26px; color: var(--paper);
  font-family: 'Newsreader', serif; font-weight: 300; font-size: 24px;
  display: flex; align-items: center; gap: 8px; width: 100%;
}
.xlink-card .xl .icon { margin-left: auto; color: var(--paper); transition: transform 0.35s var(--ease); font-size: 18px; }
.xlink-card:hover .xl .icon { transform: translateX(6px); }

/* ----- Category responsive ----- */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .xlink-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .cat-subnav { top: var(--header-height); }
  .cat-hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; padding: 120px 0 60px; }
  .cat-hero-media { transform: none; aspect-ratio: 16/11; order: -1; }
  .cat-hero-stamp { left: 0; }
  .cat-intro { grid-template-columns: 1fr; gap: 24px; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.flip .feature-media { order: -1; }
  .feature-media { aspect-ratio: 16/11; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cat-hero-meta { gap: 28px; }
}

/* ==========================================================================
   ATELIER — editorial gallery cards (homepage collection + collection page)
   Museum-catalogue feel: tall plates, oversized serif index numeral, a
   persistent hairline caption that lifts to reveal detail on hover.
   ========================================================================== */
.atelier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; background: transparent; border: none; }
.atelier-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.atelier-card {
  position: relative; border-radius: 0; overflow: hidden;
  aspect-ratio: 3/4.1; cursor: pointer; display: block;
  isolation: isolate;
  border: 1px solid var(--line); padding: 0; width: 100%; text-align: left;
  background: var(--ink); color: inherit; font: inherit;
  transition: transform 0.6s var(--ease);
}
.atelier-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.12) contrast(1.02);
}
.atelier-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,16,12,0.04) 0%, rgba(23,16,12,0) 32%, rgba(91,31,27,0.36) 62%, rgba(23,16,12,0.92) 100%);
  transition: opacity 0.6s var(--ease);
}
.atelier-card:hover img { transform: scale(1.055); filter: grayscale(0) contrast(1.03); }
/* oversized serif index numeral, top-left — always visible */
.atelier-card .a-top {
  position: absolute; top: 22px; left: 26px; right: 22px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.atelier-card .a-num {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: 42px; color: var(--white); line-height: 0.9;
  text-shadow: 0 1px 24px rgba(0,0,0,0.35);
}
.atelier-card .a-icon {
  width: 42px; height: 42px; border-radius: 0;
  background: rgba(248,241,231,0.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(248,241,231,0.32);
  display: grid; place-items: center; color: var(--white); font-size: 15px;
  opacity: 0; transform: translate(6px,-6px); transition: all 0.45s var(--ease);
}
.atelier-card:hover .a-icon { opacity: 1; transform: none; background: var(--paper); color: var(--ink); border-color: var(--paper); }
.atelier-card .a-body {
  position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; color: var(--white);
  transform: translateY(0); transition: transform 0.6s var(--ease);
}
/* thin rule above the caption, draws in on hover */
.atelier-card .a-body::before {
  content: ''; display: block; height: 1px; width: 34px; background: rgba(248,241,231,0.58);
  margin-bottom: 16px; transition: width 0.6s var(--ease);
}
.atelier-card:hover .a-body::before { width: 100%; }
.atelier-card .a-cat {
  font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #D0B46F; margin: 0 0 6px;
}
.atelier-card h3 { color: var(--white); font-size: 25px; font-weight: 300; margin: 0; line-height: 1.1; }
.atelier-card .a-desc {
  font-size: 13.5px; line-height: 1.55; color: #E1D2BF; max-height: 0; overflow: hidden; opacity: 0; margin: 0;
  transition: max-height 0.55s var(--ease), opacity 0.55s var(--ease), margin 0.55s var(--ease);
}
.atelier-card:hover .a-desc { max-height: 90px; opacity: 1; margin-top: 10px; }
.atelier-card .a-line {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
  transform: translateY(8px); opacity: 0; transition: all 0.55s var(--ease) 0.05s;
}
.atelier-card:hover .a-line { transform: none; opacity: 1; }
.atelier-card .a-line .icon { transition: transform 0.35s var(--ease); }
.atelier-card:hover .a-line .icon { transform: translateX(5px); }

/* solid-ink promo tile (no image) — content stays visible, subtle hover lift */
.atelier-card.brand-tile { background: var(--ink); border-color: var(--ink); }
.atelier-card.brand-tile::after { display: none; }
.atelier-card.brand-tile .a-num { font-size: 30px; color: #D0B46F; }
.atelier-card.brand-tile .a-desc { max-height: 90px; opacity: 1; margin-top: 10px; }
.atelier-card.brand-tile .a-line { opacity: 1; transform: none; }
.atelier-card.brand-tile:hover { background: var(--oxblood); }

/* ==========================================================================
   OFFERING — women.html / men.html "by category" showcase.
   The flagship category reuses .feat-cat (dark editorial spread); the
   remaining categories are image-led .feature-row bands stacked with
   generous rhythm and alternating sides. .offer-list is the shared
   sub-category listing (hairline rows + gold dot) used inside both.
   ========================================================================== */
.offer-letter {
  display: block;
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: 34px; line-height: 1; color: var(--accent); margin-bottom: 14px;
}
.feat-cat .offer-letter { font-size: 40px; color: #D0B46F; }

.offer-list { list-style: none; margin: 22px 0 28px; padding: 0; max-width: 420px; }
.offer-list li {
  position: relative; padding: 11px 0 11px 20px;
  font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text); border-top: 1px solid var(--line);
}
.offer-list li:last-child { border-bottom: 1px solid var(--line); }
.offer-list li::before {
  content: ''; position: absolute; left: 2px; top: 20px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.feat-cat .offer-list li { color: #EFE3D4; border-top-color: rgba(248,241,231,0.14); }
.feat-cat .offer-list li:last-child { border-bottom-color: rgba(248,241,231,0.14); }
.feat-cat .offer-list li::before { background: #D0B46F; }

.offer-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.offer-cta .icon { transition: transform 0.35s var(--ease); }
.offer-cta:hover .icon { transform: translateX(5px); }

/* rail + stack: a slim lettered wayfinder pins alongside the bands and
   tracks scroll position — a quick jump between categories on long pages */
.offer-rail-wrap { display: grid; grid-template-columns: 64px 1fr; gap: 40px; align-items: start; }
.offer-rail {
  position: sticky; top: calc(var(--header-height) + 32px);
  display: flex; flex-direction: column; gap: 14px;
}
.offer-rail a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Newsreader', serif; font-style: italic; font-size: 20px;
  color: var(--text-soft); border: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.offer-rail a:hover { color: var(--ink); border-color: var(--line); }
.offer-rail a.active {
  color: var(--ink); background: var(--paper-2); border-color: var(--line);
}

/* stack of image-led category bands, generous rhythm between each */
.offer-bands { display: flex; flex-direction: column; gap: 112px; }

/* bento image duo — one dominant plate + one accent, replaces a single img */
.offer-media { aspect-ratio: 16/12; display: grid; grid-template-columns: 1.5fr 1fr; gap: 4px; }
.feature-row.flip .offer-media { grid-template-columns: 1fr 1.5fr; }
.feature-row.flip .offer-media .om-a { order: 2; }
.feature-row.flip .offer-media .om-b { order: 1; }
.offer-media span { position: relative; overflow: hidden; display: block; }
.offer-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.1) contrast(1.02);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.offer-media:hover .om-a img { transform: scale(1.045); filter: grayscale(0) contrast(1.03); }
.offer-media:hover .om-b img { transform: scale(1.09); filter: grayscale(0) contrast(1.03); }

@media (max-width: 1100px) {
  .offer-rail-wrap { grid-template-columns: 1fr; }
  .offer-rail {
    position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 8px;
  }
  .offer-rail a { width: 38px; height: 38px; font-size: 17px; }
}
@media (max-width: 860px) {
  .offer-bands { gap: 56px; }
  .offer-media { aspect-ratio: 4/3; }
}

/* ==========================================================================
   COLLECTION — pinned horizontal scroll-scrub (homepage, desktop).
   The section pins to the viewport; page scroll translates the 9:16 card
   track sideways. When fully scrolled, the page continues to the next section.
   JS sets .cc-pin-wrap height and the track's translateX from scroll progress.
   On mobile / touch / reduced-motion, it un-pins into a vertical stack.
   ========================================================================== */
.collection-pin-section { position: relative; }

/* tall runway; its height (100vh + horizontal distance) is set by JS */
.cc-pin-wrap { position: relative; }

/* pinned stage */
.cc-pin {
  position: sticky; top: 0;
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}

/* heading row sits above the track, container-aligned */
.cc-pin-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-top: 40px; padding-bottom: 40px;
}
.cc-pin-head .cc-head-text { max-width: 680px; }
.cc-pin-head .cc-head-text h2 { font-size: clamp(30px, 4.4vw, 54px); margin: 14px 0 12px; }
.cc-pin-head .cc-head-text p { color: var(--text); font-size: 17px; margin: 0; }
.cc-pin-head .cc-hint {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-soft);
  white-space: nowrap; padding-bottom: 4px;
}
/* thin scroll-progress bar under the heading */
.cc-pin-head .cc-progress {
  position: relative; flex: 1 1 200px; min-width: 140px; height: 1px; background: var(--line);
  align-self: flex-end; margin-bottom: 8px;
}
.cc-pin-head .cc-progress .cc-bar {
  position: absolute; left: 0; top: 0; height: 1px; width: 0;
  background: var(--ink); transition: width 0.08s linear;
}

/* full-bleed viewport clips the horizontally-moving track */
.cc-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding-bottom: 12px;
}
.cc-track {
  display: flex;
  gap: 24px;
  padding: 6px max(40px, calc(50vw - var(--container-wide) / 2 + 40px));
  will-change: transform;
}
/* each card: 9:16 portrait, fixed width */
.cc-track .atelier-card {
  flex: 0 0 auto;
  width: clamp(260px, 27vw, 360px);
  aspect-ratio: 9 / 16;
  height: min(62vh, 640px);
}
.cc-track .atelier-card .a-num { font-size: 48px; }
.cc-track .atelier-card h3 { font-size: 27px; }

/* --- Mobile / touch / no-pin fallback: clean vertical stack, no carousel --- */
@media (max-width: 860px) {
  .collection-pin-section { padding: 76px 0; overflow: hidden; }
  .cc-pin-wrap { height: auto !important; }
  .cc-pin { position: static; height: auto; min-height: 0; display: block; overflow: visible; }
  .cc-pin-head { display: block; text-align: center; padding: 0 20px 36px; max-width: 100%; }
  .cc-pin-head .cc-head-text { max-width: 100%; margin: 0 auto; }
  .cc-pin-head .cc-head-text h2 { font-size: clamp(26px, 6.5vw, 36px); overflow-wrap: break-word; }
  .cc-pin-head .cc-head-text p { font-size: 15px; }
  .cc-pin-head .cc-progress, .cc-pin-head .cc-hint { display: none; }
  /* reset the desktop full-bleed 100vw so nothing overflows the screen */
  .cc-viewport { width: 100%; max-width: 100%; margin-left: 0; overflow: visible; padding: 0 20px; }
  .cc-track {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    padding: 0; transform: none !important; width: 100%;
  }
  /* card fits the column; slightly shorter, always-readable caption */
  .cc-track .atelier-card {
    width: 100%; max-width: 100%; height: auto; aspect-ratio: 5 / 6;
    min-width: 0;
  }
  .cc-track .atelier-card .a-num { font-size: 40px; }
  .cc-track .atelier-card h3 { font-size: 24px; }
  /* stronger bottom scrim so text is legible without hover */
  .cc-track .atelier-card::after {
    background: linear-gradient(180deg, rgba(23,16,12,0.05) 0%, rgba(23,16,12,0) 30%, rgba(91,31,27,0.55) 58%, rgba(23,16,12,0.94) 100%);
  }
  /* on touch there is no hover — reveal the caption details permanently */
  .cc-track .atelier-card .a-body::before { width: 40px; }
  .cc-track .atelier-card .a-desc { max-height: 80px; opacity: 1; margin-top: 8px; }
  .cc-track .atelier-card .a-line { transform: none; opacity: 1; }
  .cc-track .atelier-card .a-icon { opacity: 1; transform: none; }
}
/* honour reduced-motion on larger screens too: JS skips pinning and this
   turns the track into a simple wrapped, scrollable row */
.cc-track.no-pin {
  flex-wrap: wrap; transform: none !important;
  justify-content: center;
}
.cc-track.no-pin .atelier-card { height: auto; aspect-ratio: 9 / 16; width: clamp(100%, 24vw, 300px); }
@media (max-width: 600px) {
  .cc-track.no-pin .atelier-card{ aspect-ratio: 9/12; }
}
/* ==========================================================================
   SPOTLIGHT — wide detail rows (category "explore the range" section)
   ========================================================================== */
.spotlight { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.spot-row {
  display: grid; grid-template-columns: 280px 1fr auto; gap: 44px; align-items: center;
  background: var(--paper); border: none; border-radius: 0;
  padding: 28px; transition: background 0.4s var(--ease);
}
.spot-row:hover { background: var(--paper-2); }
.spot-row .s-img { border-radius: 0; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.spot-row .s-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: grayscale(0.08); }
.spot-row:hover .s-img img { transform: scale(1.05); }
.spot-row .s-cat { font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.spot-row h3 { font-size: 28px; margin: 8px 0 10px; }
.spot-row p { margin: 0 0 16px; color: var(--text); font-size: 15px; max-width: 480px; }
.s-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.s-tags span {
  font-family: 'Archivo', sans-serif; font-size: 11px; letter-spacing: 0.06em; color: var(--text);
  background: transparent; border: 1px solid var(--line); border-radius: 0; padding: 6px 14px;
}
.spot-row .s-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

/* Atelier + Spotlight responsive */
@media (max-width: 1100px) {
  .atelier-grid { grid-template-columns: repeat(3, 1fr); }
  .atelier-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .atelier-grid, .atelier-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .spot-row { grid-template-columns: 1fr; gap: 20px; }
  .spot-row .s-cta { flex-direction: row; }
  .spot-row .s-cta .btn { flex: 1; justify-content: center; }
}
@media (max-width: 480px) {
  .atelier-grid, .atelier-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .spot-row .s-cta { flex-direction: column; }
}

/* ==========================================================================
   FEATURED CATEGORY BANNER — editorial spread (collection page)
   A wide gallery plate: generous ink text panel with a ghost index numeral,
   one dominant image + a stacked pair, hairline-separated and hover-linked.
   ========================================================================== */
.feat-cat {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 0;
  border-radius: 0; overflow: hidden;
  background: var(--ink);
  min-height: 640px;
  border: 1px solid var(--ink);
}
.feat-cat .fc-text {
  position: relative; z-index: 2; overflow: hidden;
  padding: 80px; display: flex; flex-direction: column; justify-content: center;
  color: var(--white);
}
/* oversized ghost numeral watermark behind the copy */
.feat-cat .fc-text::after {
  content: '01'; position: absolute; right: -6px; top: -30px; z-index: -1;
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 300;
  font-size: 320px; line-height: 1; color: rgba(248,241,231,0.04);
  pointer-events: none;
}
.feat-cat .fc-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: #D0B46F;
  margin-bottom: 28px;
}
.feat-cat .fc-kicker::before { content: ''; width: 44px; height: 1px; background: #806650; }
.feat-cat .fc-script { font-family: 'Newsreader', serif; font-style: italic; font-weight: 300; color: #D0B46F; font-size: 30px; line-height: 1; margin-bottom: 2px; }
.feat-cat h2 { color: var(--white); font-weight: 300; font-size: clamp(38px, 5vw, 68px); line-height: 0.98; margin: 0 0 22px; letter-spacing: -0.025em; }
.feat-cat .fc-desc { color: #E1D2BF; font-size: 18px; line-height: 1.6; max-width: 440px; margin: 0 0 34px; }
.feat-cat .fc-meta { display: flex; gap: 0; margin-bottom: 38px; border-top: 1px solid rgba(248,241,231,0.14); border-bottom: 1px solid rgba(248,241,231,0.14); }
.feat-cat .fc-meta .m { padding: 20px 32px 20px 0; margin-right: 32px; border-right: 1px solid rgba(248,241,231,0.14); }
.feat-cat .fc-meta .m:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.feat-cat .fc-meta .m strong { display: block; font-family: 'Newsreader', serif; font-weight: 300; font-size: 34px; color: var(--white); line-height: 1; }
.feat-cat .fc-meta .m span { font-size: 10px; color: #BFA98E; letter-spacing: 0.18em; text-transform: uppercase; }
.feat-cat .fc-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
/* .btn-gold is an ink-filled button by default — invisible on this dark ink
   panel, so give it its namesake solid-gold fill here instead. */
.feat-cat .btn-gold { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.feat-cat .btn-gold:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* image spread — one dominant plate + stacked pair, hairline gaps */
.feat-cat .fc-media {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; padding: 0;
  background: var(--ink);
  border-left: 2px solid var(--ink);
}
.feat-cat .fc-media .fm {
  border-radius: 0; overflow: hidden; position: relative;
}
.feat-cat .fc-media .fm:first-child { grid-row: span 2; }
.feat-cat .fc-media .fm img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter 0.6s var(--ease); filter: grayscale(0.14) contrast(1.02); }
/* subtle darken on the secondary plates so the hero image leads */
.feat-cat .fc-media .fm:not(:first-child)::after { content: ''; position: absolute; inset: 0; background: rgba(23,16,12,0.16); transition: opacity 0.5s var(--ease); }
.feat-cat .fc-media .fm:hover img { transform: scale(1.05); filter: grayscale(0) contrast(1.03); }
.feat-cat .fc-media .fm:hover::after { opacity: 0; }
.feat-cat .fc-media .fm-stamp {
  position: absolute; left: 0; bottom: 0; z-index: 1;
  background: var(--ink); color: var(--paper);
  font-family: 'Archivo', sans-serif; font-weight: 500; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 9px 15px; border-radius: 0;
}

@media (max-width: 980px) {
  .feat-cat { grid-template-columns: 1fr; min-height: 0; }
  .feat-cat .fc-text { padding: 52px 32px; order: 2; }
  .feat-cat .fc-text::after { font-size: 200px; top: auto; bottom: -40px; }
  .feat-cat .fc-media { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; order: 1; border-left: none; border-bottom: 2px solid var(--ink); }
}
@media (max-width: 480px) {
  .feat-cat .fc-media { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 170px; padding: 0; gap: 2px; }
  .feat-cat .fc-text { padding: 44px 24px; }
  .feat-cat .fc-meta .m { padding: 16px 20px 16px 0; margin-right: 20px; }
}

/* mobile-only "Request a Quote" nav item (injected by main.js) */
.nav-quote-mobile { display: none; }
@media (max-width: 860px) {
  .nav-quote-mobile { display: block; }
  .nav-quote-mobile a {
    display: inline-block !important;
    margin: 10px 24px 6px;
    padding: 13px 26px !important;
    background: var(--ink); color: var(--paper) !important;
    border-radius: 0; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px;
  }
  .nav-quote-mobile a::after { display: none; }
}

/* compact icon-only quote button in the header (mobile only, injected by main.js) */
.header-quote-mobile { display: none; }
@media (max-width: 860px) {
  .header-quote-mobile {
    display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 0;
    background: var(--ink); color: var(--paper);
    font-size: 18px; flex: none;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
  }
  .header-quote-mobile:hover, .header-quote-mobile:active {
    background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink);
  }
}

/* ==========================================================================
   CONTACT POPUP — modal quote/enquiry form (Resend-backed)
   ========================================================================== */
.cpop-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(23, 16, 12, 0.66);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.cpop-overlay.open { opacity: 1; visibility: visible; }

.cpop {
  position: relative;
  width: 100%; max-width: 920px; max-height: 92vh; overflow: hidden;
  background: var(--paper);
  border-radius: 0;
  box-shadow: 0 40px 100px -40px rgba(23,16,12,0.66);
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  transform: translateY(24px) scale(0.99);
  transition: transform 0.4s var(--ease);
}
.cpop-overlay.open .cpop { transform: none; }

/* left brand rail */
.cpop-aside {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--white);
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between;
}
.cpop-aside > * { position: relative; }
.cpop-aside .cpop-logo { height: 44px; width: auto; margin-bottom: 32px; filter: brightness(0) invert(1); opacity: 0.92; }
.cpop-aside .cpop-script { font-family: 'Newsreader', serif; font-style: italic; color: #D0B46F; font-size: 30px; line-height: 1; }
.cpop-aside h3 { color: var(--white); font-weight: 300; font-size: 30px; line-height: 1.1; margin: 4px 0 16px; }
.cpop-aside p { color: #D8C9B7; font-size: 15px; margin: 0; }
.cpop-aside .cpop-points { list-style: none; margin: 30px 0 0; padding: 0; }
.cpop-aside .cpop-points li {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 300; color: #E1D2BF;
}
.cpop-aside .cpop-points .icon { color: #D0B46F; font-size: 15px; }

/* right form */
.cpop-main { padding: 44px; overflow-y: auto; }
.cpop-main .cpop-head { font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); }
.cpop-main h2 { font-size: 30px; font-weight: 300; margin: 8px 0 24px; }
.cpop-close {
  position: absolute; top: 16px; right: 18px; z-index: 5;
  width: 42px; height: 42px; border-radius: 0; cursor: pointer;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  font-size: 22px; line-height: 1; display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cpop-close:hover { background: var(--ink); color: var(--paper); }

/* honeypot (hidden from humans) */
.cpop-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* states */
.cpop-state { display: none; }
.cpop-state.active { display: block; }
.cpop-feedback {
  text-align: center; padding: 24px 8px;
}
.cpop-feedback .ic {
  width: 64px; height: 64px; border-radius: 0; margin: 0 auto 20px;
  display: grid; place-items: center; font-size: 30px; border: 1px solid var(--line);
}
.cpop-feedback.ok .ic { color: #3d7a52; }
.cpop-feedback.err .ic { color: #b3453a; }
.cpop-feedback h3 { font-size: 26px; font-weight: 300; margin: 0 0 8px; }
.cpop-feedback p { color: var(--text); margin: 0 0 24px; }

/* button loading spinner */
.btn.is-loading { pointer-events: none; opacity: 0.85; }
.btn .spinner { display: none; width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid currentColor; border-top-color: transparent; animation: cpop-spin 0.7s linear infinite; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label, .btn.is-loading .icon { display: none; }
@keyframes cpop-spin { to { transform: rotate(360deg); } }

@media (max-width: 780px) {
  .cpop { grid-template-columns: 1fr; max-height: 94vh; overflow-y: auto; }
  .cpop-aside { display: none; }
  .cpop-main { padding: 44px 24px 28px; }
}
