/* ============================================================
   ASHLAR HOUSE — Stylesheet
   ============================================================ */


/* ---- Minion 3 -------------------------------------------- */
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-SemiboldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minion3';
  src: url('../assets/fonts/Minion3-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Raleway (self-hosted) -------------------------------- */
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-ExtraLightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../assets/fonts/Raleway-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Custom Properties ----------------------------------- */
:root {
  --bg:             #0c0b0a;
  --bg-raised:      #111009;
  --bg-surface:     #161411;

  --text:           rgb(227, 211, 196);
  --text-muted:     rgba(227, 211, 196, 0.48);
  --text-faint:     rgba(227, 211, 196, 0.18);

  --accent:         #b8935a;
  --accent-dim:     rgba(184, 147, 90, 0.25);
  --accent-glow:    rgba(184, 147, 90, 0.05);

  --border:         rgba(227, 211, 196, 0.07);
  --border-accent:  rgba(184, 147, 90, 0.3);


  --font-serif: 'Minion3', Georgia, serif;
  --font-sans:  'Raleway', 'Helvetica Neue', sans-serif;

  --nav-h:          112px;
  --max-w:          1340px;
  --gutter:         clamp(24px, 5vw, 80px);

  --expo:           cubic-bezier(0.19, 1, 0.22, 1);
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ---- Grain overlay --------------------------------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9000;
}

/* ---- Ambient radial glow --------------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(184, 147, 90, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Animations ------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.fade-in    { animation: fadeUp 1.2s var(--expo) both; }
.fade-in-d1 { animation: fadeUp 1.2s var(--expo) 0.18s both; }
.fade-in-d2 { animation: fadeUp 1.2s var(--expo) 0.36s both; }
.fade-in-d3 { animation: fadeUp 1.2s var(--expo) 0.54s both; }

/* ---- Scroll reveal --------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.1s var(--expo), transform 1.1s var(--expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--text);
}
p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: 0.025em;
}
.label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mob-br { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.text-link {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.35s var(--ease);
}
.text-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--expo);
}
.text-link:hover { color: var(--text); }
.text-link:hover::after { width: 100%; }
.text-link--prose {
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
  color: inherit;
  display: inline;
  padding-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.28);
  transition: color 0.35s var(--ease), text-decoration-color 0.35s var(--ease);
}
.text-link--prose::after { display: none; }
.text-link--prose:hover { color: var(--accent); text-decoration-color: var(--accent); }

/* ---- Layout ---------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(80px, 11vw, 150px) 0; position: relative; z-index: 1; }
.section-border { border-top: 1px solid var(--border); }

/* ---- Navigation ------------------------------------------ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.scrolled,
#nav.solid {
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease), background 0.5s var(--ease);
}
#nav {
  transition: top 0.7s var(--expo), transform 0.4s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}

/* Logo — image with text fallback */
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  /* Replace assets/logo/wordmark.svg with your vector file */
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  display: none; /* shown via JS onerror fallback */
}
.nav-logo-text.visible { display: inline; }

.nav-links {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  list-style: none;
  align-items: center;
}
.nav-links > li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.45s var(--expo);
}
.nav-links a:hover          { color: var(--text); }
.nav-links a:hover::after   { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text); transition: 0.4s var(--expo); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ---- Hero ------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 !important;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,11,10,0.25) 0%,
    rgba(12,11,10,0.08) 40%,
    rgba(12,11,10,0.65) 88%,
    rgba(12,11,10,0.88) 100%
  );
  z-index: 1;
}

/* Tagline — bottom of hero, collection-title scale */
.hero-tagline {
  position: absolute;
  bottom: clamp(72px, 11vh, 110px);
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
}
.hero-tagline span {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

/* Scroll — bare animated line only */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(227,211,196,0.3), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}

/* ---- The House ------------------------------------------- */
.house-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
}
.house-text .label { display: block; margin-bottom: 24px; }
.house-text h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: 0.07em; margin-bottom: 30px; line-height: 1.18; }
.house-text p { margin-bottom: 16px; max-width: 490px; }
.house-text p:last-of-type { margin-bottom: 36px; }
.house-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-raised); }

/* ---- Collections ----------------------------------------- */
.collections-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(36px, 4vw, 56px);
  flex-wrap: wrap;
  gap: 16px;
}

/* Square tiles with gaps — full-bleed grid with inner padding */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 4vw, 32px);
  background: transparent;
  padding: 0 var(--gutter);
  max-width: 1200px;        /* add this — was var(--max-w) at 1340px */
  margin: 0 auto;
}

