/* =========================================================
   KODA — Global Stylesheet
   Fresh dog food, made locally in Las Vegas.
   Design system: cream/sand/parchment + terracotta + forest
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --cream: #f2ebdd;
  --sand: #e4d7c0;
  --parchment: #faf6ee;
  --terracotta: #c45a33;
  --burnt-orange: #a8421f;
  --forest: #243b2e;
  --forest-deep: #1a2c22;
  --charcoal: #1f1b17;
  --muted-brown: #6b5a45;
  --border-soft: #d8cab0;
  --white: #fffdf8;

  --shadow-sm: 0 2px 10px rgba(31, 27, 23, 0.06);
  --shadow-md: 0 14px 40px rgba(31, 27, 23, 0.12);
  --shadow-lg: 0 30px 70px rgba(31, 27, 23, 0.18);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
a, button, .btn, .choice, input, textarea, select { -webkit-tap-highlight-color: rgba(196,90,51,0.15); }

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

body {
  font-family: var(--sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(rgba(107, 90, 69, 0.035) 1px, transparent 1px),
    radial-gradient(rgba(107, 90, 69, 0.025) 1px, transparent 1px);
  background-size: 28px 28px, 56px 56px;
  background-position: 0 0, 14px 14px;
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--cream { background: var(--cream); }
.section--parchment { background: var(--parchment); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest); color: var(--parchment); }
.section--charcoal { background: var(--charcoal); color: var(--parchment); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; color: inherit; }

.display {
  font-size: clamp(2.7rem, 6.5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); letter-spacing: -0.02em; }
.h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--terracotta);
  display: inline-block;
}
.section--forest .eyebrow, .section--charcoal .eyebrow { color: #e2a07e; }
.section--forest .eyebrow::before, .section--charcoal .eyebrow::before { background: #e2a07e; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted-brown); max-width: 56ch; }
.section--forest .lede, .section--charcoal .lede { color: rgba(250, 246, 238, 0.78); }

.label-mono {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-brown);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

.btn--primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--burnt-orange); box-shadow: var(--shadow-md); }

.btn--forest { background: var(--forest); color: var(--parchment); }
.btn--forest:hover { background: var(--forest-deep); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--parchment); }

.section--forest .btn--ghost, .section--charcoal .btn--ghost { color: var(--parchment); border-color: rgba(250,246,238,0.5); }
.section--forest .btn--ghost:hover, .section--charcoal .btn--ghost:hover { background: var(--parchment); color: var(--forest); }

.btn--light { background: var(--parchment); color: var(--charcoal); }
.btn--light:hover { background: var(--white); box-shadow: var(--shadow-md); }

.btn-arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Topographic divider (signature) ---------- */
.topo-divider { display: block; width: 100%; height: clamp(40px, 7vw, 80px); line-height: 0; }
.topo-divider svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242, 235, 221, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
  background: rgba(242, 235, 221, 0.94);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 10px;
}
.brand .paw { color: var(--terracotta); font-size: 1.1rem; }
.brand b { letter-spacing: 0.16em; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; }
.footer-brand .brand-mark { width: 38px; height: 38px; }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--terracotta);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--parchment);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px; text-transform: none;
  font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0; color: var(--charcoal);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--sand); color: var(--charcoal); }
.nav-dropdown-menu a small { display: block; font-family: var(--mono); font-size: 0.65rem; color: var(--muted-brown); letter-spacing: 0.06em; }

/* hamburger */
.hamburger {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 10px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0 0; z-index: 99;
  background: var(--cream);
  padding: 40px var(--gutter);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid var(--border-soft); color: var(--charcoal);
}
.mobile-menu .sub { font-family: var(--mono); font-size: 0.95rem; padding-left: 18px; color: var(--muted-brown); border-bottom: 1px solid var(--border-soft); }
.mobile-menu .btn { margin-top: 28px; font-size: 0.9rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 70px); align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin: 22px 0 24px; }
.hero h1 .accent { color: var(--terracotta); font-style: italic; font-weight: 500; }
.hero .lede { margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius);
  aspect-ratio: 4 / 5; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--forest), var(--forest-deep));
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--logo {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 32%, #fbf7ef, var(--parchment) 70%),
    var(--parchment);
  padding: clamp(28px, 4.5vw, 54px);
  border: 1px solid var(--border-soft);
}
.hero-photo--logo::after {
  content: ""; position: absolute; inset: 14px; border-radius: calc(var(--radius) - 8px);
  border: 1px solid rgba(31,27,23,0.08); pointer-events: none;
}
.hero-photo--logo .hero-logo {
  width: 92%; height: auto; object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(31,27,23,0.16));
  animation: floaty 8s ease-in-out infinite;
}

