:root {
  --bg: #fffdf7;
  --bg-soft: #fffaf2;
  --surface: rgba(255, 253, 248, 0.86);
  --surface-strong: #fffbf4;
  --text: #2b2d33;
  --muted: #5f6c76;
  --line: rgba(31, 41, 51, 0.10);
  --clay: #e8723c;
  --gold: #ffbe3b;
  --teal: #2aba8f;
  --teal-deep: #1a8f6e;
  --berry: #9e4f68;
  --red: #d83333;
  --blue: #4aa3df;
  --purple: #7b5ea7;
  --shadow-lg: 0 24px 60px rgba(42, 56, 76, 0.13);
  --shadow-md: 0 16px 36px rgba(42, 56, 76, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(42, 186, 143, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(74, 163, 223, 0.08), transparent 25%),
    linear-gradient(180deg, #fffdf7 0%, #fff9ed 38%, #fff5e5 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
  opacity: 0.38;
  z-index: -1;
}

body::before {
  top: -110px;
  right: -90px;
  background: rgba(232, 114, 60, 0.25);
}

body::after {
  bottom: -120px;
  left: -90px;
  background: rgba(42, 186, 143, 0.15);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 247, 0.78);
  border-bottom: 1px solid rgba(31, 41, 51, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  display: block;
  height: 68px;
  width: auto;
  object-fit: contain;
  margin-bottom: 6px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clay), var(--gold));
  color: #fff;
  box-shadow: 0 10px 20px rgba(232, 114, 60, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(42, 186, 143, 0.12);
  color: var(--teal-deep);
  transform: translateY(-1px);
}

.page-main {
  padding: 34px 0 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding: 34px 0 20px;
}

.hero.hero-compact {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  padding-top: 18px;
}

.hero-copy,
.hero-panel {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 249, 237, 0.78));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-copy::after,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -70px -95px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 190, 59, 0.16);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-head h2,
.cta-band h2,
.hero-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero .lead,
.section-head p,
.panel p,
.price-card p,
.team-card p,
.list,
.muted {
  color: var(--muted);
}

.lead {
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 60ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clay), #f5953e);
  color: #fff;
  box-shadow: 0 14px 28px rgba(232, 114, 60, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(42, 186, 143, 0.2);
  color: var(--teal-deep);
}

.chip-row,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(31, 41, 51, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
}

.art-board {
  position: relative;
  min-height: 510px;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(26, 143, 110, 0.96), rgba(42, 186, 143, 0.82)),
    radial-gradient(circle at top right, rgba(255, 190, 59, 0.22), transparent 30%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.art-board::before,
.art-board::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.art-board::before {
  top: 38px;
  right: 36px;
  width: 126px;
  height: 126px;
  background: rgba(255, 190, 59, 0.25);
}

.art-board::after {
  bottom: -18px;
  left: -28px;
  width: 210px;
  height: 210px;
  background: rgba(255, 255, 255, 0.08);
}

.art-card {
  position: absolute;
  border-radius: 24px;
  padding: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 32px rgba(8, 38, 36, 0.24);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.art-card.active{
  opacity: 1;
  transform: translateY(0);
}

.art-card strong,
.panel h3,
.price-card h3,
.team-card h3,
.metric strong,
.timeline-item strong,
.compare-card strong,
.quote-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

.art-card p,
.compare-card p,
.quote-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.art-card.primary {
  top: 40px;
  left: 32px;
  width: 55%;
}

.art-card.note {
  top: 240px;
  right: 28px;
  width: 52%;
}

.art-card.mini {
  bottom: 40px;
  left: 30px;
  width: 50%;
  background: linear-gradient(135deg, rgba(232, 114, 60, 0.92), rgba(255, 190, 59, 0.72));
}

.section {
  padding-top: 66px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  margin: 0;
  line-height: 1.75;
  font-size: 1rem;
}

.stats-row,
.grid-3,
.grid-2,
.age-grid,
.team-grid,
.pricing-grid,
.compare-grid,
.story-grid,
.detail-grid,
.catalog-grid,
.feature-grid,
.kpi-grid,
.check-grid {
  display: grid;
  gap: 18px;
}

.stats-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-3,
.team-grid,
.pricing-grid,
.compare-grid,
.catalog-grid,
.feature-grid,
.kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.story-grid,
.detail-grid,
.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.age-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.metric,
.age-card,
.price-card,
.team-card,
.timeline-item,
.compare-card,
.quote-card,
.cta-band,
.notice,
.product-card,
.summary-card,
.feature-card,
.faq-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.panel::after,
.metric::after,
.age-card::after,
.price-card::after,
.team-card::after,
.timeline-item::after,
.compare-card::after,
.quote-card::after,
.cta-band::after,
.notice::after,
.product-card::after,
.summary-card::after,
.feature-card::after,
.faq-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -44px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 190, 59, 0.10);
}

