/* ============================================================
   [BRAND] — Built for the Long Game
   Masters palette: Augusta green · club linen · brass · navy
   Editorial premium redesign
   ============================================================ */

:root {
  /* MARLO brand palette (per MARLO-brand-guidelines.pdf) */
  --fairway:      #1E3A2F;   /* fairway pine */
  --fairway-deep: #142A21;
  --fairway-soft: #2A4A3C;
  --linen:        #F4EFE4;   /* parchment */
  --paper:        #ECE4D6;
  --navy:         #1B2A4A;
  --brass:        #C6A35D;   /* polished brass — CTAs, dark bg */
  --brass-dark:   #B08D57;   /* worn brass — light bg accents */
  --brass-light:  #D9BC83;
  --cream:        #F2EAD8;   /* clubhouse cream — type on dark */
  --charcoal:     #2B2B28;
  --ink:          #1C1B19;
  --secondary:    #6B6258;
  --border:       #DDD5C8;
  --surface:      #FDFAF5;
  --white:        #FFFFFF;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --section-v: 140px;
  --max-w:     1240px;
  --ease:      200ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: var(--sans);
  background: var(--linen);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--brass); color: var(--fairway-deep); }

/* Film-grain atmosphere over the whole page */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }

.section-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Kicker with a leading brass rule */
.kicker {
  display: inline-flex; align-items: center; gap: 0.875rem;
  font-family: var(--sans); font-weight: 600;
  font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.75rem;
}
.kicker::before {
  content: ""; width: 42px; height: 1px; background: currentColor; opacity: 0.7;
}

.body-text {
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.85; color: var(--secondary);
}

.brass-rule { width: 44px; height: 2px; background: var(--brass); margin-bottom: 1.75rem; }
.brass-rule-center { margin-left: auto; margin-right: auto; }

.stars { color: var(--brass); letter-spacing: 2px; }

/* Section watermark numeral */
.watermark {
  position: absolute; font-family: var(--serif); font-weight: 900;
  font-size: clamp(8rem, 22vw, 20rem); line-height: 0.8;
  color: currentColor; opacity: 0.05; pointer-events: none; user-select: none;
  z-index: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  height: 54px; padding: 0 32px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 0; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn .arw { display: inline-block; transition: transform 0.3s var(--ease-out); }
.btn:hover .arw { transform: translateX(5px); }

.btn-brass { background: var(--brass); color: var(--fairway-deep); }
.btn-brass:hover { background: var(--brass-light); }

.btn-green { background: var(--fairway); color: var(--linen); }
.btn-green:hover { background: var(--fairway-deep); }

.btn-ghost { background: transparent; color: var(--linen); border: 1px solid rgba(244,239,230,0.35); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-light); }

.btn-outline { background: transparent; color: var(--fairway); border: 1px solid var(--fairway); }
.btn-outline:hover { background: var(--fairway); color: var(--linen); }

