/* ===================================================
   SMEG QUERÉTARO — Landing Page
   Dark luxury · Gold accents · Italian elegance
   =================================================== */

:root {
  --bg: #0a0908;
  --text: #f5efe6;
  --muted: #cfc1ab;
  --gold: #f3d89c;
  --gold-mid: #ddb86a;
  --gold-dark: #b78a33;
  --border: rgba(255, 223, 158, 0.15);
  --border-hover: rgba(255, 223, 158, 0.35);
  --radius: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
h1, h2, h3, p, figure, ul { margin: 0; }
figure { padding: 0; }
img { display: block; max-width: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* ---- Shared ---- */
.gold-text {
  background: linear-gradient(180deg, #fff1ba 0%, #ddb86a 58%, #9e6e20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Buttons ---- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #120f09;
  background: linear-gradient(180deg, #ffeab6 0%, #ddb86a 60%, #b48730 100%);
  box-shadow: 0 8px 28px rgba(183, 138, 51, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(183, 138, 51, 0.38), 0 0 0 1px rgba(255, 232, 171, 0.12);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 227, 170, 0.2);
  background: rgba(255, 248, 236, 0.05);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(255, 227, 170, 0.4);
  background: rgba(255, 248, 236, 0.1);
}


/* ===================================================
   HERO — Full viewport, 3-column composition
   Matches reference: offer left · fridges center-bottom · logo right
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(243, 216, 156, 0.06), transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(183, 138, 51, 0.04), transparent 45%),
    linear-gradient(180deg, #060504 0%, #0c0b09 50%, var(--bg) 100%);
}

/* ---- Stage: absolute positioning (not grid!) ---- */
.hero-stage {
  position: relative;
  height: 100svh;
  min-height: 580px;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

/* Grid texture */
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 2%, black 20%, black 80%, transparent 98%);
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, black 20%, black 80%, transparent 98%);
}

/* Underglow — aligned to fridge base at bottom 18% */
.hero-stage::after {
  content: "";
  position: absolute;
  bottom: 16%;
  left: 18%;
  right: 18%;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 90% 100% at center center, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12) 35%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

/* ---- Offer: absolute top-left ---- */
.hero-offer {
  position: absolute;
  top: clamp(20px, 4vh, 48px);
  left: clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
  z-index: 3;
}

.hero-percent-image {
  width: 100%;
  max-width: clamp(360px, 39vw, 700px);
  margin-bottom: -16px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.5));
}

.hero-offer-title {
  margin-top: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero-offer-subtitle {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  font-weight: 500;
}

/* ---- Smeg Logo: absolute far right, vertically centered ---- */
.hero-brand {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-brand img {
  width: clamp(140px, 16vw, 260px);
  height: auto;
  mix-blend-mode: screen;
  animation: logoFloat 5.5s ease-in-out infinite;
}

/* ---- Fridges: absolute, full-width flex container, img centered by height ---- */
.hero-refri {
  position: absolute;
  bottom: calc(18% - 35px);
  left: 0;
  right: 0;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
}

.hero-refri > img {
  height: 100%;
  width: auto;
  max-width: none;
  pointer-events: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.5));
}

