:root {
  --ink: #18221d;
  --muted: #637067;
  --line: #d9ded5;
  --paper: #fbfaf5;
  --soft: #eef2e8;
  --sage: #75856b;
  --clay: #b46347;
  --sun: #e5b65d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(44, 54, 43, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 245, .92);
  border-bottom: 1px solid rgba(217, 222, 213, .8);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.brand strong {
  font-size: 17px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #35413a;
  font-size: 15px;
}

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

.header-action,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-action {
  color: var(--paper);
  background: var(--sage);
}

.hero {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111913;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 25, 20, .84) 0%, rgba(18, 25, 20, .58) 42%, rgba(18, 25, 20, .14) 100%),
    url("../images/yoga-studio-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 84px 0 96px;
}

.hero-copy {
  max-width: 680px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  max-width: 760px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

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

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

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

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .08);
}

.hero-facts {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .08);
}

.intro-band {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-grid p,
.section-head p,
.split p,
.request-grid p,
.process-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding: 96px 0;
}

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

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

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

.program-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.program-card span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--clay);
  font-weight: 800;
}

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

.process-grid,
.split,
.request-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.note {
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  background: rgba(255, 255, 255, .65);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  padding: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 36px rgba(64, 74, 62, .08);
}

.steps b {
  grid-row: span 2;
  color: var(--clay);
  font-size: 24px;
}

.steps span {
  font-weight: 800;
  font-size: 20px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.schedule-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr .75fr 1.25fr;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-head {
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.section-accent {
  color: var(--white);
  background: #273329;
}

.section-head-light p,
.section-head-light .section-label {
  color: rgba(255, 255, 255, .72);
}

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

.price-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.price-card.featured {
  background: var(--paper);
  color: var(--ink);
}

.price-card p {
  color: inherit;
  opacity: .76;
}

.price-card strong {
  display: block;
  margin-top: 38px;
  color: var(--sun);
  font-size: 28px;
}

.featured strong {
  color: var(--clay);
}

.form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form label {
  display: block;
  margin-bottom: 16px;
}

.form label span {
  display: block;
  margin-bottom: 8px;
  color: #39443d;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #cbd2c7;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fdfdfb;
  font: inherit;
}

.form textarea {
  resize: vertical;
}

.checkbox {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

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

.checkbox span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
  font-size: 14px;
}

.form-status {
  margin: 14px 0 0;
  color: var(--sage);
  font-weight: 700;
}

.contact-list {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

.footer {
  padding: 56px 0;
  color: rgba(255, 255, 255, .78);
  background: var(--ink);
}

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

.footer h3,
.footer .brand strong {
  color: var(--white);
}

.footer p {
  margin-bottom: 10px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer .brand-mark {
  background: var(--paper);
  color: var(--ink);
}

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

  .hero {
    min-height: 620px;
  }

  .intro-grid,
  .process-grid,
  .split,
  .request-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .header-action {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(18, 25, 20, .86) 0%, rgba(18, 25, 20, .68) 46%, rgba(18, 25, 20, .42) 100%),
      url("../images/yoga-studio-hero.png") center / cover no-repeat;
  }

  .hero-content {
    padding: 58px 0 72px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .lead,
  .intro-grid p,
  .section-head p,
  .split p,
  .request-grid p,
  .process-copy p {
    font-size: 17px;
  }

  .section {
    padding: 66px 0;
  }

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

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

  .program-card span {
    margin-bottom: 24px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .form {
    padding: 20px;
  }
}
