/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  --bg:           #FAF8F4;
  --bg-alt:       #F0E8DC;
  --bg-card:      #FFFDF9;
  --accent:       #C4966A;
  --accent-hover: #A87D56;
  --accent-light: #EAD5BB;
  --text:         #2C1F18;
  --text-muted:   #8A7266;
  --border:       #E5D8C8;
  --white:        #FFFDF9;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:    20px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(44, 31, 24, 0.08);
  --shadow-md: 0 8px 48px rgba(44, 31, 24, 0.13);

  --container: 1160px;
  --py:        clamp(72px, 9vw, 128px);
}

/* ===================================
   RESET
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
details summary {
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}

/* ===================================
   ACCESSIBILITY
   =================================== */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.faq__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .mobile-cta {
    animation: none !important;
  }
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

em {
  font-style: italic;
  color: var(--accent);
}
p {
  color: var(--text-muted);
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--py) 0;
}
.section--alt {
  background: var(--bg-alt);
}

/* ===================================
   COMPONENTS
   =================================== */

/* Label */
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Section header */
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-head h2 {
  margin-bottom: 16px;
}
.section-head__desc {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 150, 106, 0.38);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1EBD5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}
.btn--telegram {
  background: #2CA5E0;
  color: #fff;
}
.btn--telegram:hover {
  background: #1A90CC;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44, 165, 224, 0.35);
}
.btn--max {
  background: #0077FF;
  color: #fff;
}
.btn--max:hover {
  background: #005FCC;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 119, 255, 0.35);
}

/* Chip */
.chip {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-light);
  color: var(--accent-hover);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav__link.active {
  color: var(--accent);
  position: relative;
}
.nav__link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(44, 31, 24, 0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.nav__logo-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover {
  color: var(--accent);
}
.nav__cta {
  margin-left: 8px;
  padding: 10px 24px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================
   HERO
   =================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero__content {
  max-width: 580px;
}
.hero__mission {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.hero__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__desc {
  font-size: 1.1rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: fit-content;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero__stat strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.83rem;
  color: var(--text-muted);
}
.hero__stat-divider {
  width: 1px;
  height: 38px;
  background: var(--border);
  flex-shrink: 0;
}
.hero__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero__photo-bg {
  position: absolute;
  inset: -24px -24px -24px 24px;
  background: var(--accent-light);
  border-radius: 52px;
  z-index: 0;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 44px;
  box-shadow: var(--shadow-md);
}

/* ===================================
   ABOUT
   =================================== */
.about__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.about__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.about__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.about__quote {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  max-width: 290px;
  box-shadow: var(--shadow);
}
.about__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text);
}
.about__content h2 {
  margin-bottom: 4px;
}
.about__role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.about__content p {
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: 16px;
}
.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

/* Education block in About */
.about__edu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 4px;
}
.about__edu-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.about__edu-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__edu-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.about__edu-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===================================
   SERVICES
   =================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-card--featured {
  background: var(--accent);
  border-color: var(--accent);
}
.service-card--featured h3,
.service-card--featured > p {
  color: #fff;
}
.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.service-card--featured .service-card__list {
  border-color: rgba(255, 255, 255, 0.28);
}
.service-card--featured .service-card__list li {
  color: rgba(255, 255, 255, 0.85);
}
.service-card--featured .service-card__list li::before {
  color: rgba(255, 255, 255, 0.65);
}
.service-card__icon {
  width: 58px;
  height: 58px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 20px;
}
.service-card__list {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-card__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 300;
}

/* ===================================
   REVIEWS (CAROUSEL)
   =================================== */
.reviews__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.reviews__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  flex: 1;
}
.reviews__track::-webkit-scrollbar {
  display: none;
}
.review-card {
  scroll-snap-align: start;
  flex: 0 0 calc(50% - 12px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-card__stars {
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 3px;
}
.review-card__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}
.review-card__author {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.reviews__nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}
.reviews__nav:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.reviews__nav--prev { margin-right: 20px; }
.reviews__nav--next { margin-left: 20px; }
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.reviews__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ===================================
   PROCESS
   =================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
  max-width: 880px;
  margin: 0 auto;
}
.process__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.process__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}
.process__body h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 6px;
}
.process__body p {
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===================================
   PRICE
   =================================== */
.price__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.price__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 44px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.price__card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(196, 150, 106, 0.18);
}
.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price__old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 6px;
  text-decoration-color: var(--accent);
}
.price__main {
  margin-bottom: 36px;
}
.price__amount {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}
.price__amount span {
  font-size: 2.5rem;
  color: var(--accent);
}
.price__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}
.price__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.price__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-muted);
}
.price__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}
.price__cta {
  width: 100%;
}

/* ===================================
   FAQ
   =================================== */
.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item[open] {
  border-color: var(--accent-light);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  transition: color 0.2s;
  gap: 16px;
}
.faq__q:hover {
  color: var(--accent);
}
.faq__q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 24px 22px;
}
.faq__a p {
  font-size: 0.94rem;
  line-height: 1.78;
}