/* Ambient glow behind fridges */
.hero-refri::before {
  content: "";
  position: absolute;
  bottom: -8%;
  left: -10%;
  right: -10%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

/* ---- Caption: absolute, below fridge composition ---- */
.hero-caption {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  z-index: 1;
}

.hero-caption strong { color: #fff; }

/* ---- CTAs: absolute, at the bottom ---- */
.hero-actions {
  position: absolute;
  bottom: 1.5%;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  z-index: 3;
}


/* ---- Homea section: below viewport ---- */
.hero-homea {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(28px, 5vh, 48px) clamp(20px, 4vw, 56px) clamp(20px, 3vh, 36px);
  text-align: center;
}

.hero-homea-logo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}

.hero-homea-label {
  font-size: clamp(1.1rem, 2.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-homea-white { color: #fff; }
.hero-homea-gold  { color: #c9a44e; }

.hero-homea-url {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.hero-homea-url:hover {
  opacity: 0.8;
  color: var(--gold);
}


/* ===================================================
   PAGE SHELL
   =================================================== */
.page-shell {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 36px 0 100px;
}


/* ===================================================
   INFO GRID — Story + Discount
   =================================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--border);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.04), rgba(255, 248, 236, 0.015));
}

.story-card h2 {
  max-width: 14ch;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.story-desc {
  margin-top: 14px;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.benefits-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.6;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* ---- Discount card ---- */
.discount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0e0d0b;
}

.discount-card img {
  width: 100%;
  flex: 1 1 0;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.discount-card:hover img {
  transform: scale(1.05);
}

.discount-caption {
  padding: 20px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.4;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
}

.discount-caption strong {
  font-weight: 700;
  color: #fff;
}


/* ===================================================
   CATEGORIES
   =================================================== */
.categories {
  margin-top: 60px;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 14ch;
  margin: 0 auto;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

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

.category-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.03), rgba(255, 248, 236, 0.008));
  transition: transform 0.45s var(--ease), border-color 0.45s ease, box-shadow 0.45s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.35);
}

.category-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, #141210, var(--bg));
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-top: 1px solid var(--border);
}

.category-copy h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.category-copy a {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.category-copy a:hover { color: #fff; }


/* ===================================================
   BOTTOM CTA
   =================================================== */
.bottom-cta {
  margin-top: 60px;
  padding: 52px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at center top, rgba(243, 216, 156, 0.05), transparent 55%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.035), rgba(255, 248, 236, 0.01));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
}

.bottom-cta-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.bottom-cta-copy {
  text-align: center;
}

.bottom-cta h2 {
  max-width: 14ch;
  margin: 0 auto;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f7f1e8;
}

.bottom-cta-gallery {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 223, 158, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(30, 26, 22, 0.92), rgba(8, 7, 6, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bottom-cta-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.bottom-cta-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
  cursor: zoom-in;
}

.bottom-cta-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bottom-cta-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.bottom-cta-gallery:hover .bottom-cta-slide.is-active img {
  transform: scale(1.05);
}

.bottom-cta-next {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 223, 158, 0.2);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.72);
  color: #fff5dd;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  z-index: 2;
}

.bottom-cta-next:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(22, 19, 16, 0.9);
  border-color: rgba(255, 223, 158, 0.34);
}

