/* Ámorakác Méhészet Szolnok – termelői méz one-pager */

:root {
  --honey-gold: #e8a820;
  --honey-gold-light: #f5c842;
  --honey-gold-dark: #c8870a;
  --honey-amber: #d4920a;
  --honey-brown: #5c3d1e;
  --honey-brown-dark: #3d2810;
  --honey-cream: #fdf8ee;
  --honey-cream-dark: #f5ead6;
  --honey-warm: #fff9f0;
  --white: #ffffff;
  --text: #5c3d1e;
  --text-muted: #8a6840;
  --shadow-sm: 0 2px 8px rgba(92, 61, 30, 0.08);
  --shadow-md: 0 8px 32px rgba(92, 61, 30, 0.12);
  --shadow-lg: 0 16px 48px rgba(92, 61, 30, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1140px;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-hero: "Playfair Display", Georgia, "Times New Roman", serif;
  --hero-text-dark: #2b1b17;
  --hero-text-amber: #b07a3b;
  --hero-title-size: clamp(3.625rem, 5.5vw + 0.65rem, 6rem);
  --hero-products-size: clamp(0.9375rem, 0.55vw + 0.6rem, 1.125rem);
  --hero-ornament-top: clamp(9.5rem, 36vw, 32.5rem);
  --hero-ornament-bottom: clamp(8rem, 32vw, 30rem);
  --hero-content-width: clamp(16.5rem, 46vw, 36.25rem);
  --hero-content-pad-top: clamp(0.75rem, 3vw, 2.5rem);
  --hero-gap-sm: clamp(0.375rem, 1.1vw, 0.875rem);
  --hero-gap-md: clamp(0.625rem, 1.8vw, 1.75rem);
  --hero-subtitle-pad: clamp(0.375rem, 1.2vw, 0.625rem);
  --hero-btn-font: clamp(0.8125rem, 0.45vw + 0.7rem, 1rem);
  --hero-btn-pad-y: clamp(0.75rem, 1.6vw, 1rem);
  --hero-btn-pad-x: clamp(1rem, 3.5vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3,
.section-title,
.hero__title,
.card__title,
.product-card__name,
.step__title,
.about .section-title,
.faq__question,
.contact-card__label,
.logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn--honey {
  background: linear-gradient(180deg, var(--honey-gold-light) 0%, var(--honey-gold) 55%, var(--honey-amber) 100%);
  color: var(--honey-brown-dark);
  box-shadow: 0 4px 16px rgba(232, 168, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(200, 135, 10, 0.3);
}

.btn--honey:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 32, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 61, 30, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

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

.logo__mark {
  display: block;
  width: auto;
  height: 52.8px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--honey-brown-dark);
  letter-spacing: 0.01em;
}

.logo__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px 20px;
  flex-wrap: wrap;
}

.nav__link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--honey-brown);
  padding: 6px 0;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--honey-gold-dark);
}

.nav__cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--honey-brown);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ── */

.hero {
  position: relative;
  background: var(--honey-warm);
  overflow: hidden;
  min-height: 340px;
}

.hero__visual {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero__bg {
  width: 100%;
  height: unset;
  object-fit: contain;
  object-position: center top;
}

.hero__content-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: var(--hero-content-pad-top) clamp(12px, 3vw, 24px) 0;
  pointer-events: none;
  line-height: normal;
  min-height: 320px;
}