/* floating trust cards */
.float-card {
  position: absolute; background: var(--parchment);
  border: 1px solid var(--border-soft); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.float-card .ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--terracotta); color: var(--white);
  display: grid; place-items: center; font-size: 1.1rem;
}
.float-card .ico.green { background: var(--forest); }
.float-card .ft-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-brown); }
.float-card .ft-value { font-family: var(--serif); font-weight: 600; font-size: 1rem; line-height: 1.1; }
.float-card.c1 { top: 8%; left: -8%; animation: floaty 6s ease-in-out infinite; }
.float-card.c2 { bottom: 12%; right: -6%; animation: floaty 7s ease-in-out infinite 0.6s; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* placeholder visual fallback (gradient + texture) */
.img-ph {
  width: 100%; height: 100%; position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(196,90,51,0.35), transparent 60%),
    linear-gradient(150deg, var(--forest), var(--forest-deep));
  display: grid; place-items: center;
}
.img-ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,246,238,0.55);
}
.img-ph.warm { background: radial-gradient(circle at 70% 20%, rgba(228,215,192,0.6), transparent 55%), linear-gradient(150deg, var(--terracotta), var(--burnt-orange)); }
.img-ph.warm::after { color: rgba(255,253,248,0.8); }
.img-ph.sand { background: linear-gradient(150deg, var(--sand), var(--cream)); }
.img-ph.sand::after { color: var(--muted-brown); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: var(--forest); color: var(--parchment); }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 30px; padding-block: 24px; }
.trust-item {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; color: rgba(250,246,238,0.92);
}
.trust-item svg { width: 17px; height: 17px; flex-shrink: 0; color: #e2a07e; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin: 18px 0 18px; }

/* =========================================================
   WHY KODA — feature grid
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--parchment); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 34px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--terracotta); }
.feature-card h3 { margin: 18px 0 12px; }
.feature-card p { color: var(--muted-brown); font-size: 0.98rem; }
.feature-icon {
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: 8px;
  background: var(--sand); color: var(--forest);
  display: grid; place-items: center;
}
.feature-icon svg { width: 26px; height: 26px; }

/* =========================================================
   PATHWAY (25 / 50 / Full)
   ========================================================= */
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.path-card {
  position: relative; border-radius: var(--radius); padding: 36px 30px 32px;
  background: var(--parchment); border: 1px solid var(--border-soft);
  overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.path-card.feature-pick { background: var(--forest); color: var(--parchment); border-color: var(--forest); }
.path-card .pct { font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--terracotta); }
.path-card.feature-pick .pct { color: #e2a07e; }
.path-card h3 { margin: 10px 0 12px; }
.path-card p { color: var(--muted-brown); font-size: 0.96rem; flex-grow: 1; }
.path-card.feature-pick p { color: rgba(250,246,238,0.78); }
.path-card .tag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--terracotta); color: var(--white); padding: 5px 11px; border-radius: 100px;
}
.path-card .path-link { margin-top: 22px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracotta); display: inline-flex; gap: 8px; align-items: center; }
.path-card.feature-pick .path-link { color: #e2a07e; }
.path-card .path-link .btn-arrow { transition: transform 0.3s var(--ease); }
.path-card:hover .path-link .btn-arrow { transform: translateX(4px); }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.product-card {
  background: var(--parchment); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-media { aspect-ratio: 16 / 11; position: relative; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }
/* transparent bowl photos: contain on a soft tinted backdrop */
.product-media--bowl { aspect-ratio: 1 / 1; display: grid; place-items: center; }
.product-media--bowl img { object-fit: contain; padding: 8%; width: 100%; height: 100%; }
.product-card:hover .product-media--bowl img { transform: scale(1.06) rotate(-1deg); }
.product-media--og { background: radial-gradient(circle at 50% 42%, #fbf3e6, #f0e3cc); }
.product-media--harvest { background: radial-gradient(circle at 50% 42%, #f6efe0, #e7dcc4); }
.product-media--coastal { background: radial-gradient(circle at 50% 42%, #eef1ec, #dde6dd); }
.product-media--iron { background: radial-gradient(circle at 50% 42%, #f4ebe2, #e7d8c8); }
.split-media--bowl { background: radial-gradient(circle at 50% 40%, #f6efe0, #e7dcc4); border-radius: var(--radius); display: grid; place-items: center; aspect-ratio: 1/1; overflow: hidden; }
.split-media--bowl img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.split-media--box { background: radial-gradient(circle at 50% 38%, #fbf7ef, #f1e9da); border-radius: var(--radius); display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-md); }
.split-media--box img { width: 100%; height: 100%; object-fit: contain; padding: 4%; }
.product-stamp {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(31,27,23,0.78); color: var(--parchment); padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.product-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.product-body .pname { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; line-height: 1.05; }
.product-body .psub { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin: 8px 0 16px; }
.product-body .ing { font-size: 0.92rem; color: var(--muted-brown); margin-bottom: 16px; }
.product-body .best { font-size: 0.9rem; padding: 12px 14px; background: var(--sand); border-radius: 10px; margin-bottom: 18px; }
.product-body .best b { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); display: block; margin-bottom: 4px; }
.product-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 6px; }
.product-footer .price { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.product-footer .price small { display: block; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); }

/* =========================================================
   STARTER BOX feature band
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.split-media--dog { border-radius: 0; overflow: visible; aspect-ratio: auto; box-shadow: none; background: none; border: none; display: grid; place-items: center; }
.split-media--dog img { width: 100%; max-width: 460px; height: auto; object-fit: contain; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin: 18px 0 20px; }
.split-copy p { color: var(--muted-brown); margin-bottom: 18px; }
.section--forest .split-copy p, .section--charcoal .split-copy p { color: rgba(250,246,238,0.8); }
.checklist { margin: 24px 0 30px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
.checklist li svg { width: 20px; height: 20px; color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   HOW IT WORKS — steps
   ========================================================= */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start;
  padding: 34px 0; border-top: 1px solid var(--border-soft);
}
.step:last-child { border-bottom: 1px solid var(--border-soft); }
.step .step-num {
  font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: var(--terracotta); line-height: 1;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted-brown); max-width: 60ch; }
.section--forest .step p { color: rgba(250,246,238,0.78); }
.section--forest .step { border-color: rgba(250,246,238,0.16); }

/* big visual steps variant */
.steps-visual { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.steps-visual--3 { grid-template-columns: repeat(3, 1fr); }
.step-tile {
  background: var(--parchment); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 28px 22px; display: flex; flex-direction: column; gap: 14px; min-height: 240px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-tile .st-num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--terracotta); }
.step-tile .st-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sand); color: var(--forest); display: grid; place-items: center; }
.step-tile .st-ic svg { width: 24px; height: 24px; }
.step-tile h4 { font-size: 1.1rem; margin-top: auto; color: var(--charcoal); }
.step-tile p { font-size: 0.88rem; color: var(--muted-brown); }

/* =========================================================
   INGREDIENTS cards
   ========================================================= */
.ing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ing-card {
  background: var(--parchment); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 26px 22px; text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ing-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--sand); color: var(--forest); display: grid; place-items: center; margin-bottom: 16px; }
.ing-card .ic svg { width: 26px; height: 26px; }
.ing-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--charcoal); }
.ing-card p { font-size: 0.88rem; color: var(--muted-brown); }

/* =========================================================
   LOCAL LAS VEGAS band
   ========================================================= */
.local-band { position: relative; overflow: hidden; }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.local-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
.local-stat { border-left: 2px solid var(--terracotta); padding-left: 16px; }
.local-stat .v { font-family: var(--serif); font-weight: 700; font-size: 2rem; line-height: 1; }
.local-stat .k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,238,0.7); margin-top: 6px; }
.map-frame {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(250,246,238,0.16);
}
.map-frame .vegas-map { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.map-frame--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-frame .pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--terracotta);
  box-shadow: 0 0 0 6px rgba(196,90,51,0.25); animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 6px rgba(196,90,51,0.25); } 50% { box-shadow: 0 0 0 12px rgba(196,90,51,0.08); } }

/* =========================================================
   FOUNDING MEMBERS
   ========================================================= */
.founding {
  border-radius: var(--radius); padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(140deg, var(--terracotta), var(--burnt-orange));
  color: var(--white); position: relative; overflow: hidden;
}
.founding::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px; opacity: 0.5;
}
.founding-inner { position: relative; max-width: 640px; }
.founding .eyebrow { color: rgba(255,255,255,0.85); }
.founding .eyebrow::before { background: rgba(255,255,255,0.85); }
.founding h2 { margin: 18px 0 18px; }
.founding p { color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.founding .perks { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.founding .perk { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.16); padding: 8px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.25); }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--serif); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--charcoal);
}
.faq-q .plus { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--terracotta); transition: transform 0.4s var(--ease); }
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; color: var(--muted-brown); max-width: 70ch; }
.faq-foot { text-align: center; margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border-soft); }
.faq-foot h3 { margin-bottom: 12px; }
.faq-foot p { color: var(--muted-brown); margin-bottom: 26px; max-width: 46ch; margin-inline: auto; }
.faq-item.open .faq-q { color: var(--terracotta); }

