:root {
  --bg: #f4f5f0;
  --panel: #ffffff;
  --panel-soft: #f0f2ea;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #4d4d4d;
  --gold: #1f1f1f;
  --gold-strong: #000000;
  --grass: #5fa53a;
  --grass-deep: #347021;
  --sky: #edf5ff;
  --terra: #dcdcdc;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f2f4ef 55%, #ffffff 100%);
}

.site-global-bar {
  position: fixed;
  left: 50%;
  top: 16px;
  z-index: 50;
  width: min(1120px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
}

.global-brand {
  color: #111111;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.global-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

a,
button {
  color: inherit;
}

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

.intro-scene {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.28) 44%, rgba(0, 0, 0, 0.1) 100%),
    url("assets/campo.jpg") center/cover;
}

.intro-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.24) 100%);
}

.scene-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 32px));
  text-align: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.scene-kicker,
.eyebrow,
.section-label,
.card-kicker,
.pack-label,
.brand-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #111111;
}

.scene-content h1,
.brand-name,
h2,
h3,
.stat-value,
.egg-label {
  font-family: "Cormorant Garamond", serif;
}

.scene-content h1 {
  margin: 18px 0 0;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.88;
  color: #111111;
}

.scene-text,
.section-copy,
.info-card p,
.origin-copy p,
.order-copy p,
.contact p,
.stat-item p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.scene-text {
  max-width: 620px;
  margin: 18px auto 0;
  color: #202020;
}