/* Quiet text link with animated underline */
.btn-text {
  height: 54px; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal);
  position: relative;
}
.btn-text::after {
  content: ""; position: absolute; left: 0; bottom: 14px; width: 100%; height: 1.5px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn-text:hover::after { transform: scaleX(1); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--fairway-deep); padding: 0 2.5rem;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, height 0.3s ease;
  border-bottom: 1px solid rgba(196,151,58,0);
}
.nav.nav-solid, .nav.scrolled {
  border-bottom: 1px solid rgba(196,151,58,0.2);
  box-shadow: 0 14px 44px -22px rgba(0,0,0,0.7);
}
.nav.nav-solid .nav-inner { height: 64px; }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 76px; display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { width: 148px; height: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; margin: 0 auto; }
.nav-links a {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--linen); opacity: 0.78; position: relative; padding: 6px 0;
  transition: opacity var(--ease), color var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { opacity: 1; color: var(--brass-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { flex-shrink: 0; height: 44px; padding: 0 22px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--linen); transition: var(--ease); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; background: var(--fairway-deep);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-link { font-family: var(--serif); font-size: 2.25rem; font-weight: 700; color: var(--linen); transition: color var(--ease); }
.mobile-link:hover { color: var(--brass); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 2rem; background: none; border: none;
  color: var(--linen); font-size: 1.4rem; cursor: pointer;
  min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center;
  opacity: 0.7; transition: opacity var(--ease);
}
.mobile-menu-close:hover { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 76px 0 0; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(196,151,58,0.10), transparent 55%),
    radial-gradient(80% 60% at 8% 90%, rgba(26,61,43,0.07), transparent 60%),
    var(--linen);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: 3rem; min-height: calc(100vh - 76px);
}
.hero-content { padding: 4rem 0; position: relative; z-index: 2; }
.hero-content .kicker { opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.1s forwards; }

.hero-headline {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(3.4rem, 6.6vw, 6rem);
  line-height: 0.98; letter-spacing: -0.02em; color: var(--fairway);
  display: flex; flex-direction: column; margin-bottom: 1.75rem;
}
.hero-headline span { display: block; opacity: 0; transform: translateY(28px); animation: heroLine 1s var(--ease-out) forwards; }
.hero-headline .l1 { animation-delay: 0.22s; }
.hero-headline .l2 { animation-delay: 0.36s; color: var(--brass); font-style: italic; font-weight: 400; }
.hero-headline .l3 { animation-delay: 0.5s; }

.hero-sub {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem;
  color: var(--secondary); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.5;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.85s forwards; margin-bottom: 2.25rem;
}
.hero-meta {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.8125rem; color: var(--secondary);
  opacity: 0; animation: fadeIn 0.8s ease 1s forwards;
}

/* Hero product on a soft pedestal */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 60vh; opacity: 0; animation: fadeIn 1.2s ease 0.3s forwards;
}
.hero-disc {
  position: absolute; width: min(34vw, 460px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--surface), var(--paper) 70%, #e3d9c7);
  box-shadow: inset 0 2px 30px rgba(0,0,0,0.04), 0 40px 90px -40px rgba(26,61,43,0.45);
}
.hero-disc::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(196,151,58,0.35);
}
.hero-product {
  position: relative; z-index: 1; width: min(30vw, 420px); height: auto;
  filter: drop-shadow(0 36px 50px rgba(26,61,43,0.28));
  animation: floaty 6s ease-in-out infinite;
}
.hero-tag {
  position: absolute; bottom: 8%; right: 4%; z-index: 2;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fairway); background: var(--surface);
  padding: 8px 14px; border: 1px solid var(--border);
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--secondary); opacity: 0; animation: fadeIn 0.8s ease 1.3s forwards;
}
.hero-scroll span { display: block; width: 1px; height: 44px; background: linear-gradient(var(--brass), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }

/* MARLO roundel placements */
.hero-roundel {
  width: 96px; height: auto; display: block; margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}
.founder-roundel { width: 108px; height: auto; display: block; margin-bottom: 1.75rem; }
@media (max-width: 1000px) {
  .hero-roundel { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   PROOF MARQUEE
   ============================================================ */
.proof-strip {
  background: var(--fairway-deep); border-block: 1px solid rgba(196,151,58,0.16);
  height: 58px; overflow: hidden; display: flex; align-items: center;
}
.proof-track {
  display: flex; align-items: center; gap: 3rem; white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.04em;
  color: var(--linen); opacity: 0.9;
}
.proof-dot { color: var(--brass); opacity: 0.6; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  position: relative; background: var(--fairway); color: var(--linen);
  padding: clamp(90px, 14vw, 180px) 2.5rem; overflow: hidden;
}
.statement::before {
  content: "\201C"; position: absolute; top: -0.1em; left: 5%;
  font-family: var(--serif); font-size: clamp(12rem, 24vw, 26rem); line-height: 1;
  color: var(--brass); opacity: 0.12;
}
.statement-inner { max-width: 980px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.statement-eyebrow { color: rgba(244,239,230,0.5); margin-bottom: 2rem; }
.statement-text {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.9rem); line-height: 1.18; letter-spacing: -0.01em;
}
.statement-accent { color: var(--brass); font-style: italic; font-weight: 400; }
.statement-text span {
  display: inline; opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.statement-text.revealed span:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.statement-text.revealed span:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.18s; }
.statement-text.revealed span:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.36s; }

/* ============================================================
   THE DIFFERENCE — SVG feature panels
   ============================================================ */
.svg-panels { background: var(--surface); padding: var(--section-v) 0 0; }
.svg-panels-head { max-width: var(--max-w); margin: 0 auto 3.5rem; padding: 0 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.svg-panels-head h2 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--fairway); line-height: 1.08; letter-spacing: -0.01em; max-width: 16ch;
}
.svg-panels-head p { font-family: var(--sans); font-size: 0.95rem; color: var(--secondary); max-width: 34ch; line-height: 1.7; }
.svg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
.svg-panel { overflow: hidden; line-height: 0; background: var(--white); }
.svg-panel img { width: 100%; height: auto; display: block; transition: transform 0.8s var(--ease-out); }
.svg-panel:hover img { transform: scale(1.025); }

/* ============================================================
   PHOTO MOMENTS
   ============================================================ */
.photo-split { display: grid; grid-template-columns: 1.15fr 0.85fr; min-height: 640px; background: var(--fairway); }
.photo-split--reverse { grid-template-columns: 0.85fr 1.15fr; }
.photo-split-img { overflow: hidden; position: relative; }
.photo-split-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(17,42,29,0.22)); }
.photo-split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; display: block; transition: transform 1.2s var(--ease-out); }
.photo-split:hover .photo-split-img img { transform: scale(1.04); }
.photo-split-copy {
  background: var(--fairway); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem); color: var(--linen); position: relative;
}
.photo-split-copy .section-label { color: var(--brass); }
.photo-split-copy h2 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.photo-split-copy p { font-family: var(--sans); font-size: 1.05rem; line-height: 1.85; color: rgba(244,239,230,0.72); max-width: 38ch; }

