/* ===========================================================
   AMBER HOUR & CO  —  Cinematic Editorial Landing
   Quiet luxury · Curated fragrance · Intentional living
   =========================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=cormorant-garamond@400,500,300,600&f[]=satoshi@300,400,500,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Palette — warm cream, beige, muted brown, soft gold */
  --cream: #f4ede1;
  --cream-soft: #efe6d6;
  --linen: #e8dcc6;
  --beige: #d9c8a9;
  --sand: #c2a983;
  --brass: #a87f4a;
  --brass-deep: #876334;
  --umber: #6b4f2d;
  --bark: #3d2c19;
  --ink: #1f160c;

  /* Surfaces */
  --bg: var(--cream);
  --bg-deep: #ebe0c9;
  --bg-dark: #2a1f12;
  --fg: var(--ink);
  --fg-muted: rgba(31, 22, 12, 0.62);
  --fg-soft: rgba(31, 22, 12, 0.42);
  --hairline: rgba(135, 99, 52, 0.18);

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t-fast: 240ms var(--ease-out);
  --t-base: 480ms var(--ease-out);
  --t-slow: 900ms var(--ease-out);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  letter-spacing: 0.005em;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; color: var(--bark); }
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.lede { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--fg-muted); line-height: 1.55; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: background var(--t-base), backdrop-filter var(--t-base), border-color var(--t-base), padding var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(244, 237, 225, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--hairline);
  padding-block: 0.85rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; color: var(--cream); transition: opacity var(--t-fast); }
.nav--scrolled .nav__brand { color: var(--bark); }
.nav__brand:hover { opacity: 0.78; }
/* SVG logo: original colors are dark bark + brass on transparent.
   On dark video hero, invert + brighten so bark becomes cream.
   When scrolled (light nav bg), use original colors. */
.nav__brand-img { display: block; height: 56px; width: auto; transition: opacity var(--t-fast); }
.nav--scrolled .nav__brand-img { content: url('../images/logo-mark.png'); }
.nav__links { display: flex; gap: 2.25rem; align-items: center; }
.nav__link { font-size: 13px; letter-spacing: 0.06em; color: var(--cream); opacity: 0.85; }
.nav--scrolled .nav__link { color: var(--bark); }
.nav__link:hover { opacity: 1; }
.nav__cta {
  font-size: 13px; letter-spacing: 0.08em; padding: 0.55rem 1.1rem;
  border: 1px solid rgba(244, 237, 225, 0.4); border-radius: 999px;
  color: var(--cream); transition: background var(--t-fast), border-color var(--t-fast);
}
.nav--scrolled .nav__cta { color: var(--bark); border-color: var(--hairline); }
.nav__cta:hover { background: rgba(244, 237, 225, 0.12); }
.nav--scrolled .nav__cta:hover { background: rgba(135, 99, 52, 0.08); }

@media (max-width: 720px) {
  .nav__links .nav__link { display: none; }
}

/* =========================================================
   HERO  —  full-bleed video
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__video, .hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero__poster { z-index: 0; }
.hero__video { z-index: 1; opacity: 0; transition: opacity 1.2s var(--ease-out); }
.hero__video.is-ready { opacity: 1; }

/* warm cinematic grade overlay */
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(60% 80% at 50% 30%, transparent 0%, rgba(20, 12, 4, 0.35) 60%, rgba(20, 12, 4, 0.7) 100%),
    linear-gradient(180deg, rgba(40, 26, 10, 0.25) 0%, rgba(20, 12, 4, 0.55) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 4;
  width: 100%;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
  max-width: var(--container);
  margin: 0 auto;
}
.hero__eyebrow { color: rgba(244, 237, 225, 0.78); margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 7.5vw, 6.5rem);
  line-height: 0.98; letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 16ch;
}
.hero__title em { font-style: italic; color: var(--linen); }
.hero__sub {
  margin-top: 1.75rem;
  max-width: 44ch;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: rgba(244, 237, 225, 0.78);
  line-height: 1.55;
}
.hero__cta-row {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(244, 237, 225, 0.65);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}
.hero__scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, rgba(244, 237, 225, 0.6), transparent);
  animation: scrollPulse 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(-12px) scaleY(0.6); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(12px) scaleY(0.6); opacity: 0; }
}

/* hero word reveal */
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordRise 1.1s var(--ease-out) forwards;
}
.reveal-word:nth-child(1) > span { animation-delay: 0.15s; }
.reveal-word:nth-child(2) > span { animation-delay: 0.3s; }
.reveal-word:nth-child(3) > span { animation-delay: 0.45s; }
.reveal-word:nth-child(4) > span { animation-delay: 0.6s; }
.reveal-word:nth-child(5) > span { animation-delay: 0.75s; }
.reveal-word:nth-child(6) > span { animation-delay: 0.9s; }
@keyframes wordRise { to { transform: translateY(0); } }

