/* ==========================================================================
   Tan Station — Halfway, Sheffield
   Palette: deep espresso base, warm coral accent, cream bands
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces (dark) — warm espresso, never blue-black */
  --ink-900: #0E0A07;
  --ink-850: #14100C;
  --ink-800: #191310;
  --ink-750: #1F1814;
  --ink-700: #261D18;
  --ink-600: #35281F;

  /* Surfaces (cream) — luxury beige, the neutral half of the brand */
  --cream-100: #FBF6EF;
  --cream-200: #F3EADD;
  --cream-300: #E7D9C6;

  /* Type on dark */
  --on-dark: #F7F1E9;
  --on-dark-mute: #C7B7A8;
  --on-dark-faint: #9D8C7E;

  /* Type on cream */
  --on-cream: #1C1410;
  --on-cream-mute: #6B564A;

  /* Accent — warm coral pulled back from neon towards terracotta */
  --coral: #E58A66;
  --coral-hi: #F3AE8D;
  --coral-lo: #CE7048;
  --coral-ink: #9C4327;        /* accessible coral on cream */
  --rose: #DCA79C;
  --open: #5FBF88;

  /* Hairlines */
  --line-dark: rgba(247, 240, 232, 0.10);
  --line-dark-strong: rgba(247, 240, 232, 0.20);
  --line-cream: rgba(26, 18, 13, 0.11);

  /* Elevation (colour tinted, layered) */
  --lift-1: 0 1px 2px rgba(8, 5, 3, 0.30), 0 8px 24px -14px rgba(8, 5, 3, 0.70);
  --lift-2: 0 2px 6px rgba(8, 5, 3, 0.34), 0 22px 50px -26px rgba(8, 5, 3, 0.85);
  --lift-coral: 0 10px 24px -12px rgba(222, 104, 68, 0.55), 0 24px 56px -28px rgba(222, 104, 68, 0.45);
  --lift-cream: 0 1px 2px rgba(90, 60, 40, 0.06), 0 16px 36px -22px rgba(90, 60, 40, 0.28);

  /* Type */
  --font-display: "Instrument Serif", "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --shell: 1200px;
  --shell-narrow: 760px;
  --gutter: 1.375rem;
  --nav-h: 64px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.2, 0.9, 0.25, 1.06);
}

@media (min-width: 900px) {
  :root {
    --gutter: 2.5rem;
    --nav-h: 76px;
  }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink-800);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

::selection {
  background: var(--coral);
  color: var(--ink-900);
}

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

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

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--coral);
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.25s var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Film grain, sitewide */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell-narrow { max-width: var(--shell-narrow); }

.section {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

.section-head { max-width: 40ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head-center {
  max-width: 34ch;
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--on-dark-mute);
  font-size: 1.0625rem;
  max-width: 46ch;
}
.section-head-center .section-sub { margin-inline: auto; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.875rem;
}
.dot-sep { opacity: 0.5; margin-inline: 0.15em; }

/* --------------------------------------------------------------------------
   3b. Cream surfaces
   About half the page sits on warm beige. Anything inside `.on-cream` flips
   from the dark palette to the light one, so a section only needs the class.
   -------------------------------------------------------------------------- */
.on-cream {
  background-color: var(--cream-100);
  color: var(--on-cream);
}
.on-cream .eyebrow { color: var(--coral-ink); }
.on-cream .section-sub { color: var(--on-cream-mute); }
.on-cream .card {
  background-color: #FFFFFF;
  background-image: none;
  border-color: var(--line-cream);
  box-shadow: var(--lift-cream);
}
.on-cream .card:hover {
  border-color: rgba(156, 67, 39, 0.28);
  box-shadow: 0 2px 4px rgba(90, 60, 40, 0.07), 0 24px 46px -26px rgba(90, 60, 40, 0.36);
}
.on-cream .card h3 { color: var(--on-cream); }
.on-cream .card p { color: var(--on-cream-mute); }
.on-cream .card-index { color: var(--coral-ink); opacity: 1; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9688rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.32s var(--ease-spring),
    box-shadow 0.32s var(--ease-out),
    background-color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    color 0.22s var(--ease-out);
}
.btn-sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; }
.btn-lg { padding: 1.0625rem 1.875rem; font-size: 1.0313rem; }