.photo-bleed { height: 600px; overflow: hidden; position: relative; }
.photo-bleed img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; transform: scale(1.12); }

/* Lifestyle gallery (quad) */
.photo-trio { display: grid; grid-template-columns: repeat(4, 1fr); height: 460px; gap: 4px; background: var(--linen); }
.photo-trio-item { overflow: hidden; position: relative; }
.photo-trio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease-out); }
.photo-trio-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,42,29,0.35), transparent 45%); opacity: 0; transition: opacity 0.4s ease; }
.photo-trio-item:hover img { transform: scale(1.07); }
.photo-trio-item:hover::after { opacity: 1; }

/* ============================================================
   FEATURES TRIO
   ============================================================ */
.features-trio { background: var(--linen); padding: var(--section-v) 0; }
.features-trio-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem;
}
.features-trio-item { position: relative; }
.features-trio-num {
  font-family: var(--serif); font-weight: 700; font-size: 3.5rem; line-height: 1;
  color: var(--brass); letter-spacing: -2px; margin-bottom: 1.25rem;
  -webkit-text-stroke: 1px var(--brass); -webkit-text-fill-color: transparent;
}
.features-trio-item .brass-rule { margin-bottom: 1.5rem; }
.features-trio-item h3 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  color: var(--fairway); line-height: 1.18; margin-bottom: 1rem; letter-spacing: -0.01em;
}
.features-trio-item p { font-family: var(--sans); font-size: 0.98rem; line-height: 1.8; color: var(--secondary); }
.features-trio-item:nth-child(2) { transition-delay: 0.12s; }
.features-trio-item:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   STATS
   ============================================================ */