.c-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-raised);
  display: block;
}
.c-tile-bg { position: absolute; inset: 0; transition: transform 0.9s var(--expo); }
.c-tile:hover .c-tile-bg { transform: scale(1.05); }
.c-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,10,0.88) 0%, rgba(12,11,10,0.22) 45%, rgba(12,11,10,0.06) 100%);
  transition: background 0.5s var(--ease);
}
.c-tile:hover .c-tile-overlay {
  background: linear-gradient(to top, rgba(12,11,10,0.92) 0%, rgba(12,11,10,0.35) 50%, rgba(12,11,10,0.12) 100%);
}
.c-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(18px, 2.5vw, 30px);
}
.c-tile-name {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.8vw, 18px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 7px;
}
.c-tile-cta {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--expo);
}
.c-tile:hover .c-tile-cta { opacity: 1; transform: translateY(0); }

/* Bespoke link below collections grid */
.collections-bespoke {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(48px, 6vw, 80px) var(--gutter) 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.collections-bespoke-link {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.8vw, 22px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  position: relative;
  padding-bottom: 5px;
  transition: color 0.35s var(--ease);
}
.collections-bespoke-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-accent);
  transition: background 0.35s var(--ease);
}
.collections-bespoke-link:hover { color: var(--accent); }
.collections-bespoke-link:hover::after { background: var(--accent); }

/* ---- Contact --------------------------------------------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
}
.contact-left .label { display: block; margin-bottom: 24px; }
.contact-left h2 { font-size: clamp(28px, 3.5vw, 46px); letter-spacing: 0.07em; margin-bottom: 24px; }
.contact-left p { max-width: 380px; }
.contact-right {
  padding-top: clamp(20px, 3vw, 52px);
  border-left: 1px solid var(--border);
  padding-left: clamp(32px, 5vw, 80px);
}
.contact-email-link {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: 0.06em;
  color: var(--text);
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.35s var(--ease);
}
.contact-email-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.55s var(--expo);
}
.contact-email-link:hover::after { width: 100%; }
.contact-note { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-top: 16px; display: block; }

/* ---- Footer ---------------------------------------------- */
footer { border-top: 1px solid var(--border); padding: 56px 0 0; position: relative; z-index: 1; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 40px);
}
.footer-brand { display: flex; flex-direction: column; gap: 92px; flex: 0 0 auto; }
.footer-logo-img { height: 96px; width: auto; opacity: 0.72; display: block; }
.footer-socials { display: flex; gap: 18px; align-items: center; }
.footer-social-link { color: var(--text-faint); display: flex; align-items: center; transition: color 0.3s var(--ease); }
.footer-social-link:hover { color: var(--text-muted); }
.footer-brand-text { flex: 0 0 auto; padding-top: 4px;}
.footer-brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 12px;
}
.footer-brand-tagline { font-size: 12px; letter-spacing: 0.10em; color: var(--text-muted); max-width: 300px; line-height: 2.0; }
.footer-email { font-size: 10.5px; letter-spacing: 0.14em; color: var(--text-muted); display: inline-block; transition: color 0.3s var(--ease); }
.footer-email:hover { color: var(--text); }
.footer-copy { font-size: 9.5px; letter-spacing: 0.1em; color: var(--text-faint); margin-top: 7px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 20px var(--gutter);
  text-align: center;
}

/* ---- Placeholder Atmospheres ----------------------------- */
.ph { width: 100%; height: 100%; display: block; }

