/* ============================================
   FINER FINDS — Buyer Homepage
   Brief palette: navy / gold / burgundy on sage-cream
   Type: Cormorant Garamond (Mentua substitute) + Assistant
   No border radius. Sharp corners only.
   ============================================ */

:root {
  /* Brand palette — brief-driven */
  --ff-navy: #1B2A3D;
  --ff-navy-deep: #0F1B2A;
  --ff-navy-soft: #2A3A4F;
  --ff-gold: #B8924A;
  --ff-gold-bright: #C9A356;
  --ff-gold-soft: #D9BC7C;
  --ff-burgundy: #6E2A2C;
  --ff-burgundy-soft: #8B3A3C;
  --ff-cream: #F4EFE3;
  --ff-cream-warm: #EFE7D4;
  --ff-sage-cream: #ECE7D6;
  --ff-paper: #F8F4E9;
  --ff-ink: #1A1A1A;
  --ff-ink-2: #4A4540;
  --ff-ink-3: #8A8278;
  --ff-hairline: rgba(27, 42, 61, 0.18);
  --ff-hairline-strong: rgba(27, 42, 61, 0.32);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Assistant", "Inter", -apple-system, system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 200ms;
  --t-base: 320ms;
  --t-slow: 520ms;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 10vw, 120px);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--ff-sage-cream);
  color: var(--ff-navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
/* Offset anchored sections for the fixed nav */
[id] { scroll-margin-top: 0; }
#top { scroll-margin-top: 0; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ff-gold); color: var(--ff-navy-deep); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.serif { font-family: var(--serif); font-weight: 500; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; }
p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ff-burgundy);
}
.eyebrow.muted { color: var(--ff-ink-3); }

/* ============================================
   LAYOUT
   ============================================ */
.shell { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding-top: var(--section-y); padding-bottom: var(--section-y); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease), padding var(--t-base) var(--ease), backdrop-filter var(--t-base) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(236, 231, 214, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--ff-hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ff-cream);
  transition: color var(--t-base) var(--ease);
}
.nav.scrolled .nav-logo { color: var(--ff-navy); }

.nav-logo .mark {
  width: 112px; height: 112px;
  display: grid; place-items: center;
  transition: width var(--t-base) var(--ease), height var(--t-base) var(--ease);
}
.nav-logo .mark svg { width: 100%; height: 100%; }
.nav-logo .mark svg path { fill: currentColor; }

.nav-logo .word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: font-size var(--t-base) var(--ease);
}

@media (max-width: 600px) {
  .nav-logo .mark { width: 68px; height: 68px; }
  .nav-logo .word { font-size: 28px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ff-cream);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-base) var(--ease);
}
.nav.scrolled .nav-links a { color: var(--ff-navy); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ff-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-base) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 22px;
}
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ff-cream);
  transition: color var(--t-base) var(--ease);
}
.nav.scrolled .nav-phone { color: var(--ff-navy); }
.nav-phone svg { width: 14px; height: 14px; }

.nav-mobile-toggle { display: none; }
.nav.scrolled .nav-mobile-toggle { color: var(--ff-navy); }
.nav-mobile-panel { display: none; }

