:root {
  --olive: #556b2f;
  --olive-deep: #34431e;
  --sage: #a4b68a;
  --beige: #eadcc2;
  --sand: #efe7d8;
  --kraft: #8b6f4e;
  --paper: #faf8f3;
  --ink: #2f3026;
  --muted: #726d61;
  --line: rgba(85, 107, 47, 0.2);
  --shadow: 0 24px 60px rgba(55, 45, 28, 0.12);
  --serif: "Nunito", Arial, sans-serif;
  --sans: "Instrument Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(164, 182, 138, 0.12), transparent 25%),
    radial-gradient(circle at 86% 12%, rgba(234, 220, 194, 0.32), transparent 30%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(250, 248, 243, 0.9);
  border-bottom: 1px solid rgba(85, 107, 47, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(52, 67, 30, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.isologo {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.isologo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.isologo path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.iso-arc,
.iso-leaf,
.iso-stem {
  stroke: var(--olive);
}

.iso-nest {
  stroke: var(--kraft);
}

.iso-egg {
  fill: #f3e7d3;
  stroke: var(--kraft);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  min-width: 0;
}

.brand-copy strong {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: clamp(24px, 7vw, 31px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--olive);
}

.header-cta {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
}

.wa-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.wa-icon path:first-child {
  fill: currentColor;
}

.hero {
  display: grid;
  gap: 30px;
  max-width: 1840px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 52px) clamp(18px, 5vw, 72px) 22px;
}

.hero-copy {
  align-self: start;
  padding-top: clamp(8px, 7vh, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--kraft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 10px;
  max-width: 760px;
  font-size: clamp(48px, 9vw, 92px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 12vw, 76px);
}

h3 {
  margin-bottom: 8px;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.04;
}

.hero-slogan {
  margin-bottom: 16px;
  color: var(--kraft);
  font-family: var(--serif);
  font-size: clamp(26px, 6vw, 44px);
  font-weight: 700;
  line-height: 1.08;
}

.hero-text,
.section-heading p,
.origin-copy p,
.contact-section p,
.product-card p,
.benefits-list p,
.quote-card p,
.faq-list p {
  color: var(--muted);
}

.hero-text {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(17px, 4vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--olive);
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(85, 107, 47, 0.2);
}

.button.primary:hover {
  background: var(--olive-deep);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: var(--olive-deep);
}

.button.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(85, 107, 47, 0.12);
  border-radius: 32px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
}

.hero-visual picture {
  display: block;
}

.hero-visual img {
  object-fit: cover;
  object-position: center top;
  animation: slowZoom 14s ease-in-out infinite alternate;
}

.hero-seal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(250, 248, 243, 0.8);
  border-radius: 50%;
  background: rgba(85, 107, 47, 0.86);
  color: var(--paper);
  text-align: center;
  box-shadow: 0 18px 44px rgba(52, 67, 30, 0.28);
  animation: floatSeal 4.8s ease-in-out infinite;
}

.hero-seal span,
.hero-seal strong {
  display: block;
}

.hero-seal span {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.hero-seal strong {
  max-width: 76px;
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
}

.live-strip {
  overflow: hidden;
  margin: 20px 0 0;
  border-block: 1px solid var(--line);
  background: #fffaf0;
}

.live-strip div {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.live-strip span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  color: var(--olive-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0 26px;
  text-transform: uppercase;
}

.live-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.intro-strip {
  display: grid;
  gap: 1px;
  margin: 24px clamp(18px, 5vw, 72px) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.intro-strip article {
  padding: 24px;
  background: #fffaf0;
}

.intro-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
}

.intro-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--olive-deep);
  font-size: 18px;
}

.intro-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.freshness-section {
  display: grid;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, var(--paper), #fffaf0);
}

.freshness-copy {
  max-width: 780px;
}

.freshness-copy > p {
  color: var(--muted);
  font-size: clamp(17px, 3vw, 20px);
}

.freshness-tips {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.freshness-tips article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.freshness-tips strong,
.freshness-tips span {
  display: block;
}

.freshness-tips strong {
  margin-bottom: 5px;
  color: var(--olive-deep);
  font-weight: 900;
}

.freshness-tips span {
  color: var(--muted);
}

.egg-size-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  padding: clamp(22px, 5vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(250, 248, 243, 0.75), rgba(234, 220, 194, 0.35)),
    #fffaf0;
  box-shadow: var(--shadow);
}

.egg-size-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 300px;
  padding: 24px 18px;
  border: 1px solid rgba(85, 107, 47, 0.12);
  border-radius: 8px;
  background: rgba(250, 248, 243, 0.72);
  text-align: center;
}

.egg-shape {
  display: block;
  border: 1px solid rgba(139, 111, 78, 0.32);
  border-radius: 48% 48% 52% 52% / 58% 58% 42% 42%;
  background:
    radial-gradient(circle at 40% 26%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(145deg, #fff8e8, #e8d2ad);
  box-shadow: inset -10px -12px 18px rgba(139, 111, 78, 0.11), 0 18px 28px rgba(139, 111, 78, 0.12);
}

.egg-size-card.small .egg-shape {
  width: 70px;
  height: 92px;
}

.egg-size-card.medium .egg-shape {
  width: 84px;
  height: 110px;
}

.egg-size-card.large .egg-shape {
  width: 100px;
  height: 130px;
}

.egg-size-card strong {
  margin-top: 16px;
  color: var(--olive-deep);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
}

.egg-metrics {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: auto;
  margin-top: 14px;
}

.egg-metrics .metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  white-space: nowrap;
}

.egg-metrics svg {
  width: 18px;
  height: 18px;
  color: rgba(85, 107, 47, 0.72);
}

.egg-metrics path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.egg-metrics b {
  color: var(--kraft);
  font-family: var(--serif);
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 900;
  line-height: 1;
}

.egg-size-card > small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card,
.benefits-list article,
.quote-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.product-card {
  display: grid;
  gap: 20px;
  padding: 18px;
}

.product-illustration {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
}

.product-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-list {
  display: grid;
  gap: 14px;
}

.benefits-list article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.line-icon {
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(164, 182, 138, 0.16);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--olive);
}

.line-icon.leaf::before {
  width: 18px;
  height: 26px;
  border-radius: 100% 0 100% 0;
  transform: rotate(35deg);
  top: 8px;
  left: 13px;
}

.line-icon.origin::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 9px;
  left: 9px;
}

.line-icon.origin::after {
  width: 30px;
  height: 12px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  bottom: 8px;
  left: 6px;
}

.line-icon.care::before {
  width: 19px;
  height: 28px;
  border-radius: 50% 50% 45% 45%;
  top: 7px;
  left: 11px;
}

.origin-section {
  display: grid;
  gap: 24px;
  background: var(--olive);
  color: var(--paper);
}

.origin-section h2,
.origin-section .eyebrow {
  color: var(--paper);
}

.origin-copy p {
  max-width: 760px;
  color: rgba(250, 248, 243, 0.78);
}

.quote-card {
  align-self: center;
  padding: 28px;
  background: rgba(250, 248, 243, 0.1);
  border-color: rgba(250, 248, 243, 0.22);
}

.quote-card p {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 46px);
  font-weight: 800;
  line-height: 1.08;
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 940px;
  margin: 0 auto;
}