.btn .ico {
  width: 1.0625em;
  height: 1.0625em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-primary .ico { fill: currentColor; stroke: none; }
.btn-primary .ico-out { fill: none; stroke: currentColor; }
.ico-out { opacity: 0.7; }

.btn-primary {
  background-image: linear-gradient(158deg, var(--coral-hi) 0%, var(--coral) 52%, var(--coral-lo) 100%);
  color: #24100A;
  box-shadow: var(--lift-coral), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px -12px rgba(222, 104, 68, 0.7),
    0 30px 66px -30px rgba(222, 104, 68, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background-color: rgba(247, 240, 232, 0.045);
  border-color: var(--line-dark-strong);
  color: var(--on-dark);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 127, 95, 0.6);
  background-color: rgba(238, 127, 95, 0.1);
  color: #FFF3EC;
}
.btn-ghost:active { transform: translateY(0); }

/* Ghost button sitting on a cream band */
.on-cream .btn-ghost,
.hours .btn-ghost,
.faq .btn-ghost,
.reviews .btn-ghost {
  background-color: rgba(26, 18, 13, 0.03);
  border-color: var(--line-cream);
  color: var(--on-cream);
}
.on-cream .btn-ghost:hover,
.hours .btn-ghost:hover,
.faq .btn-ghost:hover,
.reviews .btn-ghost:hover {
  border-color: rgba(168, 69, 45, 0.5);
  background-color: rgba(168, 69, 45, 0.07);
  color: var(--coral-ink);
}

.link-plain {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  text-decoration-color: rgba(238, 127, 95, 0.4);
  transition: color 0.2s var(--ease-out), text-decoration-color 0.2s var(--ease-out);
}
.link-plain:hover {
  color: var(--coral-hi);
  text-decoration-color: currentColor;
}

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.site-header.is-scrolled {
  background-color: rgba(19, 14, 11, 0.82);
  border-bottom-color: var(--line-dark);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
}

.header-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex: none;
}
.wordmark-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(150deg, var(--coral-hi), var(--coral-lo));
  box-shadow: 0 6px 16px -8px rgba(222, 104, 68, 0.8);
}
.wordmark-mark > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-900);
  opacity: 0.72;
}
.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.wordmark-thin { color: var(--coral); margin-left: 0.14em; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.25rem);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  display: inline-block;
  padding-block: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--on-dark-mute);
  white-space: nowrap;
  transition: color 0.22s var(--ease-out);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease-out);
}
.nav-list a:hover { color: var(--on-dark); }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.nav-list a.is-active { color: var(--on-dark); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-dark-strong);
  border-radius: 12px;
  background: rgba(247, 240, 232, 0.04);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.burger:hover { border-color: rgba(238, 127, 95, 0.55); }
.burger-box {
  display: grid;
  gap: 5px;
  place-content: center;
}
.burger-box > span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--on-dark);
  transition: transform 0.34s var(--ease-spring), opacity 0.2s var(--ease-out);
}
.burger[aria-expanded="true"] .burger-box > span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-box > span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8, 5, 3, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: fade-in 0.25s var(--ease-out);
}
.nav-scrim[hidden] { display: none; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 899px) {
  .burger { display: block; }

  .nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 115;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
    background-color: rgba(19, 14, 11, 0.97);
    border-bottom: 1px solid var(--line-dark);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: var(--lift-2);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.34s var(--ease-spring),
      opacity 0.24s var(--ease-out),
      visibility 0s linear 0.34s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s, 0s, 0s;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block;           /* so the divider spans the panel, not the word */
    padding: 0.9375rem 0.25rem;
    font-size: 1.0625rem;
    color: var(--on-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-list li:last-child a { border-bottom: 0; }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 1.125rem; width: 100%; padding-block: 0.875rem; font-size: 0.9688rem; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
@supports (height: 100svh) {
  .hero { min-height: calc(100svh - var(--nav-h)); }
}

.hero-glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 150%;
  z-index: -1;
  background-image:
    radial-gradient(54% 42% at 76% 34%, rgba(229, 138, 102, 0.22) 0%, rgba(229, 138, 102, 0) 70%),
    radial-gradient(50% 46% at 10% 80%, rgba(231, 217, 198, 0.09) 0%, rgba(231, 217, 198, 0) 72%),
    radial-gradient(72% 58% at 50% 0%, rgba(243, 234, 221, 0.07) 0%, rgba(243, 234, 221, 0) 66%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.75rem, 8.4vw, 5.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
}

.hero-lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--on-dark-mute);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--on-dark-mute);
}
.hero-meta-label {
  display: inline-block;
  min-width: 4.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

/* Live status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius-pill);
  background: rgba(247, 240, 232, 0.05);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-dark);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
  background: var(--on-dark-faint);
}
[data-status-pill].is-open .status-dot {
  background: var(--open);
  animation: pulse-dot 2.4s var(--ease-out) infinite;
}
[data-status-pill].is-closed .status-dot { background: var(--rose); }
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(111, 207, 151, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(111, 207, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 207, 151, 0); }
}

/* Hero visual: abstract warm-light column */
.hero-visual { display: none; }
.hero-photo { display: none; }

/* Two columns from tablet up, otherwise the right half of a 768 screen sits
   empty and the page reads like a stretched phone layout. */
@media (min-width: 760px) {
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr); }
  .hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: center;
    isolation: isolate;
  }
  .hero-photo {
    display: block;
    position: relative;
    margin: 0;
    min-height: 34rem;
    overflow: hidden;
    border: 1px solid var(--line-dark-strong);
    border-radius: 12rem 12rem var(--radius-lg) var(--radius-lg);
    box-shadow: var(--lift-2);
    background: var(--ink-700);
  }
  .hero-photo img { width: 100%; height: 100%; min-height: 34rem; object-fit: cover; }
  .hero-photo figcaption,
  .products-hero-photo figcaption,
  .photo-slot figcaption {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(247, 241, 233, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(20, 16, 12, 0.78);
    color: var(--on-dark-mute);
    font-size: 0.75rem;
    line-height: 1.35;
    text-align: center;
    backdrop-filter: blur(8px);
  }
  .hero-meta { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.75rem; }
  .hero-meta-label { min-width: 0; margin-right: 0.4rem; }
}

/* Tablet needs a wider copy column so the two hero buttons stay side by side. */
@media (min-width: 760px) and (max-width: 899px) {
  .hero-inner { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); }
}

/* A lit alcove rather than an object: arched top, warm interior, soft rim.
   Deliberately abstract, since there are no real salon photographs yet. */