/* Services dropdown */
.nav-dd { position: relative; }
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ff-cream);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  transition: color var(--t-base) var(--ease);
}
.nav.scrolled .nav-dd-trigger { color: var(--ff-navy); }
.nav-dd-caret { transition: transform var(--t-base) var(--ease); }
.nav-dd.open .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--ff-cream);
  border: 1px solid rgba(36, 51, 84, 0.12);
  box-shadow: 0 18px 50px rgba(15, 27, 42, 0.18);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease), visibility var(--t-base);
  z-index: 50;
}
.nav-dd-menu::before {
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dd.open .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ff-navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.nav-dd-item:hover { background: var(--ff-navy); color: var(--ff-cream); }

@media (max-width: 920px) {
  .nav-links, .nav-phone { display: none; }
  .nav-right .btn-pill { display: none; }
  .nav-mobile-toggle { display: grid; place-items: center; width: 40px; height: 40px; color: inherit; }
  .nav-inner { position: relative; z-index: 2; }
  .nav-mobile-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 92px 24px 36px;
    background: var(--ff-cream);
    border-bottom: 1px solid var(--ff-hairline);
    box-shadow: 0 22px 54px rgba(15, 27, 42, 0.18);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 360ms var(--ease), opacity 360ms var(--ease);
    z-index: 1;
    max-height: 100vh;
    max-height: 100svh;
    overflow-y: auto;
  }
  .nav-mobile-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-mobile-panel a,
  .nav-mobile-sub {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 500;
    color: var(--ff-navy);
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(36, 51, 84, 0.08);
    padding: 15px 4px;
    cursor: pointer;
    transition: color var(--t-base) var(--ease);
  }
  .nav-mobile-panel a:hover,
  .nav-mobile-sub:hover { color: var(--ff-gold-bright); }
  .nav-mobile-group { display: flex; flex-direction: column; }
  .nav-mobile-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ff-ink-3);
    padding: 16px 4px 6px;
  }
  .nav-mobile-sub {
    font-size: 15px;
    padding: 13px 4px 13px 18px;
    border-bottom-color: rgba(36, 51, 84, 0.06);
  }
  .nav-mobile-phone {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
  .nav-mobile-phone svg { width: 15px; height: 15px; }
  .nav-mobile-panel .btn { margin-top: 22px; justify-content: center; width: 100%; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--ff-gold);
  color: var(--ff-navy-deep);
  border-color: var(--ff-gold);
}
.btn-gold:hover { background: var(--ff-gold-bright); border-color: var(--ff-gold-bright); }
.btn-gold:active { transform: translateY(1px); }

.btn-pill {
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.btn-outline-cream {
  border-color: rgba(244, 239, 227, 0.55);
  color: var(--ff-cream);
  background: transparent;
}
.btn-outline-cream:hover { border-color: var(--ff-cream); background: rgba(244, 239, 227, 0.08); }

.btn-outline-gold {
  border-color: var(--ff-gold);
  color: var(--ff-gold);
  background: transparent;
}
.btn-outline-gold:hover { background: var(--ff-gold); color: var(--ff-navy-deep); }

.btn-outline-navy {
  border-color: var(--ff-navy);
  color: var(--ff-navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--ff-navy); color: var(--ff-cream); }

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-gold);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), gap var(--t-base) var(--ease);
}
.btn-link-gold:hover { border-bottom-color: var(--ff-gold); gap: 12px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: clamp(64px, 9vw, 110px);
  color: var(--ff-cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-color: #1c1410;
  filter: saturate(0.85) brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(125% 95% at 50% 72%, rgba(15, 27, 42, 0.32) 0%, rgba(15, 27, 42, 0.74) 100%),
    linear-gradient(0deg, rgba(15, 27, 42, 0.7) 0%, rgba(15, 27, 42, 0.08) 60%);
}
.hero-shell {
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  color: var(--ff-gold-soft);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--ff-gold-soft);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--ff-cream);
  max-width: 20ch;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--ff-gold-soft);
  font-style: italic;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ff-gold-soft);
  max-width: 56ch;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 4px auto 40px;
}
.hero-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
  background: rgba(27, 42, 61, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(214, 155, 62, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: var(--ff-cream);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.hero-cat:hover {
  border-color: var(--ff-gold);
  background: rgba(27, 42, 61, 0.74);
  box-shadow: 0 0 0 1px var(--ff-gold), 0 18px 52px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}
.hero-cat-icon { color: var(--ff-gold-soft); line-height: 0; }
.hero-cat:hover .hero-cat-icon { color: var(--ff-gold); }
.hero-cat-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
}
.hero-cat-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ff-gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: color var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.hero-cat-cta svg { width: 14px; height: 14px; }
.hero-cat:hover .hero-cat-cta { color: var(--ff-gold); opacity: 1; }
@media (max-width: 760px) {
  .hero-cats { grid-template-columns: 1fr; max-width: 100%; }
}
.hero-trust {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.65);
}
.hero-trust span { display: inline-block; }
.hero-trust .dot { margin: 0 12px; opacity: 0.5; }

