/* ── Google Fonts loaded in HTML ── */

/* ── Custom properties (tokens) ── */
:root {
  --bg: #f6f1e7;
  --bg-alt: #efe8d7;
  --card: #fffaf0;
  --ink: #2a2620;
  --ink-soft: #6b6358;
  --rule: rgba(42, 38, 32, 0.14);
  --accent: #4a6b4a;
  --accent2: #c87a3a;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --section-y: 96px;
  --gap: 28px;
  --hero-size: 108px;
  --h2-size: 64px;
  --body-size: 17px;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--accent);
  color: var(--card);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ── Layout utilities ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ── Shared components ── */
.sticker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--rule);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--rule);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.phone-mockup {
  width: 300px;
  padding: 9px;
  border-radius: 65px;
  background: #0c0a08;
  box-shadow: 0 30px 60px var(--rule), 0 8px 20px var(--rule);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.phone-mockup:hover {
  transform: rotate(0deg) translateY(-4px);
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 56px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--rule);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ── Hero ── */
.hero {
  padding: 56px 56px 80px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-badge .caption {
  font-size: 14px;
  color: var(--ink-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--hero-size);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  max-width: 1100px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1180px;
}

.hero-intro {
  font-size: 21px;
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
}

.hero-intro em {
  color: var(--accent2);
  font-style: italic;
}

.hero-not {
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--rule);
  box-shadow: 0 1px 0 var(--rule);
}

.hero-not h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
}

.hero-not h3 em {
  color: var(--accent);
}

.hero-not ul {
  list-style: none;
  font-size: 15px;
  line-height: 2;
}

.hero-not li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.hero-not li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-not .strike {
  text-decoration: line-through;
  color: var(--ink-soft);
}

.hero-not .aside {
  color: var(--accent2);
  font-family: var(--font-display);
  font-style: italic;
}

.hero-wave {
  position: absolute;
  top: 200px;
  left: 760px;
  opacity: 0.85;
  pointer-events: none;
}

/* ── Beliefs ── */
.beliefs {
  padding: var(--section-y) 56px;
  background: var(--bg-alt);
}

.beliefs h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 calc(var(--gap) * 2);
  max-width: 900px;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.belief-card {
  background: var(--card);
  border-radius: 18px;
  padding: 32px 32px 28px;
  border: 1px solid var(--rule);
  display: flex;
  gap: 24px;
}

.belief-icon {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  font-style: italic;
  flex-shrink: 0;
}

.belief-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

.belief-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-soft);
}

/* ── SwingClips ── */
.swingclips {
  padding: var(--section-y) 56px;
}

.swingclips-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.swingclips-header .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
}

.swingclips h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 calc(var(--gap) * 2);
  max-width: 900px;
}

.swingclips h2 em {
  color: var(--accent);
  font-style: italic;
}

.product-card {
  background: var(--card);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 1px 0 var(--rule);
}

.product-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-badges .sticker.outline {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}

.product-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 76px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.product-card h3 em {
  font-style: italic;
  color: var(--accent2);
}

.product-desc {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 480px;
}

.product-note {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 460px;
  color: var(--ink-soft);
}

.product-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-link {
  color: var(--ink);
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 4px;
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: calc(var(--gap) * 1.4);
}

.feature-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 26px 26px 24px;
  border: 1px solid var(--rule);
}

.feature-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cooking-row {
  margin-top: calc(var(--gap) * 1.6);
  padding: 28px 32px;
  border: 1px dashed var(--rule);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cooking-row .aside {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-soft);
}

.cooking-row .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Approach ── */
.approach {
  padding: var(--section-y) 56px;
  background: var(--bg-alt);
}

.approach h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 calc(var(--gap) * 2);
  max-width: 1000px;
}

.approach h2 em {
  color: var(--accent);
  font-style: italic;
}

.steps {
  border-top: 1px solid var(--rule);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.step p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ── Signals ── */
.signals {
  padding: var(--section-y) 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 8px;
}

.signals blockquote {
  margin: calc(var(--gap) * 2.5) 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1080px;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.signals blockquote footer {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

.signals blockquote footer .accent-dash {
  color: var(--accent);
}

/* ── Journal ── */
.journal {
  padding: var(--section-y) 56px;
  background: var(--bg-alt);
}

.journal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.journal-header a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.journal-header a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.journal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--h2-size);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 calc(var(--gap) * 1.5);
  max-width: 900px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.post-card {
  background: var(--card);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--rule);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.post-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* ── About ── */
.about {
  padding: var(--section-y) 56px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: calc(var(--h2-size) - 6px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
}

.about-body {
  font-size: 19px;
  line-height: 1.55;
  max-width: 740px;
}

.about-body p {
  margin: 0 0 1em;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body .soft {
  color: var(--ink-soft);
}

.about-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--accent2);
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.about-body a:hover {
  color: var(--accent2);
}

/* ── Footer ── */
.site-footer {
  padding: 56px 56px 64px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.footer-desc {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bar .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root {
    --hero-size: 80px;
    --h2-size: 52px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-visual {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --section-y: 64px;
    --hero-size: 56px;
    --h2-size: 40px;
    --gap: 20px;
  }

  .container,
  .hero,
  .beliefs,
  .swingclips,
  .approach,
  .signals,
  .journal,
  .about,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    padding: 14px 24px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246, 241, 231, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--rule);
  }

  .site-nav.is-open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-wave {
    display: none;
  }

  .beliefs-grid,
  .feature-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .step p {
    grid-column: 1 / -1;
  }

  .signals blockquote {
    font-size: 28px;
  }

  .product-card h3 {
    font-size: 48px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-value {
    font-size: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .phone-mockup {
    width: 260px;
  }
}

@media (max-width: 480px) {
  :root {
    --hero-size: 44px;
    --h2-size: 32px;
    --body-size: 16px;
  }

  .stat-value {
    font-size: 36px;
  }

  .product-card h3 {
    font-size: 36px;
  }

  .signals blockquote {
    font-size: 22px;
  }

  .post-card h3 {
    font-size: 20px;
  }
}