.stats-strip { background: var(--fairway-deep); color: var(--linen); padding: clamp(70px, 9vw, 110px) 0; border-block: 1px solid rgba(196,151,58,0.16); }
.stats-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-item { text-align: center; padding: 0 1.5rem; position: relative; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 12%; height: 76%; width: 1px; background: rgba(244,239,230,0.14); }
.stat-number {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--brass); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.stat-label { font-family: var(--sans); font-size: 0.8rem; line-height: 1.65; color: rgba(244,239,230,0.66); }

/* ============================================================
   CUSTOMIZATION SHOWCASE
   ============================================================ */
.custom-showcase { background: var(--surface); border-top: 1px solid var(--border); }
.custom-showcase-header {
  max-width: var(--max-w); margin: 0 auto; padding: var(--section-v) 2.5rem 4rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem;
}
.custom-showcase-left { flex: 1; }
.custom-showcase-headline {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  color: var(--charcoal); line-height: 1.02; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.custom-showcase-headline em { color: var(--brass); font-style: italic; }
.custom-showcase-body { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.8; color: var(--secondary); max-width: 48ch; }
.custom-showcase-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.custom-price-note { font-family: var(--sans); font-size: 0.8125rem; color: var(--secondary); }
.custom-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; line-height: 0; background: var(--border); border-top: 1px solid var(--border); }
.custom-grid-item { overflow: hidden; background: var(--white); position: relative; aspect-ratio: 4/5; }
.custom-grid-item img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.6s var(--ease-out); }
.custom-grid-item::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--linen); padding: 1.5rem 0.75rem 0.7rem; text-align: center; line-height: 0;
  background: linear-gradient(to top, rgba(17,42,29,0.82), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease;
}
.custom-grid-item:hover img { transform: scale(1.08); }
.custom-grid-item:hover::after { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUY BLOCK
   ============================================================ */
.buy-block { background: var(--fairway); padding: var(--section-v) 0; position: relative; overflow: hidden; }
.buy-block .watermark { color: var(--linen); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.buy-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.buy-image { position: relative; }
.buy-image img { width: 100%; max-width: 500px; margin: 0 auto; display: block; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.35)); }
.buy-eyebrow { color: var(--brass); }
.buy-title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 4.4vw, 3.6rem); color: var(--linen); margin-bottom: 1rem; letter-spacing: -0.02em; }
.buy-tagline { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--brass-light); margin-bottom: 1.75rem; }
.buy-price { font-family: var(--sans); font-weight: 600; font-size: 1.5rem; color: var(--linen); margin-bottom: 2.25rem; }
.buy-price span { font-size: 0.8rem; font-weight: 400; opacity: 0.55; margin-left: 0.5rem; letter-spacing: 0.04em; }
.buy-cta { margin-bottom: 1.25rem; }
.buy-shipping { font-family: var(--sans); font-size: 0.78rem; color: var(--linen); opacity: 0.5; letter-spacing: 0.04em; }
.buy-guarantee { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--brass-light); margin-top: 0.875rem; }

/* ============================================================
   GIFTING
   ============================================================ */
.gifting-section { background: var(--linen); padding: var(--section-v) 0; }
.gifting-header { max-width: var(--max-w); margin: 0 auto 3.5rem; padding: 0 2.5rem; }
.gifting-header h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; color: var(--fairway); margin-top: 0.5rem; letter-spacing: -0.01em; }
.gifting-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.gifting-card { border: 1px solid var(--border); background: var(--surface); overflow: hidden; transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease); }
.gifting-card:hover { border-color: var(--brass); transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(26,61,43,0.4); }
.gifting-card-image { aspect-ratio: 4/3; overflow: hidden; }
.gifting-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gifting-card:hover .gifting-card-image img { transform: scale(1.06); }
.gifting-card-content { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.6rem; }
.gifting-label { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--fairway); }
.gifting-link { font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); transition: color var(--ease); display: inline-flex; gap: 0.4rem; }
.gifting-card:hover .gifting-link { color: var(--brass-dark); }