.hero-aside {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(64px, 9vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: var(--ff-cream);
  z-index: 1;
}
.hero-aside .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55);
}
.hero-aside .since {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ff-gold-soft);
  line-height: 1;
}
@media (max-width: 760px) {
  .hero-aside { display: none; }
  .hero-ctas .btn { width: 100%; }
  .hero { padding-top: 120px; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  color: var(--ff-navy);
  text-wrap: balance;
}
.section-head p {
  margin-top: 18px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  color: var(--ff-ink-2);
  font-size: 17px;
  line-height: 1.55;
}

/* ============================================
   WHAT WE BUY
   ============================================ */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .what-grid { grid-template-columns: 1fr; }
}
.what-card {
  background: var(--ff-paper);
  border: 1px solid var(--ff-gold);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform var(--t-base) var(--ease);
}
.what-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1c1410;
}
.what-card-img > div {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}
.what-card:hover .what-card-img > div { transform: scale(1.04); }
.what-card-body {
  padding: 28px 24px 32px;
  border-top: 1px solid var(--ff-gold);
}
.what-card-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ff-navy);
  letter-spacing: -0.01em;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}
.what-card-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--ff-gold);
  transition: width var(--t-base) var(--ease);
}
.what-card:hover .what-card-title::after { width: 100%; }
.what-card-sub {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ff-ink-2);
  line-height: 1.5;
}
.what-card-arrow {
  margin-top: 22px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: gap var(--t-base) var(--ease);
}
.what-card:hover .what-card-arrow { gap: 12px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  background: var(--ff-paper);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ff-hairline);
  border-bottom: 1px solid var(--ff-hairline);
}
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--ff-hairline);
  position: relative;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step:nth-child(n+2) { padding-left: 32px; }

@media (max-width: 880px) {
  .step { border-right: 0; border-bottom: 1px solid var(--ff-hairline); padding: 32px 0; }
  .step:last-child { border-bottom: 0; }
  .step:nth-child(n+2) { padding-left: 0; }
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--ff-gold);
  margin-bottom: 24px;
}
.step-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ff-navy);
  margin-bottom: 14px;
}
.step-body {
  font-size: 15px;
  color: var(--ff-ink-2);
  line-height: 1.55;
  max-width: 28ch;
}

/* ============================================
   DIFFERENCE (3 columns)
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
}
.diff-col { text-align: left; }
.diff-icon {
  width: 44px; height: 44px;
  color: var(--ff-gold);
  margin-bottom: 24px;
}
.diff-icon svg { width: 100%; height: 100%; }
.diff-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ff-navy);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-wrap: balance;
}
.diff-body {
  font-size: 15.5px;
  color: var(--ff-ink-2);
  line-height: 1.6;
}

/* ============================================
   ACQUISITIONS
   ============================================ */
.shop {
  background: var(--ff-cream);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .shop-grid { grid-template-columns: 1fr; }
}
.shop-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.shop-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ff-cream-warm);
  position: relative;
}
.shop-card-img > div {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}
.shop-card:hover .shop-card-img > div { transform: scale(1.03); }
.shop-card-img .badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 9px;
  background: var(--ff-cream);
  color: var(--ff-burgundy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,27,42,0.55) 0%, rgba(15,27,42,0) 45%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.shop-card-overlay span {
  color: var(--ff-cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-card:hover .shop-card-overlay { opacity: 1; }

.shop-card-body { padding: 22px 0 0; }
.shop-card-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ff-navy);
  letter-spacing: -0.005em;
}
.shop-card-title {
  margin-top: 4px;
  font-size: 14px;
  color: var(--ff-ink-2);
  line-height: 1.45;
}
.shop-card-cta {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ff-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-base) var(--ease);
}
.shop-card:hover .shop-card-cta { gap: 10px; }
.shop-bottom {
  margin-top: 56px;
  text-align: center;
}

/* Hero Sell/Buy CTAs */
.hero .hero-ctas {
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 34px;
}
.hero .hero-ctas .btn {
  padding: 18px 46px;
  font-size: 14px;
  min-width: 180px;
}