.ph-hero {
  background:
    radial-gradient(ellipse 55% 45% at 48% 52%, rgba(184,147,90,0.07) 0%, transparent 58%),
    radial-gradient(ellipse 30% 30% at 72% 28%, rgba(100,80,55,0.08) 0%, transparent 45%),
    linear-gradient(158deg, #0f0e0c 0%, #1c1915 38%, #161310 62%, #0c0b0a 100%);
}
.ph-ashtrays {
  background:
    radial-gradient(ellipse 35% 55% at 28% 62%, rgba(120,95,65,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 20% 20% at 75% 25%, rgba(80,65,45,0.12) 0%, transparent 40%),
    linear-gradient(148deg, #141210 0%, #1f1c17 55%, #0f0d0b 100%);
}
.ph-humidors {
  background:
    radial-gradient(ellipse 50% 38% at 68% 42%, rgba(100,78,52,0.22) 0%, transparent 54%),
    radial-gradient(ellipse 25% 40% at 22% 70%, rgba(70,55,38,0.14) 0%, transparent 45%),
    linear-gradient(122deg, #171513 0%, #1e1b16 50%, #0d0c0a 100%);
}
.ph-boards {
  background:
    radial-gradient(ellipse 60% 28% at 42% 68%, rgba(130,100,68,0.15) 0%, transparent 52%),
    radial-gradient(ellipse 18% 35% at 80% 20%, rgba(90,70,48,0.1) 0%, transparent 42%),
    linear-gradient(152deg, #141211 0%, #1d1b17 52%, #0f0e0c 100%);
}
.ph-lighters {
  background:
    radial-gradient(ellipse 28% 60% at 62% 32%, rgba(184,147,90,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 20% at 20% 80%, rgba(80,62,42,0.12) 0%, transparent 44%),
    linear-gradient(138deg, #0f0e0c 0%, #1b1915 52%, #111009 100%);
}
.ph-cases {
  background:
    radial-gradient(ellipse 45% 45% at 52% 48%, rgba(88,68,46,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 22% 28% at 78% 72%, rgba(60,48,32,0.1) 0%, transparent 42%),
    linear-gradient(145deg, #141210 0%, #1c1915 50%, #0e0d0b 100%);
}
.ph-other {
  background:
    radial-gradient(ellipse 65% 38% at 50% 58%, rgba(110,88,60,0.12) 0%, transparent 54%),
    radial-gradient(ellipse 28% 28% at 18% 22%, rgba(140,110,72,0.1) 0%, transparent 46%),
    linear-gradient(142deg, #111009 0%, #1d1b15 52%, #0d0c0a 100%);
}
.ph-vessels {
  background:
    radial-gradient(ellipse 40% 60% at 55% 35%, rgba(184,147,90,0.14) 0%, transparent 52%),
    radial-gradient(ellipse 25% 25% at 22% 72%, rgba(100,78,52,0.1) 0%, transparent 42%),
    linear-gradient(150deg, #121109 0%, #1c1a14 52%, #0e0d0b 100%);
}
.ph-product {
  background:
    radial-gradient(ellipse 48% 48% at 50% 44%, rgba(160,128,85,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 22% 32% at 78% 68%, rgba(80,64,42,0.1) 0%, transparent 44%),
    linear-gradient(148deg, #131211 0%, #1b1916 55%, #0f0e0c 100%);
}

/* ---- Collection inner pages ------------------------------ */
.col-hero {
  position: relative;
  height: 72vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 0 !important;
  overflow: hidden;
}
.col-hero-bg { position: absolute; inset: 0; }
.col-hero-bg .ph,
.col-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.col-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,10,0.96) 0%, rgba(12,11,10,0.32) 55%, rgba(12,11,10,0.14) 100%);
}
.col-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 24px) var(--gutter) clamp(52px, 7.5vh, 88px);
  text-align: center;
}
.col-hero-back {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  transition: gap 0.3s var(--expo);
}
.col-hero-back:hover { gap: 11px; }
.col-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.25vw, 40px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}
.col-hero-desc { max-width: 400px; font-size: 13px; color: var(--text-muted); letter-spacing: 0.025em; line-height: 1.8; }
.enquiry-band .band-back {
  margin-left: 0;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s var(--ease), gap 0.3s var(--expo);
}
.enquiry-band .band-back:hover { color: var(--text); gap: 10px; }
.col-hero + section { padding-top: clamp(40px,6vw,80px); }
.col-hero + section .enquiry-band { margin-top: 0; }

/* Enquiry banner */
.enquiry-band {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: clamp(32px, 4vw, 52px) 0 clamp(44px, 5vw, 72px);
}
.enquiry-band::before { display: none; }
.enquiry-band span { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.enquiry-band a {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  padding-bottom: 2px;
}
.enquiry-band a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.4s var(--expo); }
.enquiry-band a:hover::after { width: 100%; }

/* Products grid — square images */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.prod-card { display: block; color: inherit; }
.prod-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-raised);
  position: relative;
  margin-bottom: 16px;
}
.prod-card-img .ph { transition: transform 0.85s var(--expo); }
.prod-card:hover .prod-card-img .ph { transform: scale(1.045); }
.prod-card-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(12,11,10,0.78);
  border: 1px solid var(--border);
  padding: 6px 12px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--expo);
}
.prod-card:hover .prod-card-badge { opacity: 1; transform: translateY(0); }
.prod-card-variants {
  position: absolute;
  bottom: 17px; left: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--expo);
}
.prod-card:hover .prod-card-variants { opacity: 1; transform: translateY(0); }
.prod-card-variants-label {
  font-size: 7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 4px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,0.9);
  padding-left: 2.5px;
}
.prod-card-variants-dots {
  display: flex;
  gap: 6px;
}
.prod-card-variants-dots span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.prod-card-name { font-family: var(--font-serif); font-size: clamp(15px, 1.6vw, 19px); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 5px; }
.prod-card-sub { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }

/* ---- Product pages --------------------------------------- */
.product-section { padding-top: calc(var(--nav-h) + clamp(40px, 5vw, 72px)) !important; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 108px);
  align-items: start;
}
.product-gallery { position: static; min-width: 0; }
.product-main-img { display: none; }
.product-thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-thumb--hero {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  cursor: default;
  opacity: 1;
}
.product-thumb--hero:hover { opacity: 1; }
.product-thumb {
  aspect-ratio: 1;
  background: var(--bg-raised);
  overflow: hidden;
  cursor: pointer;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-info { padding-top: clamp(12px, 2vw, 28px); position: sticky; top: calc(var(--nav-h) + 28px); align-self: start; }
.product-breadcrumb-mobile { display: none !important; }
.product-breadcrumb {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  transition: gap 0.3s var(--expo);
}
.product-breadcrumb:hover { gap: 11px; }
.product-title { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 46px); letter-spacing: 0.09em; text-transform: uppercase; font-weight: 400; margin-bottom: 6px; }
.product-byline { font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); opacity: 0.6; line-height: 1.9; margin-bottom: 28px; }
.product-subtitle { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 30px; }
.product-desc { font-size: 13.5px; line-height: 1.85; color: var(--text-muted); max-width: 420px; margin-bottom: 36px; }
.product-desc p + p { margin-top: 16px; }