.lamp {
  position: relative;
  width: min(288px, 25vw);
  aspect-ratio: 3 / 4.5;
  border-radius: 999px 999px 40px 40px;
  background-color: #120C09;
  background-image:
    radial-gradient(70% 26% at 50% 96%, rgba(206, 112, 72, 0.34) 0%, rgba(206, 112, 72, 0) 76%),
    linear-gradient(180deg, rgba(231, 217, 198, 0.10) 0%, rgba(32, 22, 16, 0.5) 42%, rgba(14, 9, 6, 0.9) 100%);
  border: 1px solid rgba(231, 217, 198, 0.14);
  box-shadow:
    0 50px 130px -46px rgba(206, 112, 72, 0.46),
    0 0 90px -24px rgba(229, 138, 102, 0.2),
    var(--lift-2),
    inset 0 1px 0 rgba(255, 240, 222, 0.16),
    inset 0 0 60px rgba(255, 214, 172, 0.06);
  overflow: hidden;
  isolation: isolate;
}
.lamp-core {
  position: absolute;
  inset: 5%;
  border-radius: inherit;
  background-image: radial-gradient(56% 42% at 50% 45%, rgba(255, 240, 222, 0.92) 0%, rgba(250, 200, 158, 0.78) 28%, rgba(229, 138, 102, 0.4) 54%, rgba(206, 112, 72, 0.08) 78%, rgba(206, 112, 72, 0) 100%);
  filter: blur(20px);
  animation: breathe 7s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.045); }
}
.lamp-ring {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(249, 165, 133, 0.22);
}
.lamp-ring-1 { width: 62%; aspect-ratio: 1; border-color: rgba(255, 214, 178, 0.34); }
.lamp-ring-2 { width: 88%; aspect-ratio: 1; border-color: rgba(249, 165, 133, 0.2); }
.lamp-ring-3 { width: 116%; aspect-ratio: 1; border-color: rgba(249, 165, 133, 0.12); }

.lamp-tubes {
  position: absolute;
  inset: 14% 18% 24%;
  display: flex;
  gap: 9%;
  align-items: stretch;
  mix-blend-mode: screen;
}
.lamp-tubes i {
  flex: 1;
  border-radius: var(--radius-pill);
  background-image: linear-gradient(180deg, rgba(255, 224, 190, 0) 0%, rgba(255, 234, 210, 0.68) 16%, rgba(255, 243, 228, 0.9) 46%, rgba(255, 226, 194, 0.62) 82%, rgba(255, 214, 178, 0) 100%);
  box-shadow: 0 0 18px rgba(255, 198, 152, 0.42);
  filter: blur(0.4px);
  opacity: 0.62;
  animation: tube-flicker 4.5s ease-in-out infinite;
}
.lamp-tubes i:nth-child(2) { animation-delay: -0.7s; }
.lamp-tubes i:nth-child(3) { animation-delay: -1.4s; }
.lamp-tubes i:nth-child(4) { animation-delay: -2.1s; }
.lamp-tubes i:nth-child(5) { animation-delay: -2.8s; }
.lamp-tubes i:nth-child(6) { animation-delay: -3.5s; }
.lamp-tubes i:nth-child(7) { animation-delay: -4.2s; }
@keyframes tube-flicker {
  0%, 100% { opacity: 0.52; }
  50%      { opacity: 0.8; }
}

/* Warm light pooling on the floor under the alcove. */
.hero-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: min(380px, 34vw);
  aspect-ratio: 3 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(229, 138, 102, 0.26) 0%, rgba(229, 138, 102, 0) 72%);
  pointer-events: none;
  z-index: -1;
}

/* --------------------------------------------------------------------------
   7. Trust strip
   -------------------------------------------------------------------------- */
.trust {
  border-block: 1px solid var(--line-dark);
  background-color: var(--ink-850);
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trust-list > li {
  padding: 1.5rem 0.5rem 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.trust-list > li:nth-child(odd) { border-right: 1px solid var(--line-dark); padding-right: 1rem; }
.trust-list > li:nth-child(even) { padding-left: 1.25rem; }
.trust-list > li:nth-last-child(-n+2) { border-bottom: 0; }

.trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.4vw, 2.625rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--coral);
}
.trust-num-sm { font-size: clamp(1.5rem, 3.4vw, 2.125rem); }
.trust-label {
  display: block;
  margin-top: 0.4375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

@media (min-width: 760px) {
  .trust-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-list > li {
    padding: 2.25rem 1.5rem;
    border-bottom: 0;
    border-right: 1px solid var(--line-dark);
    text-align: center;
  }
  .trust-list > li:first-child { padding-left: 0; }
  .trust-list > li:last-child { border-right: 0; padding-right: 0; }
  .trust-list > li:nth-child(odd) { padding-right: 1.5rem; }
  .trust-list > li:nth-child(even) { padding-left: 1.5rem; }
}

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background-image: linear-gradient(168deg, rgba(247, 240, 232, 0.055) 0%, rgba(247, 240, 232, 0.014) 100%);
  box-shadow: var(--lift-1);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 127, 95, 0.34);
  box-shadow: var(--lift-2), 0 0 0 1px rgba(238, 127, 95, 0.06);
}

.card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.625rem;
}
.card p {
  font-size: 0.9688rem;
  line-height: 1.65;
  color: var(--on-dark-mute);
}

