:root {
  --cream: #f6f0e3;
  --cream-deep: #efe5d0;
  --paper: #fffdf6;
  --pine: #2f4a3c;
  --pine-deep: #22382d;
  --amber: #c8903f;
  --rose: #c2695b;
  --rose-soft: #e7c3bb;
  --ink: #3a342c;
  --ink-soft: #6b6254;
  --line: #d8cdb6;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(200, 144, 63, 0.06), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(46, 74, 60, 0.05), transparent 45%);
}

img { max-width: 100%; display: block; }

a { color: var(--pine); }

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.brand {
  text-align: center;
  padding: 1.4rem 1rem 0.6rem;
}

.brand .mark {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--pine-deep);
  letter-spacing: 0.04em;
}

.brand .tag {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.2rem;
}

.site-nav {
  border-top: 1px solid var(--line);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem;
}

.site-nav a {
  display: block;
  padding: 0.7rem 0.95rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:hover { color: var(--pine); }

.site-nav a.active {
  color: var(--pine-deep);
  border-bottom-color: var(--amber);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 5.5rem 1rem 4.5rem;
  background:
    linear-gradient(rgba(47, 74, 60, 0.82), rgba(34, 56, 45, 0.88)),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  color: var(--cream);
}

.hero .container { max-width: 760px; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero h1 .accent { color: var(--amber); font-style: italic; }

.hero p {
  font-size: 1.1rem;
  color: rgba(246, 240, 227, 0.88);
  margin: 1.2rem auto 2rem;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--amber);
  color: var(--paper);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }

.btn-ghost {
  border: 1px solid rgba(246,240,227,0.5);
  color: var(--cream);
  margin-left: 0.75rem;
}

.btn-ghost:hover { background: rgba(246,240,227,0.12); }

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }

.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-head .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--pine-deep);
  margin-top: 0.3rem;
}

/* ---------- Product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
  padding: 2rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.2s;
  display: block;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(42, 36, 20, 0.12); }

.card .swatch {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  border: 1px solid rgba(0,0,0,0.08);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pine-deep);
}

.card .flavor {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0.2rem 0 0.6rem;
}

.card p { font-size: 0.88rem; color: var(--ink-soft); }

.card .flagship { color: var(--rose); font-weight: 600; }

/* swatch colors */
.sw-pine { background: radial-gradient(circle at 30% 30%, #5a7a5c, #2f4a3c); }
.sw-cherry { background: radial-gradient(circle at 30% 30%, #d98b7d, #a4403a); }
.sw-lemon { background: radial-gradient(circle at 30% 30%, #ecd28a, #c8903f); }
.sw-mint { background: radial-gradient(circle at 30% 30%, #9fc0b4, #4a7a74); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 3rem 1rem;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--pine-deep);
  margin-bottom: 1.2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-deep);
  color: rgba(246,240,227,0.82);
  text-align: center;
  padding: 2.4rem 1rem;
  font-size: 0.85rem;
}

.site-footer .foot-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.site-footer a { color: var(--amber); text-decoration: none; }

.site-footer .foot-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(246,240,227,0.6);
  font-style: italic;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  text-align: center;
  padding: 3.5rem 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--pine-deep);
  margin-top: 0.3rem;
}

.page-hero .lede {
  max-width: 640px;
  margin: 0.9rem auto 0;
  color: var(--ink-soft);
}

/* ---------- Story / timeline ---------- */
.story-body { max-width: 720px; margin: 0 auto; }

.story-body p { margin-bottom: 1.2rem; }

.timeline {
  list-style: none;
  margin: 2.5rem 0;
  position: relative;
  border-left: 2px solid var(--line);
  padding-left: 1.6rem;
}

.timeline li { position: relative; margin-bottom: 1.8rem; }

.timeline li::before {
  content: "";
  position: absolute;
  left: -2.05rem;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--amber);
}

.timeline .yr {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--amber);
  display: block;
}

.timeline .desc { color: var(--ink-soft); }

/* ---------- Locator ---------- */
.locator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.locator-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem;
}

.locator-card .store {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.locator-card .store .sigil {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--paper);
  background: var(--pine);
}

.locator-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--pine-deep); }

.badge {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cream-deep);
  color: var(--pirne, var(--pine));
  border: 1px solid var(--line);
  padding: 0.18rem 0.5rem;
}

.locator-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0.5rem 0; }

.locator-card .near {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--rose);
  min-height: 1.2em;
}

.locator-card .carry-note {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-size: 0.85rem;
}

.copy-note {
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ---------- PDP ---------- */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.pdp-art {
  position: sticky;
  top: 130px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  text-align: center;
}

.pdp-art .big-swatch {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: inset 0 -8px 20px rgba(0,0,0,0.15);
}

.pdp-art .flavor-tag {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.pdp-info h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--pine-deep);
}

.pdp-info .sub {
  color: var(--amber);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0.2rem 0 1rem;
}

.pdp-info p.lede { color: var(--ink); margin-bottom: 1.2rem; }

.softish {
  background: var(--cream-deep);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.2rem;
  font-style: italic;
  color: var(--pine-deep);
  margin: 1.4rem 0;
}

h4.block {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--pine-deep);
  margin: 1.6rem 0 0.6rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.4rem;
}

ul.plain { list-style: none; }
ul.plain li { padding: 0.3rem 0; border-bottom: 1px dotted var(--line); }
ul.plain li::before { content: "•"; color: var(--amber); margin-right: 0.6rem; }

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted var(--line);
  padding: 0.55rem 0;
  font-size: 0.92rem;
}

.spec-row .k { color: var(--ink-soft); }
.spec-row .v { font-weight: 600; color: var(--pine-deep); }

.pdp-cta { margin-top: 1.8rem; }

/* ---------- Claim markers ---------- */
[data-claim] {
  position: relative;
  border-bottom: 2px solid var(--rose);
  cursor: help;
  background: linear-gradient(transparent 60%, var(--rose-soft) 60%);
  padding: 0 0.1em;
}

[data-slot] {
  position: relative;
  border-bottom: 1px dashed var(--amber);
  cursor: help;
  background: rgba(200, 144, 63, 0.12);
  padding: 0 0.12em;
}

[data-claim]::after,
[data-slot]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: 130%;
  transform: translateX(-50%) translateY(4px);
  background: var(--pine-deep);
  color: var(--cream);
  font-size: 0.72rem;
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 30;
}

[data-claim]:hover::after,
[data-slot]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.legend {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
