:root {
  --bg: #f7f3ed;
  --surface: #fffdf9;
  --surface-warm: #efe6dc;
  --surface-deep: #d7c3b7;
  --text: #211d19;
  --muted: #6f665e;
  --faint: #9b9188;
  --accent: #965f56;
  --accent-dark: #74443f;
  --line: #ded3ca;
  --shadow: 0 24px 70px rgba(56, 43, 34, 0.14);
  --radius: 28px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Work Sans', Inter, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(247, 243, 237, 0.86);
  border-bottom: 1px solid rgba(222, 211, 202, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.nav-cta {
  text-decoration: none;
}

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

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf4;
  font-size: 14px;
  font-weight: 600;
}

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

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(33, 29, 25, 0.56), rgba(33, 29, 25, 0.22), rgba(247, 243, 237, 0.06)),
    url('assets/hero.webp') center / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}

.hero-content {
  width: min(920px, 100%);
  margin-right: auto;
  padding-left: clamp(0px, 6vw, 72px);
  color: #fffaf4;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #eadbd3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(58px, 8vw, 118px);
}

h2 {
  font-size: clamp(42px, 5.4vw, 78px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.center-action {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #fffaf4;
  box-shadow: 0 16px 34px rgba(116, 68, 63, 0.28);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 244, 0.42);
  color: #fffaf4;
}

.button.light {
  border: 1px solid rgba(255, 250, 244, 0.42);
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.08);
}

.intro,
.services,
.sprint-offer,
.fit-section,
.why,
.testimonials,
.faq,
.cta-panel,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(70px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.services,
.digital-products,
.sprint-offer,
.fit-section,
.testimonials,
.faq,
.why {
  padding: clamp(70px, 9vw, 120px) 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(56, 43, 34, 0.06);
}

.service-link {
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(56, 43, 34, 0.09);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card-body p,
.detail-card p,
.detail-card li,
.fit-grid li,
.faq-grid p,
.testimonial-card p,
.why-grid p,
.cta-panel p {
  color: var(--muted);
}

.card-price {
  margin-bottom: 12px;
  color: var(--accent-dark) !important;
  font-size: 15px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1e3da;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.center-action {
  justify-content: center;
}

.digital-products {
  padding-top: 0;
  scroll-margin-top: 96px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card h3 {
  margin-bottom: 14px;
}

.product-card p {
  color: var(--muted);
}

.product-button {
  align-self: flex-start;
  margin-top: 28px;
  background: var(--accent);
  color: #fffaf4;
  box-shadow: 0 14px 30px rgba(116, 68, 63, 0.22);
}

.product-button:hover {
  background: var(--accent-dark);
}

.sprint-offer {
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(239, 230, 220, 0.74)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 12px);
  box-shadow: 0 20px 58px rgba(56, 43, 34, 0.08);
  max-width: 1080px;
  margin-inline: auto;
}

.offer-copy h2 {
  max-width: 720px;
}

.offer-lede {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.offer-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  background: var(--text);
  color: #fffaf4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card span {
  color: rgba(255, 250, 244, 0.66);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(62px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.price-card p {
  margin: 0;
  color: rgba(255, 250, 244, 0.72);
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.75fr));
  gap: 18px;
  margin-top: 18px;
  max-width: 1080px;
  margin-inline: auto;
}

.detail-card,
.fit-grid article,
.faq-grid article {
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-card {
  padding: clamp(26px, 4vw, 40px);
}

.detail-card.large {
  background: var(--surface);
}

.detail-card ul,
.detail-card ol,
.fit-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.detail-card li,
.fit-grid li {
  padding-left: 4px;
  margin-bottom: 12px;
}

.check-list li::marker {
  color: var(--accent);
}

.fit-section {
  padding-top: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin-inline: auto;
}

.fit-grid article {
  padding: clamp(26px, 4vw, 40px);
}

.fit-grid article:first-child {
  background: var(--surface);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.why-grid article {
  padding: 32px;
  background: rgba(255, 253, 249, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.testimonials {
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin-inline: auto;
}

.testimonial-card {
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.65;
  letter-spacing: 0;
}

.testimonial-card p {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(222, 211, 202, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
  padding: clamp(36px, 6vw, 70px);
  background: var(--text);
  color: #fffaf4;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 72px);
}

.cta-panel p {
  max-width: 580px;
  color: rgba(255, 250, 244, 0.76);
}

.cta-panel a:not(.button) {
  color: #fffaf4;
  font-weight: 700;
  text-underline-offset: 4px;
}

.faq {
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin-inline: auto;
}

.faq-grid article {
  padding: clamp(24px, 3vw, 34px);
}

.faq-grid h3 {
  margin-bottom: 12px;
}

.faq-grid p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 700px;
    align-items: end;
    padding-block: 140px 90px;
  }

  .hero-content {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(54px, 16vw, 80px);
  }

  .intro,
  .offer-shell,
  .offer-detail-grid,
  .fit-grid,
  .service-grid,
  .product-grid,
  .testimonial-grid,
  .faq-grid,
  .why-grid,
  .cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro,
  .cta-panel,
  .site-footer {
    display: block;
  }

  .offer-shell,
  .offer-detail-grid,
  .fit-grid,
  .service-grid,
  .product-grid,
  .testimonial-grid,
  .faq-grid,
  .why-grid {
    display: grid;
  }

  .cta-actions {
    margin-top: 28px;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 14px;
  }

  .hero {
    padding-inline: 18px;
  }

  .intro,
  .services,
  .digital-products,
  .sprint-offer,
  .fit-section,
  .why,
  .testimonials,
  .faq,
  .cta-panel,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .card-body,
  .product-card,
  .detail-card,
  .fit-grid article,
  .faq-grid article,
  .testimonial-card,
  .why-grid article {
    padding: 22px;
  }

  .price-card {
    padding: 28px 22px;
  }
}