/* In the Collection — full-bleed rotating carousel */
.collection-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 8px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.collection-track {
  display: flex;
  width: max-content;
  animation: collectionScroll 70s linear infinite;
}
.collection-carousel:hover .collection-track { animation-play-state: paused; }
.collection-slide {
  flex: 0 0 auto;
  width: clamp(250px, 24vw, 360px);
  height: clamp(320px, 30vw, 460px);
  margin-right: 22px;
  overflow: hidden;
  background: var(--ff-cream-warm);
}
.collection-slide > div {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}
.collection-slide:hover > div { transform: scale(1.04); }
@keyframes collectionScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .collection-track { animation: none; }
}

/* About — Meet Serge */
.about { background: var(--ff-sage-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.about-figure { position: relative; }
.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% 42%;
  display: block;
}
.about-figure-accent {
  position: absolute;
  inset: 0;
  transform: translate(-16px, -16px);
  border: 1px solid var(--ff-gold);
  opacity: 0.4;
  pointer-events: none;
}
.about-text { max-width: 560px; }
.about-text .eyebrow { display: inline-block; margin-bottom: 16px; }
.about-text h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  color: var(--ff-navy);
  margin-bottom: 22px;
}
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--ff-navy);
  border-left: 2px solid var(--ff-gold);
  padding-left: 22px;
  margin: 0 0 26px;
}
.about-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ff-ink-2);
  margin-bottom: 18px;
}
.about-text .btn { margin-top: 12px; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-figure-accent { display: none; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  background: var(--ff-cream-warm);
  padding: 56px 0;
}
.trust-label {
  text-align: center;
  margin-bottom: 36px;
  color: var(--ff-ink-3);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px 40px;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: 0.78;
}
.trust-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ff-navy);
  text-align: center;
}
.trust-mark .top {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.trust-mark .top.bold {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.trust-mark .bot {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ff-ink-3);
}
.trust-divider {
  height: 28px; width: 1px;
  background: var(--ff-hairline-strong);
}

/* ============================================
   LOCATION
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
}
.location-text h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  color: var(--ff-navy);
  margin-bottom: 24px;
  text-wrap: balance;
}
.location-text p {
  font-size: 16.5px;
  color: var(--ff-ink-2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 42ch;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 15px;
}
.location-info .row {
  display: flex; align-items: baseline; gap: 16px;
}
.location-info .row .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ff-ink-3);
  width: 80px;
  flex-shrink: 0;
}
.location-info .row .val { color: var(--ff-navy); }
.location-info .row a.val:hover { color: var(--ff-gold); }
.location-info .row .val.gold { color: var(--ff-gold); border-bottom: 1px solid transparent; transition: border-color var(--t-base) var(--ease); }
.location-info .row .val.gold:hover { border-bottom-color: var(--ff-gold); }

.location-map {
  border: 1px solid var(--ff-gold);
  background: var(--ff-navy);
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.location-map svg { width: 100%; height: 100%; display: block; }
.location-map .pin-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-100% - 18px));
  background: var(--ff-cream);
  color: var(--ff-navy);
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--ff-gold);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--ff-paper);
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--ff-hairline);
}
.faq-item { border-bottom: 1px solid var(--ff-hairline); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--ff-navy);
  letter-spacing: -0.005em;
  transition: color var(--t-base) var(--ease);
}
.faq-q:hover { color: var(--ff-burgundy); }
.faq-q .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  color: var(--ff-gold);
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%; top: 50%;
}
.faq-q .icon::before {
  width: 16px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-q .icon::after {
  width: 1px; height: 16px;
  transform: translate(-50%, -50%);
  transition: transform var(--t-base) var(--ease);
}
.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a-inner {
  padding: 0 4px 28px;
  font-size: 15.5px;
  color: var(--ff-ink-2);
  line-height: 1.65;
  max-width: 70ch;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ff-navy);
  color: var(--ff-cream);
  padding: 0;
}
.footer-wave {
  height: 32px;
  background: var(--ff-navy-deep);
  position: relative;
  overflow: hidden;
}
.footer-wave svg {
  width: 100%; height: 100%;
  opacity: 0.6;
}
.footer-inner {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ff-gold);
  margin: 0 0 22px 0;
}
.footer-brand .logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.footer-brand .logo-row .mark {
  width: 44px; height: 44px;
  color: var(--ff-cream);
}
.footer-brand .logo-row .mark svg { width: 100%; height: 100%; }
.footer-brand .logo-row .mark svg path { fill: currentColor; }
.footer-brand .logo-row .word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ff-cream);
  line-height: 1;
}
.footer-brand .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ff-gold-soft);
  line-height: 1.4;
  max-width: 30ch;
}
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--ff-cream); font-size: 14px; transition: color var(--t-base) var(--ease); }
.footer-nav a:hover { color: var(--ff-gold); }
.footer-contact .row {
  font-size: 14px;
  color: var(--ff-cream);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-contact a { color: var(--ff-gold-soft); transition: color var(--t-base) var(--ease); }
.footer-contact a:hover { color: var(--ff-gold); }

.footer-bottom {
  border-top: 1px solid rgba(244, 239, 227, 0.14);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(244, 239, 227, 0.6);
  letter-spacing: 0.04em;
}
.footer-bottom .designed {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ff-gold-soft);
  letter-spacing: 0;
}
.social-row { display: flex; align-items: center; gap: 16px; }
.social-row a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: var(--ff-gold);
  border: 1px solid rgba(184, 146, 74, 0.4);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.social-row a svg { width: 14px; height: 14px; }
.social-row a:hover { background: var(--ff-gold); color: var(--ff-navy-deep); }

/* ============================================
   APPRAISAL MODAL
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 42, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--ff-paper);
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid var(--ff-gold);
  position: relative;
  transform: translateY(16px);
  transition: transform var(--t-base) var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0); }

.modal-header {
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--ff-hairline);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.modal-header .eyebrow { margin-bottom: 12px; display: block; }
.modal-header h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ff-navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.modal-close {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--ff-navy);
  border: 1px solid var(--ff-hairline);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.modal-close:hover { background: var(--ff-navy); color: var(--ff-cream); border-color: var(--ff-navy); }

.modal-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-bottom: 1px solid var(--ff-hairline);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ff-ink-3);
}
.modal-progress .step-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.modal-progress .step-dot .num {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border: 1px solid var(--ff-hairline-strong);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ff-ink-3);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.modal-progress .step-dot.active .num { background: var(--ff-navy); color: var(--ff-cream); border-color: var(--ff-navy); }
.modal-progress .step-dot.done .num { background: var(--ff-gold); color: var(--ff-navy-deep); border-color: var(--ff-gold); }
.modal-progress .step-dot.active .name, .modal-progress .step-dot.done .name { color: var(--ff-navy); }
.modal-progress .sep {
  flex: 1;
  height: 1px;
  background: var(--ff-hairline);
}

.modal-body { padding: 32px 40px; }
.modal-body .step-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ff-navy);
  margin-bottom: 6px;
}
.modal-body .step-help {
  font-size: 14px;
  color: var(--ff-ink-2);
  margin-bottom: 24px;
  line-height: 1.55;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-tile {
  border: 1px solid var(--ff-hairline-strong);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  background: transparent;
  text-align: left;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.cat-tile:hover { border-color: var(--ff-gold); background: rgba(184, 146, 74, 0.05); }
.cat-tile.selected { border-color: var(--ff-navy); background: var(--ff-navy); color: var(--ff-cream); }
.cat-tile .icon { width: 22px; height: 22px; color: var(--ff-gold); }
.cat-tile.selected .icon { color: var(--ff-gold-soft); }
.cat-tile .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1;
}
.cat-tile .ex { font-size: 12px; color: var(--ff-ink-3); line-height: 1.4; }
.cat-tile.selected .ex { color: rgba(244, 239, 227, 0.7); }

/* Photo upload */
.req {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-gold-bright);
}
.opt {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ff-ink-3);
}
.photo-upload { display: flex; flex-direction: column; gap: 12px; }
.photo-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 26px 20px;
  border: 1.5px dashed rgba(36, 51, 84, 0.35);
  background: rgba(36, 51, 84, 0.03);
  color: var(--ff-navy);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.photo-drop:hover { border-color: var(--ff-gold); background: rgba(184, 146, 74, 0.06); }
