/* ============================================
   SCENTS & FASCINATIONS — style.css
   Luxury Perfume Website
   ============================================ */

/* --- VARIABLES --- */
:root {
  --black:       #0a0908;
  --charcoal:    #111010;
  --surface:     #161412;
  --surface-2:   #1e1b18;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dim:    #8a6d2f;
  --ivory:       #f5f0e8;
  --ivory-dim:   #a89e8e;
  --rose:        #c97b7b;
  --aqua:        #6bbfbf;
  --amber:       #c4862a;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
  --radius:      4px;
  --transition:  0.35s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
em { font-style: italic; color: var(--gold-light); }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--ivory-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--ivory);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ivory);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 0.5rem 1.4rem;
  font-size: 0.75rem;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.72rem; }
.btn-lg { padding: 1rem 2.8rem; font-size: 0.85rem; }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: all var(--transition);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.97);
  z-index: 99;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ivory);
  transition: color var(--transition);
}
.mobile-menu ul a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 1rem; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(139,90,43,0.08) 0%, transparent 50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -10%; left: 10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,134,42,0.1) 0%, transparent 70%);
  bottom: 0; right: 5%;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,123,123,0.06) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -6s;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-30px) translateX(20px); }
  66% { transform: translateY(20px) translateX(-15px); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
  color: var(--ivory);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--ivory-dim);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- ANIMATIONS --- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.65s; }
.delay-4 { animation-delay: 0.85s; }
.delay-5 { animation-delay: 1.1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- STRIP / MARQUEE --- */
.strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.6rem 0;
}

.strip-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  gap: 0;
}

.strip-inner span {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- COLLECTION --- */
.collection {
  padding: 7rem 0;
  background: var(--charcoal);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.2);
}

.product-card.featured {
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 0 40px rgba(201,168,76,0.05);
}

.badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
}

.product-image {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  overflow: hidden;
}

.product-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.product-card:hover .product-glow { opacity: 0.8; }

.glow-amber { background: rgba(196,134,42,0.35); }
.glow-rose  { background: rgba(201,123,123,0.35); }
.glow-aqua  { background: rgba(107,191,191,0.3); }
.glow-gold  { background: rgba(226,201,126,0.3); }

/* --- CSS PERFUME BOTTLES --- */
.bottle {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  transition: transform var(--transition);
}
.product-card:hover .bottle { transform: scale(1.05); }

.bottle-cap {
  width: 18px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  border-radius: 3px 3px 0 0;
  margin-bottom: 3px;
}

.bottle-body {
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 2px;
}
.bottle-label span {
  font-family: var(--serif);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.9);
  text-align: center;
}

/* Bottle shapes */
.bottle-tall .bottle-body {
  width: 70px; height: 110px;
}
.bottle-round .bottle-body {
  width: 90px; height: 90px;
  border-radius: 50% 50% 10px 10px;
}
.bottle-round .bottle-cap {
  width: 20px;
}
.bottle-slim .bottle-body {
  width: 55px; height: 120px;
  border-radius: 4px 4px 8px 8px;
}

/* Bottle colors */
.amber {
  background: linear-gradient(135deg, rgba(196,134,42,0.85), rgba(139,80,20,0.9));
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: inset 2px 0 8px rgba(255,220,140,0.2), inset -2px 0 8px rgba(0,0,0,0.3);
}
.rose {
  background: linear-gradient(135deg, rgba(201,123,123,0.8), rgba(150,70,70,0.9));
  border: 1px solid rgba(201,123,123,0.3);
  box-shadow: inset 2px 0 8px rgba(255,180,180,0.2), inset -2px 0 8px rgba(0,0,0,0.3);
}
.aqua {
  background: linear-gradient(135deg, rgba(107,191,191,0.8), rgba(60,130,130,0.9));
  border: 1px solid rgba(107,191,191,0.3);
  box-shadow: inset 2px 0 8px rgba(180,240,240,0.2), inset -2px 0 8px rgba(0,0,0,0.3);
}
.gold {
  background: linear-gradient(135deg, rgba(226,201,126,0.85), rgba(180,145,60,0.9));
  border: 1px solid rgba(226,201,126,0.3);
  box-shadow: inset 2px 0 8px rgba(255,240,180,0.25), inset -2px 0 8px rgba(0,0,0,0.3);
}

.product-info {
  padding: 1.5rem;
}

.product-family {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.product-notes span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-light);
}

/* --- STORY --- */
.story {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-frame {
  width: 320px;
  height: 400px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--surface);
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}

.story-orb {
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.story-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ivory);
  line-height: 1.6;
  position: relative;
}

.story-content p {
  color: var(--ivory-dim);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.85;
}

/* --- FRAGRANCE NOTES --- */
.notes-section {
  padding: 7rem 0;
  background: var(--charcoal);
}

.pyramid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pyramid-tier {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background var(--transition);
  border-radius: 4px;
}
.pyramid-tier:hover { background: var(--surface); }

.tier-top    { border-left: 3px solid rgba(201,168,76,0.6); }
.tier-mid    { border-left: 3px solid rgba(201,168,76,0.4); }
.tier-base   { border-left: 3px solid rgba(201,168,76,0.2); }

.tier-label { min-width: 180px; }
.tier-label h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.tier-label p {
  font-size: 0.8rem;
  color: var(--ivory-dim);
}

.tier-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tier-notes span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 7rem 0;
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2);
}
.testimonial-card.featured-testimonial {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(201,168,76,0.05) 100%);
  border-color: rgba(201,168,76,0.2);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ivory);
  font-weight: 400;
}
.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--ivory-dim);
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--surface);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: rgba(201,168,76,0.08);
  left: -100px; top: -100px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: rgba(196,134,42,0.06);
  right: -50px; bottom: -50px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--ivory-dim);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

/* --- FOOTER --- */
.footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-mark {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  color: var(--gold-dim);
  font-size: 1rem;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--ivory-dim);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--ivory); }

.newsletter {
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter input:focus { border-color: var(--gold); }
.newsletter input::placeholder { color: var(--ivory-dim); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--ivory-dim);
}

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

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 1rem 1.5rem; }

  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { display: none; }

  .pyramid-tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .tier-label { min-width: unset; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  h1 { font-size: 2.6rem; }
}