.enter-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.enter-button,
.button-primary {
  background: linear-gradient(135deg, #111111, #000000);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.enter-button {
  margin-top: 28px;
}

.enter-button:hover,
.button:hover,
.egg-link:hover {
  transform: translateY(-3px);
}

.button-secondary,
.topbar-whatsapp {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.scene-horizon {
  display: none;
}

.hill {
  position: absolute;
  bottom: -2%;
  background: linear-gradient(180deg, #7cc64b, #30691e);
  filter: blur(1px);
}

.hill-left {
  left: -8%;
  width: 42%;
  height: 54%;
  border-radius: 50% 50% 0 0;
}

.hill-center {
  left: 25%;
  width: 50%;
  height: 64%;
  border-radius: 50% 50% 0 0;
}

.hill-right {
  right: -8%;
  width: 40%;
  height: 52%;
  border-radius: 50% 50% 0 0;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 52px;
  opacity: 1;
  transform: none;
}

body.js-ready.site-entered .page-shell {
  opacity: 1;
  transform: translateY(0);
}

.egg-stage,
.story-section,
.welfare-section,
.cards-band,
.order-section,
.origin-grid,
.packaging,
.creator-letter,
.contact {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.egg-stage,
.story-section,
.welfare-section,
.order-section,
.packaging,
.creator-letter,
.contact {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 238, 0.98));
}

.egg-stage {
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.language-button {
  min-width: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.language-button.is-active {
  background: #111111;
  color: #ffffff;
}

.flag {
  width: 22px;
  height: 15px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.flag-es {
  background: linear-gradient(180deg, #c8102e 0 25%, #ffc400 25% 75%, #c8102e 75% 100%);
}

.flag-gl {
  background:
    linear-gradient(145deg, transparent 0 42%, #68a6d9 42% 58%, transparent 58% 100%),
    #ffffff;
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 0 42%, #ffffff 42% 58%, transparent 58% 100%),
    linear-gradient(180deg, transparent 0 38%, #ffffff 38% 62%, transparent 62% 100%),
    linear-gradient(90deg, transparent 0 46%, #c8102e 46% 54%, transparent 54% 100%),
    linear-gradient(180deg, transparent 0 44%, #c8102e 44% 56%, transparent 56% 100%),
    #012169;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.brand-name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
  color: #111111;
}

.topbar-whatsapp {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.egg-stage-grid,
.order-grid,
.origin-grid,
.packaging-grid {
  display: grid;
  gap: 28px;
}

.egg-stage-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  align-items: center;
  overflow: hidden;
  min-height: 72vh;
}

.egg-stage-copy {
  position: relative;
  z-index: 6;
}

.egg-stage-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  color: #111111;
}

.lead {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.egg-carton {
  position: relative;
  width: min(100%, 720px);
  min-height: 360px;
  border-radius: 28px;
  perspective: 1600px;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.28)),
    url("assets/huevera-referencia.jpg") center/contain no-repeat;
  justify-self: end;
  transition: background 420ms ease 820ms;
}

.carton-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.18));
  pointer-events: none;
  transition: opacity 520ms ease 820ms, transform 720ms ease 820ms;
}

.egg-carton::before {
  content: "";
  position: absolute;
  inset: 50px 0 18px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  transition: opacity 520ms ease 820ms, transform 720ms ease 820ms;
}

.egg-carton-lid,
.egg-carton-base {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.26), 0 20px 40px rgba(0, 0, 0, 0.1);
}

.egg-carton-lid {
  position: absolute;
  left: 0;
  top: 50px;
  width: 68%;
  height: 220px;
  border-radius: 18px 6px 6px 18px;
  transform-origin: left center;
  transform: translateX(0) rotateY(0deg);
  transition: transform 1100ms cubic-bezier(0.2, 0.8, 0.16, 1), opacity 520ms ease 820ms, box-shadow 1100ms ease;
  z-index: 4;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(222, 215, 190, 0.18)),
    url("assets/huevera-referencia.jpg") left center / auto 100% no-repeat;
}

.egg-carton-lid::before,
.egg-carton-base::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.egg-carton-lid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.egg-carton-base {
  position: absolute;
  right: 0;
  top: 50px;
  width: 42%;
  height: 220px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  padding: 30px 32px 22px;
  border-radius: 6px 18px 18px 6px;
  overflow: visible;
  z-index: 2;
  background: rgba(218, 211, 190, 0.9);
  backdrop-filter: blur(2px);
  transition: background 520ms ease 820ms, border-color 520ms ease 820ms, box-shadow 520ms ease 820ms, transform 720ms ease 820ms;
}

.egg-carton-window {
  position: absolute;
  right: 18px;
  top: 74px;
  width: calc(42% - 36px);
  height: 164px;
  border-radius: 10px;
  background: rgba(191, 180, 158, 0.48);
  box-shadow: inset 0 0 0 12px rgba(120, 109, 88, 0.2);
  z-index: 1;
  transition: opacity 520ms ease 820ms, transform 720ms ease 820ms;
}

.lid-ridge {
  position: absolute;
  display: none;
}

.lid-ridge-left {
  left: 7%;
}

.lid-ridge-center {
  left: 36%;
}

.lid-ridge-right {
  right: 7%;
}

.egg-stage.is-open .egg-carton-lid {
  opacity: 0;
  transform: translateX(-18%) rotateY(-18deg);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(0, 0, 0, 0.08);
}

.egg-stage.is-open .egg-carton {
  background: transparent;
}

.egg-stage.is-open .carton-photo,
.egg-stage.is-open .egg-carton::before,
.egg-stage.is-open .egg-carton-window {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.egg-stage.is-open .egg-carton-base {
  left: 50%;
  right: auto;
  top: 50%;
  width: min(520px, 100%);
  height: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding: 18px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.egg-stage.is-open .egg-carton-base::before {
  display: none;
}

.egg-stage.is-open .egg-link {
  min-height: 92px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.egg-link {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0;
  text-decoration: none;
  opacity: 1;
  transform: none;
  transition: transform 320ms ease, opacity 320ms ease;
}

body.js-ready .egg-link {
  opacity: 0;
  transform: translateX(-42px) scale(0.86);
}

body.js-ready .egg-stage.is-open .egg-link {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

.egg-stage.is-open .egg-1 {
  transition-delay: 160ms;
}

.egg-stage.is-open .egg-2 {
  transition-delay: 230ms;
}

.egg-stage.is-open .egg-3 {
  transition-delay: 300ms;
}

.egg-stage.is-open .egg-4 {
  transition-delay: 370ms;
}

.egg-stage.is-open .egg-5 {
  transition-delay: 440ms;
}

.egg-stage.is-open .egg-6 {
  transition-delay: 510ms;
}

.egg-shape {
  width: 100%;
  max-width: 64px;
  aspect-ratio: 0.8 / 1;
  border-radius: 52% 52% 47% 47% / 58% 58% 42% 42%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 251, 243, 0.95), rgba(255, 235, 210, 0.96) 36%, rgba(229, 194, 148, 0.96) 76%, rgba(183, 132, 77, 0.98) 100%);
  box-shadow: inset -8px -12px 16px rgba(143, 94, 44, 0.24), 0 16px 26px rgba(35, 20, 8, 0.3);
}

.egg-label {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.story-section h2,
.section-heading h2,
.origin-copy h2,
.contact h2 {
  margin: 10px 0 0;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.94;
  color: #111111;
}

.section-copy {
  max-width: 780px;
  margin: 18px 0 0;
}

.cards-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.welfare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.welfare-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f2f4ef);
}

.welfare-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-weight: 900;
}

.welfare-card h3 {
  margin: 22px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.welfare-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.info-card {
  padding: 34px;
}

.card-dark {
  background: linear-gradient(180deg, #111111, #232323);
  color: #ffffff;
}

.card-light {
  background: linear-gradient(180deg, #ffffff, #f2f2f2);
  color: #111111;
}

.card-dark .card-kicker,
.card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.card-light .card-kicker,
.card-light p {
  color: #525252;
}

.info-card h3,
.pack-card h3 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.order-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  margin-top: 26px;
}

.order-benefits {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.7;
}

.order-card,
.stats-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 242, 0.98));
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9b8b73;
}

.order-submit {
  width: 100%;
}

.origin-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 34px;
  background:
    linear-gradient(180deg, #ffffff, #f7f8f4);
}

.origin-grid .stats-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.stat-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  font-size: 2.6rem;
  line-height: 1;
  color: #111111;
}

.packaging-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.packaging-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.letter-card {
  max-width: 860px;
  margin-top: 24px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 245, 238, 0.96));
}