/* ============================================================
   FOUNDER / RICHMOND
   ============================================================ */
.founder-section { position: relative; padding: clamp(110px, 16vw, 200px) 0; min-height: 640px; display: flex; align-items: center; background: var(--fairway-deep); overflow: hidden; }
.founder-bg { position: absolute; inset: -8%; background-size: cover; background-position: center; will-change: transform; transform: scale(1.12); }
.founder-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(17,42,29,0.95) 38%, rgba(17,42,29,0.55) 100%); }
.founder-content { position: relative; z-index: 1; }
.founder-eyebrow { color: var(--brass); }
.founder-content h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.06; color: var(--linen); margin-bottom: 1.75rem; max-width: 18ch; letter-spacing: -0.02em; }
.founder-quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.4rem); line-height: 1.7; color: rgba(244,239,230,0.88); max-width: 56ch; margin-bottom: 1.5rem; }
.founder-attribution { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 2.5rem; }

/* ============================================================
   THE CLUB
   ============================================================ */
.club-section { background: var(--linen); padding: var(--section-v) 2.5rem; border-top: 1px solid var(--border); }
.club-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.club-label { text-align: center; color: var(--brass); }
.club-headline { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.05; color: var(--fairway); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.club-body { margin: 0 auto 2.5rem; max-width: 44ch; text-align: center; }
.club-form { display: flex; margin-bottom: 1rem; box-shadow: 0 20px 40px -28px rgba(26,61,43,0.5); }
.club-input { flex: 1; height: 56px; padding: 0 1.25rem; font-family: var(--sans); font-size: 0.95rem; color: var(--charcoal); background: var(--white); border: 1px solid var(--border); border-right: none; border-radius: 0; outline: none; transition: border-color var(--ease); -webkit-appearance: none; }
.club-input:focus { border-color: var(--fairway); }
.club-input::placeholder { color: var(--secondary); opacity: 0.6; }
.club-form .btn { height: 56px; }
.club-fine-print { font-family: var(--sans); font-size: 0.72rem; color: var(--secondary); opacity: 0.6; letter-spacing: 0.04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--fairway-deep); padding: clamp(70px, 9vw, 110px) 0 2.5rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(244,239,230,0.12); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { width: min(280px, 70vw); height: auto; display: block; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: rgba(244,239,230,0.55); }
.footer-heading { font-family: var(--sans); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); opacity: 0.9; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-family: var(--sans); font-size: 0.85rem; color: var(--linen); opacity: 0.65; transition: opacity var(--ease), color var(--ease); }
.footer-col a:hover { opacity: 1; color: var(--brass-light); }
.footer-legal { max-width: var(--max-w); margin: 2rem auto 0; padding: 0 2.5rem; }
.footer-legal p { font-family: var(--sans); font-size: 0.68rem; color: var(--linen); opacity: 0.32; letter-spacing: 0.02em; }
.footer-legal-links { margin-bottom: 0.6rem; opacity: 0.6 !important; }
.footer-legal-links a { color: var(--linen); transition: color var(--ease); }
.footer-legal-links a:hover { color: var(--brass-light); }

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal { background: var(--linen); padding: 150px 0 110px; }
.legal-inner { max-width: 760px; margin: 0 auto; padding: 0 2.5rem; }
.legal h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--fairway); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 0.75rem; }
.legal-updated { font-family: var(--sans); font-size: 0.8rem; color: var(--secondary); margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.legal h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--fairway); margin: 2.75rem 0 0.9rem; letter-spacing: -0.01em; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-family: var(--sans); font-size: 0.98rem; line-height: 1.8; color: var(--charcoal); }
.legal p { margin-bottom: 1.1rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--brass-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--fairway); }
.legal strong { font-weight: 600; color: var(--ink); }
.legal-note { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--brass); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.legal-note p { margin-bottom: 0; font-size: 0.9rem; color: var(--secondary); }

