/* Coach Claw landing — Miyazaki-inspired warm palette and gentle illustration */

:root {
  --paper: #f9f4e7;
  --paper-soft: #fdfaf3;
  --ink: #3a3528;
  --ink-soft: #6b6557;
  --sage: #a3b58a;
  --sage-deep: #5a6b4a;
  --sky: #cfe1ec;
  --sunset: #e8b8a0;
  --sunset-deep: #d18d6e;
  --gold: #f4d6a3;
  --moss: #7d8e6a;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --hand: 'Caveat', 'Comic Sans MS', cursive;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  /* Subtle paper texture from layered gradients */
  background-image:
    radial-gradient(ellipse 800px 600px at 80% 0%, rgba(232, 184, 160, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 50%, rgba(163, 181, 138, 0.14), transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 90%, rgba(207, 225, 236, 0.18), transparent 60%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Floating decorations */
.cloud {
  position: absolute;
  width: 180px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  animation: drift 30s ease-in-out infinite alternate;
}

.cloud-1 {
  top: 80px;
  left: 6%;
  width: 220px;
}

.cloud-2 {
  top: 160px;
  right: 4%;
  width: 160px;
  animation-delay: -15s;
}

.leaf {
  position: absolute;
  width: 38px;
  pointer-events: none;
  opacity: 0.85;
}

.leaf-1 {
  top: 540px;
  left: 3%;
  transform: rotate(-22deg);
  animation: sway 8s ease-in-out infinite alternate;
}

.leaf-2 {
  top: 1100px;
  right: 5%;
  transform: rotate(35deg);
  animation: sway 10s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateX(-10px); }
  to { transform: translateX(20px); }
}

@keyframes sway {
  from { transform: rotate(-22deg) translateY(-8px); }
  to { transform: rotate(-12deg) translateY(8px); }
}

/* Header */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-mark.small {
  width: 28px;
  height: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

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

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

.nav-cta {
  font-family: var(--hand);
  font-size: 19px !important;
  color: var(--sunset-deep) !important;
  text-decoration: none;
}

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

/* Hero */
.hero {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 100px;
}

.hero-eyebrow {
  font-family: var(--hand);
  font-size: 26px;
  color: var(--sunset-deep);
  margin: 0 0 8px;
  transform: rotate(-1deg);
  display: inline-block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1.05;
  font-weight: 600;
  margin: 8px 0 32px;
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--sage-deep);
  display: block;
}

.hero-lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 540px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--paper-soft);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(58, 53, 40, 0.15);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 53, 40, 0.25);
}

.cta-secondary {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink-soft);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.cta-secondary:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-fineprint {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
}

.hero-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-illustration svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 8px 16px rgba(58, 53, 40, 0.08));
}

/* Wavy section divider */
.divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: 20px 0;
  opacity: 0.5;
}

/* Generic section */
section {
  position: relative;
  z-index: 5;
}

section h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
}

.section-lede {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink-soft);
  text-align: center;
  margin: 0 auto 56px;
  max-width: 600px;
  line-height: 1.5;
}

/* Features */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.feature {
  background: var(--paper-soft);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.feature::before {
  /* Hand-drawn-feeling secondary border */
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  opacity: 0.18;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 12px 30px rgba(58, 53, 40, 0.12);
}

.feature-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
}

.feature h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.25;
}

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

/* How it works */
.how {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 4px 0 6px;
}

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

/* Sample assessment */
.sample {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px;
}

.sample-card {
  background: var(--paper-soft);
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 36px 40px;
  position: relative;
}

.sample-card::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  opacity: 0.18;
  pointer-events: none;
}

.sample-eyebrow {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--sunset-deep);
  margin: 0 0 18px;
  transform: rotate(-0.5deg);
  display: inline-block;
  letter-spacing: 0.5px;
}

.sample-card p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 18px;
}

.sample-card p:last-child {
  margin-bottom: 0;
}

.sample-card strong {
  font-weight: 700;
  color: var(--sage-deep);
}

/* Pricing */
.pricing {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  text-align: center;
}

.price-card {
  background: var(--paper-soft);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  padding: 48px 40px;
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  opacity: 0.18;
  pointer-events: none;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.price-currency {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink-soft);
}

.price-number {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.price-period {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-soft);
  margin-left: 6px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  text-align: left;
  max-width: 360px;
}

.price-features li {
  font-size: 15px;
  color: var(--ink);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dashed rgba(58, 53, 40, 0.18);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
  font-weight: 700;
}

/* Footer */
.site-footer {
  border-top: 1.5px solid rgba(58, 53, 40, 0.15);
  padding: 48px;
  background: rgba(253, 250, 243, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.footer-tagline {
  font-family: var(--hand);
  font-size: 22px;
  color: var(--sunset-deep);
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--ink);
}

/* Mobile */
@media (max-width: 860px) {
  .site-header {
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-nav {
    gap: 20px;
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 40px;
    text-align: center;
  }

  .hero-eyebrow {
    transform: none;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .features,
  .how,
  .sample,
  .pricing {
    padding: 60px 24px;
  }

  .sample-card {
    padding: 28px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .cloud-1,
  .cloud-2,
  .leaf-1,
  .leaf-2 {
    display: none;
  }
}