.photo-drop svg { color: var(--ff-gold); margin-bottom: 4px; }
.photo-drop-title { font-weight: 600; font-size: 14px; }
.photo-drop-sub { font-size: 12px; color: var(--ff-ink-3); line-height: 1.4; }
.photo-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 10px;
}
.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(36, 51, 84, 0.15);
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: rgba(15, 27, 42, 0.78);
  color: var(--ff-cream);
  border: none;
  cursor: pointer;
  line-height: 0;
}
.photo-remove svg { width: 12px; height: 12px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ff-ink-3);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ff-navy);
  background: var(--ff-cream);
  border: 1px solid var(--ff-hairline-strong);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--t-base) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ff-gold); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 40px 32px;
  border-top: 1px solid var(--ff-hairline);
}
.modal-footer .secondary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ff-ink-3);
  cursor: pointer;
  transition: color var(--t-base) var(--ease);
}
.modal-footer .secondary:hover { color: var(--ff-navy); }
.modal-footer .secondary:disabled { opacity: 0.3; cursor: not-allowed; }

.modal-success {
  padding: 56px 40px;
  text-align: center;
}
.modal-success .check {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border: 1px solid var(--ff-gold);
  display: grid; place-items: center;
  color: var(--ff-gold);
}
.modal-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ff-navy);
  margin-bottom: 14px;
}
.modal-success p {
  font-size: 15.5px;
  color: var(--ff-ink-2);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 auto 28px;
}