.product-card::after {
  display: none;
}

.panel h3,
.age-card h3,
.price-card h3,
.team-card h3,
.compare-card strong,
.quote-card strong,
.product-card h3,
.summary-card h3,
.feature-card h3,
.faq-card h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
}

.panel p,
.age-card p,
.price-card p,
.team-card p,
.metric p,
.timeline-item p,
.compare-card p,
.quote-card p,
.product-card p,
.summary-card p,
.feature-card p,
.faq-card p {
  margin: 0;
  line-height: 1.75;
}

.product-card {
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: rgba(255, 249, 237, 0.5);
}

.product-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(255,255,255,0.25),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-card:hover::before{
  opacity: 1;
}

.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.25);
}

.product-card .price {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 186, 143, 0.12);
  color: var(--teal-deep);
  font-weight: 800;
  justify-self: center;
}

.product-card .meta-row,
.summary-card .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 41, 51, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.summary-card {
  display: grid;
  gap: 18px;
}

.summary-card .price-lg {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--teal-deep);
}

.summary-card .subtle {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-card,
.faq-card {
  display: grid;
  gap: 12px;
}

.number-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
}

.number-list span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--gold));
  color: #fff;
  font-weight: 800;
}

.quote-card {
  background: linear-gradient(180deg, rgba(26, 143, 110, 0.94), rgba(42, 186, 143, 0.82));
  color: #fff;
}

.quote-card p,
.quote-card .subtle {
  color: rgba(255, 255, 255, 0.82);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: start;
}

/* Product Detail Page hero: image left, info right */
.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: start;
  padding: 24px 0 0;
}

.pdp-image {
  position: sticky;
  top: 120px;
}

.pdp-image .product-hero-media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.pdp-image .product-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.pdp-info {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 249, 237, 0.78));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pdp-info::after {
  content: "";
  position: absolute;
  inset: auto -70px -95px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 190, 59, 0.16);
}

.pdp-info h1 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pdp-info .price-lg {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--teal-deep);
}

.pdp-info .subtle {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .pdp-hero {
    grid-template-columns: 1fr;
  }
  .pdp-image {
    position: static;
  }
}

.hero-stage {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 190, 59, 0.22), transparent 20%),
    linear-gradient(145deg, rgba(26, 143, 110, 0.96), rgba(42, 186, 143, 0.84));
  box-shadow: var(--shadow-lg);
}

.hero-stage .stage-card {
  position: absolute;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 28px rgba(8, 38, 36, 0.2);
}

.hero-stage .stage-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.hero-stage .stage-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero-stage .stage-card.one {
  top: 28px;
  left: 28px;
  width: 56%;
}

.hero-stage .stage-card.two {
  top: 160px;
  right: 24px;
  width: 48%;
}

.hero-stage .stage-card.three {
  bottom: 26px;
  left: 34px;
  width: 44%;
  background: linear-gradient(135deg, rgba(232, 114, 60, 0.92), rgba(255, 190, 59, 0.72));
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  align-items: start;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-hero-media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.product-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.gallery-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.25), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(158, 79, 104, 0.95), rgba(232, 114, 60, 0.88));
  box-shadow: var(--shadow-lg);
}

.product-hero-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(31, 41, 51, 0.38);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
  font-size: 0.9rem;
}

.gallery-stage::before,
.gallery-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.gallery-stage::before {
  width: 180px;
  height: 180px;
  top: -48px;
  right: -32px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-stage::after {
  width: 210px;
  height: 210px;
  left: -54px;
  bottom: -70px;
  background: rgba(255, 190, 59, 0.18);
}

.gallery-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 28px rgba(88, 30, 49, 0.25);
  backdrop-filter: blur(8px);
}

