/* ---------- Tokens ---------- */
:root {
  --cream: #FFFBF3;
  --cream-2: #FBF3E2;
  --peach-50: #FDECDD;
  --peach-100: #FBE0C9;
  --peach-200: #F5B896;
  --peach-300: #E89971;
  --yellow-50: #FDF6DC;
  --yellow-100: #F9E8A8;
  --yellow-200: #F4D46A;
  --sage-50: #EAF0E3;
  --sage-200: #B8CBA6;
  --sage-400: #7E9B68;
  --sky-100: #DCE8EE;
  --sky-300: #9BBCCC;
  --ink: #2B2416;
  --ink-soft: #5A4F3A;
  --ink-mute: #8C816B;
  --line: rgba(43, 36, 22, 0.12);
  --line-soft: rgba(43, 36, 22, 0.06);

  --accent: var(--peach-200);
  --accent-soft: var(--peach-50);
  --accent-warm: var(--yellow-200);

  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-xl: 40px;

  --shadow-soft: 0 1px 2px rgba(43,36,22,0.04), 0 8px 24px rgba(43,36,22,0.06);
  --shadow-lift: 0 2px 4px rgba(43,36,22,0.04), 0 24px 48px -8px rgba(43,36,22,0.12);

  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
  margin: 0;
}
h1 { font-size: clamp(42px, 6.2vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.25; }
p { margin: 0; text-wrap: pretty; }

em.italic, .italic { font-style: italic; font-family: "Newsreader", Georgia, serif; font-weight: 300; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  background: rgba(255, 251, 243, 0.82);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--max); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--peach-200);
  border-radius: 50% 50% 50% 20%;
  transform: rotate(-12deg);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 8px;
  background: var(--yellow-100);
  border-radius: 50% 20% 50% 50%;
}
.logo b { font-weight: 500; display: block; line-height: 1.1; }
.logo span { color: var(--ink-mute); font-size: 11px; font-family: "DM Sans"; letter-spacing: 0.08em; text-transform: uppercase; display: block; line-height: 1.2; margin-top: 2px; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(43,36,22,0.18); }
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.btn-soft {
  background: var(--peach-100);
  color: var(--ink);
}
.btn-soft:hover { background: var(--peach-200); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--cream-2); }

@media (max-width: 768px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage-400);
  box-shadow: 0 0 0 4px rgba(126,155,104,0.18);
}

.hero h1 .accent-line {
  background: linear-gradient(180deg, transparent 62%, var(--yellow-100) 62%, var(--yellow-100) 92%, transparent 92%);
  padding: 0 4px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--peach-300);
}

.hero-lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 48ch;
  line-height: 1.55;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero-meta div {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-meta .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.hero-meta .value {
  font-family: "Newsreader", serif;
  font-size: 20px;
  color: var(--ink);
}

/* Hero photo / blob */
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  justify-self: end;
}
@media (max-width: 900px) {
  .hero-photo-wrap { margin: 0 auto; max-width: 360px; justify-self: center; }
}
.blob-frame {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--peach-100), var(--yellow-100));
  border-radius: 58% 42% 55% 45% / 48% 52% 48% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.blob-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Floating doodles around hero photo */
.doodle {
  position: absolute;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.doodle-sun {
  top: -10px; right: -20px;
  width: 74px; height: 74px;
  animation-delay: 0s;
}
.doodle-cloud {
  bottom: 20%; left: -40px;
  width: 96px; height: 64px;
  animation-delay: 1.2s;
}
.doodle-heart {
  top: 40%; right: -24px;
  width: 56px; height: 56px;
  animation-delay: 0.6s;
}
.doodle-star {
  bottom: -8px; left: 30%;
  width: 46px; height: 46px;
  animation-delay: 1.8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

/* Hero bg doodles */
.bg-doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}
.bg-doodle-1 { top: 8%; left: 4%; width: 56px; height: 56px; }
.bg-doodle-2 { top: 70%; right: 44%; width: 40px; height: 40px; }

/* ---------- Sections ---------- */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}
.section-peach { background: var(--peach-50); }
.section-yellow { background: var(--yellow-50); }
.section-cream { background: var(--cream-2); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.section-head-stack {
  flex: 1; min-width: 280px; max-width: 640px;
}
.section-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-300);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--peach-300);
}
.section-dark .section-eyebrow { color: var(--yellow-200); }
.section-dark .section-eyebrow::before { background: var(--yellow-200); }

.section-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 52ch;
  margin-top: 16px;
}
.section-dark .section-sub { color: rgba(255,251,243,0.7); }

