/* =========================================================
   ELVYNÉE — Design tokens
   Palette pulled from the real packaging & product photography:
   parchment background, espresso-brown ink, amber glass,
   muted antique gold (scrub cap), blush label tone.
   ========================================================= */
:root {
  --parchment: #F2EAE0;
  --parchment-deep: #E9DDCC;
  --blush: #E3CDB3;
  --ink: #241C15;
  --ink-soft: #4A3D30;
  --amber: #5A3A22;
  --amber-deep: #3C2716;
  --gold: #A9812E;
  --gold-soft: #C9A85E;
  --line: rgba(36, 28, 21, 0.14);
  --line-strong: rgba(36, 28, 21, 0.28);
  --cream-white: #FBF8F3;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Work Sans", "Helvetica Neue", sans-serif;
  --font-thai: "Noto Serif Thai", "Fraunces", serif;
  --font-thai-body: "Noto Sans Thai", "Work Sans", sans-serif;

  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-space: clamp(72px, 10vw, 140px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body[data-lang="th"] { font-family: var(--font-thai-body); }
body[data-lang="th"] h1, body[data-lang="th"] h2, body[data-lang="th"] h3,
body[data-lang="th"] .display { font-family: var(--font-thai); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.display {
  font-family: var(--font-display);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 600;
}
body[data-lang="th"] .eyebrow { letter-spacing: 0.05em; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.section-pad {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* ---------- Grid-line motif (signature element) ----------
   Echoes the black-grid bathroom tile that recurs in the
   brand's own product photography. Used sparingly as a
   structural / transition device, never decoration alone. */
.grid-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(36,28,21,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,28,21,0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, black, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, black, transparent 75%);
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--line);
  border: none;
  margin: 0;
}

.divider-cross {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--section-space) 0;
}
.divider-cross::before,
.divider-cross::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
.divider-cross .mark {
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-strong);
  transform: rotate(45deg);
  margin: 0 18px;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--cream-white);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--amber-deep); border-color: var(--amber-deep); }
.btn-gold {
  background: var(--gold);
  color: var(--cream-white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--amber-deep); border-color: var(--amber-deep); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream-white); }
.btn-sm { padding: 12px 22px; font-size: 11px; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 234, 224, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links.right { justify-content: flex-end; align-items: center; }
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.brand-mark img { height: 58px; width: auto; }
.brand-mark span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.14em;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-left: 24px;
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 7px 13px;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: var(--font-body);
}
.lang-toggle button.active { background: var(--ink); color: var(--cream-white); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--ink); display: block; }

/* Mobile nav panel & scrim are hidden entirely above the mobile
   breakpoint; the breakpoint below gives them their real (hidden
   off-canvas) positioning for small screens. */
.mobile-panel, .mobile-scrim { display: none; }

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .nav-links.left, .nav-cta .nav-links.right { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: flex; }
  .lang-toggle { margin-left: 12px; }

  .mobile-panel {
    display: flex;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 340px);
    height: 100vh;
    background: var(--cream-white);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 200;
    padding: 100px 32px 40px;
    flex-direction: column;
    gap: 26px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  }
  .mobile-panel.open { transform: translateX(0); }
  .mobile-panel a {
    font-family: var(--font-display);
    font-size: 26px;
  }
  .mobile-scrim {
    display: block;
    position: fixed; inset: 0; background: rgba(36,28,21,0.35);
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
    z-index: 199;
  }
  .mobile-scrim.open { opacity: 1; pointer-events: auto; }
  .mobile-close { align-self: flex-end; background:none;border:none;font-size:14px;letter-spacing:.1em;text-transform:uppercase;cursor:pointer; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--gutter);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) 0;
  gap: 26px;
  max-width: 560px;
}
.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.03;
}
.hero-copy .sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 440px;
}
.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 4px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 1 / 1; order: -1; padding: 0; }
  .hero-media img { border-radius: 0; }
  .hero-copy { padding: 56px 0; max-width: none; }
}

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

/* ---------- Full-bleed campaign banner (native widescreen ratio) ---------- */
.campaign-banner-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.campaign-banner {
  width: 100%;
  aspect-ratio: 2.8 / 1;
  overflow: hidden;
}
.campaign-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 700px) {
  .campaign-banner { aspect-ratio: 3 / 2; }
}
.philosophy {
  position: relative;
  text-align: center;
  padding: 56px var(--gutter) var(--section-space);
  overflow: hidden;
}
.philosophy p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
  color: var(--amber-deep);
}

/* ---------- Ritual steps ---------- */
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ritual-step {
  padding: 48px 34px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ritual-step:last-child { border-right: none; }
.ritual-step .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.ritual-step h3 { font-size: 26px; }
.ritual-step img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; margin-top: 6px;
}
.ritual-step p.desc { color: var(--ink-soft); font-size: 14.5px; flex-grow: 1; }
.ritual-step a.link {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; align-self: flex-start;
}

@media (max-width: 860px) {
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-step { border-right: none; border-bottom: 1px solid var(--line); }
  .ritual-step:last-child { border-bottom: none; }
}

