:root {
  --bg: #f9f6ef;
  --bg-soft: #fffdfa;
  --paper: rgba(255, 253, 247, 0.86);
  --paper-strong: #fffdf8;
  --ink: #242119;
  --muted: #756f63;
  --muted-2: #9a9386;
  --sage: #526b55;
  --sage-dark: #3f5744;
  --sage-light: #e9efe6;
  --line: rgba(57, 66, 48, 0.14);
  --shadow: 0 28px 80px rgba(66, 60, 48, 0.10);
  --shadow-soft: 0 18px 52px rgba(66, 60, 48, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 16% 4%, rgba(235, 226, 211, 0.9) 0, transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(207, 221, 199, 0.64) 0, transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #fffdf8 38%, #f7f2e8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section-pad {
  padding: 104px 0;
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.72;
}

.ambient-one {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 80px;
  background: rgba(228, 216, 198, 0.9);
}

.ambient-two {
  width: 520px;
  height: 520px;
  right: -190px;
  top: 260px;
  background: rgba(197, 213, 185, 0.54);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(250, 247, 240, 0.72);
  border-bottom: 1px solid rgba(82, 107, 85, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
  line-height: 1;
}

.brand-leaf {
  position: absolute;
  top: -16px;
  left: 37px;
  color: var(--sage);
  font-family: var(--font-serif);
  font-size: 24px;
  transform: rotate(-10deg);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--sage-dark);
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
}

.footer-brand .brand-logo {
  height: 46px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: #39362d;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  opacity: 0.72;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sage);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  color: var(--sage-dark);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.button::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms ease;
}

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

.button:hover::after {
  transform: translateX(3px);
}

.button-primary {
  color: #fffdf7;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  box-shadow: 0 16px 34px rgba(63, 87, 68, 0.24);
}

.button-secondary {
  color: var(--sage-dark);
  border-color: rgba(82, 107, 85, 0.22);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 12px 32px rgba(72, 63, 50, 0.06);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 13px;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  padding-top: 50px;
  padding-bottom: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.86fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(82, 107, 85, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 14px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--muted-2);
}

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

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
  color: #252017;
}

h1 {
  max-width: 680px;
  margin: 22px 0 18px;
  font-size: clamp(48px, 5.7vw, 76px);
  line-height: 0.94;
}

h1 em {
  display: block;
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}

.text-accent {
  color: var(--sage-dark);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 11px;
  color: var(--sage-dark);
  border: 1px solid rgba(82, 107, 85, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.54);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.trust-item strong {
  color: var(--ink);
}

.mini-icon {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  height: 24px;
  color: var(--sage);
}

.hero-visual {
  position: relative;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.76), rgba(237, 230, 217, 0.44));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(249, 246, 239, 0.16), transparent 35%),
    linear-gradient(180deg, transparent 72%, rgba(249, 246, 239, 0.22));
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 52% 42%;
}

.glass-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(54, 48, 38, 0.12);
}

.hero-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
}

.hero-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-note strong {
  color: var(--ink);
  font-size: 15px;
  text-align: right;
}

.credibility-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(82, 107, 85, 0.13);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.credibility-strip article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--sage-dark);
  border-radius: 18px;
  background: var(--sage-light);
}

.credibility-strip h2,
.credibility-strip h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}

.credibility-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered .kicker {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.about-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
}

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

.step-card,
.goal-card,
.testimonial-card,
.price-card,
details {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 20px 60px rgba(74, 65, 50, 0.06);
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 36px 28px 28px;
  border-radius: 26px;
}

.step-number {
  position: absolute;
  left: 22px;
  top: -17px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fffdf7;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 12px 24px rgba(63, 87, 68, 0.22);
  font-weight: 800;
}

.step-card h3,
.goal-card h3,
.price-card h3 {
  margin-bottom: 14px;
  color: #312d24;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.step-card p,
.goal-card p,
.testimonial-card p,
.price-card li,
details p,
.about-copy p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.74;
}

.step-icon {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  color: rgba(82, 107, 85, 0.72);
}