.hero__content {
  max-width: var(--hero-content-width);
  width: 100%;
  min-height: 263px;
  text-align: left;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

.hero__eyebrow {
  text-align: center;
}

.hero__eyebrow img {
  display: inline-block;
  width: min(100%, var(--hero-ornament-top));
  min-width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
}

.hero__title {
  font-family: var(--font-hero);
  font-size: var(--hero-title-size);
  font-weight: 400;
  font-style: normal;
  line-height: 0.92;
  color: var(--hero-text-dark);
  margin-bottom: var(--hero-gap-sm);
  text-align: center;
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  text-align: center;
  padding: var(--hero-subtitle-pad) 0;
}

.hero__subtitle img {
  display: inline-block;
  width: min(100%, var(--hero-ornament-bottom));
  min-width: 205px;
  max-width: 100%;
  height: auto;
}

.hero__products {
  font-family: var(--font-hero);
  font-size: var(--hero-products-size);
  font-weight: 400;
  font-style: normal;
  color: var(--hero-text-dark);
  margin-bottom: var(--hero-gap-md);
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
}

.hero__actions {
  text-align: center;
}

.hero__actions .btn--lg {
  padding: var(--hero-btn-pad-y) var(--hero-btn-pad-x);
  font-size: var(--hero-btn-font);
}

/* ── Sections ── */

.section {
  padding: 80px 0;
}

.section--cream {
  background: var(--honey-cream);
}

#miert {
  padding-top: 0;
}

.section--honey {
  background: linear-gradient(160deg, var(--honey-brown-dark) 0%, #6b4520 50%, var(--honey-brown) 100%);
  color: var(--honey-cream);
}

.section--contact {
  background: linear-gradient(160deg, #4a3018 0%, var(--honey-brown-dark) 100%);
  color: var(--honey-cream);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-header--light {
  color: var(--honey-cream);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-gold-dark);
  margin-bottom: 12px;
}

.section-label--light {
  color: var(--honey-gold-light);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--honey-brown-dark);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--honey-cream);
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
}

.section-lead--light {
  color: rgba(253, 248, 238, 0.85);
  max-width: unset;
}

.section-cta {
  margin-top: 48px;
}

.section-cta--center {
  text-align: center;
}

/* ── Cards ── */

.cards {
  display: grid;
  gap: 24px;
}

.cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92, 61, 30, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__title {
  font-size: 1.25rem;
  color: var(--honey-brown-dark);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Audience ── */

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.audience__heading {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--honey-brown-dark);
}

.audience__col--yes .audience__heading {
  color: #3d6b2e;
}

.audience__col--no .audience__heading {
  color: var(--text-muted);
}

.audience__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text);
}

.audience__col--yes .audience__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3d6b2e;
  font-weight: 700;
}

.audience__col--no .audience__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
}

/* ── Products ── */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

@media (min-width: 1025px) {
  .products {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .product-card {
    padding: 24px 12px;
  }
}

.product-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.product-card__icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  min-height: 64px;
  margin-bottom: 16px;
  flex-shrink: 0;
  line-height: 1;
}

.product-card__icon-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.product-card__name {
  font-size: 1.5rem;
  color: var(--honey-gold-light);
  margin: 0 0 12px;
  min-height: calc(1.5rem * 1.15 * 2);
  flex-shrink: 0;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: rgba(253, 248, 238, 0.8);
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
  min-height: calc(0.9375rem * 1.6 * 4);
}

.delivery-banner {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-banner__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--honey-gold-light);
  margin-bottom: 16px;
}

.delivery-banner__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 12px;
}

.delivery-banner__dates li {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--honey-cream);
}

.delivery-banner__note {
  font-size: 0.9375rem;
  color: rgba(253, 248, 238, 0.7);
}

/* ── Steps ── */

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

.step {
  text-align: center;
  padding: 24px;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-gold-light), var(--honey-gold));
  color: var(--honey-brown-dark);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.step__title {
  font-size: 1.25rem;
  color: var(--honey-brown-dark);
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ── About ── */

.about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.about__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about__lead {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about__facts li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(92, 61, 30, 0.1);
  font-size: 1rem;
  color: var(--text-muted);
}

.about__facts strong {
  color: var(--honey-brown-dark);
}

.gallery__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--honey-brown-dark);
  margin-bottom: 24px;
  text-align: center;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

/* ── FAQ ── */

.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(92, 61, 30, 0.12);
  padding: 4px 0;
}

