:root {
  --cream: #a8dce2;
  --cream-2: #8fd0d7;
  --white: #ffffff;
  --green: #0f4c53;
  --green-2: #16636c;
  --green-soft: #bfe4e8;
  --yolk: #ffc93c;
  --yolk-deep: #eda816;
  --ink: #0b3940;
  --ink-2: #24525a;
  --muted: #4d7379;
  --line: #85c4ca;
  --shadow: 0 18px 40px -22px rgba(15, 76, 83, 0.35);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--yolk);
  color: var(--green);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 90% -2%, rgba(255, 201, 60, 0.16), transparent 55%),
    radial-gradient(1100px 420px at 8% -4%, rgba(22, 99, 108, 0.14), transparent 55%),
    var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--green-2);
}

ul {
  padding-left: 1.1em;
}

.page-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 24px 28px 80px;
}

/* ---------------------------------------------------------------
   NAV
--------------------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 12px 16px;
  margin-bottom: 48px;
  background: rgba(168, 220, 226, 0.92);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--line);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--yolk);
  flex: none;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-name em {
  font-style: normal;
  color: var(--green-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:not(.nav-cta) {
  text-decoration: none;
  color: var(--ink-2);
  padding: 7px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:not(.nav-cta):hover {
  background: var(--green-soft);
  color: var(--green);
}

.nav-cta {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  padding: 9px 16px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover {
  background: var(--green-2);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--green-2);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px -8px rgba(31, 61, 43, 0.3);
}
.chip .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 61, 43, 0.4); }
  50% { box-shadow: 0 0 0 7px rgba(31, 61, 43, 0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 100%;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-2);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 9px;
  background: var(--yolk);
  opacity: 0.55;
  z-index: -1;
}

.lead {
  font-size: 1.13rem;
  color: var(--ink-2);
  max-width: 44em;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.primary {
  background: var(--yolk);
  color: var(--green);
  box-shadow: 0 12px 26px -12px rgba(240, 169, 34, 0.7);
}
.btn.primary:hover {
  background: var(--yolk-deep);
}
.btn.ghost {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--line);
}
.btn.ghost:hover {
  border-color: var(--green);
}
.btn.yellow {
  background: var(--yolk);
  color: var(--green);
  box-shadow: 0 12px 26px -12px rgba(240, 169, 34, 0.7);
  font-size: 1rem;
  padding: 16px 30px;
}
.btn.yellow:hover {
  background: var(--yolk-deep);
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  color: var(--green);
}
.hero-stats span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hero-panel {
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -12px -12px auto auto;
  width: 76px;
  height: 76px;
  background: var(--yolk);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -16px -16px;
  width: 64px;
  height: 64px;
  border: 3px dashed var(--green);
  border-radius: 50%;
  opacity: 0.35;
}

.egg-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform 0.2s ease;
}
.egg-card:hover {
  transform: rotate(0deg) translateY(-3px);
}
.egg-badge {
  align-self: flex-start;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  padding: 6px 12px;
}
.egg-illus {
  width: 190px;
  height: 190px;
}
.egg-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.egg-caption strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  color: var(--green);
}
.egg-caption span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------------------------------------------------------------
   MARQUEE
--------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 2px solid var(--green);
  padding: 14px 0;
  margin: 6px 0 64px;
  background: var(--green);
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 26s linear infinite;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yolk);
}
.marquee-track span::after {
  content: "★";
  color: var(--white);
  margin-left: 40px;
  font-size: 0.7rem;
  vertical-align: middle;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------
   SECTIONS
--------------------------------------------------------------- */
main {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yolk-deep);
  margin-bottom: 10px;
}
.section-label.light {
  color: var(--yolk);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
}
.section-heading h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  max-width: 22em;
}
.section-heading .muted {
  color: var(--muted);
  max-width: 46em;
  margin: 0;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-text {
  color: var(--ink-2);
  font-size: 1.08rem;
  max-width: 52em;
  margin: 0 0 26px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.feature-card h3 {
  font-size: 1.18rem;
  margin: 14px 0 8px;
}
.feature-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin: 0;
}
.f-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
}

/* ---------------------------------------------------------------
   PRICES
--------------------------------------------------------------- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}
.price-card.popular {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  transform: translateY(-8px);
}
.price-card.popular h3 {
  color: var(--white);
}
.pop-tag {
  position: absolute;
  top: -13px;
  left: 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--yolk);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 8px 18px -8px rgba(255, 201, 60, 0.8);
}
.price-card h3 {
  font-size: 1.2rem;
  margin: 0;
}
.price-big {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-big .rs {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--yolk-deep);
}
.price-card.popular .price-big .rs {
  color: var(--yolk);
}
.price-big .amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  color: var(--green);
}
.price-card.popular .price-big .amount {
  color: var(--white);
}
.price-card ul {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin: 0;
  padding-left: 1.15em;
}
.price-card.popular ul {
  color: rgba(255, 255, 255, 0.85);
}
.price-card li {
  margin-bottom: 6px;
}
.price-note {
  font-size: 0.84rem;
  font-style: italic;
  color: var(--muted);
  border-top: 1.5px dashed var(--line);
  padding-top: 12px;
  margin: auto 0 0;
}
.price-card.popular .price-note {
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.25);
}

/* ---------------------------------------------------------------
   GALLERY
--------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-slot {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green);
  background: var(--white);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-tile:hover .gallery-slot {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.soon {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.gallery-tile figcaption {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--green);
}

/* ---------------------------------------------------------------
   STEPS
--------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step h3 {
  font-size: 1.16rem;
  margin: 14px 0 8px;
}
.step p {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin: 0;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yolk);
  color: var(--green);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---------------------------------------------------------------
   CONTACT CTA
--------------------------------------------------------------- */
.cta-block {
  background: var(--green);
  border-radius: 32px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 201, 60, 0.25), transparent 70%);
}
.cta-block::after {
  content: "";
  position: absolute;
  inset: -60px auto auto -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}
.cta-block h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  max-width: 16em;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.8);
  max-width: 36em;
  margin: 0 0 26px;
}
.actions.center {
  justify-content: center;
}
.contact-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}
.c-item {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.94rem;
}
.c-item b {
  font-family: 'Sora', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yolk);
  margin-bottom: 2px;
}
.map-card {
  width: 100%;
  max-width: 720px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}
.map-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-2);
}
.map-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.m-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.m-item b {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yolk-deep);
}
.m-item span {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-2);
}
.m-directions {
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.m-directions:hover {
  background: var(--green-2);
  transform: translateY(-1px);
}

.tiny {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 22px 0 0;
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 2px dashed var(--line);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}
.footer a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.footer a:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------------
   REVEAL
--------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-panel {
    max-width: 420px;
  }
  .feature-cards,
  .price-cards,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .map-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.popular {
    transform: none;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 18px 16px 60px;
  }
  .nav {
    flex-direction: column;
    border-radius: 24px;
    text-align: center;
    gap: 12px;
  }
  .nav-links {
    justify-content: center;
    gap: 4px;
  }
  .feature-cards,
  .price-cards,
  .steps,
  .gallery-grid,
  .contact-row,
  .map-detail-grid {
    grid-template-columns: 1fr;
  }
  .contact-row {
    flex-direction: column;
    gap: 18px;
  }
  .cta-block {
    padding: 44px 24px;
    border-radius: 24px;
  }
  .hero-stats {
    gap: 22px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .chip .dot {
    animation: none;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