.goals-section {
  padding-top: 42px;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.goal-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.goal-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.goal-card h3,
.goal-card p {
  padding-left: 22px;
  padding-right: 22px;
}

.goal-card h3 {
  margin-top: 35px;
  margin-bottom: 10px;
}

.goal-card p {
  margin-bottom: 24px;
}

.goal-icon {
  position: absolute;
  left: 18px;
  top: 124px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 13px;
  color: var(--sage-dark);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(82, 107, 85, 0.11);
  box-shadow: 0 14px 34px rgba(50, 43, 32, 0.10);
}

.testimonials-section {
  padding-top: 64px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 28px;
  border-radius: 24px;
}

.featured-testimonial {
  transform: translateY(-8px);
  background: rgba(255, 253, 248, 0.94);
}

.stars {
  margin-bottom: 16px;
  color: #d0a441;
  letter-spacing: 0.08em;
  font-size: 15px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fffdf7;
  background: linear-gradient(135deg, #806d55, var(--sage));
  font-size: 13px;
  font-weight: 800;
}

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

.client small {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(82, 107, 85, 0.24);
}

.slider-dots .active {
  width: 18px;
  background: var(--sage);
}

.about-section {
  padding-top: 56px;
}

.about-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(82, 107, 85, 0.12);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(243, 235, 222, 0.5));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(82, 107, 85, 0.18), transparent 68%);
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(54, 48, 38, 0.12);
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 40%;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(82, 107, 85, 0.14);
  font-size: 13px;
  font-weight: 800;
}

.about-badges svg {
  width: 22px;
  height: 22px;
}

.pricing-section {
  padding-top: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
  border-radius: 28px;
}

.price-card.is-popular {
  background: rgba(255, 253, 248, 0.96);
  transform: translateY(-12px);
  box-shadow: 0 28px 80px rgba(63, 87, 68, 0.16);
  border-color: rgba(82, 107, 85, 0.28);
}

.popular-label {
  position: absolute;
  left: 28px;
  top: -16px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #fffdf7;
  background: var(--sage-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 24px;
}

.price strong {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0;
}

.price span {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 168px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage-dark);
  font-weight: 900;
}

.payment-note {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.faq-section {
  padding-top: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  color: #312d24;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--sage-dark);
  font-size: 21px;
  font-weight: 500;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 34px;
  margin-bottom: 86px;
  padding: 48px 58px;
  border: 1px solid rgba(82, 107, 85, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 50%, rgba(82, 107, 85, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(239, 231, 216, 0.52));
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.final-cta p {
  margin-bottom: 0;
}

.site-footer {
  background: rgba(255, 253, 248, 0.72);
  border-top: 1px solid rgba(82, 107, 85, 0.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.1fr;
  gap: 54px;
  padding: 58px 0 48px;
}

.footer-brand .brand-name {
  font-size: 38px;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--sage-dark);
  border: 1px solid rgba(82, 107, 85, 0.16);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

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

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(82, 107, 85, 0.12);
}

.footer-bottom {
  color: rgba(255, 253, 248, 0.9);
  background: var(--sage-dark);
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 58px;
  font-size: 13px;
}

.bottom-row span:last-child {
  display: flex;
  gap: 24px;
}

.reveal-soft {
  animation: revealSoft 700ms ease both;
}

.hero-visual.reveal-soft {
  animation-delay: 110ms;
}

@keyframes revealSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    min-height: 560px;
  }

  .hero-photo-card img {
    height: 560px;
    object-position: 50% 36%;
  }

  .credibility-strip,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-card,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-pad {
    padding: 72px 0;
  }

  .nav-shell {
    min-height: 74px;
    justify-content: center;
  }

  .brand-name {
    font-size: 36px;
  }

  .button-small {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 16px;
  }

  .trust-row,
  .credibility-strip,
  .steps-grid,
  .goals-grid,
  .testimonial-grid,
  .pricing-grid,
  .faq-grid,
  .about-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .credibility-strip {
    padding: 22px;
  }

  .goals-grid {
    gap: 18px;
  }

  .goal-card img {
    height: 190px;
  }

  .featured-testimonial,
  .price-card.is-popular {
    transform: none;
  }

  .about-card {
    padding: 24px;
    gap: 28px;
  }

  .about-image-wrap img {
    height: 430px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 26px;
  }

  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }

  .bottom-row span:last-child {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 42px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 480px;
    height: 480px;
  }

  .hero-note {
    flex-direction: column;
    align-items: flex-start;
    left: 18px;
    right: 18px;
  }

  .hero-note strong {
    text-align: left;
  }

  .section-heading h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .credibility-strip article {
    grid-template-columns: 44px 1fr;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}
