* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1b1f;
  --muted: #5b606b;
  --accent: #c26a4a;
  --accent-dark: #9b4d31;
  --mist: #f5f1ec;
  --sun: #f9e7d6;
  --deep: #2a2f3a;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fffaf6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 24px 0 10px;
}

.top-bar .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  background: linear-gradient(120deg, #fff4ea 0%, #f6e2d8 45%, #f3d5c3 100%);
  padding: 50px 0 80px;
  position: relative;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(40, 24, 14, 0.25);
}

.hero-note {
  position: absolute;
  bottom: -20px;
  left: 18px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(40, 24, 14, 0.15);
  font-size: 0.95rem;
  max-width: 240px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--mist);
}

.section.sun {
  background: var(--sun);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-header p {
  color: var(--muted);
  max-width: 700px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(42, 31, 23, 0.12);
}

.offset-card strong {
  color: var(--accent-dark);
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-style: italic;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(40, 24, 14, 0.08);
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(42, 31, 23, 0.1);
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card span {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-card button {
  align-self: flex-start;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  border-radius: 20px;
}

.coach-card {
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 38px rgba(42, 31, 23, 0.12);
}

.coach-card img {
  border-radius: 18px;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-item {
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-shell {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 38px rgba(42, 31, 23, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8cfc6;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  background: var(--deep);
  color: #f7f5f2;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f7f5f2;
  opacity: 0.9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(26, 16, 10, 0.3);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(42, 31, 23, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 6px 14px rgba(42, 31, 23, 0.08);
}

.spaced-top {
  margin-top: 24px;
}

.spaced-top-sm {
  margin-top: 18px;
}

.thanks-card {
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(42, 31, 23, 0.12);
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    width: calc(50% - 9px);
  }

  .schedule {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .schedule-item {
    width: calc(50% - 8px);
  }

  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1080px) {
  .service-card {
    width: calc(33.333% - 12px);
  }
}