/* Spec table */
.specs { border-top: 1px solid var(--border); margin-bottom: 36px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--border); gap: 24px; }
.spec-key { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); flex-shrink: 0; }
.spec-val { font-family: var(--font-serif); font-size: 14.5px; letter-spacing: 0.04em; color: var(--text); text-align: right; }

/* ---- Colour Variant Selector ----------------------------- */
.colour-selector { margin-bottom: 32px; }
.colour-selector-label {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 14px;
}
.colour-options { display: flex; gap: 14px; flex-wrap: wrap; }
.colour-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.colour-opt .colour-swatch {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: block;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.25s var(--ease), transform 0.2s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.colour-opt:hover .colour-swatch { transform: scale(1.06); }
.colour-opt.active .colour-swatch { border-color: var(--accent); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px var(--accent); }
.example-swatch {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.example-swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.colour-opt:hover .example-swatch { transform: scale(1.06); }
.colour-opt.active .example-swatch { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.colour-opt-name {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 14px;
}
.colour-opt.active .colour-opt-name { color: var(--text); }

/* Enquiry actions */
.prod-actions { display: flex; flex-direction: column; gap: 10px; }
.btn {
  display: block;
  text-align: center;
  padding: 15px 32px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
}
.btn-primary { background: var(--text); color: var(--bg); border: 1px solid var(--text); }
.btn-primary:hover { background: transparent; color: var(--text); }
.btn-secondary { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--border-accent); color: var(--text); }
.prod-actions-note { font-size: 11px; letter-spacing: 0.14em; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ---- Coming Soon / Bespoke pages ------------------------- */
.full-page-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) var(--gutter) clamp(60px, 8vw, 100px) !important;
}
.full-page-inner { max-width: var(--max-w); width: 100%; margin: 0 auto; }
.bespoke-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
}

/* ---- Humidor / single product layout --------------------- */
.single-product-layout {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.single-product-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-raised);
}

/* Humidor coming-soon note */
.humidor-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: clamp(48px, 6vw, 80px);
}
.humidor-note-cell {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px);
}
.humidor-note-cell .label { display: block; margin-bottom: 14px; }
.humidor-note-cell p { font-size: 13px; }

/* ---- The House — editorial page -------------------------- */
.th-intro {
  padding-top: calc(var(--nav-h) + clamp(52px, 9vw, 108px));
  padding-bottom: clamp(52px, 9vw, 108px);
  text-align: center;
}
.th-intro-inner { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); }
.th-intro-leads { display: flex; gap: clamp(32px, 5vw, 64px); text-align: center; margin-top: clamp(22px, 3vw, 36px); }
.th-intro h1 {
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: clamp(22px, 3vw, 36px);
}
.th-intro-lead {
  font-size: clamp(13.5px, 1.3vw, 16px);
  line-height: 1.95;
  color: var(--text-muted);
  flex: 1;
}
.th-section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.th-section-head .label { display: block; margin-bottom: 14px; }
.th-section-head h2 {
  font-size: clamp(22px, 2.8vw, 38px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.th-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--text);
  opacity: 0.68;
  max-width: 900px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  padding: clamp(28px, 4vw, 52px) 0;
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
}
.th-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.th-two-col p { max-width: none; margin-bottom: 18px; }
.th-two-col p:last-child { margin-bottom: 0; }
.th-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-top: 1px solid var(--border);
}
.th-step:last-of-type { border-bottom: 1px solid var(--border); }
.th-step-num {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  color: var(--text-faint);
  line-height: 1;
  padding-top: 2px;
  text-align: right;
}
.th-step-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.th-step-body p { max-width: 540px; }
.th-cta-inner { text-align: center; max-width: 480px; margin: 0 auto; }
.th-divider {
  width: 1px;
  height: clamp(48px, 7vh, 80px);
  background: linear-gradient(to bottom, transparent, var(--border-accent));
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.th-img-banner {
  width: 100%;
  height: clamp(280px, 38vw, 500px);
  overflow: hidden;
  position: relative;
}
.th-img-banner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  opacity: 0.76;
}
.th-img-text {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.th-img-text-img { overflow: hidden; }
.th-img-text-img img { width: 100%; height: auto; display: block; }
.th-img-text-body p { max-width: none; margin-bottom: 18px; }
.th-img-text-body p:last-child { margin-bottom: 0; }

/* ---- Enquiries Page -------------------------------------- */

/* Intro */
.enq-intro {
  padding: calc(var(--nav-h) + clamp(60px, 9vw, 120px)) var(--gutter) clamp(72px, 10vw, 130px);
  text-align: center;
}
.enq-intro-inner { max-width: 600px; margin: 0 auto; }
.enq-intro-inner .label { display: block; margin-bottom: 24px; }
.enq-intro-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 32px;
}
.enq-intro-inner p { max-width: 520px; margin: 0 auto; }

