:root {
  --bg: #fbf6ec;
  --bg-alt: #f2e9d8;
  --bg-dark: #3a2f1f;
  --text: #3a2f1f;
  --text-muted: #5c4f3d;
  --text-light: #e4dccb;
  --accent: #ff6d00;
  --accent-2: #0e8f8a;
  --accent-3: #e0186f;
  --accent-4: #6f9c2e;
  --accent-5: #4a28c4;
  --heading-dark: #ffb673;
  --radius: 6px;
  --radius-lg: 8px;
  --rule: rgba(58, 47, 31, 0.12);
  --shadow: 0 1px 3px rgba(58, 47, 31, 0.08);
  --shadow-up: 0 -2px 8px rgba(58, 47, 31, 0.1);
  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(28px, 3.5vw, 40px);
  --content-max: 1440px;
  --font-body: 'Manrope', sans-serif;
  --font-head: 'Bitter', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent-2);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p, ul, ol {
  margin: 0 0 1em;
}

ul, ol {
  padding-left: 1.2em;
}

.site {
  min-height: 100vh;
  padding-bottom: 78px;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

.section {
  padding: var(--section-y) var(--gutter);
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  padding: clamp(32px, 6vw, 56px) var(--gutter);
  background: var(--bg-dark);
  color: var(--text-light);
}
.section--dark .section__title {
  color: var(--heading-dark);
}
.section--dark p, .section--dark a {
  color: var(--text-light);
}
.section--dark a {
  color: var(--heading-dark);
}

.section__header {
  margin-bottom: 0;
}

.section__header--center {
  text-align: center;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 28px);
  margin: 0 0 0.9em;
}

.section--intro {
  padding-bottom: 0;
}

.section__header--page {
  margin-bottom: 0;
}

.page-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 44px);
  margin: 0;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0.6em 0 0;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 1.2em;
}

.section__subheading {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 1.5em 0 0.8em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(58, 47, 31, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.link--arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}
.link--arrow:hover {
  text-decoration: underline;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 1em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px var(--gutter);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.header__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.header__link {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.header__link--active {
  color: var(--accent);
  font-weight: 700;
}

.header__phone {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 8px;
}

.header__mobile {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(58, 47, 31, 0.2);
  cursor: pointer;
  background: transparent;
}
.header__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-toggle:checked ~ .header .header__hamburger {
  background: rgba(58, 47, 31, 0.08);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  transition: max-height 0.25s ease;
}

.nav-toggle:checked ~ .mobile-menu {
  max-height: 260px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px var(--gutter);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(58, 47, 31, 0.08);
}
.mobile-menu__link--active {
  color: var(--accent);
  font-weight: 700;
}

.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-top: 1px solid rgba(58, 47, 31, 0.15);
  box-shadow: var(--shadow-up);
}
.cta-bar .btn {
  flex: 1;
  padding: 14px;
  font-size: 0.95rem;
}

.footer {
  padding: 28px var(--gutter);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer a {
  color: var(--text-muted);
}
.footer a:hover {
  color: var(--accent-2);
}

.section--hero {
  padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
  gap: 0;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px) var(--gutter);
  padding-left: max(var(--gutter), (100vw - var(--content-max)) / 2);
}

.hero__title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 0 0.5em;
  line-height: 1.1;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 1.5em;
}

.hero__image {
  margin: 0;
  width: 100%;
  min-height: 280px;
  max-height: 520px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--trust {
  padding: 24px var(--gutter);
}

.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.trust-bar strong {
  color: var(--accent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-bottom: 1.5em;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--card-accent, var(--accent));
}

.card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 0.5em;
  color: var(--text);
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

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

.form-item__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.45em;
  color: var(--item-accent, var(--accent));
}

.form-item__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.section__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 1.2em;
}

.section__outro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-top: 1.2em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.benefit:nth-child(2) {
  --item-accent: var(--accent-2);
}
.benefit:nth-child(3) {
  --item-accent: var(--accent-3);
}
.benefit:nth-child(4) {
  --item-accent: var(--accent-4);
}
.benefit:nth-child(5) {
  --item-accent: var(--accent-5);
}
.benefit .benefit__title {
  display: block;
  font-weight: 700;
  color: var(--item-accent, var(--accent));
  font-size: 0.9rem;
  margin-bottom: 0.4em;
}
.benefit .benefit__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.feature {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.feature:nth-child(2) {
  --item-accent: var(--accent-2);
}
.feature:nth-child(3) {
  --item-accent: var(--accent-3);
}
.feature:nth-child(4) {
  --item-accent: var(--accent-4);
}
.feature:nth-child(5) {
  --item-accent: var(--accent-5);
}

.feature__check {
  position: absolute;
  left: 0;
  color: var(--item-accent, var(--accent));
  font-weight: 700;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 1.5em;
}

.schedule-day__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 0 0 0.6em;
}

.schedule-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.schedule-table td {
  padding: 10px 0;
  height: 52px;
  border-top: 1px solid var(--rule);
  text-align: left;
  vertical-align: middle;
  color: var(--text-muted);
}

.schedule-table__time {
  width: 8.5em;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 16px;
  color: var(--text);
}

.schedule__footer {
  margin-top: 1.2em;
}
.schedule__footer p {
  margin-bottom: 0.6em;
}

.instructor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.instructor__photo {
  margin: 0;
}
.instructor__photo img {
  width: 160px;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.instructor__name {
  font-size: 1.4rem;
  margin: 0 0 0.2em;
}

.instructor__role {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1em;
}

.instructor__text {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.instructor__text p {
  margin-bottom: 0.7em;
}
.instructor__text strong {
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 6vw, 56px);
}

.contact-card h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin: 0 0 0.8em;
}
.contact-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5em;
}
.contact-card strong {
  color: var(--text);
}
.contact-card a:not(.btn) {
  color: var(--accent-2);
}
.contact-card a:not(.btn):hover {
  text-decoration: underline;
}

.contact-card__body {
  margin-bottom: 1.2em;
}
.contact-card__body h3 {
  display: none;
}

.section--cta {
  text-align: center;
}
.section--cta .section__lead {
  max-width: 560px;
  margin: 0 auto 1.5em;
}
.section--cta .actions {
  justify-content: center;
}

@media (min-width: 760px) {
  .header__nav {
    display: flex;
  }
  .header__mobile,
  .mobile-menu,
  .nav-toggle {
    display: none !important;
  }
  .cta-bar {
    display: none;
  }
  .site {
    padding-bottom: 0;
  }
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .instructor {
    grid-template-columns: auto 1fr;
  }
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}