/* Experience grid */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.exp-card { padding: 1.75rem 1.5rem 1.625rem; }
.card-index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  opacity: 0.75;
  margin-bottom: 0.875rem;
}
@media (min-width: 700px) { .exp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.125rem; } }
@media (min-width: 1000px) { .exp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }

/* Beds grid */
.beds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bed-card { padding: 2rem 1.625rem 1.75rem; }
.bed-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background-image: linear-gradient(150deg, rgba(249, 165, 133, 0.22), rgba(222, 104, 68, 0.1));
  border: 1px solid rgba(238, 127, 95, 0.26);
}
.bed-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--coral-hi);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 820px) { .beds-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }

.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding: 0.9375rem 1.125rem;
  border: 1px dashed rgba(247, 240, 232, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.9063rem;
  color: var(--on-dark-mute);
}
.safety-note .ico {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.28rem;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   8b. Story: "Built differently from day one"
   -------------------------------------------------------------------------- */
.story { background-color: var(--cream-100); }
.experience { background-color: var(--cream-200); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: clamp(3rem, 6vw, 5.5rem);
  }
}

.story-copy h2 {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.story-copy p {
  font-size: 1.0313rem;
  line-height: 1.78;
  color: var(--on-cream-mute);
  max-width: 60ch;
}
.story-copy p + p { margin-top: 1.125rem; }
.story-copy .lede {
  font-family: var(--font-display);
  font-size: clamp(1.3125rem, 2.2vw, 1.75rem);
  line-height: 1.36;
  letter-spacing: -0.014em;
  color: var(--on-cream);
  max-width: 34ch;
}

.story-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-cream);
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.photo-slot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink-700);
  box-shadow: var(--lift-1);
}
.photo-slot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.photo-slot figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
}
.story .photo-slot { border-color: var(--line-cream); box-shadow: var(--lift-cream); }
@media (min-width: 700px) { .photo-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.story-points li {
  padding: 1.0625rem 0;
  border-bottom: 1px solid var(--line-cream);
  font-size: 0.9688rem;
  line-height: 1.6;
  color: var(--on-cream-mute);
}
.story-point-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-ink);
}

/* --------------------------------------------------------------------------
   8c. Beds feature and the "First time?" panel
   -------------------------------------------------------------------------- */
.beds-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .beds-feature { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 3.5rem; }
}
.beds-copy p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--on-dark-mute);
  max-width: 56ch;
}
.photo-slot-bed { margin-bottom: 1.5rem; }
.photo-slot-product { margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   Product page and enquiry basket
   -------------------------------------------------------------------------- */
.basket-trigger { border: 0; cursor: pointer; }
.basket-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.35rem;
  padding-inline: 0.35rem;
  border-radius: var(--radius-pill);
  background: var(--ink-800);
  color: var(--on-dark);
  font-size: 0.78rem;
}
.products-hero { padding-block: clamp(4rem, 8vw, 7rem); background: var(--ink-800); }
.products-hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.products-hero h1 { max-width: 12ch; font-size: clamp(3rem, 8vw, 6rem); }
.products-hero h1 em { color: var(--coral); font-weight: 400; }
.products-lead { max-width: 58ch; margin-top: 1.5rem; color: var(--on-dark-mute); }
.products-hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-2);
}
.products-hero-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.products-hero-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 1.8rem);
  min-height: clamp(23rem, 42vw, 34rem);
  padding: 3rem 2rem 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(247, 208, 178, 0.34), transparent 30%),
    linear-gradient(145deg, #5b3023 0%, #a7593d 52%, #45241c 100%);
}
.products-hero-stage::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 3rem;
  left: 8%;
  height: 1px;
  background: rgba(255, 227, 205, 0.24);
  box-shadow: 0 22px 42px 14px rgba(31, 13, 9, 0.35);
}
.products-hero-stage > span {
  position: relative;
  display: block;
  background: linear-gradient(100deg, #21110e, #70402f 48%, #1d0e0c);
  filter: drop-shadow(0 22px 18px rgba(22, 8, 5, 0.4));
}
.hero-stage-tube { width: 4.8rem; height: 13rem; clip-path: polygon(12% 0, 88% 0, 100% 92%, 90% 100%, 10% 100%, 0 92%); }
.hero-stage-pump { width: 6.7rem; height: 16rem; border-radius: 1.25rem 1.25rem 1.8rem 1.8rem; }
.hero-stage-pump::before {
  content: "";
  position: absolute;
  top: -2.8rem;
  left: 2.2rem;
  width: 2.2rem;
  height: 3rem;
  background: #1e0f0c;
}
.hero-stage-pump::after {
  content: "";
  position: absolute;
  top: -2.9rem;
  left: 2.2rem;
  width: 4.5rem;
  height: 0.55rem;
  border-radius: 0.3rem;
  background: #1e0f0c;
}
.hero-stage-jar { width: 8rem; height: 6.8rem; border-radius: 0.8rem 0.8rem 2rem 2rem; }
.hero-stage-jar::before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: -0.25rem;
  width: 8.5rem;
  height: 1.6rem;
  border-radius: 0.65rem;
  background: #24120e;
}
@media (min-width: 900px) { .products-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr); } }