/* ===================================
   CONTACT
   =================================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.contact__content .label {
  display: block;
}
.contact__content h2 {
  margin-bottom: 16px;
}
.contact__content > p {
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 36px;
}
.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.contact__buttons .btn {
  font-size: 1rem;
  padding: 16px 32px;
}
.contact__photo {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--text);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--bg);
  font-weight: 500;
  line-height: 1.2;
}
.footer__role {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.45);
  margin-top: 3px;
}
.footer__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.55);
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: var(--bg);
}
.footer__copy {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.3);
}

/* ===================================
   MATERIALS
   =================================== */
.materials__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.materials__intro h2 {
  margin-bottom: 16px;
}
.materials__intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.materials__group {
  margin-bottom: 48px;
}
.materials__group:last-child {
  margin-bottom: 0;
}
.materials__group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.materials__group-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.materials__group-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.materials__group-tag--paid {
  background: var(--text-muted);
}
.materials__hint {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 28px;
}
.materials__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.material-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.material-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.material-card__visual {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.material-card__visual--checklist {
  background: linear-gradient(135deg, #F5EEE6 0%, #EAD5BB 100%);
  color: var(--accent);
}
.material-card__visual--worksheet {
  background: linear-gradient(135deg, #EEF2F5 0%, #D8E8EE 100%);
  color: #6A96AA;
}
.material-card__visual--guide {
  background: linear-gradient(135deg, #F2EEF5 0%, #DDD0EE 100%);
  color: #8A6AAA;
}
.material-card__visual--meditation {
  background: linear-gradient(135deg, #EEF5EE 0%, #C8E0CB 100%);
  color: #5A9466;
}
.material-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.material-card__type {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}
.material-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.material-card__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.material-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.material-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.material-card__btn {
  margin-top: 6px;
}

/* ===================================
   RECOGNIZE
   =================================== */
.recognize__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.recognize__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
}
.recognize__item h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.recognize__item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.recognize__banner {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.recognize__banner p {
  flex: 1;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  min-width: 260px;
}

/* ===================================
   APPROACH
   =================================== */
.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.approach__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.approach__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.approach__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  margin-top: 3px;
}
.approach__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  transition: box-shadow 0.2s;
}
.method-card:hover {
  box-shadow: var(--shadow);
}
.method-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.method-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.approach__methods .method-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* ===================================
   RESPONSIVE — TABLET
   =================================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 360px;
    gap: 56px;
  }
  .about__inner {
    grid-template-columns: 360px 1fr;
    gap: 56px;
  }
}

/* ===================================
   RESPONSIVE — MOBILE
   =================================== */
@media (max-width: 768px) {
  :root {
    --py: clamp(56px, 8vw, 80px);
  }

  /* Nav */
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__link {
    font-size: 1rem;
  }
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 64px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__photo-wrap {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__photo {
    height: 380px;
  }
  .hero__photo-bg {
    inset: -16px -16px -16px 16px;
    border-radius: 36px;
  }
  .hero__label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    overflow-wrap: break-word;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }
  .hero__stat-divider {
    display: none;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__photo-wrap {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .about__quote {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    right: auto;
    bottom: auto;
  }

  /* Reviews carousel — mobile: full-width cards, hide nav arrows */
  .review-card {
    flex: 0 0 82vw;
  }
  .reviews__nav {
    display: none;
  }
  .reviews__carousel {
    margin: 0 -24px;
    padding: 0 24px;
  }
  .reviews__track {
    padding-left: 0;
    padding-right: 24px;
  }

  /* Materials */
  .materials__cards {
    grid-template-columns: 1fr;
  }

  /* Recognize */
  .recognize__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recognize__banner {
    flex-direction: column;
    gap: 20px;
  }

  /* Approach */
  .approach__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach__methods {
    grid-template-columns: 1fr 1fr;
  }
  .approach__methods .method-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Price */
  .price__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .price__card {
    padding: 40px 32px;
  }
  .price__amount {
    font-size: 3rem;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__photo {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer__nav {
    margin-left: 0;
    justify-content: center;
  }
}

/* ===================================
   FLOATING MOBILE CTA
   =================================== */
.mobile-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(196, 150, 106, 0.45);
    animation: cta-pulse 3s ease-in-out infinite;
  }
  @keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(196, 150, 106, 0.45); }
    50%       { box-shadow: 0 12px 40px rgba(196, 150, 106, 0.65); }
  }
  /* Hide when contact section is visible */
  .mobile-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  /* Contact buttons full-width on tablet too */
  .contact__buttons {
    align-items: stretch;
    width: 100%;
  }
  .contact__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   RESPONSIVE — SMALL MOBILE
   =================================== */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .contact__buttons {
    align-items: stretch;
    width: 100%;
  }
  .contact__buttons .btn {
    width: 100%;
  }
  .section-head {
    margin-bottom: 48px;
  }

  /* Hero stats: stack vertically on tiny screens */
  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  /* Recognize */
  .recognize__grid {
    grid-template-columns: 1fr;
  }

  /* Approach */
  .approach__methods {
    grid-template-columns: 1fr;
  }
}
