:root {
  --green-900: #294238;
  --green-800: #304b3f;
  --green-700: #486659;
  --green-500: #7f998b;
  --sage-200: #d9e2dc;
  --sage-100: #edf1ed;
  --cream: #f7f2e8;
  --cream-2: #fcfaf5;
  --sand: #e4d4bd;
  --ink: #26302b;
  --muted: #66706a;
  --white: #ffffff;
  --line: rgba(41, 66, 56, 0.14);
  --shadow: 0 24px 60px rgba(41, 66, 56, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--green-900);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 820px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(252, 250, 245, 0.9);
  border-bottom: 1px solid rgba(41, 66, 56, 0.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand-name {
  color: var(--green-900);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.brand-sub {
  margin-top: 7px;
  color: var(--green-700);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 26px; font-size: .94rem; }
.nav a { text-decoration: none; color: var(--green-900); }
.nav a:hover { opacity: .7; }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 86px;
  background:
    radial-gradient(circle at 10% 10%, rgba(127,153,139,.18), transparent 28%),
    linear-gradient(135deg, var(--cream-2), var(--cream));
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: 120px;
  border: 1px solid rgba(48,75,63,.12);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}
h1, h2, h3 { margin-top: 0; color: var(--green-900); line-height: 1.12; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.045em;
}
h1 em { font-weight: 400; color: var(--green-700); }
h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
h3 { font-size: 1.35rem; margin-bottom: 10px; }
.hero-lead { max-width: 690px; font-size: 1.18rem; color: #465049; }
.hero-line { margin: 22px 0 0; color: var(--green-800); letter-spacing: .02em; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--green-800); color: white; box-shadow: 0 10px 24px rgba(48,75,63,.18); }
.button-primary:hover { background: var(--green-900); }
.button-quiet { border: 1px solid var(--green-500); color: var(--green-900); background: rgba(255,255,255,.45); }
.microcopy { margin: 14px 0 0; max-width: 560px; color: var(--muted); font-size: .9rem; }

.hero-visual {
  position: relative;
  min-height: 590px;
  border-radius: 42px 42px 42px 140px;
  background-color: #dfe7e1;
  background-image:
    linear-gradient(to top, rgba(41,66,56,.34), rgba(41,66,56,0) 38%),
    url('assets/sabrina-hero.png');
  background-size: cover;
  background-position: center 35%;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 31px 31px 31px 124px;
}
.photo-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(41,66,56,.56);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing: .13em;
}

.section { padding: 104px 0; }
.section-soft { background: var(--sage-100); text-align: center; }
.section-soft .eyebrow { margin-inline: auto; }
.big-copy { font-size: 1.22rem; color: #465049; }
.section-soft p:last-child { margin-bottom: 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading > p { margin: 0 0 8px; color: var(--muted); max-width: 480px; }
.section-heading.compact { margin-bottom: 28px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.66);
  box-shadow: 0 12px 34px rgba(41,66,56,.06);
}
.card:nth-child(2) { background: var(--cream); }
.card:nth-child(3) { background: var(--sage-100); }
.card-number {
  display: inline-flex;
  margin-bottom: 60px;
  color: var(--green-500);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.card p { color: var(--muted); margin-bottom: 0; }

.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  min-height: 580px;
  border-radius: 160px 34px 34px 34px;
  background-color: #dfe7e1;
  background-image:
    linear-gradient(to top, rgba(41,66,56,.18), rgba(41,66,56,0) 35%),
    url('assets/sabrina-hero.png');
  background-size: cover;
  background-position: 52% 32%;
  box-shadow: var(--shadow);
}
.about-copy p { color: #4c5650; }
.qualification {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.qualification-mark {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--green-700);
  border-radius: 50%;
  color: var(--green-900);
  font-weight: 900;
  letter-spacing: .05em;
}
.qualification p { margin: 0; font-size: .93rem; }

.section-deep { background: var(--green-900); color: #eff4f0; }
.section-deep h2 { color: white; }
.eyebrow-light { color: #bcd0c5; }
.system-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; }
.system-copy { font-size: 1.08rem; color: #dce8e1; }
.signature-line { margin-top: 28px; color: white; }

.steps { display: grid; gap: 14px; margin-top: 36px; }
.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: white;
}
.step > span {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--green-900);
  font-weight: 900;
}
.step h3 { margin: 3px 0 6px; }
.step p { margin: 0; color: var(--muted); }

.contact { background: var(--sage-100); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.message-example {
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--green-500);
  background: rgba(255,255,255,.54);
  border-radius: 0 16px 16px 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}
.contact-note { color: var(--muted); font-size: .9rem; }
.contact-options { display: grid; gap: 12px; }
.contact-card {
  display: grid;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(41,66,56,.12);
  background: white;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(41,66,56,.09); }
.contact-card.whatsapp { background: var(--green-800); color: white; }
.contact-card.whatsapp strong, .contact-card.whatsapp span { color: white; }
.contact-card strong { color: var(--green-900); font-size: 1.16rem; }
.contact-card > span:last-child { color: var(--muted); font-size: .92rem; overflow-wrap: anywhere; }
.contact-kicker { color: var(--green-500); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }

.closing { padding: 100px 0; background: var(--cream); text-align: center; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing-mark {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--green-700);
  color: var(--green-900);
  font-weight: 900;
  margin-bottom: 18px;
}
.closing h2 { margin-bottom: 8px; font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; letter-spacing: .11em; }
.closing p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; color: var(--green-700); }
.closing span { margin: 12px 0 24px; color: var(--muted); }

.site-footer { padding: 30px 0 100px; background: var(--green-900); color: #dce8e1; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.footer-inner > div:first-child { display: flex; flex-direction: column; }
.footer-inner strong { color: white; letter-spacing: .1em; }
.footer-inner span { color: #bac9c1; font-size: .86rem; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: white; text-decoration: none; }
.legal-note { grid-column: 1 / -1; margin: 8px 0 0; max-width: 760px; font-size: .78rem; color: #aebeb6; }

.mobile-whatsapp {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 70;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  background: var(--green-800);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(41,66,56,.3);
}

.legal-page { min-height: 100vh; background: var(--cream-2); }
.legal-page main { padding: 72px 0 110px; }
.legal-page .legal-wrap { max-width: 820px; }
.legal-page h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.legal-page h2 { margin-top: 38px; font-size: 1.7rem; }
.legal-page .warning {
  margin: 24px 0 36px;
  padding: 18px 20px;
  border-left: 4px solid #a2753f;
  background: #fff5e7;
  border-radius: 0 14px 14px 0;
}
.legal-page code { background: #eee8dd; padding: 2px 6px; border-radius: 5px; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 28px, 720px); }
  .nav a:not(.nav-cta) { display: none; }
  .header-inner { min-height: 70px; }
  .hero { padding-top: 42px; }
  .hero-grid, .about-grid, .contact-grid, .system-grid, .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { min-height: 520px; order: -1; border-radius: 30px 30px 30px 96px; }
  .about-visual { min-height: 520px; border-radius: 96px 30px 30px 30px; }
  .cards.three { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-number { margin-bottom: 28px; }
  .section { padding: 78px 0; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); }
  .site-header .nav-cta { padding: 9px 13px; }
  .brand-name { font-size: 1.2rem; }
  .brand-sub { font-size: .59rem; }
  .hero { padding: 24px 0 66px; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 390px; border-radius: 24px 24px 24px 74px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .hero-lead, .big-copy { font-size: 1.06rem; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .section { padding: 64px 0; }
  .about-visual { min-height: 420px; }
  .step { grid-template-columns: 48px 1fr; padding: 20px 18px; gap: 14px; }
  .step > span { width: 42px; height: 42px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .legal-note { grid-column: auto; }
  .mobile-whatsapp { display: block; }
  .site-footer { padding-bottom: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
