:root {
  --ink: #1f2d27;
  --muted: #64726b;
  --paper: #fbfaf6;
  --soft: #eef4ed;
  --line: #dbe3db;
  --green: #2f6f52;
  --green-dark: #174633;
  --clay: #b4694f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 52, 43, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid rgba(219, 227, 219, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #34443d;
}

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

.nav a:hover,
.header-contact:hover {
  color: var(--green);
}

.header-contact {
  color: var(--green-dark);
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #203226 url("../images/yoga-hero.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 38, 30, .88), rgba(26, 50, 39, .68) 42%, rgba(26, 50, 39, .08) 78%),
    linear-gradient(180deg, rgba(17, 27, 23, .18), rgba(17, 27, 23, .36));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 660px) 320px;
  align-items: end;
  gap: 68px;
  padding: 92px 0 72px;
}

.hero-copy {
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero .eyebrow {
  color: #f2c7b1;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  max-width: 760px;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.24;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .58);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .14);
}

.hero-card,
.schedule-card,
.terms-card,
.legal-box {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
  color: var(--ink);
}

.hero-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-card p,
.schedule-card p,
.source-note,
.form-note {
  color: var(--muted);
}

.hero-card a,
.price-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.notice-line {
  background: var(--green-dark);
  color: var(--white);
}

.notice-grid {
  padding: 20px 0;
}

.notice-grid p {
  margin: 0;
  max-width: 980px;
}

.section {
  padding: 92px 0;
}

.intro-grid,
.format-grid,
.audience-grid,
.request-grid,
.legal-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.intro-grid p {
  font-size: 19px;
  color: #43534c;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.program-card,
.price-card,
.audience-list div,
.steps div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.program-card {
  min-height: 245px;
  padding: 26px;
}

.program-card span {
  color: var(--clay);
  font-weight: 900;
}

.program-card h3 {
  margin: 28px 0 12px;
}

.program-card p,
.audience-list span,
.steps p,
.price-card p {
  color: var(--muted);
}

.section-muted {
  background: var(--soft);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(47, 111, 82, .13);
}

.schedule-card {
  padding: 30px;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.schedule-row b {
  color: var(--green-dark);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.audience-list div {
  padding: 22px;
}

.audience-list b,
.audience-list span {
  display: block;
}

.audience-list b {
  margin-bottom: 8px;
}

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

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(47, 111, 82, .45);
  box-shadow: var(--shadow);
}

.price-card b {
  display: block;
  margin: 24px 0 18px;
  font-size: 30px;
  color: var(--green-dark);
}

.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-dark .section-label {
  color: #f2c7b1;
}

.section-dark p {
  color: rgba(255, 255, 255, .78);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.steps div {
  padding: 20px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.steps b {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
}

.steps span {
  display: block;
  font-weight: 800;
}

.request-grid {
  align-items: stretch;
}

.contact-list {
  margin-top: 26px;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: var(--soft);
}

.contact-list p {
  margin-bottom: 8px;
}

.contact-list p:last-child {
  margin-bottom: 0;
}

.form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.form textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form button:hover {
  background: var(--green-dark);
}

.legal-box,
.terms-card {
  padding: 26px;
}

.legal-box p {
  margin-bottom: 8px;
}

.terms-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.terms-card li {
  margin-bottom: 10px;
}

.source-note {
  margin-bottom: 0;
  font-size: 14px;
}

.footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, .76);
  background: #12291f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer b,
.footer span,
.footer a {
  display: block;
}

.footer b {
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
}

@media (max-width: 940px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-grid,
  .intro-grid,
  .format-grid,
  .audience-grid,
  .request-grid,
  .legal-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-grid {
    padding-top: 74px;
  }

  .hero-card {
    max-width: 420px;
  }

  .program-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 66px;
  }

  .header-contact {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(19, 36, 29, .94), rgba(20, 38, 30, .8) 58%, rgba(20, 38, 30, .38)),
      linear-gradient(90deg, rgba(20, 38, 30, .78), rgba(20, 38, 30, .3));
  }

  .hero-grid {
    padding: 54px 0 42px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .program-grid,
  .price-grid,
  .audience-list,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
  }
}