.faq__question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--honey-brown-dark);
  padding: 18px 32px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--honey-gold-dark);
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after {
  content: "−";
}

.faq__answer {
  padding: 0 0 20px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey-gold-light);
  margin-bottom: 8px;
}

.contact-card__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--honey-cream);
  margin-bottom: 6px;
}

.contact-card__value a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.contact-card__value a:hover {
  color: var(--honey-gold-light);
}

.contact-card__hint {
  font-size: 0.875rem;
  color: rgba(253, 248, 238, 0.65);
}

/* ── Footer ── */

.footer {
  background: var(--honey-brown-dark);
  color: rgba(253, 248, 238, 0.75);
  padding: 48px 0 24px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--honey-cream);
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 0.875rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__nav a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--honey-gold-light);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  opacity: 0.6;
}

.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-weight: 700;
}

.footer__design {
  font-weight: 400;
  text-align: right;
}

.footer__design a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__design a:hover {
  color: var(--honey-gold-light);
}

.footer__meta {
  margin: 0;
  text-align: right;
  font-weight: 400;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 249, 240, 0.98);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(92, 61, 30, 0.1);
    box-shadow: var(--shadow-md);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(92, 61, 30, 0.06);
  }

  .nav__cta {
    margin: 12px 0 0;
    width: 100%;
  }

  .header__inner {
    position: relative;
  }

  .hero__visual {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    line-height: normal;
  }

  .hero__bg {
    display: none;
  }

  .hero__content-wrap {
    order: 2;
    position: static;
    inset: auto;
    padding: clamp(1.25rem, 4.5vw, 2rem) clamp(12px, 3vw, 24px) clamp(1.5rem, 5vw, 2.25rem);
    pointer-events: auto;
  }

  .hero__content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--hero-gap-md);
    min-height: auto;
  }

  .hero__content-scale-wrap {
    width: min(580px, calc(100vw - clamp(24px, 6vw, 48px)));
    margin-inline: auto;
    container-type: inline-size;
    overflow: hidden;
    min-height: 200px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
  }

  .hero__content-scale {
    width: 580px;
    flex-shrink: 0;
    margin-inline: auto;
    transform-origin: top center;
    transform: scale(calc(100cqw / 580px));
    margin-bottom: calc((100cqw / 580px - 1) * 26rem);
  }

  .hero__content-scale .hero__title,
  .hero__content-scale .hero__title-line {
    font-size: max(3.625rem, calc(3.625rem / (100cqw / 580px)));
  }

  .hero__content-scale .hero__products {
    font-size: max(0.9375rem, calc(0.9375rem / (100cqw / 580px)));
  }

  .hero__content-scale .hero__eyebrow img {
    width: max(190px, calc(190px / (100cqw / 580px)));
    min-width: max(190px, calc(190px / (100cqw / 580px)));
  }

  .hero__content-scale .hero__subtitle img {
    width: max(205px, calc(205px / (100cqw / 580px)));
    min-width: max(205px, calc(205px / (100cqw / 580px)));
  }

  .hero__actions {
    width: 100%;
    max-width: 580px;
  }

  .section {
    padding: 56px 0;
  }

  .cards--4,
  .products,
  .steps,
  .audience,
  .about {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__design,
  .footer__meta {
    text-align: right;
    width: 100%;
  }

  /* Bekezdések +20% mobilon; címsorok változatlanok */
  p {
    font-size: calc(1em * 1.2);
  }

  .section-lead,
  .about__lead {
    font-size: calc(1.125rem * 1.2);
  }

  .card__text,
  .product-card__desc,
  .delivery-banner__note,
  .step__text {
    font-size: calc(0.9375rem * 1.2);
  }

  .faq__answer {
    font-size: calc(1rem * 1.2);
  }

  .contact-card__value {
    font-size: calc(1.0625rem * 1.2);
  }

  .contact-card__hint {
    font-size: calc(0.875rem * 1.2);
  }

  .footer__name {
    font-size: calc(1.25rem * 1.2);
  }

  .footer__tagline {
    font-size: calc(0.875rem * 1.2);
  }

  .footer__meta {
    font-size: calc(0.8125rem * 1.2);
  }
}