/* Three panels */
.enq-panels {
  padding: clamp(100px, 14vw, 180px) var(--gutter);
}
.enq-panels-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(56px, 9vw, 136px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.enq-panel { padding: 0; text-align: center; }
.enq-panels-faq {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: clamp(40px, 6vw, 64px);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.enq-panels-faq .text-link {
  font-size: inherit;
  letter-spacing: inherit;
}
.enq-panel + .enq-panel { position: relative; }
.enq-panel + .enq-panel::before {
  content: '';
  position: absolute;
  left: calc(clamp(56px, 9vw, 136px) / -2);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.enq-panel-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(28px, 3.5vw, 42px);
  color: var(--text);
}
.enq-panel-icon svg { display: block; }
.enq-panel-icon img { display: block; }
.enq-panel .label {
  display: block;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text);
  margin-bottom: 20px;
}
.enq-panel p { margin-bottom: 16px; }
.enq-panel p:last-child { margin-bottom: 0; }

/* Form + email side by side */
.enq-contact-section { padding: clamp(72px, 10vw, 130px) var(--gutter); }
.enq-contact-inner {
  display: grid;
  grid-template-columns: 4.5fr auto 2fr;
  align-items: center;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.enq-contact-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 0 clamp(48px, 7vw, 100px);
}
.enq-contact-email {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.enq-contact-email .label { display: block; margin-bottom: 24px; }
.enq-contact-email .contact-note { margin-top: 18px; }
#enq-form-wrap {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: clamp(44px, 5.5vw, 72px) clamp(36px, 5vw, 68px);
}
#enq-form-wrap > .label { display: block; margin-bottom: 32px; }

/* Form fields */
.enq-form { width: 100%; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
}
.form-group { margin-bottom: 32px; }
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text);
  outline: none;
  transition: border-color 0.35s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--accent); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='rgba(227,211,196,0.35)' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 22px;
}
.form-select option { background: #0c0b0a; color: var(--text); }
.form-textarea {
  resize: vertical;
  min-height: 170px;
  padding-top: 14px;
  line-height: 1.85;
}
.enq-honeypot { display: none; }
.enq-submit-wrap { margin-top: 40px; }
.enq-submit-wrap .btn { display: inline-block; min-width: 220px; }
.enq-direct {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.enq-direct a { color: var(--text-faint); transition: color 0.3s var(--ease); }
.enq-direct a:hover { color: var(--text-muted); }

/* Inline success state */
.enq-success { display: none; max-width: 500px; padding-top: 8px; }
.enq-success .label { display: block; margin-bottom: 22px; color: var(--accent); }
.enq-success-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---- 404 Error Page -------------------------------------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) var(--gutter) clamp(60px, 8vw, 100px) !important;
}
.error-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-w);
  min-height: 420px;
}
.error-numeral {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(200px, 34vw, 480px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  color: rgba(227, 211, 196, 0.038);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.error-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.error-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 22px auto 26px;
}
.error-ornament::before,
.error-ornament::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--border-accent);
}
.error-ornament-gem {
  width: 5px;
  height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
  opacity: 0.8;
}
.error-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.error-body {
  max-width: 360px;
  margin: 0 auto 44px;
}
.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.error-actions .btn { min-width: 220px; }
.error-text-link {
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.35s var(--ease);
}
.error-text-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--expo);
}
.error-text-link:hover { color: var(--text); }
.error-text-link:hover::after { width: 100%; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 960px) {
  .house-inner              { grid-template-columns: 1fr; }
  .house-image              { order: 1; aspect-ratio: 4 / 5; width: 60%; margin: 0 auto; }
  .contact-inner            { grid-template-columns: 1fr; }
  .contact-right            { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 36px; }
  .single-product-layout    { grid-template-columns: 1fr; }
  .bespoke-grid             { grid-template-columns: 1fr; }
  .bespoke-grid .btn        { text-align: center; }
  .bespoke-cta-wrap         { margin: 0 auto; }
  .collections-grid         { grid-template-columns: repeat(2, 1fr); }
  .products-grid            { grid-template-columns: repeat(2, 1fr); }
  .product-layout           { grid-template-columns: 1fr; }
  .product-gallery          { position: static; }
  .humidor-notes            { grid-template-columns: 1fr; }
  .th-two-col               { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 36px); }
  .th-img-text              { grid-template-columns: 1fr; }
  .th-img-text-img          { order: 2; aspect-ratio: 1 / 1; }
  .th-img-text-body         { order: 1; }
  .enq-panels-inner         { grid-template-columns: 1fr; column-gap: 0; }
  .enq-panel                { padding: clamp(40px, 7vw, 60px) 0; border-top: 1px solid var(--border); }
  .enq-panel:first-child    { border-top: none; padding-top: 0; }
  .enq-panel + .enq-panel::before { display: none; }
  .enq-contact-inner        { grid-template-columns: 1fr; }
  .enq-contact-divider      { width: auto; height: 1px; margin: clamp(48px, 7vw, 72px) 0; }
  .enq-contact-email        { align-items: center; text-align: center; width: 100%; }
  .form-row                 { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
  :root { --nav-h: 90px; }

  .nav-inner {
    justify-content: center;
    position: relative;
  }
  .nav-toggle {
    position: absolute;
    left: var(--gutter);
    display: flex;
  }

  #nav.scrolled,
  #nav.solid {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12, 11, 10, 0.97) !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(10, 9, 8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 495;
    overflow-y: auto;
    padding: 100px 40px 72px;
  }
  .accessories-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 0 18px;
  }
  .acc-img {
    width: 100%;
    margin: 0;
  }
  .lightbox-content { max-width: 90vw; }
  .lightbox-img-wrap { width: 82vw; height: 82vw; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .accessories-gallery-section .label {
    text-align: center;
  }
  /* Overlay */
  .nav-links.open {
    display: flex;
    animation: navOverlayIn 0.38s var(--ease) both;
  }

  /* Each li: block so children stack, full width, text centred */
  .nav-links > li {
    display: block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > li:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }

  /* Stagger */
  .nav-links.open > li { animation: navItemIn 0.52s var(--ease) both; }
  .nav-links.open > li:nth-child(1) { animation-delay: 0.07s; }
  .nav-links.open > li:nth-child(2) { animation-delay: 0.14s; }
  .nav-links.open > li:nth-child(3) { animation-delay: 0.21s; }
  .nav-links.open > li:nth-child(4) { animation-delay: 0.28s; }

  /* nav-item-wrap: block, inherits centred text */
  .nav-item-wrap { display: block; text-align: center; }

  /* Primary links — serif, override global 9.5px caps rule */
  .nav-links > li > a,
  .nav-links > li > .nav-item-wrap > a {
    font-family: var(--font-serif) !important;
    font-size: 22px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    color: var(--text) !important;
    font-weight: 400;
    display: block;
    padding: 18px 0 10px;
  }

  /* Hide accordion toggle — sub-items always visible */
  .nav-dropdown-toggle { display: none; }

  .collections-grid { padding: 0 clamp(2px, 8vw, 32px); gap: clamp(12px, 2vw, 28px); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .mob-br { display: inline; }

  /* Product page — mobile */
  .product-layout { gap: 28px; width: 95%; margin-left: auto; margin-right: auto; }
  .product-breadcrumb { display: none; }
  .product-breadcrumb-mobile { display: inline-flex !important; margin-bottom: 8px; }
  .product-info { padding-top: 4px; position: static; }
  .product-section .product-info.reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  /* Product gallery — mobile */
  .product-main-img {
    display: block;
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-raised);
  }
  .product-main-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .product-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-thumb--hero {
    grid-column: auto;
    aspect-ratio: 1;
    cursor: pointer;
    flex: 0 0 68px;
    height: 68px;
    opacity: 0.6;
  }
  .product-thumb--hero:hover { opacity: 0.85; }
  .product-thumb {
    flex: 0 0 68px;
    height: 68px;
    aspect-ratio: auto;
    opacity: 0.6;
    border: 1px solid transparent;
    transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
  }
  .product-thumb:hover { opacity: 0.85; }
  .product-thumb.active { opacity: 1; border-color: var(--accent); }
  .footer-inner { flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 32px; }
  /* Unwrap footer-brand so logo and socials become independent flex items */
  .footer-brand { display: contents; }
  .footer-logo-img { order: 1; height: 80px; } /* logo sits first */
  .footer-brand-text { order: 2; flex: 0 0 auto; }
  .footer-nav-cols { display: flex; justify-content: flex-start; gap: 40px; order: 3; }
  .footer-socials { order: 4; }             /* socials move below columns */
  .footer-bottom { margin-top: 36px; }

  .lightbox-content { max-width: 90vw; }
  .lightbox-img-wrap { width: 82vw; height: 82vw; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  #nav {
    transition: top 0.4s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
  }
  #nav.nav-hidden {
    transform: none;
    top: calc(-1 * var(--nav-h) - 10px);
    opacity: 0;
    transition: top 0.7s var(--expo), opacity 0.5s var(--ease), background 0.5s var(--ease);
  }
  #nav.menu-is-open {
    top: 0 !important;
    opacity: 1 !important;
  }
    .nav-toggle {
    position: absolute;
    left: var(--gutter);
    z-index: 496;
  }
}