/* ---------- Problems ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .problems-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 28px 24px 26px;
  border: 1px solid var(--line-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.problem-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.problem-icon.c1 { background: var(--peach-100); }
.problem-icon.c2 { background: var(--yellow-100); }
.problem-icon.c3 { background: var(--sky-100); }
.problem-icon.c4 { background: var(--sage-50); }

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-family: "Newsreader", serif;
}
.problem-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.problem-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 18px;
  display: block;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
}
.about-photo .frame {
  position: absolute; inset: 0;
  border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%;
  background: linear-gradient(145deg, var(--sage-200), var(--peach-200));
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.about-photo-img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: cover;
  object-position: center 15%;
  border-radius: 40% 60% 45% 55% / 55% 45% 55% 45%;
}
.about-badge {
  position: absolute;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-1 { top: 20px; right: -30px; }
.about-badge-2 { bottom: 40px; left: -32px; }
.about-badge-num {
  font-family: "Newsreader", serif;
  font-size: 28px;
  line-height: 1;
  color: var(--peach-300);
}
.about-badge-label {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.2;
  max-width: 100px;
}

.about-body h2 { margin-bottom: 24px; }
.about-story {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.about-story + .about-story { margin-top: 0; }
.about-story strong { color: var(--ink); font-weight: 500; }

.credentials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
@media (max-width: 540px) { .credentials { grid-template-columns: 1fr; } }
.cred {
  display: flex; gap: 14px; align-items: flex-start;
}
.cred-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--yellow-100);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cred-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.cred-text b { color: var(--ink); font-weight: 500; display: block; margin-bottom: 2px; font-family: "Newsreader", serif; font-size: 16px; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 32px 24px 28px;
  position: relative;
  border: 1px solid var(--line-soft);
}
.step-num {
  position: absolute;
  top: -18px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow-200);
  display: grid; place-items: center;
  font-family: "Newsreader", serif;
  font-size: 20px;
  font-style: italic;
}
.step h3 {
  font-family: "Newsreader", serif;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.step-meta {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach-300);
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

.service {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 36px 32px 32px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-featured {
  background: linear-gradient(170deg, var(--peach-100), var(--yellow-100));
}
.service-illo {
  width: 72px; height: 72px;
  border-radius: 24px;
  background: var(--yellow-100);
  display: grid; place-items: center;
}
.service-featured .service-illo { background: var(--cream); }
.service h3 {
  font-family: "Newsreader", serif;
  font-size: 26px;
  line-height: 1.15;
}
.service p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.service-list li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 10px;
}
.service-list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--peach-300);
  margin-top: 8px;
  flex-shrink: 0;
}
.service-cta {
  margin-top: auto;
  padding-top: 20px;
  font-size: 14px;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.service-cta::after { content: "→"; transition: transform 0.2s; }
.service:hover .service-cta::after { transform: translateX(3px); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

.quote {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 32px 28px 28px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.quote-mark {
  font-family: "Newsreader", serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--peach-200);
  font-style: italic;
  height: 24px;
  margin-bottom: 10px;
}
.quote-body {
  font-family: "Newsreader", serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
  font-weight: 300;
}
.quote-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-200), var(--yellow-200));
  flex-shrink: 0;
  font-family: "Newsreader", serif;
  font-style: italic;
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 18px;
}
.quote-meta {
  font-size: 14px;
  color: var(--ink);
}
.quote-meta b { font-weight: 500; display: block; }
.quote-meta span { color: var(--ink-mute); font-size: 12.5px; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--peach-100) 0%, var(--yellow-100) 100%);
}
.final-cta h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  max-width: 18ch;
  margin: 0 auto 20px;
  line-height: 1.05;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--peach-300);
  font-weight: 300;
}
.final-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 auto 36px;
}
.final-cta .btn { font-size: 16px; padding: 16px 28px; }

.final-doodles {
  position: absolute; inset: 0; pointer-events: none;
}
.final-doodles .doodle { position: absolute; opacity: 0.85; animation: float 7s ease-in-out infinite; }
.fd-1 { top: 14%; left: 12%; width: 54px; height: 54px; }
.fd-2 { top: 22%; right: 10%; width: 64px; height: 64px; animation-delay: 1s; }
.fd-3 { bottom: 18%; left: 8%; width: 48px; height: 48px; animation-delay: 2s; }
.fd-4 { bottom: 14%; right: 14%; width: 58px; height: 58px; animation-delay: 0.5s; }

/* ---------- Contact / Footer ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex; flex-direction: column; gap: 24px;
}
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: rgba(249,232,168,0.15);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.section-dark .contact-item .label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,251,243,0.55);
}
.section-dark .contact-item .value {
  font-family: "Newsreader", serif;
  font-size: 22px;
  color: var(--cream);
  margin-top: 2px;
}
.contact-item .value a:hover { color: var(--yellow-200); }

.contact-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lift);
}
.contact-card h3 {
  font-family: "Newsreader", serif;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.contact-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-card .btn-whatsapp { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.contact-card .disclaimer {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 16px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 40px 0 32px;
  background: var(--ink);
  color: rgba(255,251,243,0.6);
  font-size: 13px;
  border-top: 1px solid rgba(255,251,243,0.08);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  align-items: center;
}
.footer .logo { color: var(--cream); font-size: 18px; }
.footer .logo b { color: var(--cream); }
.footer .logo span { color: rgba(255,251,243,0.5); }

/* ---------- Utility ---------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Illustrations */
.illo { display: block; }
