:root {
  --cream: #fffaf0;
  --cream-deep: #f3ead3;
  --paper: #fffdf8;
  --green: #0b6b3a;
  --green-dark: #064627;
  --lime: #b6d653;
  --gold: #d6a43f;
  --ink: #183126;
  --muted: #5f7067;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 58, 40, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 22px 32px;
  position: relative;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
  height: 46px;
  justify-content: center;
  width: 46px;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  margin-top: 3px;
  text-transform: uppercase;
}

nav {
  align-items: center;
  display: flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 28px;
}

.button {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 18px;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 12px 30px rgba(11, 107, 58, 0.22);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.87fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: 760px;
  overflow: hidden;
  padding: 36px 32px 80px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.5rem, 6.3vw, 6.4rem);
  line-height: 0.93;
  margin-bottom: 30px;
  max-width: 760px;
}

h1 em {
  color: var(--green);
  font-weight: inherit;
}

.hero-description {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  padding-bottom: 5px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.hero-notes li {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 8px;
}

.hero-notes li::before {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.hero-visual {
  min-height: 640px;
  position: relative;
}

.hero-image-wrap {
  border: 12px solid var(--paper);
  border-radius: 48% 48% 32px 32px;
  bottom: 0;
  box-shadow: var(--shadow);
  left: 50%;
  max-width: 510px;
  overflow: hidden;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.hero-image-wrap img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 22%;
  position: absolute;
  width: 100%;
}

.lime-orbit {
  border: 1px solid rgba(11, 107, 58, 0.25);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 520px;
  left: -80px;
  top: 80px;
  width: 520px;
}

.orbit-two {
  background: var(--lime);
  height: 120px;
  right: -20px;
  top: 25px;
  width: 120px;
}

.floating-card {
  background: var(--paper);
  border-radius: 16px;
  bottom: 38px;
  box-shadow: 0 16px 50px rgba(20, 48, 33, 0.18);
  left: -22px;
  padding: 18px 24px;
  position: absolute;
  z-index: 4;
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.floating-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.proof-strip {
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: center;
  min-height: 120px;
  padding: 24px 32px;
  text-align: center;
}

.proof-strip p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  margin: 0;
}

.quote-mark {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.proof-label {
  color: rgba(255,255,255,.64);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-section,
.info-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 120px 32px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: 1.35fr 0.65fr;
  margin-bottom: 58px;
}

.section-heading h2,
.story-copy h2,
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.03;
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 4px;
}

.menu-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.14fr 0.86fr;
}

.product-card {
  background: var(--paper);
  border: 1px solid rgba(12, 77, 43, 0.09);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(20, 60, 39, 0.07);
  overflow: hidden;
}

.product-photo {
  min-height: 350px;
  position: relative;
}

.product-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.product-badge {
  background: var(--cream);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  left: 20px;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  position: absolute;
  text-transform: uppercase;
  top: 20px;
}

.product-content {
  padding: 34px;
}

.product-content > div:first-child {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.product-kicker {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-content h3 {
  font-size: 2.15rem;
  margin-bottom: 16px;
}

.product-content > p {
  color: var(--muted);
  line-height: 1.68;
}

.price {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  margin-bottom: 18px;
}

.price small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.price-text {
  font-size: 1.45rem;
}

.button-full {
  margin-top: 10px;
  width: 100%;
}

.whole-pie-card {
  background: var(--green);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.whole-pie-card .product-kicker,
.whole-pie-card .price,
.whole-pie-card .product-content > p {
  color: rgba(255,255,255,.78);
}

.whole-pie-art {
  flex: 1;
  min-height: 350px;
  overflow: hidden;
  position: relative;
}

.whole-pie-art::before {
  background: var(--cream);
  border: 18px solid #d4a654;
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px #fff, 0 35px 0 rgba(0,0,0,.08);
  content: "";
  height: 260px;
  left: 50%;
  position: absolute;
  top: 40px;
  transform: translateX(-50%) rotate(-5deg);
  width: 260px;
}

.whole-pie-art::after {
  border: 4px dashed rgba(11,107,58,.3);
  border-radius: 50%;
  content: "";
  height: 170px;
  left: 50%;
  position: absolute;
  top: 85px;
  transform: translateX(-50%) rotate(12deg);
  width: 170px;
}

.slice {
  background: var(--lime);
  border-radius: 999px;
  height: 7px;
  position: absolute;
  width: 34px;
  z-index: 3;
}

.slice-one { left: 42%; top: 115px; transform: rotate(25deg); }
.slice-two { left: 55%; top: 185px; transform: rotate(-35deg); }
.slice-three { left: 38%; top: 225px; transform: rotate(12deg); }

.lime-dot {
  background: var(--lime);
  border-radius: 50%;
  position: absolute;
}

.dot-one { height: 70px; left: 25px; top: 28px; width: 70px; }
.dot-two { bottom: 25px; height: 44px; right: 28px; width: 44px; }

.button-light {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
}

.story-section {
  align-items: stretch;
  background: var(--cream-deep);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 680px;
}

.story-photo {
  min-height: 640px;
  position: relative;
}

.story-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 25%;
  position: absolute;
  width: 100%;
}

.story-copy {
  align-self: center;
  max-width: 650px;
  padding: 90px 9vw;
}

.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 32px;
}

.signature {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  margin-top: 34px;
}

.story-copy small {
  color: var(--muted);
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: 5px;
  text-transform: uppercase;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.info-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.info-grid article {
  border-top: 1px solid rgba(11, 107, 58, .25);
  padding: 28px 20px 20px 0;
}

.info-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.info-grid h3 {
  font-size: 1.7rem;
  margin: 24px 0 12px;
}

.info-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 90px 24px;
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta .button {
  margin-top: 38px;
}

footer {
  align-items: center;
  background: #07381f;
  color: rgba(255,255,255,.78);
  display: flex;
  justify-content: space-between;
  padding: 40px max(32px, calc((100vw - 1176px) / 2));
}

footer p {
  margin: 0;
}

footer > a {
  font-weight: 800;
}

.footer-brand .brand-mark {
  background: var(--lime);
  color: var(--green-dark);
}

.footer-brand small {
  color: rgba(255,255,255,.55);
}

.whatsapp-float {
  align-items: center;
  background: #22a960;
  border: 4px solid var(--cream);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  color: white;
  display: none;
  justify-content: space-between;
  left: 18px;
  padding: 11px 18px;
  position: fixed;
  right: 18px;
  z-index: 20;
}

.whatsapp-float span {
  font-size: 0.7rem;
  opacity: .8;
}

.whatsapp-float strong {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    gap: 40px;
    grid-template-columns: 1fr 0.85fr;
  }

  h1 {
    font-size: clamp(3.2rem, 7vw, 5rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .section-heading {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 16px 18px;
  }

  nav > a:not(.button) {
    display: none;
  }

  nav .button {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 42px 18px 64px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    margin: 0 auto;
  }

  .hero-notes {
    gap: 10px 18px;
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 590px;
    width: 100%;
  }

  .hero-image-wrap {
    border-radius: 150px 150px 24px 24px;
  }

  .floating-card {
    bottom: 24px;
    left: -5px;
  }

  .proof-strip {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 34px 22px;
  }

  .quote-mark {
    height: 34px;
  }

  .menu-section,
  .info-section {
    padding: 82px 18px;
  }

  .section-heading,
  .menu-grid,
  .story-section,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 38px;
  }

  .product-photo {
    min-height: 250px;
  }

  .whole-pie-art {
    min-height: 330px;
  }

  .story-photo {
    min-height: 520px;
  }

  .story-copy {
    padding: 76px 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
  }

  .whatsapp-float {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