.letter-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.letter-card p + p {
  margin-top: 18px;
}

.letter-signature {
  color: var(--ink) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem !important;
  line-height: 1.05 !important;
}

.pack-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
}

.pack-card p:not(.pack-label) {
  margin: 18px 0 0;
  color: inherit;
  line-height: 1.75;
  opacity: 0.78;
}

.pack-card-brown {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(145deg, #d8cfba, #a8946f 58%, #6d5737);
  color: #111111;
}

.pack-card-black {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #242424, #050505 68%);
  color: #ffffff;
}

.pack-card-black .pack-label {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  text-align: center;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

@media (max-width: 960px) {
  .egg-stage-grid,
  .welfare-grid,
  .cards-band,
  .order-grid,
  .origin-grid,
  .packaging-grid,
  .packaging-grid-two {
    grid-template-columns: 1fr;
  }

  .egg-carton {
    max-width: 620px;
    margin: 0 auto;
    justify-self: center;
  }
}

@media (max-width: 1120px) {
  .egg-stage-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .egg-stage-copy {
    max-width: 760px;
  }

  .egg-carton {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .site-global-bar {
    top: 10px;
    width: calc(100% - 18px);
    padding: 8px;
    border-radius: 22px;
  }

  .global-brand {
    font-size: 1.25rem;
  }

  .global-actions {
    gap: 6px;
  }

  .language-button {
    min-width: 48px;
    padding: 8px 7px;
    gap: 5px;
    font-size: 0.78rem;
  }

  .flag {
    width: 18px;
    height: 12px;
  }

  .site-global-bar .topbar-whatsapp {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 14px;
  }

  .scene-content,
  .egg-stage,
  .story-section,
  .welfare-section,
  .order-section,
  .origin-grid,
  .packaging,
  .creator-letter,
  .contact,
  .info-card {
    padding: 22px;
    border-radius: 24px;
  }

  .scene-content h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .egg-carton {
    display: block;
    min-height: 560px;
    max-width: 420px;
    padding: 0;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 233, 221, 0.72)),
      url("assets/huevera-referencia.jpg") center top / contain no-repeat;
  }

  .carton-photo {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 250px;
    object-fit: contain;
    z-index: 1;
  }

  .egg-carton::before {
    inset: 22px 0 auto;
    height: 250px;
  }

  .egg-carton-lid {
    display: block;
    top: 26px;
    left: 0;
    width: 100%;
    height: 230px;
    border-radius: 18px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(222, 215, 190, 0.1)),
      url("assets/huevera-referencia.jpg") center top / contain no-repeat;
  }

  .egg-carton-window {
    display: none;
  }

  .egg-carton-base {
    position: absolute;
    top: 280px;
    right: auto;
    left: 50%;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
    z-index: 2;
    transform: translateX(-50%);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .egg-carton-base::before {
    display: none;
  }

  .egg-stage.is-open .egg-carton-lid {
    transform: translateY(-24px) scale(0.95);
  }

  .egg-stage.is-open .egg-carton {
    min-height: 430px;
    background: transparent;
  }

  .egg-stage.is-open .egg-carton-base {
    top: 18px;
    left: 50%;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translateX(-50%);
  }

  .egg-label {
    max-width: 92px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.05;
    text-align: center;
  }

  .egg-shape {
    width: 50px;
    max-width: 50px;
  }

  .egg-link {
    align-self: center;
    justify-self: center;
    width: 100%;
    min-width: 0;
    gap: 7px;
    padding: 10px 4px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.36);
  }

  .pack-card {
    min-height: 220px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .button,
  .enter-button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .egg-carton {
    max-width: 350px;
    min-height: 540px;
  }

  .egg-stage.is-open .egg-carton {
    min-height: 400px;
  }

  .egg-carton-base {
    gap: 14px;
    padding: 14px;
  }

  .egg-shape {
    width: 46px;
    max-width: 46px;
  }

  .egg-label {
    max-width: 82px;
    font-size: 0.78rem;
  }
}
