/* ──────────────────────────────────────────────────────────────────
   Refill Not Landfill — V1: Clean Editorial / Premium Natural
   Sage, cream, deep forest. Sophisticated. Calm confidence.
   ────────────────────────────────────────────────────────────────── */

:root {
  --ink: #1a2420;
  --forest: #2d4035;
  --forest-deep: #1f2d25;
  --sage: #8fa58e;
  --sage-soft: #c1d0bf;
  --sand: #f6f3eb;
  --sand-soft: #ebe6d7;
  --cream: #fbfaf5;
  --amber: #c89858;
  --amber-soft: #e8c892;
  --slate: #596864;
  --line: #ddd6c4;
  --white: #ffffff;

  --max-width: 1180px;
  --pad-section: clamp(4rem, 8vw, 7rem);
  --pad-container: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 8px;
  --radius-lg: 16px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--forest); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--amber); }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--pad-container);
  padding-right: var(--pad-container);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 12px 35px rgba(45, 64, 53, 0.25);
}
.btn-primary:hover {
  background: var(--forest-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(45, 64, 53, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-large { padding: 1.1rem 2.1rem; font-size: 1.02rem; }

/* ── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem var(--pad-container);
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; color: var(--forest); }
.brand:hover { color: var(--forest); }
.brand-mark {
  width: 40px;
  height: 48px;
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--forest); }
.brand-tag { font-size: 0.7rem; color: var(--sage); text-transform: uppercase; letter-spacing: 0.14em; }
.nav-right { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-link:hover { color: var(--forest); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at top right, rgba(143, 165, 142, 0.25), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(200, 152, 88, 0.12), transparent 55%),
    var(--cream);
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 18%; right: -12%;
  width: 40rem; height: 40rem;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 65%);
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--pad-container) 5rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-title .accent {
  color: var(--forest);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 0.18em;
  background: var(--amber-soft);
  z-index: -1;
  border-radius: 4px;
}
.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 58ch;
  margin: 0 0 2.5rem;
}
.hero-lede strong { color: var(--ink); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Section scaffolding ───────────────────────────────────────── */
.section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 22ch;
}
.section-lede {
  font-size: 1.08rem;
  color: var(--slate);
  max-width: 60ch;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

/* ── Impact block ──────────────────────────────────────────────── */
.section-impact {
  background: var(--forest);
  color: var(--cream);
}
.impact-card {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.impact-number {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 12vw, 9rem);
  font-weight: 500;
  line-height: 1;
  color: var(--amber-soft);
  letter-spacing: -0.03em;
}
.impact-plus { color: var(--sage-soft); font-size: 0.75em; }
.impact-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.impact-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(251, 250, 245, 0.85);
  max-width: 52ch;
  margin: 0 auto;
}

/* ── Story ─────────────────────────────────────────────────────── */
.section-story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
.story-copy strong { color: var(--ink); }
.quote-card {
  position: sticky;
  top: 6rem;
  padding: 2.25rem 2rem;
  background: var(--sand);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--amber);
}
.quote-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 1.25rem;
}
.quote-card cite {
  font-style: normal;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 600;
}
.quote-card cite span { display: block; color: var(--sage); font-weight: 400; margin-top: 0.15rem; }

/* ── Shop ──────────────────────────────────────────────────────── */
.section-shop {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.shop-card {
  padding: 2rem 2rem 2.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.shop-card:hover {
  transform: translateY(-3px);
  border-color: var(--forest);
  box-shadow: 0 30px 60px rgba(45, 64, 53, 0.1);
}
.shop-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.shop-card h3 {
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.shop-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ── How it works ──────────────────────────────────────────────── */
.section-how { background: var(--cream); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.how-steps { display: grid; gap: 1.5rem; }
.how-step {
  padding: 1.75rem 2rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  border-radius: var(--radius);
}
.how-num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.how-step h4 {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.how-step p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Visit ─────────────────────────────────────────────────────── */
.section-visit {
  background: var(--forest);
  color: var(--cream);
}
.section-visit .section-label { color: var(--amber-soft); }
.section-visit .section-title { color: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}
.visit-row {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(251, 250, 245, 0.14);
}
.visit-row:last-child { border-bottom: none; }
.visit-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 0.35rem;
}
.visit-value { color: rgba(251, 250, 245, 0.92); font-size: 0.98rem; line-height: 1.5; }
.visit-value a { color: var(--amber-soft); }
.visit-value a:hover { color: var(--cream); }
.visit-phone {
  font-family: var(--font-serif);
  font-size: 1.7rem !important;
  font-weight: 500;
  color: var(--cream) !important;
}
.visit-phone:hover { color: var(--amber-soft) !important; }

.visit-cta {
  padding-left: 2rem;
  border-left: 1px solid rgba(251, 250, 245, 0.14);
}
.visit-lede {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--cream);
  font-style: italic;
  margin: 0 0 1.75rem;
}
.visit-cta .btn { margin-bottom: 1rem; }
.visit-fine {
  font-size: 0.88rem;
  color: rgba(251, 250, 245, 0.7);
  margin: 0;
  line-height: 1.55;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--forest-deep);
  color: rgba(251, 250, 245, 0.7);
  padding: 3rem 0 2.5rem;
  border-top: 3px solid var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.footer-sub { margin: 0; font-size: 0.88rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a { color: rgba(251, 250, 245, 0.78); font-size: 0.9rem; }
.footer-links a:hover { color: var(--amber-soft); }
.footer-meta { font-size: 0.82rem; text-align: right; color: rgba(251, 250, 245, 0.55); }

/* ── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0.75rem var(--pad-container); }
  .nav-link { display: none; }
  .brand-tag { display: none; }
  .brand-mark { width: 34px; height: 40px; }
  .brand-name { font-size: 0.92rem; }

  .hero { min-height: auto; padding-top: 3rem; }
  .hero-inner { padding: 6rem var(--pad-container) 4rem; }
  .hero-title { max-width: none; }
  .hero-ctas .btn { width: 100%; }

  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-card { position: static; }
  .shop-grid { grid-template-columns: 1fr; gap: 1rem; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit-cta { padding-left: 0; padding-top: 1.5rem; border-left: none; border-top: 1px solid rgba(251, 250, 245, 0.14); }
  .visit-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 1.5rem; }
  .footer-meta { text-align: left; }
  .impact-number { font-size: clamp(4rem, 18vw, 7rem); }
}