/* ---- Accessories gallery --------------------------------- */
.accessories-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}

.acc-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-raised);
  transition: opacity 0.35s var(--ease);
}
.acc-item:hover .acc-img { opacity: 0.8; }

.acc-caption {
  display: none;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Lightbox -------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.97);
  z-index: 800;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 70vw;
  max-height: 80vh;
}

.lightbox-img-wrap {
  width: min(72vw, 74vh);
  height: min(72vw, 74vh);
  flex-shrink: 0;
  background: var(--bg-raised);
  overflow: hidden;
}
.lightbox-img-wrap .ph,
.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-caption-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lightbox-caption {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.lightbox-subcaption {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s var(--ease);
  font-weight: 200;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--text); }

.lightbox-close {
  top: 32px; right: 40px;
  font-size: 32px;
  line-height: 1;
}
.lightbox-prev {
  left: 32px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}
.lightbox-next {
  right: 32px; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}

/* Responsive gallery */
@media (max-width: 960px) {
  .accessories-gallery { grid-template-columns: repeat(3, 1fr); }
}


.accessories-gallery-section {
  padding-top: 32px;
  padding-bottom: 120px;
  overflow: hidden;
}

.accessories-gallery-section .label {
  font-size: 13px;
  letter-spacing: 0.28em;
}

