:root {
  --bg: #f8f3ec;
  --surface: #fffdf9;
  --surface-2: #f1e7da;
  --ink: #2f2925;
  --muted: #6f645d;
  --line: rgba(47, 41, 37, 0.12);
  --accent: #a76b4f;
  --accent-2: #7e8f73;
  --shadow: 0 18px 40px rgba(47, 41, 37, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167,107,79,0.08), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; }
.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.section { padding: 5.5rem 0; }
.section-soft { background: rgba(255,255,255,0.38); }
.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

h1, h2, h3 {
  /* font-family: "Roboto Slab", serif;
  font-weight: 600; */
}

h1, h2, h3 {
  font-family: "Merriweather", serif;
  /* font-weight: 800; */
}

h1, h2, h3 {
  /* font-family: Fraunces, Georgia, serif; */
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.6rem, 5vw, 5.1rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); max-width: 15ch; }
h3 { font-size: 1.4rem; }

p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 58ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-sm {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 236, 0.72);
  border-bottom: 1px solid rgba(47, 41, 37, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c68f72);
  color: #fff;
  font-family: Fraunces, Georgia, serif;
}

.brand-text { font-size: 1rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a:not(.btn) {
  font-weight: 600;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero { padding-top: 4.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.quote-card,
.info-card,
.feature-panel-inner,
.testimonial,
.cta-panel,
.site-footer,
.signup-form,
.hero-card {
  border-radius: var(--radius);
}

.quote-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid rgba(47, 41, 37, 0.08);
  box-shadow: var(--shadow);
  width: min(100%, 440px);
}

.quote-mark {
  font-family: Fraunces, Georgia, serif;
  font-size: 5rem;
  color: rgba(167,107,79,0.25);
  line-height: 0.8;
}

blockquote {
  margin: 0.35rem 0 1rem;
  font-family: Inter, system-ui, sans-serif
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.quote-credit {
  margin: 0;
  font-size: 0.95rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(47, 41, 37, 0.08);
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(167,107,79,0.14), rgba(126,143,115,0.12));
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.feature-panel-inner {
  padding: 1.75rem;
  background: linear-gradient(180deg, #fffaf5 0%, #f2e8dc 100%);
  border: 1px solid rgba(47, 41, 37, 0.08);
  box-shadow: var(--shadow);
}

.feature-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.feature-panel li + li { margin-top: 0.75rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(47, 41, 37, 0.08);
  box-shadow: var(--shadow);
}

.testimonial span {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8ede3 0%, #eef3ea 100%);
  border: 1px solid rgba(47, 41, 37, 0.08);
  box-shadow: var(--shadow);
}

.site-footer {
  margin: 0 1rem 1rem;
  padding: 2rem 0;
  background: #2b2622;
  color: rgba(255,255,255,0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 2rem;
  align-items: start;
}

.site-footer p,
.site-footer label { color: rgba(255,255,255,0.72); }

.signup-form {
  padding: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.signup-form label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.signup-form input {
  width: 100%;
  margin-top: 0.45rem;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.98);
  padding: 0.75rem 0.9rem;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .footer-grid,
  .cta-panel,
  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .cta-panel {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(47, 41, 37, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { padding-top: 3rem; }
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .site-footer { margin: 0 0.5rem 0.5rem; }
  h1 { max-width: 11ch; }
}