.product-catalogue { background: var(--cream-100); }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line-cream);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: var(--lift-cream);
}
.product-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card-body { display: flex; flex-direction: column; min-height: 20rem; padding: 1.4rem; }
.product-category, .product-placeholder-label {
  font-size: 0.69rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45 !important;
  text-transform: uppercase;
  color: var(--coral-ink) !important;
}
.product-card h3 { margin: 0.5rem 0 0.65rem; color: var(--on-cream); font-size: 1.75rem; }
.product-card-body > p:not(.product-category):not(.product-placeholder-label) { color: var(--on-cream-mute); font-size: 0.94rem; line-height: 1.6; }
.product-placeholder-label { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-cream); }
.product-card-foot { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1.25rem; color: var(--on-cream); font-weight: 600; }
.product-card-foot .btn { border: 0; cursor: pointer; }
.no-js-note { margin-bottom: 1.5rem; padding: 1rem; border: 1px solid var(--line-cream); border-radius: var(--radius-sm); color: var(--on-cream); }
.no-js-note a { text-decoration: underline; }
@media (min-width: 680px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1180px) {
  .product-category-group[aria-labelledby="creams-heading"] .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-category-group[aria-labelledby="creams-heading"] .product-card-actions { grid-template-columns: 1fr; }
  .product-category-group[aria-labelledby="creams-heading"] .product-quick { justify-self: start; }
}