/* =========================================================
   PRICING tabs + tables
   ========================================================= */
.pricing-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; justify-content: center; }
.tab-btn {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 100px; border: 1.5px solid var(--border-soft);
  color: var(--muted-brown); background: var(--parchment);
  transition: all 0.3s var(--ease);
}
.tab-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.tab-btn.active { background: var(--forest); color: var(--parchment); border-color: var(--forest); }

.price-panel { display: none; }
.price-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }

.price-table {
  width: 100%; border-collapse: collapse; background: var(--parchment);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
}
.price-table th, .price-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.price-table thead th {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--forest); color: var(--parchment); font-weight: 500;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--sand); }
.price-table .tier { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; }
.price-table .tier b { display: block; font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0; text-transform: none; }
.price-table .amt { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.price-note { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted-brown); text-align: center; margin-top: 20px; }

/* pricing cards (mobile-friendly stacked) */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card {
  background: var(--parchment); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px 22px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card .pc-name { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; }
.price-card .pc-sub { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); margin: 6px 0 18px; }
.price-card .pc-from { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); }
.price-card .pc-amt { font-family: var(--serif); font-weight: 700; font-size: 2rem; line-height: 1; margin-top: 4px; }

/* =========================================================
   FORMS
   ========================================================= */
.lead-form { background: var(--parchment); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); }
.field label .req { color: var(--terracotta); }
.field label .opt { color: var(--muted-brown); font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.8; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--charcoal);
  padding: 14px 16px; border: 1.5px solid var(--border-soft); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(196,90,51,0.14);
}
.field input.invalid, .field select.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
.field .err { font-family: var(--mono); font-size: 0.66rem; color: #c0392b; display: none; }
.field.show-err .err { display: block; }
.form-note { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--muted-brown); margin-top: 6px; }
.form-success {
  display: none; background: var(--forest); color: var(--parchment); border-radius: var(--radius);
  padding: 28px 30px; margin-top: 20px;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success h3 { color: var(--parchment); margin-bottom: 8px; }

/* radio/check pills */
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-group label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 16px; border: 1.5px solid var(--border-soft); border-radius: 100px;
  cursor: pointer; transition: all 0.25s var(--ease); color: var(--muted-brown); background: var(--white);
}
.pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.pill-group input:checked + label,
.pill-group label.checked { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }

/* contact page layout */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-aside h2 { margin: 16px 0 18px; }
.contact-aside > p { color: var(--muted-brown); margin-bottom: 24px; }
.aside-card { margin-top: 32px; padding: 24px 26px; border-radius: var(--radius); background: var(--sand); border: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 6px; }
.aside-card .ac-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-brown); }
.aside-card .ac-link { font-family: var(--serif); font-size: 1.25rem; color: var(--forest); font-weight: 600; }
.aside-card .ac-meta { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--muted-brown); margin-top: 4px; }

/* =========================================================
   ORDER PAGE
   ========================================================= */
.topper-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.topper-card {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.topper-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tc-head { padding: 28px 26px 26px; color: var(--parchment); }
.tc-head--og { background: linear-gradient(155deg, #1a2c22, #0f1c15); }
.tc-head--harvest { background: linear-gradient(155deg, #243b2e, #16261d); }
.tc-head--coastal { background: linear-gradient(155deg, #15263a, #0e1a28); }
.tc-tag { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: #e2a07e; display: inline-flex; align-items: center; gap: 6px; }
.tc-tag--green { color: #8fcf9f; }
.tc-tag--blue { color: #7fb6e0; }
.tc-star { color: #f0c33c; }
.tc-name { font-family: var(--serif); font-weight: 700; font-size: 1.9rem; line-height: 1; margin: 14px 0 8px; color: var(--white); }
.tc-sub { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,238,0.6); }
.tc-ing { font-size: 0.9rem; color: rgba(250,246,238,0.78); margin-top: 16px; line-height: 1.5; }
.tc-sizes { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.tc-sizes-label { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-brown); margin-bottom: 4px; }
.size-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border: 1px solid var(--border-soft); border-radius: 12px;
  background: var(--parchment); cursor: pointer; text-align: left; width: 100%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease);
}
.size-row:hover { border-color: var(--terracotta); transform: translateX(3px); }
.size-row.selected { border-color: var(--terracotta); background: #fbeee6; box-shadow: 0 0 0 2px rgba(196,90,51,0.18); }
.sr-name { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--charcoal); display: flex; flex-direction: column; }
.sr-name small { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.04em; color: var(--muted-brown); font-weight: 400; margin-top: 2px; }
.sr-amt { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--terracotta); }
.topper-foot { text-align: center; margin-top: 32px; font-size: 0.95rem; color: var(--muted-brown); }
.topper-foot a { color: var(--terracotta); font-weight: 600; }

.order-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.of-title { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; margin-bottom: 8px; }
.of-note { color: var(--muted-brown); font-size: 0.95rem; margin-bottom: 26px; }
.order-info { display: flex; flex-direction: column; gap: 16px; }
.oi-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: 16px; padding: 22px 24px; box-shadow: var(--shadow-sm); }
.oi-card h4 { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.oi-card p { font-size: 0.92rem; color: var(--muted-brown); line-height: 1.55; }
.oi-card p b { color: var(--charcoal); }
.oi-ico { font-size: 1.05rem; }
.oi-card--dark { background: var(--forest-deep); border-color: var(--forest-deep); }
.oi-card--dark h4 { color: var(--parchment); }
.oi-card--dark p { color: rgba(250,246,238,0.8); }
.oi-card--dark p b { color: #e2a07e; }

/* =========================================================
   QUIZ PAGE
   ========================================================= */
.quiz { max-width: 760px; margin-inline: auto; }
.quiz-progress { margin-bottom: 36px; }
.quiz-progress-bar { height: 6px; background: var(--sand); border-radius: 100px; overflow: hidden; }
.quiz-progress-bar span { display: block; height: 100%; width: 20%; background: var(--terracotta); border-radius: 100px; transition: width 0.45s var(--ease); }
.quiz-step-count { display: block; margin-top: 10px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-brown); }
.quiz-step { display: none; animation: fadeUp 0.5s var(--ease); }
.quiz-step.active { display: block; }
.quiz-q { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.quiz-help { color: var(--muted-brown); margin-bottom: 28px; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quiz-opt {
  display: flex; flex-direction: column; gap: 4px; text-align: left;
  padding: 20px 22px; border: 1px solid var(--border-soft); border-radius: 16px;
  background: var(--white); cursor: pointer; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--charcoal);
  transition: border-color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.quiz-opt small { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); font-weight: 400; }
.quiz-opt:hover { border-color: var(--terracotta); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quiz-opt.selected { border-color: var(--terracotta); box-shadow: 0 0 0 2px rgba(196,90,51,0.2); background: #fbeee6; }

.quiz-result-card { background: var(--forest); color: var(--parchment); border-radius: var(--radius); padding: clamp(32px, 5vw, 52px); text-align: center; box-shadow: var(--shadow-lg); }
.quiz-result-card .eyebrow { justify-content: center; display: flex; color: #e2a07e; }
.quiz-result-card .eyebrow::before { background: #e2a07e; }
.quiz-result-name { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin: 16px 0 10px; }
.quiz-result-sub { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #e2a07e; }
.quiz-result-why { color: rgba(250,246,238,0.85); max-width: 52ch; margin: 22px auto 0; line-height: 1.6; }
.quiz-result-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; border-top: 1px solid rgba(250,246,238,0.18); padding-top: 28px; }
.qrm-label { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,238,0.6); margin-bottom: 6px; }
.qrm-value { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--white); }
.quiz-lead { background: var(--parchment); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); margin-top: 24px; position: relative; }
.ql-title { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; margin-bottom: 8px; }
.ql-note { color: var(--muted-brown); font-size: 0.95rem; margin-bottom: 24px; max-width: 56ch; }
.quiz-result-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; align-items: center; }
#quizRestart { cursor: pointer; }

/* =========================================================
   ROADMAP PAGE
   ========================================================= */
.phase-head { display: flex; align-items: center; gap: 22px; margin-bottom: 40px; }
.phase-num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.6rem;
}
.phase-num--dark { background: var(--forest-deep); }
.phase-eyebrow { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); display: block; margin-bottom: 4px; }

.rm-grid { display: grid; gap: 26px; }
.rm-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rm-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rm-card {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.rm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rm-ico { display: block; font-size: 1.6rem; padding: 26px 28px 0; }
.rm-card .rm-tag { display: inline-flex; align-items: center; gap: 6px; margin: 14px 28px 0; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: #e2a07e; }
.rm-tag--green { color: #8fcf9f; }
.rm-tag--blue { color: #7fb6e0; }
.rm-tag--orange { color: #e9956a; }
.rm-tag--gold { color: #e6b84f; }
.rm-tag--plum { color: #c79bd6; }
.rm-name { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; margin: 10px 28px 0; color: var(--white); line-height: 1.1; }
.rm-line { margin: 10px 28px 0 28px; padding-bottom: 24px; font-size: 0.92rem; color: rgba(250,246,238,0.78); line-height: 1.5; }
.rm-body { background: var(--white); padding: 22px 28px 26px; }
.rm-body p { font-size: 0.92rem; color: var(--muted-brown); line-height: 1.55; }
.rm-pill { display: inline-block; margin-top: 16px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: var(--sand); color: var(--muted-brown); }
.rm-pill--live { background: #fbeee6; color: var(--burnt-orange); }
.rm-pill--soft { background: transparent; color: var(--muted-brown); padding-left: 0; }
/* colored card tops */
.rm-card--dark .rm-ico, .rm-card--dark .rm-tag, .rm-card--dark .rm-name, .rm-card--dark .rm-line { }
.rm-card--dark { background: linear-gradient(160deg, #1a2c22, #0f1c15); }
.rm-card--forest { background: linear-gradient(160deg, #243b2e, #16261d); }
.rm-card--coastal { background: linear-gradient(160deg, #15263a, #0e1a28); }
.rm-card--beef { background: linear-gradient(160deg, #3a1c1c, #25110f); }
.rm-card--pie { background: linear-gradient(160deg, #3a2c14, #241a0c); }
.rm-card--plum { background: linear-gradient(160deg, #2e1d3a, #1c1024); }
.rm-card--ghost { background: var(--white); border-style: dashed; }
.rm-card--ghost .rm-name { color: var(--charcoal); }
.rm-card--ghost .rm-line { color: var(--muted-brown); }
.rm-card--ghost .rm-tag { color: var(--muted-brown); }
.rm-card--ghost .rm-body { padding-top: 0; }

/* Black Bone */
.blackbone { background: radial-gradient(circle at 50% 0%, #181410, #0a0807 70%); color: #d8cfc4; position: relative; overflow: hidden; }
.blackbone::before { content: "BLACK BONE"; position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%); font-family: var(--serif); font-weight: 700; font-size: clamp(80px, 16vw, 240px); color: rgba(255,255,255,0.025); white-space: nowrap; pointer-events: none; letter-spacing: 0.02em; }
.bb-head { position: relative; max-width: 760px; }
.bb-eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #c9a35c; display: inline-flex; align-items: center; gap: 14px; }
.bb-eyebrow::before, .bb-eyebrow::after { content: ""; width: 30px; height: 1px; background: #c9a35c; }
.bb-title { font-family: var(--serif); font-weight: 700; font-size: clamp(3.4rem, 9vw, 6rem); line-height: 0.92; color: #fff; margin: 24px 0 0; letter-spacing: -0.01em; }
.bb-title sup { font-size: 0.32em; color: #c9a35c; vertical-align: super; }
.bb-by { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(216,207,196,0.55); display: block; margin-top: 18px; }
.bb-lede { font-size: 1.15rem; line-height: 1.65; color: rgba(216,207,196,0.82); margin-top: 30px; }
.bb-lede b { color: #d4af5f; font-weight: 600; }
.bb-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,163,92,0.18); border: 1px solid rgba(201,163,92,0.18); border-radius: var(--radius); overflow: hidden; margin-top: 56px; }
.bb-card { background: #0c0a08; padding: 36px 32px; }
.bb-ico { font-size: 1.8rem; display: block; margin-bottom: 22px; }
.bb-name { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; color: #fff; }
.bb-origin { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: #c9a35c; display: block; margin: 8px 0 18px; }
.bb-card p { font-size: 0.92rem; line-height: 1.6; color: rgba(216,207,196,0.7); }
.bb-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,163,92,0.14); border: 1px solid rgba(201,163,92,0.14); border-radius: var(--radius); overflow: hidden; margin-top: 28px; }
.bb-stat { background: #0c0a08; padding: 32px 20px; text-align: center; }
.bb-num { font-family: var(--serif); font-weight: 700; font-size: 2.6rem; color: #d4af5f; display: block; }
.bb-stat-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(216,207,196,0.55); display: block; margin-top: 8px; }

/* Expansion */
.expansion-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.expansion-list { display: flex; flex-direction: column; }
.exp-row { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-soft); }
.exp-row:last-child { border-bottom: none; }
.exp-row--active .exp-info h3 { color: var(--burnt-orange); }
.exp-dot { flex-shrink: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--charcoal); }
.exp-dot--live { background: var(--terracotta); box-shadow: 0 0 0 5px rgba(196,90,51,0.18); animation: pulse 2.4s ease-in-out infinite; }
.exp-dot--faint { background: var(--border-soft); }
.exp-info { flex: 1; }
.exp-info h3 { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.exp-info p { font-size: 0.86rem; color: var(--muted-brown); margin-top: 3px; }
.exp-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: var(--sand); color: var(--muted-brown); white-space: nowrap; }
.exp-tag--live { background: #fbeee6; color: var(--burnt-orange); }
.exp-tag--faint { opacity: 0.6; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(196,90,51,0.18); } 50% { box-shadow: 0 0 0 9px rgba(196,90,51,0.06); } }

.longgame { background: var(--forest-deep); color: var(--parchment); border-radius: var(--radius); padding: clamp(32px, 4vw, 48px); box-shadow: var(--shadow-lg); }
.lg-title { font-family: var(--serif); font-weight: 700; font-size: 2rem; color: #fff; margin-bottom: 20px; }
.longgame p { color: rgba(250,246,238,0.82); line-height: 1.65; margin-bottom: 18px; }
.lg-hi { color: #e2a07e; font-weight: 600; }

/* =========================================================
   BUILD MY DOG'S BOX
   ========================================================= */
.builder-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.build-step { margin-bottom: 40px; }
.build-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.build-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--forest); color: var(--parchment); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.05rem; }
.build-q { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-grid--3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid--sizes { grid-template-columns: repeat(4, 1fr); }
.choice {
  display: flex; flex-direction: column; gap: 3px; text-align: left;
  padding: 18px 20px; border: 1px solid var(--border-soft); border-radius: 14px;
  background: var(--white); cursor: pointer; transition: border-color 0.25s var(--ease), transform 0.18s var(--ease), box-shadow 0.25s var(--ease);
}
.choice:hover { border-color: var(--terracotta); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.choice.selected { border-color: var(--terracotta); background: #fbeee6; box-shadow: 0 0 0 2px rgba(196,90,51,0.2); }
.choice-emoji { font-size: 1.4rem; }
.choice-pct { font-family: var(--serif); font-weight: 700; font-size: 1.7rem; color: var(--terracotta); line-height: 1; }
.choice-name { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; color: var(--charcoal); }
.choice-sub { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-brown); }
.choice--size { align-items: flex-start; padding: 14px 16px; }
.build-submit { width: 100%; margin-top: 8px; }

/* live summary */
.build-summary { position: sticky; top: 96px; }
.bs-card { background: var(--forest); color: var(--parchment); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-lg); }
.bs-eyebrow { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #e2a07e; display: block; margin-bottom: 18px; }
.bs-bowl { width: 130px; height: 130px; margin: 0 auto 18px; border-radius: 50%; background: radial-gradient(circle at 50% 42%, rgba(250,246,238,0.16), rgba(250,246,238,0.05)); display: grid; place-items: center; }
.bs-bowl img { width: 118px; height: 118px; object-fit: contain; }
.bs-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(250,246,238,0.14); }
.bs-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,238,0.6); }
.bs-value { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--white); text-align: right; }
.bs-price { margin-top: 22px; text-align: center; }
.bs-price-label { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,238,0.6); display: block; }
.bs-price-value { font-family: var(--serif); font-weight: 700; font-size: 2.6rem; color: var(--white); display: block; margin: 6px 0 4px; line-height: 1; }
.bs-price-value.is-placeholder { font-size: 1.2rem; color: rgba(250,246,238,0.6); }
.bs-price-note { font-size: 0.78rem; color: rgba(250,246,238,0.55); }
.bs-perks { margin-top: 26px; }
.bs-perks li { color: rgba(250,246,238,0.85); font-size: 0.9rem; }
.bs-perks li svg { color: #e2a07e; }
.bs-help { text-align: center; margin-top: 18px; font-size: 0.9rem; color: var(--muted-brown); }
.bs-help a { color: var(--terracotta); font-weight: 600; }

/* =========================================================
   FOUNDING MEMBERS PAGE
   ========================================================= */
.founding-hero .spots { max-width: 540px; margin: 32px 0 28px; }
.spots-bar { height: 8px; border-radius: 100px; background: rgba(250,246,238,0.16); overflow: hidden; }
.spots-fill { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--terracotta), #e7a36a); width: 72%; transition: width 1s var(--ease); }
.spots-label { margin-top: 12px; font-size: 0.86rem; color: rgba(250,246,238,0.75); }
.spots-label b { color: #fff; }

.perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.perk-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.perk-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.perk-ico { font-size: 1.9rem; display: block; margin-bottom: 16px; }
.perk-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin-bottom: 10px; }
.perk-card p { color: var(--muted-brown); font-size: 0.95rem; line-height: 1.6; }

.founding-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.founding-table .fp-pub { color: var(--muted-brown); text-decoration: line-through; text-decoration-color: rgba(107,90,69,0.5); }
.founding-table .fp-you { color: var(--burnt-orange); font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.founding-table thead th.fp-you { font-family: var(--mono); font-size: 0.66rem; color: var(--burnt-orange); font-weight: 700; }
.founding-table td small { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.04em; color: var(--muted-brown); margin-top: 2px; }
.founding-fineprint { margin-top: 22px; font-size: 0.85rem; color: var(--muted-brown); max-width: 70ch; }
.founding-panel { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.founding-table { min-width: 340px; }

.claim-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.claim-copy h2 { margin: 16px 0 18px; }
.claim-copy > p { color: rgba(250,246,238,0.82); margin-bottom: 22px; line-height: 1.6; }
.claim-copy .checklist li { color: rgba(250,246,238,0.9); }
.claim-copy .checklist li svg { color: #e2a07e; }
.lead-form--light { background: rgba(250,246,238,0.06); border-color: rgba(250,246,238,0.16); }
.lead-form--light label { color: rgba(250,246,238,0.85); }
.lead-form--light input, .lead-form--light textarea, .lead-form--light select { background: rgba(250,246,238,0.95); }
.lead-form--light .pill-group label { background: rgba(250,246,238,0.1); color: var(--parchment); border-color: rgba(250,246,238,0.2); }
.lead-form--light .pill-group input:checked + label { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }

/* local SEO content block */
.local-seo h2 { max-width: 20ch; }
.local-seo p { color: var(--muted-brown); line-height: 1.7; margin-bottom: 16px; max-width: 68ch; }
.local-seo p strong { color: var(--charcoal); font-weight: 600; }
.local-seo a { color: var(--terracotta); font-weight: 600; }
.local-seo h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 18px; max-width: 16ch; margin-inline: auto; }
.cta-band .lede { margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--forest-deep); color: var(--parchment); padding-block: clamp(56px, 7vw, 88px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand { color: var(--parchment); }
.footer-brand p { color: rgba(250,246,238,0.6); font-size: 0.92rem; margin-top: 16px; max-width: 32ch; }
.footer-col h5 { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #e2a07e; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(250,246,238,0.7); font-size: 0.94rem; padding: 7px 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.14); padding-block: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.footer-bottom p, .footer-bottom a { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(250,246,238,0.55); }
.footer-disclaimer { font-family: var(--mono); font-size: 0.64rem; line-height: 1.7; color: rgba(250,246,238,0.4); max-width: 90ch; padding-bottom: 30px; }

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(250,246,238,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-soft);
  padding: 12px var(--gutter); display: none; gap: 12px; align-items: center;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%); transition: transform 0.4s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .btn { flex: 1; padding: 14px; }
.mobile-cta .mc-mini { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-brown); }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero { padding-block: clamp(56px, 8vw, 110px) clamp(40px, 5vw, 64px); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); max-width: 16ch; }
.page-hero p { margin-top: 22px; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.container.narrow { max-width: 820px; }
.media-stamp {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(31,27,23,0.78); color: var(--parchment); padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(4px); z-index: 2;
}
.split-media { position: relative; }
.mission { text-align: center; }
.mission .eyebrow { justify-content: center; display: flex; }
.mission h2 { margin: 18px auto 22px; max-width: 22ch; }
.mission p { color: var(--muted-brown); max-width: 60ch; margin-inline: auto; font-size: 1.05rem; }
.mission p + p { margin-top: 16px; }
.mission-close { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--charcoal); margin-top: 24px; }
.future-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.future-step {
  border: 1px solid rgba(250,246,238,0.18); border-radius: var(--radius);
  padding: 30px 28px; background: rgba(250,246,238,0.04);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.future-step:hover { transform: translateY(-6px); border-color: rgba(226,160,126,0.5); }
.future-ix { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #e2a07e; }
.future-step h3 { margin: 14px 0 12px; color: var(--parchment); }
.future-step p { color: rgba(250,246,238,0.8); font-size: 0.96rem; }
.founding-inline {
  margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; padding: 28px 32px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--terracotta), var(--burnt-orange));
}
.founding-inline p { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1040px) {
  .feature-grid, .pathway-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-visual, .steps-visual--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .float-card.c1 { left: 2%; }
  .float-card.c2 { right: 2%; }
  .split, .local-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .builder-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .claim-grid { grid-template-columns: 1fr; }
  .build-summary { position: static; }
  .choice-grid--sizes { grid-template-columns: repeat(3, 1fr); }
  .split.reverse .split-media { order: 0; }
  .future-row { grid-template-columns: 1fr; }
  .topper-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .order-grid { grid-template-columns: 1fr; }
  .rm-grid--2, .rm-grid--3 { grid-template-columns: 1fr; }
  .bb-grid { grid-template-columns: 1fr; }
  .bb-stats { grid-template-columns: repeat(2, 1fr); }
  .expansion-grid { grid-template-columns: 1fr; }
  .founding-inline { flex-direction: column; align-items: flex-start; text-align: left; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  .product-grid, .product-grid.cols-4, .price-cards, .ing-grid, .steps-visual, .steps-visual--3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .quiz-options { grid-template-columns: 1fr; }
  .choice-grid, .choice-grid--3, .choice-grid--sizes { grid-template-columns: 1fr 1fr; }
  .quiz-result-meta { grid-template-columns: 1fr; gap: 18px; }
  .local-stats { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 18px; }
  .step .step-num { font-size: 1.8rem; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: 0.85rem; }
  .founding-table thead th.fp-you { font-size: 0.58rem; }
  .founding-table .fp-you { font-size: 0.92rem; }
  .founding-table td small { font-size: 0.56rem; }
  .float-card { padding: 10px 13px; }
  .float-card .ft-value { font-size: 0.85rem; }
  .lead-form { padding: 22px 18px; }
  .section { overflow-x: hidden; }
  .footer-grid { gap: 24px 18px; }
}

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions, .form-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .choice-grid, .choice-grid--3, .choice-grid--sizes { grid-template-columns: 1fr; }
  .display, h1.display { font-size: clamp(2rem, 9vw, 2.6rem); }
}

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