.soon-grid span {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--olive-deep);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 0 14px;
}

.faq-section {
  background: var(--sand);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  min-height: 64px;
  display: flex;
  align-items: center;
  color: var(--olive-deep);
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 20px;
}

.contact-section {
  display: grid;
  gap: 24px;
  margin: 76px clamp(18px, 5vw, 72px);
  padding: clamp(28px, 7vw, 56px);
  border-radius: 8px;
  background: #fffaf0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-section h2 {
  margin-bottom: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
  font-size: 14px;
  font-weight: 900;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp path:first-child {
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

@keyframes floatSeal {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (min-width: 720px) {
  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    align-items: start;
    min-height: calc(100vh - 74px);
  }

  .hero-visual,
  .hero-visual img {
    min-height: min(72vh, 700px);
  }

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

  .freshness-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
  }

  .product-grid {
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
    align-items: stretch;
  }

  .main-product {
    padding: 26px;
  }

  .origin-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: center;
  }

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

  .contact-section {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .egg-size-visual {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .egg-size-card {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 22px;
    min-height: 0;
    justify-items: start;
    align-content: center;
    padding: 20px 22px;
    text-align: left;
  }

  .egg-size-card .egg-shape {
    grid-row: 1 / 4;
    align-self: center;
  }

  .egg-size-card strong,
  .egg-size-card .egg-metrics,
  .egg-size-card > small {
    grid-column: 2;
  }

  .egg-size-card strong {
    margin-top: 0;
  }

  .egg-metrics {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .egg-size-card > small {
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .site-header {
    align-items: flex-start;
  }

  .isologo {
    width: 44px;
    height: 44px;
  }

  .brand-copy small {
    max-width: 210px;
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    border-radius: 22px;
  }

  .hero-seal {
    width: 92px;
    height: 92px;
  }

  .hero-seal span {
    font-size: 21px;
  }

  .egg-size-visual {
    grid-template-columns: 1fr;
  }

  .egg-size-card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 220px;
    text-align: center;
  }

  .egg-size-card .egg-shape,
  .egg-size-card strong,
  .egg-size-card .egg-metrics,
  .egg-size-card > small {
    grid-column: 1;
  }

  .egg-size-card .egg-shape {
    grid-row: auto;
  }

  .egg-metrics {
    justify-content: center;
  }

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