/* ---------- Product cards (collection) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--cream-white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(36,28,21,0.22);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(36,28,21,0.28); }
.product-card .thumb { aspect-ratio: 1/1; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.product-card h3 { font-size: 22px; }
.product-card .tagline { color: var(--ink-soft); font-size: 14px; flex-grow: 1; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product-card .price { font-family: var(--font-display); font-size: 20px; color: var(--amber-deep); }
.product-card .cta-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Split feature (ingredients / storytelling) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; gap: 18px; }
.split-copy h2 { font-size: clamp(28px, 3.2vw, 44px); }
.split-copy p { color: var(--ink-soft); font-size: 15.5px; }
.ingredient-list { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.ingredient-list li { border-top: 1px solid var(--line); padding-top: 14px; }
.ingredient-list .name { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.ingredient-list .note { color: var(--ink-soft); font-size: 14px; }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Bundle / conversion banner ---------- */
.bundle-banner {
  background: var(--ink);
  color: var(--cream-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gutter);
  overflow: hidden;
}
.bundle-banner .media { height: 100%; min-height: 340px; }
.bundle-banner .media img { width: 100%; height: 100%; object-fit: cover; }
.bundle-banner .copy { padding: 56px var(--gutter); }
.bundle-banner .badge {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.bundle-banner h2 { color: var(--cream-white); font-size: clamp(26px, 3vw, 38px); }
.bundle-banner p { color: rgba(251,248,243,0.72); margin-top: 14px; }
@media (max-width: 900px) {
  .bundle-banner { grid-template-columns: 1fr; }
  .bundle-banner .media { min-height: 260px; }
}

/* ---------- Social gallery ---------- */
.social-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.social-strip a { position: relative; aspect-ratio: 1/1; overflow: hidden; display:block; }
.social-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), filter 0.6s var(--ease); }
.social-strip a:hover img { transform: scale(1.08); }
.social-strip a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(36,28,21,0);
  transition: background 0.4s var(--ease);
}
.social-strip a:hover::after { background: rgba(36,28,21,0.12); }
@media (max-width: 900px) { .social-strip { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Steps (routine) ---------- */
.steps-list {
  display: flex;
  flex-direction: column;
}
.step-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-row .idx { font-family: var(--font-display); font-size: 34px; color: var(--gold-soft); }
.step-row h4 { font-size: 20px; margin-bottom: 8px; }
.step-row p { color: var(--ink-soft); font-size: 15px; margin: 0; }
@media (max-width: 640px) {
  .step-row { grid-template-columns: 50px 1fr; gap: 18px; }
  .step-row .idx { font-size: 24px; }
}

/* ---------- Signal cards (scalp signs) ---------- */
.signal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.signal-card {
  border: 1px solid var(--line);
  padding: 22px 18px;
  background: var(--cream-white);
}
.signal-card .n { font-family: var(--font-display); color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.signal-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.signal-card p { font-size: 13px; color: var(--ink-soft); margin: 0; }
@media (max-width: 980px) { .signal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .signal-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: none; text-align: left;
  padding: 24px 4px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}
.faq-q .plus { font-family: var(--font-body); font-size: 22px; color: var(--gold); transition: transform 0.35s var(--ease); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p { color: var(--ink-soft); padding: 0 4px 24px; margin: 0; font-size: 15px; max-width: 760px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 70px var(--gutter) 40px;
  text-align: center;
}
.page-hero .eyebrow { display:block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); }
.breadcrumb {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft); margin-bottom: 18px; display:flex; justify-content:center; gap:8px;
}

/* ---------- Product detail ---------- */
.pd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
  padding: 30px var(--gutter) var(--section-space);
}
.pd-gallery { display: grid; grid-template-columns: 1fr; gap: 10px; }
.pd-gallery .main { aspect-ratio: 1/1; overflow: hidden; }
.pd-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pd-thumbs button { border: 1px solid var(--line); padding: 0; aspect-ratio: 1/1; overflow: hidden; cursor: pointer; background:none; }
.pd-thumbs button.active { border-color: var(--ink); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 14px; }
.pd-info .price { font-family: var(--font-display); font-size: 26px; color: var(--amber-deep); margin: 14px 0 20px; }
.pd-info .desc { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 20px; }
.pd-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.pd-badge {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px;
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.pd-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.pd-section-title { display:flex; align-items:center; gap: 16px; margin-bottom: 34px; }
.pd-section-title h2 { font-size: clamp(24px, 2.6vw, 32px); white-space: nowrap; }
.pd-section-title .line { height: 1px; background: var(--line-strong); width: 100%; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { border: 1px solid var(--line); padding: 24px; background: var(--cream-white); }
.benefit-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr; } .pd-hero { grid-template-columns: 1fr; } }

.usage-box {
  background: var(--parchment-deep);
  border: 1px solid var(--line);
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
}
.usage-box .icon { font-family: var(--font-display); font-size: 30px; color: var(--gold); }
.usage-box p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.cross-sell { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .cross-sell { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.about-hero-media { height: 60vh; overflow: hidden; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card h3 { font-size: 20px; margin-bottom: 12px; }
.value-card p { color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
.contact-channel {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.contact-channel:last-child { border-bottom: 1px solid var(--line); }
.contact-channel .name { font-family: var(--font-display); font-size: 22px; }
.contact-channel .handle { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.contact-map-note { background: var(--cream-white); border: 1px solid var(--line); padding: 30px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251,248,243,0.78);
  padding: var(--section-space) var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251,248,243,0.14);
}
.footer-brand .brand-mark span { color: var(--cream-white); }
.footer-brand p { max-width: 300px; margin-top: 18px; font-size: 14px; color: rgba(251,248,243,0.6); }
.footer-col h5 {
  font-family: var(--font-body); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(251,248,243,0.5); margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; font-size: 12.5px; color: rgba(251,248,243,0.45); flex-wrap: wrap; gap: 14px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Customer review cards ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { border: 1px solid var(--line); background: var(--cream-white); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-card .handle { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.review-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; font-style: italic; }
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.tag-sep { color: var(--line-strong); }