/* ============================================================
   THE WORLDS — Course / Coast / Country
   ============================================================ */
.worlds { background: var(--surface); padding: var(--section-v) 0; border-top: 1px solid var(--border); }
.worlds-head { max-width: var(--max-w); margin: 0 auto 3.5rem; padding: 0 2.5rem; text-align: center; }
.worlds-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 4.4vw, 3.6rem); color: var(--fairway); letter-spacing: -0.02em; line-height: 1.04; margin-bottom: 1.25rem; }
.worlds-head p { font-family: var(--sans); font-size: 1.05rem; line-height: 1.8; color: var(--secondary); max-width: 54ch; margin: 0 auto; }
.worlds-grid { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.world { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.world img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease-out); }
.world:hover img { transform: scale(1.06); }
.world::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,42,29,0.88), rgba(17,42,29,0.04) 55%); }
.world-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 2.25rem; }
.world-kicker { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 0.6rem; }
.world-cap h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.4rem, 2vw, 1.75rem); color: var(--linen); line-height: 1.1; }

/* ============================================================
   THE COLLECTION
   ============================================================ */
.collection { background: var(--linen); padding: var(--section-v) 0; }
.collection-head { max-width: 780px; margin: 0 auto 4rem; padding: 0 2.5rem; text-align: center; }
.collection-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 4.4vw, 3.6rem); color: var(--fairway); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.collection-sub { font-family: var(--sans); font-size: 1.05rem; line-height: 1.8; color: var(--secondary); max-width: 56ch; margin: 0 auto; }
.collection-grid { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.collection-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease); }
.collection-card:hover { border-color: var(--brass); transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(26,61,43,0.4); }
.collection-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--white); display: flex; align-items: center; justify-content: center; position: relative; }
.collection-badge {
  position: absolute; top: 0.875rem; left: 0.875rem; z-index: 2;
  background: var(--brass); color: var(--fairway-deep);
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 10px;
}
.collection-card:not(.collection-card--custom) .collection-card-img::after {
  content: "Shop \2192"; position: absolute; left: 50%; bottom: 1rem; z-index: 2;
  transform: translate(-50%, 8px);
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--linen); background: var(--fairway); padding: 8px 14px;
  opacity: 0; transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.collection-card:not(.collection-card--custom):hover .collection-card-img::after { opacity: 1; transform: translate(-50%, 0); }
.collection-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease-out); }
.collection-card:hover .collection-card-img img { transform: scale(1.07); }
.collection-card-info { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; border-top: 1px solid var(--border); }
.collection-name { font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--fairway); line-height: 1.1; }
.collection-occasion { font-family: var(--sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--secondary); margin-top: 0.35rem; }
.collection-price { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--charcoal); white-space: nowrap; }
.collection-card--custom .collection-card-img { background: var(--fairway); flex-direction: column; gap: 0.6rem; }
.collection-custom-plus { font-family: var(--serif); font-weight: 400; font-size: 3.2rem; color: var(--brass); line-height: 0.8; }
.collection-custom-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,239,230,0.85); }

/* ============================================================
   SPOTTED IN THE WILD — social proof gallery
   ============================================================ */
.spotted { background: var(--surface); padding: var(--section-v) 0; border-top: 1px solid var(--border); overflow: hidden; }
.spotted-head {
  max-width: var(--max-w); margin: 0 auto 2.75rem; padding: 0 2.5rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.spotted-head h2 {
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.2rem); color: var(--fairway);
  line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 1rem;
}
.spotted-sub { font-family: var(--sans); font-size: 1rem; line-height: 1.75; color: var(--secondary); max-width: 52ch; }
.spotted-nav { display: flex; gap: 0.5rem; flex-shrink: 0; }
.spotted-arrow {
  width: 48px; height: 48px; border: 1px solid var(--border); background: var(--white);
  color: var(--fairway); font-size: 1rem; cursor: pointer;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}