.hero__sub, .hero__eyebrow, .hero__cta-row, .hero__scroll {
  opacity: 0; animation: fadeUp 1.2s var(--ease-out) forwards;
}
.hero__eyebrow { animation-delay: 0.05s; }
.hero__sub { animation-delay: 1.05s; }
.hero__cta-row { animation-delay: 1.25s; }
.hero__scroll { animation-delay: 1.6s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}
.btn--primary {
  background: var(--cream);
  color: var(--bark);
}
.btn--primary:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.35); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(244, 237, 225, 0.06);
  color: var(--cream);
  border-color: rgba(244, 237, 225, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(244, 237, 225, 0.14); border-color: rgba(244, 237, 225, 0.55); }
.btn--dark {
  background: var(--bark);
  color: var(--cream);
}
.btn--dark:hover { background: var(--ink); transform: translateY(-1px); box-shadow: 0 14px 34px -16px rgba(0,0,0,0.4); }
.btn--outline {
  border-color: var(--hairline);
  color: var(--bark);
}
.btn--outline:hover { background: rgba(135, 99, 52, 0.06); border-color: var(--brass); }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   PROOF BAND  —  glass cards with editorial proof points
   ========================================================= */
.proof {
  margin-top: -6vh;
  position: relative; z-index: 5;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 7rem);
}
.proof__inner {
  max-width: var(--container); margin: 0 auto;
  background: rgba(244, 237, 225, 0.72);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.25rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  box-shadow: 0 30px 80px -30px rgba(60, 40, 14, 0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.proof__cell {
  padding: 0.5rem 1.5rem;
  border-left: 1px solid var(--hairline);
}
.proof__cell:first-child { border-left: 0; padding-left: 0; }
.proof__cell:last-child { padding-right: 0; }
.proof__num {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bark);
  letter-spacing: -0.005em;
}
.proof__num em { font-style: italic; color: var(--brass); }
.proof__label {
  margin-top: 0.85rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 800px) {
  .proof__inner { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .proof__cell { border-left: 0; padding: 0; }
  .proof__cell:nth-child(even) { border-left: 1px solid var(--hairline); padding-left: 1.5rem; }
}

/* =========================================================
   PILLARS  — three category panels
   ========================================================= */
.pillars {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.015em;
}
.section-head h2 em { font-style: italic; color: var(--brass-deep); }
.section-head__lede { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--fg-muted); max-width: 50ch; line-height: 1.55; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 1.5rem; } }

.pillars__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--linen);
  isolation: isolate;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(60,40,14,0.4); }
.pillar__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.pillar:hover .pillar__img { transform: scale(1.06); }
.pillar__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,22,12,0) 25%, rgba(31,22,12,0.55) 60%, rgba(31,22,12,0.85) 100%);
}
.pillar__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.75rem;
  color: var(--cream);
}
.pillar__num {
  font-family: var(--sans); font-size: 11px;
  font-weight: 500;
  color: var(--linen); opacity: 0.85;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.pillar__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
  margin-top: 0.5rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.pillar__copy {
  margin-top: 0.85rem;
  font-size: 14px;
  color: rgba(244, 237, 225, 0.78);
  max-width: 36ch;
  line-height: 1.55;
}
.pillar__link {
  margin-top: 1.25rem;
  display: inline-flex; gap: 0.5rem; align-items: center;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--linen);
  border-bottom: 1px solid rgba(244,237,225,0.35);
  padding-bottom: 0.25rem;
  transition: gap var(--t-fast), border-color var(--t-fast);
}
.pillar:hover .pillar__link { gap: 0.85rem; border-color: var(--linen); }

/* =========================================================
   EDITORIAL FEATURE  — full-bleed cinematic split
   ========================================================= */
.editorial {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bark);
  color: var(--cream);
  overflow: hidden;
}
.editorial__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .editorial__inner { grid-template-columns: 1fr; } }
.editorial__copy { max-width: 50ch; }
.editorial__copy .eyebrow { color: var(--sand); }
.editorial__copy h2 {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300;
  color: var(--cream); letter-spacing: -0.015em; line-height: 1.05;
}
.editorial__copy h2 em { font-style: italic; color: var(--sand); }
.editorial__copy p {
  margin-top: 1.5rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(244, 237, 225, 0.75);
  line-height: 1.6;
}
.editorial__meta {
  margin-top: 2rem;
  display: flex; gap: 1.75rem; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244, 237, 225, 0.55);
}
.editorial__meta span + span { padding-left: 1.75rem; border-left: 1px solid rgba(244,237,225,0.18); }
.editorial__cta { margin-top: 2.5rem; display: flex; gap: 0.85rem; flex-wrap: wrap; }
.editorial__media {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(244,237,225,0.12);
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,22,12,0.45));
}