.basket-scrim { position: fixed; inset: 0; z-index: 149; background: rgba(8, 5, 3, 0.68); backdrop-filter: blur(3px); }
.basket-scrim[hidden], .basket-drawer[hidden] { display: none; }
.basket-drawer {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  width: min(100%, 30rem);
  height: 100dvh;
  overflow-y: auto;
  padding: 1.4rem;
  border-left: 1px solid var(--line-dark-strong);
  background: var(--ink-750);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.42);
}
.basket-head { display: flex; gap: 1rem; align-items: flex-start; justify-content: space-between; }
.basket-head h2 { font-size: 2rem; }
.basket-close {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-dark-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  font-size: 1.8rem;
}
.basket-intro, .basket-confirmation { margin-top: 0.8rem; color: var(--on-dark-mute); font-size: 0.92rem; }
.basket-items { display: grid; gap: 0.8rem; margin-top: 1.5rem; }
.basket-empty { padding: 1.25rem; border: 1px dashed var(--line-dark-strong); border-radius: var(--radius-sm); color: var(--on-dark-mute); text-align: center; }
.basket-item { padding: 1rem; border: 1px solid var(--line-dark); border-radius: var(--radius-sm); background: rgba(247, 241, 233, 0.035); }
.basket-item h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; line-height: 1.4; letter-spacing: 0; }
.basket-item-controls { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; margin-top: 0.8rem; }
.basket-item-controls button { min-width: 2.25rem; min-height: 2.25rem; border: 1px solid var(--line-dark-strong); border-radius: 8px; background: transparent; color: var(--on-dark); cursor: pointer; }
.basket-item-controls .basket-remove { margin-left: auto; padding-inline: 0.7rem; color: var(--coral-hi); }
.basket-actions { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.basket-actions .btn { width: 100%; border: 0; cursor: pointer; }
.basket-clear { border: 0; background: transparent; color: var(--on-dark-mute); cursor: pointer; text-decoration: underline; }
.copy-status { min-height: 1.5rem; margin-top: 0.6rem; color: var(--coral-hi); font-size: 0.86rem; text-align: center; }
body.basket-open { overflow: hidden; }

/* Refined product-shop presentation. The visual stages below are deliberately
   abstract placeholders, never representations of real Tan Station stock. */
.product-catalogue {
  background:
    radial-gradient(55% 30% at 92% 5%, rgba(229, 138, 102, 0.12), transparent 72%),
    var(--cream-100);
}
.product-catalogue > .shell { max-width: 1260px; }
.product-category-group { margin-top: clamp(2.75rem, 6vw, 5rem); }
.category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-cream);
}
.category-heading h3 { color: var(--on-cream); font-size: clamp(2rem, 4vw, 2.75rem); }
.category-heading span {
  color: var(--on-cream-mute);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.45rem;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out), border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(156, 67, 39, 0.24);
  box-shadow: 0 3px 7px rgba(90, 60, 40, 0.08), 0 28px 54px -28px rgba(90, 60, 40, 0.48);
}
.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 234, 205, 0.78), transparent 30%),
    linear-gradient(145deg, #f1b27f 0%, #de845f 52%, #b95e3e 100%);
}
.product-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 76%;
  height: 42%;
  bottom: -20%;
  border-radius: 50%;
  background: rgba(94, 38, 22, 0.28);
  filter: blur(22px);
  transform: rotate(-5deg);
}
.product-art::after {
  content: "PHOTO PLACEHOLDER";
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(59, 26, 17, 0.55);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.product-art span { position: relative; display: block; filter: drop-shadow(0 22px 15px rgba(64, 25, 14, 0.28)); }
.product-art-bottle span,
.product-art-pump span {
  width: 6.2rem;
  height: 11.5rem;
  border-radius: 1.2rem 1.2rem 1.7rem 1.7rem;
  background: linear-gradient(100deg, #3b1d16, #76412f 46%, #2a1511);
}
.product-art-bottle span::before {
  content: "";
  position: absolute;
  top: -2.3rem;
  left: 1.75rem;
  width: 2.7rem;
  height: 2.6rem;
  border-radius: 0.35rem 0.35rem 0.7rem 0.7rem;
  background: #2d1813;
}
.product-art-pump span::before {
  content: "";
  position: absolute;
  top: -2.55rem;
  left: 2.05rem;
  width: 2rem;
  height: 2.8rem;
  background: linear-gradient(90deg, #25120f, #553027);
}
.product-art-pump span::after {
  content: "";
  position: absolute;
  top: -2.65rem;
  left: 2.1rem;
  width: 4.4rem;
  height: 0.55rem;
  border-radius: 0.3rem;
  background: #2b1612;
}
.product-art-tube span {
  width: 6.7rem;
  height: 13rem;
  clip-path: polygon(12% 0, 88% 0, 100% 90%, 91% 100%, 9% 100%, 0 90%);
  background: linear-gradient(100deg, #f3d4b2, #fff1df 45%, #be8566);
}
.product-art-jar span {
  width: 9rem;
  height: 6.4rem;
  border-radius: 1rem 1rem 2.2rem 2.2rem;
  background: linear-gradient(100deg, #3a1c15, #7f4732 50%, #2a1511);
}
.product-art-jar span::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  left: -0.3rem;
  width: 9.6rem;
  height: 1.8rem;
  border-radius: 0.8rem;
  background: linear-gradient(#2a1511, #603526);
}
.product-art-goggles span {
  width: 12rem;
  height: 4.8rem;
  border-radius: 50% 50% 42% 42%;
  border: 1.1rem solid #2a1511;
  border-top-width: 0.75rem;
  transform: perspective(200px) rotateX(-8deg);
}
.product-art-goggles span::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 4.25rem;
  width: 3.5rem;
  height: 1.2rem;
  border-top: 0.55rem solid #2a1511;
  border-radius: 50%;
}
.product-art-sachet span {
  width: 8.2rem;
  height: 11rem;
  border-radius: 0.5rem;
  clip-path: polygon(4% 0, 8% 3%, 12% 0, 16% 3%, 20% 0, 24% 3%, 28% 0, 32% 3%, 36% 0, 40% 3%, 44% 0, 48% 3%, 52% 0, 56% 3%, 60% 0, 64% 3%, 68% 0, 72% 3%, 76% 0, 80% 3%, 84% 0, 88% 3%, 92% 0, 96% 3%, 100% 0, 100% 100%, 0 100%, 0 0);
  background: linear-gradient(105deg, #54271b, #c5714d 50%, #512419);
}
.product-card-body { min-height: 21.5rem; padding: 1.6rem; }
.product-card h3 { font-size: 1.85rem; }
.product-placeholder-label { font-size: 0.63rem !important; letter-spacing: 0.09em; }
.product-card-foot { display: block; }
.product-card-foot strong { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.product-card-actions { display: grid; grid-template-columns: auto 1fr; gap: 0.65rem; margin-top: 1rem; }
.product-quick {
  border: 0;
  background: transparent;
  color: var(--coral-ink);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.product-card-actions .btn { width: 100%; padding-inline: 0.85rem; }
@media (min-width: 680px) {
  .product-art { min-height: 22rem; }
}

.product-help-cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: clamp(2.4rem, 7vw, 5.25rem) clamp(1.5rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 227, 196, 0.42), transparent 34%),
    linear-gradient(112deg, #e79b70 0%, #d66f43 48%, #9e4229 100%);
  box-shadow: 0 28px 70px -35px rgba(104, 41, 22, 0.6);
  color: #fff8f1;
  text-align: center;
}
.product-help-cta .eyebrow { color: rgba(255, 248, 241, 0.72); }
.product-help-cta h2 { max-width: 20ch; margin: 0.55rem auto 0; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.product-help-cta > p:not(.eyebrow) { max-width: 52ch; margin: 1rem auto 0; color: rgba(255, 248, 241, 0.82); }
.product-help-cta > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.75rem; }
.product-cta-light { background: #fff8f1; color: var(--ink-800); }
.product-cta-ghost { border: 1px solid rgba(255, 248, 241, 0.52); color: #fff8f1; }

.quick-view-scrim { position: fixed; inset: 0; z-index: 159; background: rgba(14, 10, 7, 0.72); backdrop-filter: blur(8px); }
.quick-view-scrim[hidden], .quick-view[hidden] { display: none; }
.quick-view {
  position: fixed;
  z-index: 160;
  inset: 50% auto auto 50%;
  display: grid;
  width: min(calc(100% - 2rem), 58rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
  color: var(--on-cream);
}
.quick-view-close {
  position: absolute;
  z-index: 2;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(28, 20, 16, 0.15);
  border-radius: 50%;
  background: rgba(251, 246, 239, 0.9);
  color: var(--on-cream);
  cursor: pointer;
  font-size: 1.6rem;
}
.quick-view-art { min-height: 18rem; }
.quick-view-copy { padding: clamp(1.5rem, 5vw, 3rem); }
.quick-view-copy h2 { margin: 0.5rem 0 1rem; font-size: clamp(2.3rem, 5vw, 4rem); }
.quick-view-copy > p:not(.product-category) { color: var(--on-cream-mute); }
.quick-view-warning { margin: 1.2rem 0; padding-top: 1.2rem; border-top: 1px solid var(--line-cream); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.quick-view-copy > strong { display: block; font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; }
.quick-view-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.quick-view-actions .btn-ghost { border-color: var(--line-cream); color: var(--on-cream); }
@media (min-width: 760px) {
  .quick-view { grid-template-columns: 0.9fr 1.1fr; }
  .quick-view-art { min-height: 34rem; }
}

/* The enquiry drawer stays part of the espresso site, but the cream paper
   surface makes the prepared list easier to scan. */
.basket-scrim { z-index: 169; }
.basket-drawer {
  z-index: 170;
  padding: 0;
  border-left-color: var(--line-cream);
  background: var(--cream-100);
  color: var(--on-cream);
}
.basket-head { padding: 1.5rem 1.4rem 1.2rem; border-bottom: 1px solid var(--line-cream); }
.basket-head .panel-eyebrow { color: var(--coral-ink); }
.basket-head h2 { color: var(--on-cream); }
.basket-close { border-color: var(--line-cream); color: var(--on-cream); background: var(--cream-200); }
.basket-intro { margin: 1rem 1.4rem 0; color: var(--on-cream-mute); }
.basket-items { padding-inline: 1.4rem; }
.basket-empty { border-color: var(--line-cream); color: var(--on-cream-mute); background: #fffaf4; }
.basket-item { border-color: var(--line-cream); background: #fffaf4; box-shadow: var(--lift-cream); }
.basket-item h3 { color: var(--on-cream); }
.basket-item-controls button { border-color: var(--line-cream); color: var(--on-cream); background: var(--cream-100); }
.basket-item-controls .basket-remove { color: var(--coral-ink); }
.basket-confirmation { margin: 1.2rem 1.4rem 0; color: var(--on-cream-mute); }
.basket-actions { padding: 0 1.4rem 1.4rem; }
.basket-actions .btn-ghost { border-color: var(--line-cream); color: var(--on-cream); }
.basket-clear { color: var(--on-cream-mute); }
.copy-status { color: var(--coral-ink); }
.beds-copy p + p { margin-top: 1rem; }
.beds-copy .safety-note { margin-top: 1.75rem; font-size: 0.9063rem; }

.first-time {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius-lg);
  background-image: linear-gradient(165deg, rgba(247, 241, 233, 0.07), rgba(247, 241, 233, 0.015));
  box-shadow: var(--lift-2);
}
.first-time h3 {
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.first-time-body {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--on-dark-mute);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   8d. Why customers come back
   -------------------------------------------------------------------------- */
.why { background-color: var(--ink-850); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.why-card { padding: 1.875rem 1.5rem 1.625rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.125rem; } }
@media (min-width: 1040px) { .why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* --------------------------------------------------------------------------
   9. Reviews (cream band)
   -------------------------------------------------------------------------- */
.reviews {
  background-color: var(--cream-100);
  color: var(--on-cream);
  background-image: radial-gradient(60% 45% at 88% 6%, rgba(238, 127, 95, 0.09) 0%, rgba(238, 127, 95, 0) 70%);
}
.reviews .eyebrow { color: var(--coral-ink); }
.reviews .section-sub { color: var(--on-cream-mute); }

.review-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
.review-card {
  padding: 1.625rem 1.5rem 1.375rem;
  border-color: var(--line-cream);
  background-color: #FFFFFF;
  background-image: none;
  box-shadow: var(--lift-cream);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card:hover {
  border-color: rgba(168, 69, 45, 0.3);
  box-shadow: 0 2px 4px rgba(90, 60, 40, 0.07), 0 24px 46px -26px rgba(90, 60, 40, 0.38);
}
.review-card blockquote { margin: 0; }
.review-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.42;
  letter-spacing: -0.008em;
  color: var(--on-cream);
}
/* Three class selectors so this beats `.on-cream .card p` and stays readable
   on white. Dropping one of them silently reverts these names to 1.9:1. */
.on-cream .review-card .review-name {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-ink);
}
.review-name::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(168, 69, 45, 0.4);
  margin-bottom: 0.75rem;
}

/* Eight cards land as a clean 2x4 then 4x2. No spanning card, so no ragged
   final row. */
@media (min-width: 700px) { .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.125rem; } }

.reviews-disclaimer {
  margin-top: 1.75rem;
  font-size: 0.8438rem;
  line-height: 1.6;
  color: var(--on-cream-mute);
  max-width: 62ch;
}

/* --------------------------------------------------------------------------
   10. Visit
   -------------------------------------------------------------------------- */
.visit { background-color: var(--ink-850); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}
.visit-copy h2 {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  margin-bottom: 1.75rem;
}

.visit-details { margin: 0 0 2rem; }
.visit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line-dark);
}
.visit-row:last-child { border-bottom: 1px solid var(--line-dark); }
.visit-row dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.visit-row dd { margin: 0; font-size: 1.0313rem; color: var(--on-dark); }
.visit-row address { font-style: normal; line-height: 1.55; }

.visit-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (min-width: 640px) {
  .visit-row { grid-template-columns: 7.5rem minmax(0, 1fr); gap: 1.25rem; align-items: baseline; }
}
@media (min-width: 960px) {
  .visit-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 4rem; }
}

.visit-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius-lg);
  background-image: linear-gradient(165deg, rgba(247, 240, 232, 0.07), rgba(247, 240, 232, 0.015));
  box-shadow: var(--lift-2);
}
.panel-glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 120%;
  z-index: -1;
  background-image: radial-gradient(50% 45% at 78% 18%, rgba(238, 127, 95, 0.3) 0%, rgba(238, 127, 95, 0) 72%);
}
.panel-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 0.875rem;
}
.panel-status {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.panel-status .status-dot { width: 9px; height: 9px; }
.panel-detail {
  margin-top: 0.625rem;
  font-size: 0.9688rem;
  color: var(--on-dark-mute);
}
.panel-rule {
  border: 0;
  border-top: 1px solid var(--line-dark);
  margin: 1.375rem 0 1rem;
}
.panel-foot {
  font-size: 0.875rem;
  color: var(--on-dark-faint);
}

/* --------------------------------------------------------------------------
   11. Hours + FAQ (cream band)
   -------------------------------------------------------------------------- */
.hours,
.faq {
  background-color: var(--cream-200);
  color: var(--on-cream);
}
.hours { padding-bottom: clamp(2rem, 4vw, 3rem); }
.faq { padding-top: clamp(2rem, 4vw, 3rem); }
.hours .eyebrow,
.faq .eyebrow { color: var(--coral-ink); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream-100);
  border: 1px solid var(--line-cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--lift-cream);
}
.hours-table tr { border-bottom: 1px solid var(--line-cream); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table th,
.hours-table td {
  padding: 0.9375rem 1.125rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  vertical-align: middle;
}
.hours-table th { color: var(--on-cream-mute); white-space: nowrap; }
.hours-time {
  font-variant-numeric: tabular-nums;
  color: var(--on-cream);
  white-space: nowrap;
}
.hours-time.is-closed { color: var(--on-cream-mute); }
.hours-flag { width: 1%; text-align: right; white-space: nowrap; }

.hours-table tr.is-today { background-color: rgba(238, 127, 95, 0.1); }
.hours-table tr.is-today th,
.hours-table tr.is-today .hours-time {
  color: var(--on-cream);
  font-weight: 600;
}
.today-tag {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: var(--radius-pill);
  background: var(--coral-ink);
  color: var(--cream-100);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-note {
  margin-top: 1.125rem;
  font-size: 0.8438rem;
  color: var(--on-cream-mute);
  text-align: center;
}

/* FAQ */
.faq-list { border-top: 1px solid var(--line-cream); }
.faq-item { border-bottom: 1px solid var(--line-cream); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.1875rem, 2.4vw, 1.4375rem);
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--on-cream);
  transition: color 0.2s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--coral-ink); }
.faq-chev {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-cream);
  transition: transform 0.34s var(--ease-spring), border-color 0.24s var(--ease-out), background-color 0.24s var(--ease-out);
}
.faq-chev::before,
.faq-chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  margin-left: -5.5px;
  margin-top: -0.75px;
  border-radius: 2px;
  background: var(--coral-ink);
  transition: transform 0.34s var(--ease-spring), opacity 0.24s var(--ease-out);
}
.faq-chev::after { transform: rotate(90deg); }
.faq-item summary:hover .faq-chev { border-color: rgba(168, 69, 45, 0.45); background-color: rgba(168, 69, 45, 0.06); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item[open] .faq-chev::after { opacity: 0; transform: rotate(0deg); }

.faq-body {
  padding: 0 0.25rem 1.375rem;
  max-width: 62ch;
}
.faq-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--on-cream-mute);
}
.faq-item[open] .faq-body { animation: faq-open 0.34s var(--ease-out); }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   12. Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background-color: var(--ink-850);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.cta-glow {
  position: absolute;
  inset: -60% -10% auto -10%;
  height: 190%;
  z-index: -1;
  background-image:
    radial-gradient(44% 36% at 50% 32%, rgba(229, 138, 102, 0.24) 0%, rgba(229, 138, 102, 0) 72%),
    radial-gradient(62% 48% at 50% 96%, rgba(231, 217, 198, 0.09) 0%, rgba(231, 217, 198, 0) 74%);
}
.cta-inner h2 {
  font-size: clamp(2.25rem, 6.2vw, 4rem);
  letter-spacing: -0.03em;
}
.cta-sub {
  margin-top: 0.875rem;
  font-size: 1.0625rem;
  color: var(--on-dark-mute);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--ink-900);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(2.5rem, 5vw, 3.75rem) 1.75rem;
  font-size: 0.9375rem;
  color: var(--on-dark-mute);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
}
.footer-brand .wordmark-text { display: block; margin-bottom: 0.625rem; color: var(--on-dark); }
.footer-brand p { max-width: 30ch; }
.footer-h {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin: 0 0 0.75rem;
}
.footer-col address { font-style: normal; line-height: 1.7; }
.footer-col p + p { margin-top: 0.375rem; }

@media (min-width: 700px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; } }
@media (min-width: 980px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; } }

.footer-base {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8125rem;
  color: var(--on-dark-faint);
}
.footer-small { max-width: 74ch; line-height: 1.6; }
@media (min-width: 980px) {
  .footer-base { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 2rem; }
}

/* --------------------------------------------------------------------------
   14. Scroll reveal (progressive enhancement)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s var(--ease-out) var(--d, 0ms),
    transform 0.72s var(--ease-out) var(--d, 0ms);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   15. Short viewports and reduced motion
   -------------------------------------------------------------------------- */
@media (max-height: 720px) and (min-width: 900px) {
  .hero { padding-block: 1.5rem 2rem; }
  .hero-title { font-size: clamp(2.5rem, 6vw, 4.25rem); }
  .lamp { width: min(270px, 23vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover,
  .card:hover { transform: none; }
}

@media print {
  .site-header, .grain, .hero-visual, .nav-scrim, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
}
