:root {
  --bg: #f6f7ef;
  --surface: #fffdf5;
  --surface-strong: #0e5d39;
  --text: #123022;
  --muted: #4b6a58;
  --line: rgba(18, 48, 34, 0.12);
  --yellow: #ffc82f;
  --yellow-deep: #f0aa00;
  --blue: #0059b8;
  --blue-deep: #003f82;
  --green: #118a4f;
  --green-deep: #0a6137;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(3, 41, 23, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 47, 0.22), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 89, 184, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfcf6 0%, var(--bg) 34%, #f0f4e5 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header,
.hero,
.stats-strip,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(246, 247, 239, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-ball {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--white), var(--yellow) 52%, var(--green) 100%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.65);
}

.brand-text {
  font-size: 0.95rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  position: fixed;
  inset: 5.3rem 1rem auto 1rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 245, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.8rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(17, 138, 79, 0.1);
  outline: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
}

.hero {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-panel h2 {
  margin: 0;
  line-height: 0.98;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  max-width: 12ch;
}

.hero-text,
.about-grid p,
.info-card p,
.step p,
.testimonial p,
.faq-item p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.8rem 0 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #1f1800;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  box-shadow: 0 16px 32px rgba(240, 170, 0, 0.28);
}

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

.hero-points {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 5px rgba(17, 138, 79, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 26rem;
  border-radius: calc(var(--radius) + 8px);
  padding: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 89, 184, 0.96), rgba(17, 138, 79, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  width: 15rem;
  height: 15rem;
  top: -4rem;
  right: -3rem;
  background: rgba(255, 200, 47, 0.22);
}

.hero-visual::after {
  width: 10rem;
  height: 10rem;
  bottom: -3rem;
  left: -2rem;
  background: rgba(255, 255, 255, 0.14);
}

.album-card,
.hero-score {
  position: absolute;
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.album-cover {
  inset: 2rem auto auto 1.4rem;
  width: min(18rem, 72%);
  padding: 1.2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 200, 47, 0.95), rgba(255, 200, 47, 0.45));
}

.album-cover strong,
.sticker strong,
.hero-score strong {
  display: block;
  font-size: 1.4rem;
}

.album-badge,
.gallery-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticker {
  display: grid;
  place-items: center;
  width: 7rem;
  aspect-ratio: 0.8;
  text-align: center;
}

.sticker-star {
  right: 1.4rem;
  top: 3rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, #0f2f66, #0b83cb);
  transform: rotate(10deg);
}

.sticker-cup {
  bottom: 5rem;
  left: 3rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, #0b7b45, #1cb769);
  transform: rotate(-12deg);
}

.hero-score {
  right: 1.2rem;
  bottom: 1.4rem;
  width: 12rem;
  padding: 1rem;
  background: rgba(8, 31, 19, 0.5);
  backdrop-filter: blur(8px);
}

.stats-strip {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stats-strip article,
.info-card,
.step,
.testimonial,
.faq-item,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.9);
  box-shadow: var(--shadow);
}

.stats-strip article {
  padding: 1.2rem 1.4rem;
}

.stats-strip strong {
  display: block;
  font-size: 2rem;
  font-family: Georgia, "Times New Roman", serif;
}

.section {
  padding: 4.5rem 0 1rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.section h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.about-grid,
.card-grid,
.steps,
.gallery,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.info-card,
.step,
.testimonial,
.faq-item {
  padding: 1.4rem;
}

.info-card h3,
.step h3,
.gallery-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.gallery-card {
  min-height: 16rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35)),
    linear-gradient(135deg, rgba(255, 200, 47, 0.85), rgba(0, 89, 184, 0.92));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.gallery-card.tall {
  min-height: 21rem;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, rgba(17, 138, 79, 0.75), rgba(0, 89, 184, 0.95));
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  color: rgba(0, 89, 184, 0.18);
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial cite {
  color: var(--green-deep);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.cta-section {
  padding-bottom: 4.5rem;
}

.cta-panel {
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 200, 47, 0.22), transparent 32%),
    rgba(255, 253, 245, 0.95);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .gallery {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

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

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header {
    padding: 1.2rem 0;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .album-cover {
    width: 19rem;
  }

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