@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --font-display: "Cormorant Garamond";
  --font-sans: "DM Sans";
  --ink: #173f35;
  --ink-soft: #4e6d64;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --sage: #dbe8d8;
  --sage-deep: #8dab92;
  --green: #1f755b;
  --whatsapp: #22a866;
  --peach: #edbca5;
  --line: rgba(23, 63, 53, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }

.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 26%, rgba(255,255,255,.92) 0 3px, transparent 4px),
    radial-gradient(circle at 87% 31%, rgba(255,255,255,.86) 0 2px, transparent 3px),
    linear-gradient(135deg, #e4eedf 0%, #d4e4d3 48%, #c9dfd4 100%);
  border-radius: 0 0 42px 42px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgba(255,255,255,.12), 0 0 0 176px rgba(255,255,255,.08);
}

.topbar {
  height: 90px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(23,63,53,.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 18%;
  background: var(--ink);
  color: white;
  font-family: var(--font-display), Georgia, serif;
  font-size: 20px;
  transform: rotate(-8deg);
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21a165;
  box-shadow: 0 0 0 5px rgba(33,161,101,.12);
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 104px 24px 126px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span { margin-right: 8px; }

h1, h2, h3, p { text-wrap: balance; }

h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(64px, 7.1vw, 108px);
  font-weight: 600;
  line-height: .87;
  letter-spacing: -.052em;
}

h1 span {
  display: block;
  color: var(--green);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  margin: 30px auto 31px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}

.whatsapp-button {
  width: min(100%, 420px);
  min-height: 90px;
  margin: 0 auto;
  padding: 13px 17px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 999px;
  background: var(--whatsapp);
  color: white;
  cursor: pointer;
  display: grid;
  grid-template-columns: 62px 1fr 48px;
  align-items: center;
  gap: 13px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(19,107,68,.22), inset 0 1px rgba(255,255,255,.24);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  background: #16995a;
  box-shadow: 0 22px 50px rgba(19,107,68,.28), inset 0 1px rgba(255,255,255,.24);
}

.whatsapp-button:focus-visible { outline: 3px solid white; outline-offset: 4px; }

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: white;
  color: var(--whatsapp);
  font-size: 26px;
  transform: rotate(-12deg);
}

.whatsapp-label { display: flex; flex-direction: column; gap: 3px; }
.whatsapp-label strong { font-size: 18px; letter-spacing: -.01em; }
.whatsapp-label small { color: rgba(255,255,255,.78); font-size: 12px; }

.button-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  font-size: 22px;
}

.cta-note {
  margin: 15px 0 0;
  color: #527268;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}

.cta-note span { color: var(--whatsapp); font-size: 8px; }

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  background: rgba(247,243,233,.56);
  border: 1px solid rgba(255,255,255,.72);
}

.orbit-one { width: 130px; height: 130px; left: -42px; top: 470px; }
.orbit-two { width: 74px; height: 74px; right: 6%; top: 168px; }
.leaf { position: absolute; color: rgba(31,117,91,.38); font-size: 88px; z-index: 2; }
.leaf-one { left: 8%; bottom: 58px; transform: rotate(-22deg); }
.leaf-two { right: 9%; bottom: 82px; transform: scaleX(-1) rotate(-20deg); }

.promise-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px 132px;
}

.section-heading { max-width: 620px; margin-bottom: 54px; }

.section-heading h2, .story-copy h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 600;
}

.section-heading > p:last-child, .story-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-card {
  min-height: 300px;
  padding: 27px 28px 33px;
  border-right: 1px solid var(--line);
  position: relative;
}

.promise-card:first-child { border-left: 1px solid var(--line); }
.promise-card:nth-child(2) { background: #f0f5ed; }
.promise-card:nth-child(4) { background: #fbf2ec; }
.card-number { color: var(--sage-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.sprout { position: absolute; right: 24px; top: 24px; color: var(--green); font-size: 18px; }

.promise-card h3 {
  margin: 112px 0 12px;
  font-family: var(--font-display), Georgia, serif;
  font-size: 29px;
  line-height: 1;
}

.promise-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.story-section {
  min-height: 570px;
  margin: 0 28px 28px;
  padding: 84px max(7vw, 30px);
  border-radius: 32px;
  background: var(--cream);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  overflow: hidden;
}

.story-shape {
  width: min(100%, 410px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  border-radius: 48% 52% 58% 42% / 43% 44% 56% 57%;
  background: linear-gradient(145deg, var(--peach), #e7a990);
  box-shadow: 52px 36px 0 #d9e7d6, -36px -24px 0 #f1dfd4;
  transform: rotate(-5deg);
}

.story-shape span {
  height: 170px;
  color: rgba(255,255,255,.8);
  font-family: var(--font-display), Georgia, serif;
  font-size: 230px;
  line-height: 1;
  transform: rotate(5deg);
}

.story-copy { max-width: 540px; }
.story-copy .whatsapp-button { margin: 31px 0 0; }
.whatsapp-button-compact { width: 360px; min-height: 78px; grid-template-columns: 52px 1fr 42px; }
.whatsapp-button-compact .whatsapp-icon { width: 52px; height: 52px; font-size: 22px; }

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 28px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px 30px;
}

footer > p { margin: 0; color: var(--ink-soft); font-size: 12px; text-align: right; }
.disclaimer { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); }

@media (max-width: 850px) {
  .hero { min-height: 700px; }
  .hero::before { width: 510px; height: 510px; top: 135px; }
  .hero-content { padding-top: 90px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-card:nth-child(3) { border-left: 1px solid var(--line); }
  .story-section { grid-template-columns: 1fr; text-align: center; }
  .story-shape { width: 285px; }
  .story-copy { margin: 0 auto; }
  .story-copy > p:not(.eyebrow), .story-copy .whatsapp-button { margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .hero { min-height: 680px; border-radius: 0 0 26px 26px; }
  .topbar { height: 74px; padding: 0 18px; }
  .brand { font-size: 12px; }
  .brand-mark { width: 30px; height: 30px; }
  .availability { font-size: 0; }
  .availability i { width: 9px; height: 9px; }
  .hero-content { padding: 82px 18px 92px; }
  h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-copy br { display: none; }
  .whatsapp-button { min-height: 80px; grid-template-columns: 52px 1fr 38px; padding: 12px 13px; gap: 10px; }
  .whatsapp-icon { width: 52px; height: 52px; }
  .whatsapp-label strong { font-size: 15px; }
  .whatsapp-label small { font-size: 10px; }
  .button-arrow { width: 36px; height: 36px; }
  .leaf { display: none; }
  .promise-section { padding: 88px 18px 94px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-card, .promise-card:first-child, .promise-card:nth-child(3) { border-left: 1px solid var(--line); }
  .promise-card { min-height: 235px; }
  .promise-card h3 { margin-top: 70px; }
  .story-section { margin: 0 12px 12px; padding: 68px 20px; border-radius: 24px; }
  .story-shape { width: 210px; box-shadow: 28px 22px 0 #d9e7d6, -22px -17px 0 #f1dfd4; }
  .story-shape span { height: 110px; font-size: 150px; }
  .whatsapp-button-compact { width: 100%; }
  footer { grid-template-columns: 1fr; padding: 40px 20px; }
  footer > p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .whatsapp-button { transition: none; }
}