@media (max-width: 480px) {
  .hero__products {
    letter-spacing: 0;
  }
}

/* —— Soon (hamarosan) oldal —— */
.page-soon {
  background: var(--honey-warm);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-soon .soon {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-soon .footer {
  margin-top: auto;
  flex-shrink: 0;
}

.page-soon .footer__top {
  margin-bottom: 0;
}

.soon {
  position: relative;
  overflow: hidden;
}

.soon__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(245, 200, 66, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(232, 168, 32, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 146, 10, 0.15) 0%, transparent 60%),
    linear-gradient(165deg, #fff9f0 0%, #fdf3dc 35%, #f9e8c4 70%, #f5ead6 100%);
}

.soon__hex {
  position: absolute;
  width: 72px;
  height: 83px;
  background: linear-gradient(145deg, rgba(245, 200, 66, 0.45) 0%, rgba(232, 168, 32, 0.25) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.7;
  animation: soon-float 8s ease-in-out infinite;
}

.soon__hex--1 { top: 8%; left: 6%; animation-delay: 0s; transform: scale(1.2); }
.soon__hex--2 { top: 18%; right: 10%; animation-delay: -2s; transform: scale(0.85) rotate(12deg); }
.soon__hex--3 { bottom: 28%; left: 12%; animation-delay: -4s; transform: scale(0.65); }
.soon__hex--4 { top: 42%; right: 4%; animation-delay: -1s; transform: scale(1.05) rotate(-8deg); opacity: 0.5; }
.soon__hex--5 { bottom: 12%; right: 22%; animation-delay: -3s; transform: scale(0.75); }

.soon__drip {
  position: absolute;
  width: 28px;
  height: 48px;
  background: linear-gradient(180deg, var(--honey-gold-light) 0%, var(--honey-gold) 60%, var(--honey-amber) 100%);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  opacity: 0.55;
  animation: soon-drip 5s ease-in-out infinite;
}

.soon__drip--1 { top: 6%; left: 42%; animation-delay: 0.5s; }
.soon__drip--2 { top: 14%; right: 32%; width: 20px; height: 36px; animation-delay: -2.5s; opacity: 0.4; }

@keyframes soon-float {
  0%, 100% { transform: translateY(0) rotate(var(--soon-rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(calc(var(--soon-rot, 0deg) + 4deg)); }
}

@keyframes soon-drip {
  0%, 100% { transform: scaleY(1); opacity: 0.55; }
  50% { transform: scaleY(1.15); opacity: 0.75; }
}

.soon__panel {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.soon__inner {
  text-align: center;
  max-width: 38rem;
}

.soon__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.soon__logo {
  width: clamp(88px, 18vw, 120px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(92, 61, 30, 0.2));
  animation: soon-bee 4s ease-in-out infinite;
}

@keyframes soon-bee {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  25% { transform: translateY(-6px) rotate(2deg); }
  75% { transform: translateY(-3px) rotate(-1deg); }
}

.soon__spark {
  position: absolute;
  color: var(--honey-gold);
  font-size: 1.25rem;
  opacity: 0.85;
  animation: soon-sparkle 2.5s ease-in-out infinite;
}

.soon__spark--1 { top: -4px; right: -12px; animation-delay: 0s; }
.soon__spark--2 { bottom: 8px; left: -16px; animation-delay: -1.2s; font-size: 0.9rem; }

@keyframes soon-sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.soon__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-amber);
}

.soon__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--honey-brown-dark);
}

@media (max-width: 768px) {
  .soon__panel {
    min-height: auto;
  }

  .soon__hex {
    width: 52px;
    height: 60px;
  }
}