.acc-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* Product gallery — click to enlarge (desktop only) */
@media (min-width: 961px) {
  .product-thumb { cursor: zoom-in; }
}
.lightbox--product .lightbox-content {
  max-height: none;
  max-width: none;
}
.lightbox--product .lightbox-img-wrap {
  width: 82vw;
  height: 82vh;
  background: none;
}
.lightbox--product .lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- Nav Dropdown ---------------------------------------- */
.nav-item-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-has-dropdown { position: relative; }

/* Invisible bridge fills the gap so hover stays active as mouse moves down */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
  display: block;
}

.nav-dropdown-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  line-height: 1;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(12, 11, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  list-style: none;
  min-width: 164px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease), transform 0.22s var(--ease);
  white-space: nowrap;
  z-index: 510;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  padding: 10px 22px;
  transition: color 0.3s var(--ease);
}
.nav-dropdown li a::after { display: none !important; }
.nav-dropdown li a:hover { color: var(--text); }

/* ---- Footer Columns -------------------------------------- */
@media (min-width: 601px) {
  .footer-nav-cols {
    display: contents; /* unwraps cols as direct flex siblings of .footer-inner */
  }
}
.footer-nav-col-head {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.footer-nav-col a:hover { color: var(--text); }

/* ---- Image Placeholder ----------------------------------- */
.img-placeholder {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.img-placeholder-label {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  padding: 16px;
}

/* ---- The Material page ----------------------------------- */
.tm-variety-list { margin-top: clamp(36px, 5vw, 56px); }
.tm-variety-row {
  display: grid;
  grid-template-columns: 2fr 5fr clamp(120px, 13vw, 180px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--border);
}
.tm-variety-row:last-child { border-bottom: 1px solid var(--border); }
.tm-variety-row-name {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--accent);
}
.tm-variety-row-desc { font-size: 13.5px; line-height: 1.85; color: var(--text-muted); }
.tm-variety-row-img { aspect-ratio: 1 / 1; }
.tm-variety-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.tm-variety-row:hover .tm-variety-row-img img { transform: scale(1.04); }
.tm-gold-section .th-img-text { align-items: center; }
.tm-product-img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.tm-product-img-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.tm-product-img-link:hover img { transform: scale(1.04); }
.tm-product-img-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px 20px;
  background: linear-gradient(to top, rgba(10,9,8,0.78) 0%, transparent 100%);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.tm-product-img-link:hover .tm-product-img-cta { color: var(--text); }
.tm-browse-cta { text-align: center; max-width: 480px; margin: 0 auto; }
.tm-browse-cta .th-divider { margin-bottom: clamp(28px, 4vw, 44px); }

/* ---- Journal page ---------------------------------------- */
.journal-hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 !important;
}
.journal-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.5vw, 28px);
}
.journal-hero-content .label { color: var(--accent); }
.journal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.journal-hero-sub {
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 2;
}