.bottom-cta-next span {
  font-size: 2rem;
  line-height: 1;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 120;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  max-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 223, 158, 0.24);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.72);
  color: #fff5dd;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.bottom-cta-highlight {
  display: inline-block;
  color: #e1bc6f;
  text-shadow: 0 10px 24px rgba(223, 184, 106, 0.18);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .bottom-cta-highlight {
    background: linear-gradient(180deg, #fff4c8 0%, #edca7f 46%, #bc8c33 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}


/* ===================================================
   TOP NAV — hidden, slides down on scroll
   =================================================== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.top-nav.nav-visible {
  transform: translateY(0);
  opacity: 1;
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 56px);
}

.top-nav-logo {
  display: block;
}

.top-nav-logo img {
  height: 36px;
  width: auto;
}

.button-sm {
  min-height: 42px;
  padding: 10px 22px;
  font-size: 0.85rem;
}


/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 216, 156, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(14, 13, 11, 0.95), #060504);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 48px) 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: min(100%, 200px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 28ch;
}

.footer-contact h4,
.footer-links h4 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact li svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--border-hover);
  background: rgba(255, 248, 236, 0.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255, 223, 158, 0.08);
}

.footer-bottom p {
  color: rgba(207, 193, 171, 0.5);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(207, 193, 171, 0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}


/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #120f09;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(180deg, #ffeab6 0%, #ddb86a 60%, #b48730 100%);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 232, 171, 0.15);
}

.floating-whatsapp svg { flex-shrink: 0; }


/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 0 rgba(243, 216, 156, 0));
  }
  50% {
    transform: translateY(-5px);
    filter: drop-shadow(0 10px 16px rgba(243, 216, 156, 0.1));
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-in {
  animation: fadeInUp 0.85s var(--ease) both;
}

.anim-delay-1 { animation-delay: 0.12s; }
.anim-delay-2 { animation-delay: 0.28s; }
.anim-delay-3 { animation-delay: 0.42s; }
.anim-delay-4 { animation-delay: 0.58s; }
.anim-delay-5 { animation-delay: 0.72s; }

.section-anim {
  animation: fadeInUp 0.8s var(--ease) both;
}
.section-anim-1 { animation-delay: 0.85s; }
.section-anim-2 { animation-delay: 1.05s; }
.section-anim-3 { animation-delay: 1.25s; }


/* ===================================================
   RESPONSIVE — Tablet (≤ 980px)
   =================================================== */
@media (max-width: 980px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-offer {
    max-width: 280px;
  }

  .hero-brand {
    right: clamp(16px, 3vw, 32px);
    top: clamp(20px, 3vh, 36px);
    transform: none;
  }

  .hero-brand img {
    width: clamp(120px, 14vw, 160px);
  }

  .hero-refri {
    height: 55vh;
  }

  .section-heading h2,
  .bottom-cta h2,
  .story-card h2 {
    max-width: none;
  }

  .bottom-cta-inner {
    grid-template-columns: 1fr;
  }

  .bottom-cta-gallery,
  .bottom-cta-slides {
    min-height: 420px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ===================================================
   RESPONSIVE — Mobile (≤ 640px)
   =================================================== */
@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 16px);
    padding: 20px 0 100px;
  }

  /* Hero: switch from absolute to flex column */
  .hero-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 100svh;
    padding: 20px 12px 16px;
  }

  /* Reset ALL absolute positions to relative */
  .hero-offer,
  .hero-brand,
  .hero-refri,
  .hero-caption,
  .hero-actions {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  /* Row 1: 25% offer — centered */
  .hero-offer {
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    order: 1;
  }

  .hero-percent-image {
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-offer-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-offer-subtitle {
    font-size: 0.95rem;
    text-align: center;
  }

  /* Row 2: Smeg logo — centered */
  .hero-brand {
    order: 2;
    margin-top: 20px;
    text-align: center;
  }

  .hero-brand img {
    width: 160px;
    margin: 0 auto;
  }

  /* Row 3: Fridge — full width */
  .hero-refri {
    order: 3;
    height: auto;
    width: 100%;
    margin-top: 16px;
    padding: 0 4px;
  }

  .hero-refri > img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* Row 4: Caption */
  .hero-caption {
    order: 4;
    font-size: 1.05rem;
    padding: 12px 8px 6px;
  }

  /* Row 5: CTAs — full width stacked */
  .hero-actions {
    order: 5;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 4px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Homea section */
  .hero-homea {
    padding: 28px 14px 20px;
  }

  .hero-homea-logo {
    width: min(100%, 280px);
    margin-bottom: 16px;
  }

  .hero-homea-label {
    font-size: clamp(1rem, 6.5vw, 1.5rem);
    line-height: 1.1;
  }

  .hero-homea-url {
    font-size: clamp(1.5rem, 10vw, 2.4rem);
  }

  /* Nav */
  .top-nav-logo img {
    height: 28px;
  }

  .button-sm {
    min-height: 38px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 20px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 20px;
  }

  /* Content sections */
  .info-grid {
    border-radius: 18px;
  }

  .story-card {
    padding: 24px 20px;
    gap: 20px;
  }

  .story-card h2 {
    max-width: none;
    font-size: 1.8rem;
  }

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

  .category-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bottom-cta {
    padding: 36px 20px;
    border-radius: 18px;
  }

  .bottom-cta h2 {
    max-width: none;
  }

  .bottom-cta-gallery,
  .bottom-cta-slides {
    min-height: 300px;
  }

  .bottom-cta-next {
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .floating-whatsapp {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: center;
  }
}