.spotted-arrow:hover { background: var(--fairway); color: var(--linen); border-color: var(--fairway); }
.spotted-track {
  display: flex; gap: 1rem; padding: 0 2.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.spotted-track::-webkit-scrollbar { display: none; }
.spotted-card {
  position: relative; flex: 0 0 clamp(240px, 24vw, 320px); aspect-ratio: 9/16;
  overflow: hidden; scroll-snap-align: start; background: var(--paper);
}
.spotted-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.spotted-card:hover img { transform: scale(1.05); }
.spotted-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,42,29,0.85), transparent 42%);
}
.spotted-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.4rem; }
.spotted-place { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--linen); margin-bottom: 0.45rem; line-height: 1.25; }
.spotted-mark {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-light);
}
.spotted-mark::after { content: "\2192"; transition: transform 0.3s var(--ease-out); }
.spotted-card:hover .spotted-mark::after { transform: translateX(4px); }

/* Club perks row */
.club-perks { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 0 auto 2.25rem; }
.club-perk { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--secondary); }
.club-perk::before { content: "\2713"; color: var(--brass); font-weight: 700; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroLine { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.35; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.25); } }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1000px) {
  :root { --section-v: 96px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .hero-content { text-align: center; padding: 0.5rem 0 3rem; max-width: 600px; margin: 0 auto; }
  .hero-content .kicker, .hero-actions { justify-content: center; }
  .hero-headline { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; min-height: 0; padding: 2rem 0 1.5rem; }
  .hero-disc { width: min(62vw, 360px); }
  .hero-product { width: min(54vw, 320px); }
  .hero-roundel { display: none; }
  .hero-scroll { display: none; }

  .svg-panels-head { flex-direction: column; align-items: flex-start; }

  .photo-split { grid-template-columns: 1fr; min-height: auto; }
  .photo-split-img { height: 420px; }
  .photo-bleed { height: 440px; }

  .features-trio-inner { grid-template-columns: 1fr; gap: 3rem; }
  .features-trio-item:nth-child(n) { transition-delay: 0s; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 3rem 1px; }
  .stat-item:nth-child(2)::after { display: none; }

  .custom-showcase-header { flex-direction: column; align-items: flex-start; }
  .custom-grid { grid-template-columns: repeat(4, 1fr); }

  .worlds-grid { grid-template-columns: 1fr; }
  .world { aspect-ratio: 16/9; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }

  .spotted-head { flex-direction: column; align-items: flex-start; }
  .spotted-card { flex-basis: 42vw; }

  .buy-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .buy-image img { max-width: 320px; }

  .gifting-cards { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  :root { --section-v: 72px; }
  .container, .hero-inner, .features-trio-inner, .stats-inner, .gifting-cards,
  .gifting-header, .svg-panels-head, .buy-inner, .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; }

  .hero { padding-top: 76px; }
  .svg-grid { grid-template-columns: 1fr; }

  .gifting-section { padding-left: 0; padding-right: 0; }
  .gifting-cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 1rem; scrollbar-width: none; }
  .gifting-cards::-webkit-scrollbar { display: none; }
  .gifting-card { flex: 0 0 80vw; scroll-snap-align: start; }

  .custom-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { gap: 1rem; }
  .collection-name { font-size: 1rem; }

  .photo-trio { grid-template-columns: 1fr 1fr; height: auto; }
  .photo-trio-item { height: 200px; }

  .spotted-head { padding-left: 1.5rem; padding-right: 1.5rem; }
  .spotted-track { padding: 0 1.5rem; }
  .spotted-card { flex-basis: 72vw; }
  .spotted-nav { display: none; }

  .club-form { flex-direction: column; box-shadow: none; }
  .club-input { border-right: 1px solid var(--border); border-bottom: none; }
  .club-form .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}