/* ---- FAQ page -------------------------------------------- */
.faq-intro {
  padding: calc(var(--nav-h) + clamp(48px, 7vw, 80px)) var(--gutter) clamp(32px, 5vw, 56px);
  text-align: center;
}
.faq-intro-inner { max-width: 600px; margin: 0 auto; }
.faq-intro-inner .label { display: block; margin-bottom: 18px; color: var(--accent); }
.faq-intro-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-body { padding: 0 var(--gutter) clamp(60px, 8vw, 100px); }
.faq-body-inner { max-width: 760px; margin: 0 auto; }

.faq-section { margin-bottom: clamp(32px, 5vw, 52px); }
.faq-section:last-child { margin-bottom: 0; }
.faq-section-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-section:last-child .faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-serif);
  font-size: clamp(13.5px, 1.3vw, 16px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  padding: clamp(13px, 1.8vw, 20px) 0;
  transition: color 0.3s var(--ease);
  user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-faint);
  flex-shrink: 0;
  line-height: 1.3;
  transition: color 0.3s var(--ease);
}
.faq-item.open .faq-q::after {
  content: '\2212';
  color: var(--accent);
}
.faq-a {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.3s var(--ease), padding-bottom 0.3s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 600px;
  opacity: 1;
  padding-bottom: clamp(14px, 2vw, 22px);
}
.faq-a p + p { margin-top: 10px; }
.faq-a a { color: var(--accent); transition: opacity 0.2s var(--ease); }
.faq-a a:hover { opacity: 0.75; }

.faq-contact-note {
  margin-top: clamp(48px, 7vw, 72px);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.faq-contact-note .text-link {
  font-size: inherit;
  letter-spacing: inherit;
}

/* Product page FAQ note */
.prod-faq-note {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 48px;
  text-align: center;
}
.prod-faq-note a {
  color: var(--accent);
  transition: opacity 0.2s var(--ease);
}
.prod-faq-note a:hover { opacity: 0.75; }

/* ---- Mobile nav additions -------------------------------- */
/* Keyframes defined here so they load after global rules   */
@keyframes navOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes navItemIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  /* Remove positioned context — dropdown is static flow */
  /* ---- All critical mobile nav overrides live here so they
         come after every global nav rule in the cascade ---- */

  /* li: block so wrap and dropdown stack, not side-by-side */
  .nav-links > li {
    display: block !important;
    text-align: center;
  }

  /* nav-item-wrap: block (global sets display:flex which puts
     the label and dropdown side-by-side — this kills that) */
  .nav-item-wrap {
    display: block !important;
    text-align: center;
  }

  /* Primary link text */
  .nav-links > li > a,
  .nav-links > li > .nav-item-wrap > a {
    font-family: var(--font-serif) !important;
    font-size: 22px !important;
    letter-spacing: 0.1em !important;
    color: var(--text) !important;
    text-align: center;
    display: block;
    padding: 18px 0 10px;
  }

  /* Dropdown toggle hidden */
  .nav-dropdown-toggle { display: none !important; }

  /* Positioned context / hover bridge off */
  .nav-has-dropdown { position: static; }
  .nav-has-dropdown::after { display: none; }

  /* Always-visible sub-items */
  .nav-has-dropdown .nav-dropdown,
  .nav-has-dropdown:hover .nav-dropdown {
    position: static;
    display: block;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-height: none;
    overflow: visible;
    padding: 0 0 16px;
    min-width: auto;
    white-space: normal;
    transition: none;
    z-index: auto;
  }

  /* Sub-item links */
  .nav-dropdown { text-align: center; }
  .nav-dropdown li { list-style: none; text-align: center; }
  .nav-dropdown li a {
    display: block !important;
    text-align: center !important;
    font-family: var(--font-sans) !important;
    font-size: 9px !important;
    letter-spacing: 0.3em !important;
    color: var(--text-muted) !important;
    padding: 5px 0;
    transition: color 0.2s var(--ease);
  }
  .nav-dropdown li a:hover { color: var(--text) !important; }

  .th-intro-leads { flex-direction: column; gap: 20px; }

  /* Varieties mobile */
  .tm-variety-row { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .tm-variety-row-name { grid-column: 1 / 2; grid-row: 1; }
  .tm-variety-row-img { grid-column: 2 / 3; grid-row: 1 / 3; align-self: start; }
  .tm-variety-row-desc { grid-column: 1 / 2; grid-row: 2; }
}
