:root {
  --color-bg: #f7f4ef;
  --color-bg-soft: #efeae3;
  --color-text: #2a2826;
  --color-text-muted: #6b6560;
  --color-accent: #7a2e3a;
  --color-accent-dark: #5c222c;
  --color-sage: #6b7f63;
  --color-white: #ffffff;
  --color-border: rgba(42, 40, 38, 0.1);
  --shadow-soft: 0 24px 60px rgba(42, 40, 38, 0.08);
  --shadow-card: 0 12px 32px rgba(42, 40, 38, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1140px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

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

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
}

.section-lead {
  margin: 0;
  max-width: 620px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  box-shadow: 0 12px 28px rgba(122, 46, 58, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(122, 46, 58, 0.34);
}

.btn-secondary {
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

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

.hero {
  padding: 72px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(122, 46, 58, 0.08);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  font-weight: 600;
}

.hero-title span {
  color: var(--color-accent);
}

.hero-text {
  margin: 0 0 32px;
  max-width: 540px;
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stat span {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: var(--shadow-soft);
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 38%;
  border-radius: var(--radius-md);
  background: linear-gradient(to top, rgba(26, 24, 22, 0.55), transparent);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: var(--color-white);
}

.hero-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.hero-caption span {
  font-size: 0.92rem;
  opacity: 0.92;
}

.hero-card {
  position: absolute;
  right: -18px;
  bottom: 72px;
  width: min(240px, 42%);
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.hero-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
}

.about-grid,
.practices-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  margin-top: 48px;
}

.about-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

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

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

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-sage);
}

.practices-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 48px;
}

.practice-card,
.price-card,
.step-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.practice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(107, 127, 99, 0.12);
  color: var(--color-sage);
  font-size: 1.4rem;
}

.practice-card h3,
.price-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.practice-card p,
.price-card p,
.step-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.price-card.featured {
  border: 2px solid rgba(122, 46, 58, 0.18);
  transform: translateY(-6px);
}

.price-value {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--color-accent);
}

.price-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--color-text-muted);
}

.steps {
  background: var(--color-bg-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
}

.cta {
  padding: 88px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 40px 44px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, #2f2b28, #4a3538);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.cta-box p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-white);
  font-size: 1.2rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .practices-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    background: rgba(247, 244, 239, 0.98);
    border-bottom: 1px solid var(--color-border);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    position: relative;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding-top: 36px;
  }

  .cta-box {
    padding: 28px 24px;
  }
}