@media (max-width: 600px) {
  .modal-header, .modal-progress, .modal-body, .modal-footer { padding-left: 24px; padding-right: 24px; }
}

/* ============================================
   TOUR (How It Works overlay)
   ============================================ */
.tour-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 42, 0.92);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.tour-backdrop.open { opacity: 1; pointer-events: auto; }
.tour-card {
  background: transparent;
  color: var(--ff-cream);
  width: 100%;
  max-width: 880px;
  text-align: center;
  position: relative;
}
.tour-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 140px);
  color: var(--ff-gold);
  line-height: 1;
  margin-bottom: 32px;
}
.tour-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ff-cream);
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}
.tour-body {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ff-gold-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto 48px;
}
.tour-controls {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.tour-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(244, 239, 227, 0.3);
  display: grid; place-items: center;
  color: var(--ff-cream);
  cursor: pointer;
  transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.tour-arrow:hover { border-color: var(--ff-gold); background: rgba(184, 146, 74, 0.1); }
.tour-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.tour-dots { display: inline-flex; gap: 10px; align-items: center; }
.tour-dots span { width: 8px; height: 8px; background: rgba(244, 239, 227, 0.25); transition: background var(--t-base) var(--ease), width var(--t-base) var(--ease); }
.tour-dots span.active { background: var(--ff-gold); width: 24px; }

.tour-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--ff-cream);
  border: 1px solid rgba(244, 239, 227, 0.3);
  cursor: pointer;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.tour-close:hover { border-color: var(--ff-gold); background: rgba(184, 146, 74, 0.1); }

.tour-progress {
  position: fixed;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.5);
}

/* ============================================
   MOTION — restrained, scroll-reveals + hero entrance
   ============================================ */

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

/* Scroll reveal: section-level fade + slight rise */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger: children fade in sequence when parent becomes visible */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 330ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 440ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 550ms; }

/* Hero entrance — staggered fade-up on first paint */
@keyframes ff-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-shell .eyebrow,
.hero-shell h1,
.hero-shell .hero-cats,
.hero-shell .hero-trust {
  opacity: 0;
  animation: ff-fade-up 950ms var(--ease) forwards;
}
.hero-shell .eyebrow    { animation-delay: 200ms; }
.hero-shell h1          { animation-delay: 380ms; }
.hero-shell .hero-cats  { animation-delay: 600ms; }
.hero-shell .hero-trust { animation-delay: 820ms; }

/* Hero photo: very slow Ken-Burns drift */
@keyframes ff-bg-drift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}
.hero-bg {
  animation: ff-bg-drift 22s var(--ease) infinite alternate;
}