.gallery-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.gallery-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.gallery-card.main {
  grid-column: 1;
}

.gallery-card.side {
  grid-column: 2;
}

.gallery-card.bottom {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(42, 186, 143, 0.9), rgba(255, 190, 59, 0.5));
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.thumb-card {
  min-height: 120px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-md);
}

.thumb-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.thumb-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.metric {
  padding-top: 28px;
}

.metric strong {
  margin: 0 0 10px;
  color: var(--teal-deep);
  font-size: 2.3rem;
}

.eyebrow-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 186, 143, 0.1);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--gold));
}

.age-card {
  min-height: 100%;
}

.age-card .age-range,
.price-card .price {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 111, 66, 0.12);
  color: #7d3b1e;
  font-weight: 800;
}

.price-card .price {
  background: rgba(42, 186, 143, 0.12);
  color: var(--teal-deep);
}

.story-grid .panel:nth-child(2),
.team-card:nth-child(2n),
.compare-card:nth-child(2n) {
  background: rgba(255, 248, 240, 0.86);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding-left: 74px;
}

.timeline-item .step {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--gold));
  color: #fff;
  font-weight: 800;
}

.team-card .role,
.team-card .meta {
  display: block;
  color: var(--teal-deep);
  font-weight: 800;
}

.team-card .meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: rgba(255, 249, 237, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.compare-grid {
  align-items: stretch;
}

.compare-card.highlight {
  background: linear-gradient(180deg, rgba(26, 143, 110, 0.94), rgba(42, 186, 143, 0.82));
  color: #fff;
}

.compare-card.highlight p,
.compare-card.highlight .list {
  color: rgba(255, 255, 255, 0.82);
}

.compare-card.highlight .list li::before {
  background: rgba(255, 255, 255, 0.78);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-band p,
.footer-note {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.notice {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.notice strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.site-footer {
  padding: 18px 0 44px;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-md);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero,
  .hero.hero-compact,
  .grid-2,
  .story-grid,
  .detail-grid,
  .cta-band,
  .hero-split,
  .pdp-hero,
  .spotlight-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .grid-3,
  .age-grid,
  .team-grid,
  .pricing-grid,
  .compare-grid,
  .catalog-grid,
  .feature-grid,
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    align-items: flex-start;
  }

  .art-board {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .navbar,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .stats-row,
  .grid-3,
  .grid-2,
  .age-grid,
  .team-grid,
  .pricing-grid,
  .compare-grid,
  .story-grid,
  .detail-grid,
  .catalog-grid,
  .feature-grid,
  .kpi-grid,
  .check-grid,
  .hero-split,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .panel,
  .metric,
  .age-card,
  .price-card,
  .team-card,
  .timeline-item,
  .compare-card,
  .quote-card,
  .cta-band,
  .notice,
  .product-card,
  .summary-card,
  .feature-card,
  .faq-card {
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 15vw, 3.8rem);
  }

  .art-board {
    min-height: 520px;
  }

  .art-card.primary,
  .art-card.note,
  .art-card.mini {
    width: auto;
    left: 20px;
    right: 20px;
  }

  .art-card.primary {
    top: 24px;
  }

  .art-card.note {
    top: 206px;
  }

  .art-card.mini {
    bottom: 20px;
  }

  .timeline-item {
    padding-left: 22px;
  }

  .timeline-item .step {
    position: static;
    margin-bottom: 12px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .gallery-stage {
    min-height: 420px;
  }

  .hero-stage .stage-card.one,
  .hero-stage .stage-card.two,
  .hero-stage .stage-card.three {
    width: auto;
    left: 20px;
    right: 20px;
  }

  .hero-stage .stage-card.one {
    top: 20px;
  }

  .hero-stage .stage-card.two {
    top: 200px;
  }

  .hero-stage .stage-card.three {
    bottom: 20px;
  }

  .gallery-card.main,
  .gallery-card.side,
  .gallery-card.bottom {
    grid-column: 1 / -1;
  }

  .thumbnail-row {
    grid-template-columns: 1fr;
  }
}