/* =========================================================
   COLLECTIONS  —  ShopMy horizontal scroll
   ========================================================= */
.collections {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--cream);
}
.collections__rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 28vw);
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem var(--gutter) 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
.collections__rail::-webkit-scrollbar { height: 6px; }
.collections__rail::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 999px; }
.collection {
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: var(--linen);
  position: relative;
  aspect-ratio: 3 / 4;
  isolation: isolate;
  cursor: pointer;
  transition: transform var(--t-base);
  display: block;
  text-decoration: none;
  color: inherit;
}
.collection:hover { transform: translateY(-4px); }
.collection:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
.collection__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.4s var(--ease-out), filter var(--t-base);
}
.collection:hover .collection__img { transform: scale(1.05); filter: saturate(1.05); }
.collection__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(31,22,12,0.78) 100%); }
.collection__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: var(--cream); }
.collection__count { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,237,225,0.7); }
.collection__title { font-family: var(--serif); font-weight: 400; font-size: 1.65rem; line-height: 1.05; margin-top: 0.4rem; color: var(--cream); }
.collection__link { margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sand); display: inline-flex; gap: 0.5rem; }

.collections__head {
  display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  max-width: var(--container); margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0 var(--gutter);
}
.collections__head h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; letter-spacing: -0.015em; }
.collections__head h2 em { font-style: italic; color: var(--brass-deep); }
.collections__rail-scroll-hint {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--fg-soft);
  display: flex; gap: 0.5rem; align-items: center;
}

/* =========================================================
   CTA  —  closing newsletter capture
   ========================================================= */
.cta {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(31,22,12,0.78) 0%, rgba(61,44,25,0.7) 100%);
}
.cta__inner {
  max-width: 720px; margin: 0 auto; padding: 0 var(--gutter);
  text-align: center;
}
.cta__eyebrow { color: rgba(244, 237, 225, 0.7); }
.cta h2 {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.cta h2 em { font-style: italic; color: var(--linen); }
.cta__sub {
  margin: 1.5rem auto 0;
  max-width: 48ch;
  font-size: 1.05rem;
  color: rgba(244, 237, 225, 0.75);
  line-height: 1.6;
}
.cta__form {
  margin-top: 2.5rem;
  display: flex; gap: 0.5rem;
  background: rgba(244, 237, 225, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 237, 225, 0.22);
  border-radius: 999px;
  padding: 0.4rem;
  max-width: 480px;
  margin-inline: auto;
}
.cta__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  font: inherit;
  font-size: 14px;
  padding: 0.65rem 1.1rem;
}
.cta__form input::placeholder { color: rgba(244, 237, 225, 0.55); }
.cta__form button { white-space: nowrap; padding: 0.7rem 1.3rem; }
.cta__note {
  margin-top: 1.25rem;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244, 237, 225, 0.5);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(244, 237, 225, 0.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem;
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer__brand-img { display: block; height: 80px; width: auto; opacity: 0.95; }
.footer__tag { margin-top: 0.5rem; font-style: italic; font-family: var(--serif); font-size: 14px; color: rgba(244, 237, 225, 0.55); }
.footer__col h4 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer__col a { font-size: 13px; color: rgba(244, 237, 225, 0.62); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244,237,225,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244, 237, 225, 0.4);
}

/* =========================================================
   SCROLL-DRIVEN REVEALS  (opacity + clip-path only — no CLS)
   ========================================================= */
.fx-fade { opacity: 1; }
.fx-clip { opacity: 1; }

@supports (animation-timeline: view()) {
  .fx-fade {
    opacity: 0;
    animation: fxFade linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }
  .fx-clip {
    clip-path: inset(0 0 30% 0);
    opacity: 0;
    animation: fxClip linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}
@keyframes fxFade { to { opacity: 1; } }
@keyframes fxClip { to { clip-path: inset(0 0 0 0); opacity: 1; } }

/* parallax for editorial image */
@supports (animation-timeline: view()) {
  .parallax-img {
    animation: parallax linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
}
@keyframes parallax { from { transform: scale(1.08) translateY(-4%); } to { transform: scale(1.08) translateY(4%); } }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-word > span { transform: none; }
}