/* What-we-buy & shop cards — image lift on hover (refines existing zoom) */
.what-card-img > div,
.shop-card-img > div {
  transition: transform 900ms var(--ease);
}
.what-card:hover .what-card-img > div,
.shop-card:hover .shop-card-img > div {
  transform: scale(1.06);
}

/* Section eyebrow: subtle slide-in when revealed */
.reveal-on-scroll .section-head .eyebrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 700ms var(--ease) 100ms, transform 700ms var(--ease) 100ms;
}
.reveal-on-scroll.is-visible .section-head .eyebrow {
  opacity: 1;
  transform: none;
}

/* Reduced-motion: disable everything above */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal-on-scroll, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-shell .eyebrow,
  .hero-shell h1,
  .hero-shell .hero-cats,
  .hero-shell .hero-trust { opacity: 1 !important; }
  .hero-bg { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Slimmer nav on scroll */
.nav.scrolled { padding: 9px 0; }
.nav.scrolled .nav-logo .mark { width: 54px; height: 54px; }

/* About: Google reviews badge */
.about-reviews { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 11px 18px; border: 1px solid var(--ff-hairline); background: var(--ff-paper); color: var(--ff-navy); font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease); }
.about-reviews:hover { border-color: var(--ff-gold); background: var(--ff-cream-warm); }
.about-reviews-g { flex: none; }
.about-reviews-arrow { color: var(--ff-gold); display: inline-block; transition: transform var(--t-base) var(--ease); }
.about-reviews:hover .about-reviews-arrow { transform: translateX(3px); }

/* Client reviews band */
.reviews-band { padding: var(--section-y) 0; background: var(--ff-navy); color: var(--ff-cream); }
.reviews-head { margin-bottom: 38px; }
.reviews-head .eyebrow { color: var(--ff-gold-soft); }
.reviews-head h2 { color: var(--ff-cream); font-family: var(--serif); font-weight: 500; margin-top: 10px; }
.reviews-all { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--ff-gold-soft); font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.reviews-all:hover { color: var(--ff-gold); }
.reviews-carousel { position: relative; }
.reviews-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; -ms-overflow-style: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 366px; max-width: 84vw; scroll-snap-align: start; display: flex; flex-direction: column; gap: 14px; padding: 26px 26px 22px; background: rgba(244, 239, 227, 0.05); border: 1px solid rgba(217, 188, 124, 0.22); }
.review-stars { color: var(--ff-gold); letter-spacing: 3px; font-size: 15px; }
.review-text { flex: 1; font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--ff-cream); margin: 0; }
.review-meta { display: flex; align-items: center; gap: 9px; padding-top: 14px; border-top: 1px solid rgba(217, 188, 124, 0.18); }
.review-g { flex: none; }
.review-name { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ff-cream); }
.review-time { font-family: var(--sans); font-size: 12px; color: var(--ff-ink-3); margin-left: auto; }
.reviews-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: 1px solid rgba(217,188,124,0.4); background: rgba(15,27,42,0.7); color: var(--ff-gold-soft); font-size: 22px; line-height: 1; cursor: pointer; z-index: 2; display: grid; place-items: center; transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease); }
.reviews-arrow:hover { background: var(--ff-navy); border-color: var(--ff-gold); }
.reviews-arrow--prev { left: -8px; }
.reviews-arrow--next { right: -8px; }
@media (max-width: 760px) { .review-card { flex-basis: 300px; } .reviews-arrow { display: none; } .review-text { font-size: 16px; } }

.reviews-rating { display: inline-flex; align-items: center; gap: 14px; margin-top: 16px; }
.reviews-rating-stars { color: var(--ff-gold); font-size: 30px; letter-spacing: 4px; line-height: 1; }
.reviews-rating-num { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--ff-cream); line-height: 1; }
.reviews-rating-on { font-family: var(--sans); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ff-gold-soft); align-self: flex-end; padding-bottom: 4px; }
@media (max-width: 760px){ .reviews-rating-stars { font-size: 24px; } .reviews-rating-num { font-size: 30px; } }
