/* ═══════════════════════════════════════════════════════════
   SURPRISE ME – GIFT SHOP  |  styles.css
   Color System: Gold · Black · White · Off-White
═══════════════════════════════════════════════════════════ */

/* ─── FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --gold:          #c9a55a;
  --gold-light:    #e8d5a3;
  --gold-dark:     #8a6d2f;
  --gold-glow:     rgba(201, 165, 90, 0.18);
  --gold-border:   rgba(201, 165, 90, 0.22);
  --black:         #080808;
  --dark-1:        #0e0e0e;
  --dark-2:        #141414;
  --dark-3:        #1c1c1c;
  --dark-4:        #242424;
  --white:         #ffffff;
  --off-white:     #f0ece4;
  --text-dim:      rgba(255,255,255,0.55);
  --text-muted:    rgba(255,255,255,0.28);
  --nav-height:    76px;
  --radius:        0px;
  --transition:    0.38s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── CURSOR SPOTLIGHT ──────────────────────────────────── */
#cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,90,0.05) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.1s ease, top 0.1s ease;
  z-index: 0;
}

/* ─── SECTION WRAPPER ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── GOLD LINE DIVIDERS ────────────────────────────────── */
.line-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
  opacity: 0.3;
}

.line-gold-left {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 36px;
}

/* ─── SECTION LABEL ─────────────────────────────────────── */
.label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* ─── HEADINGS ──────────────────────────────────────────── */
.heading-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.12;
}

.heading-xl em, .heading-lg em {
  font-style: italic;
  color: var(--gold);
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.btn-gold:hover { box-shadow: 0 8px 32px rgba(201,165,90,0.4); transform: translateY(-2px); }
.btn-gold:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-gold span, .btn-ghost span { position: relative; z-index: 1; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.up    { transform: translateY(28px); }
.reveal.left  { transform: translateX(-28px); }
.reveal.right { transform: translateX(28px); }

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 900;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--gold-border);
  transition: height var(--transition), background var(--transition);
}

#navbar.scrolled {
  height: 62px;
  background: rgba(8,8,8,0.97);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: filter var(--transition), transform var(--transition);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(201,165,90,0.55));
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(201,165,90,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(201,165,90,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(232,213,163,0.03) 0%, transparent 50%);
}

/* animated ring lines */
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  transform: translate(-50%, -50%);
  animation: ring-pulse 7s ease-in-out infinite;
}

.hero-ring:nth-child(1) { width: 480px; height: 480px; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 680px; height: 680px; animation-delay: 1.4s; }
.hero-ring:nth-child(3) { width: 880px; height: 880px; animation-delay: 2.8s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.35; transform: translate(-50%, -50%) scale(1.025); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-logo {
  width: 280px;
  max-width: 68vw;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 40px rgba(201,165,90,0.28));
  opacity: 0;
  animation: fadeUp 1s 0.45s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.65s forwards;
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 1s 0.85s forwards;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.05s forwards;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-scroll-label {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: horizontal-tb;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
#stats {
  background: var(--dark-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0;
}

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

.stat-item {
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; right: 0; bottom: 20%;
  width: 1px;
  background: var(--gold-border);
}

.stat-item:hover { background: rgba(201,165,90,0.04); }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════════════ */
#products {
  padding: 120px 0;
  background: var(--dark-1);
  position: relative;
}

#products .section-top {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 80px;
}

#products .line-gold-left {
  margin: 20px auto 0;
}

/* ── grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}

/* ── card ── */
.p-card {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.p-card:hover { transform: translateY(-5px); z-index: 2; }

/* gold corner on hover */
.p-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-top: 28px solid var(--gold);
  border-right: 28px solid transparent;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}

.p-card:hover::before { opacity: 1; }

/* image */
.p-card-img-wrap {
  width: 100%;
  height: 148px;
  min-height: 148px;
  background: var(--dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.p-card-img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 108px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.92) saturate(0.88);
}

.p-card:hover .p-card-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.p-card-img-placeholder {
  width: 100%;
  height: 148px;
  min-height: 148px;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition);
}

.p-card:hover .p-card-img-placeholder {
  background: linear-gradient(135deg, #1e1e18 0%, #282820 100%);
}

.p-card-img-placeholder svg {
  width: 40px; height: 40px;
  stroke: rgba(201,165,90,0.25);
  fill: none;
  stroke-width: 1;
}

.p-card-img-placeholder span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

/* body */
.p-card-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-card-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.p-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.p-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.p-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--gold-border);
  gap: 12px;
}

.p-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
}

.p-card-price small {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 5px;
  vertical-align: middle;
}

.p-card-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 9px 18px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.p-card-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* empty / coming soon */
.p-empty {
  grid-column: 1 / -1;
  background: var(--dark-2);
  padding: 100px 40px;
  text-align: center;
}

.p-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.15);
}

.p-empty small {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
#about {
  padding: 130px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* visual side */
.about-visual { position: relative; }

.about-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
}

.about-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* decorative border */
.about-frame::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 55%; height: 55%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.55;
  pointer-events: none;
}

.about-frame::after {
  content: '';
  position: absolute;
  bottom: -18px; left: -18px;
  width: 55%; height: 55%;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.55;
  pointer-events: none;
}

/* floating badge */
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 112px; height: 112px;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.about-badge img { width: 78px; }

/* text side */
.about-text .heading-lg { margin-bottom: 28px; }

.about-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* value list */
.about-values { margin-top: 42px; }

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gold-border);
}

.about-value:first-child { border-top: 1px solid var(--gold-border); }

.about-value-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.about-value-body {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  background: var(--dark-1);
  border-top: 1px solid var(--gold-border);
}

.footer-top {
  padding: 64px 48px 52px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(201,165,90,0.18));
}

.footer-brand-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 200px;
}

.footer-nav-col h4 {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-col a::before {
  content: '';
  width: 12px; height: 1px;
  background: var(--gold-dark);
  flex-shrink: 0;
  transition: width var(--transition), background var(--transition);
}

.footer-nav-col a:hover { color: var(--gold); }
.footer-nav-col a:hover::before { width: 18px; background: var(--gold); }

.footer-contact h4 {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-contact p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
}

/* divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 50%, transparent 100%);
  margin: 0 48px;
}

/* disclaimer */
.footer-disclaimer {
  padding: 32px 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-disclaimer p {
  font-size: 10.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  line-height: 1.9;
  max-width: 950px;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 48px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.16);
}

.footer-heart {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

.footer-heart span { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 66px; }
  .container { padding: 0 20px; }
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  #products { padding: 80px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-frame { max-width: 100%; aspect-ratio: 16/9; }
  .about-frame-img { object-fit: contain; background: #f0ece4; padding: 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .footer-disclaimer { padding: 28px 24px; }
  .footer-bottom { padding: 18px 24px; }
  .footer-divider { margin: 0 24px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
