/* ═══════════════════════════════════════════════════════════════════════════
   PARADISE EVENT RENTALS — Design System v2 "Desert Luxury"
   Fonts: Fraunces (display serif) · Outfit (UI sans)
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Palette: clear white + warm desert accents ── */
  --sand-50:  #FFFFFF;   /* page background — clear white */
  --sand-100: #F5F5F5;   /* alternate section */
  --sand-200: #E4E4E2;   /* borders, dividers */
  --sand-300: #C9C9C6;
  --cream:    #FFFFFF;   /* cards */
  --clay:     #B9551F;   /* primary — terracotta */
  --clay-dark:#96431A;
  --clay-soft:#F4ECE6;   /* clay tint bg */
  --gold:     #C08A2D;   /* accent */
  --gold-soft:#EFEEEB;
  --espresso: #2E2E2E;   /* dark sections, headings */
  --espresso-2:#454545;
  --ink:      #333333;   /* body text */
  --ink-soft: #6F6F6C;   /* muted text */
  --sage:     #77805F;   /* success / secondary accent */
  --sage-soft:#EDEFE4;
  --white:    #FFFFFF;
  --danger:   #A63B2A;

  /* ── Type ── */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* ── Shape & depth — sharp, editorial, rectangular ── */
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --shadow-sm: 0 1px 3px rgba(46,46,46,0.07), 0 1px 2px rgba(46,46,46,0.05);
  --shadow:    0 4px 16px rgba(46,46,46,0.09), 0 2px 4px rgba(46,46,46,0.05);
  --shadow-lg: 0 16px 44px rgba(46,46,46,0.16), 0 4px 12px rgba(46,46,46,0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); border: none; cursor: pointer; background: none; }
input, select, textarea { font-family: var(--font-body); font-size: 15px; color: var(--ink); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

/* ── Eyebrow / section headers ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clay);
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
.eyebrow.centered::after { content: ''; width: 28px; height: 1.5px; background: var(--gold); }

.section-header { max-width: 640px; margin-bottom: 56px; position: relative; z-index: 2; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(32px, 4.5vw, 48px); margin: 12px 0 14px; }
.section-header h2 em { font-style: italic; color: var(--clay); font-weight: 500; }
.section-header p { color: var(--ink-soft); font-size: 17px; }

/* ═══ DECORATIVE ELEMENTS ═══ */
/* Floating gradient orbs — place inside any position:relative section */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(70px); opacity: .5; z-index: 0;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb-clay { background: radial-gradient(circle, rgba(185,85,31,0.35), transparent 70%); }
.orb-gold { background: radial-gradient(circle, rgba(192,138,45,0.4), transparent 70%); }
.orb-sage { background: radial-gradient(circle, rgba(119,128,95,0.35), transparent 70%); }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.15); }
}

/* Desert star divider */
.star-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); margin: 0 auto;
}
.star-divider::before, .star-divider::after {
  content: ''; height: 1px; width: 64px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.star-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.star-divider svg { animation: starSpin 10s linear infinite; }
@keyframes starSpin { to { transform: rotate(360deg); } }

/* Product showcase ribbon — products glide across, pause on hover */
.marquee {
  background: #fff; border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200);
  overflow: hidden; padding: 12px 0; white-space: nowrap;
  position: relative; z-index: 5;
}
.marquee-track { display: inline-flex; animation: marqueeScroll 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.ribbon-item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 28px;
  cursor: pointer; border-right: 1px solid var(--sand-100);
  transition: opacity .2s;
}
.ribbon-item:hover { opacity: .75; }
.ribbon-item img { height: 58px; width: 76px; object-fit: contain; background: #fff; }
.ribbon-item span { font-size: 13px; font-weight: 600; color: var(--espresso); letter-spacing: 0.02em; }
.ribbon-item small { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-soft); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* Sparkle accent */
.sparkle { position: absolute; color: var(--gold); pointer-events: none; animation: sparklePulse 3s ease-in-out infinite; z-index: 1; }
@keyframes sparklePulse { 0%,100% { opacity: .25; transform: scale(.85); } 50% { opacity: .9; transform: scale(1.1); } }

/* ═══ BUTTONS ═══ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 0;
  font-size: 14.5px; font-weight: 600; letter-spacing: 0.04em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
/* shimmer sweep */
.btn-primary::after, .btn-dark::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn-primary:hover::after, .btn-dark:hover::after { left: 130%; }
.btn-primary { background: var(--clay); color: var(--cream); box-shadow: 0 6px 18px rgba(185,85,31,0.32); }
.btn-primary:hover { background: var(--clay-dark); box-shadow: 0 10px 26px rgba(185,85,31,0.40); }
.btn-dark { background: #fff; border: 1.5px solid var(--sand-300); color: var(--espresso); }
.btn-dark:hover { border-color: var(--clay); color: var(--clay); background: var(--clay-soft); }
.btn-outline { border: 1.5px solid var(--sand-300); color: var(--espresso); background: transparent; }
.btn-outline:hover { border-color: var(--clay); color: var(--clay); background: var(--clay-soft); }
.btn-light { background: var(--cream); color: var(--espresso); box-shadow: var(--shadow-sm); }
.btn-ghost-light { border: 1.5px solid rgba(250,250,250,0.35); color: var(--sand-50); background: transparent; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* ═══ NAVIGATION ═══ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,250,250,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-200);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  color: var(--espresso); letter-spacing: 0.01em; line-height: 1.1;
}
.nav-logo span { color: var(--clay); font-style: italic; font-weight: 500; }
.nav-logo small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 9.5px; letter-spacing: 0.34em; color: var(--ink-soft); text-transform: uppercase; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 9px 16px; border-radius: 0;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--espresso); background: var(--sand-100); }
.nav-links a.active { color: var(--clay); background: var(--clay-soft); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-quote-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 0;
  background: var(--clay); color: #FFFFFF;
  font-size: 13.5px; font-weight: 600;
  transition: background .2s, transform .2s var(--ease);
}
.nav-quote-btn:hover { background: #9C4719; transform: translateY(-1px); }
.cart-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--sand-200);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: border-color .2s, box-shadow .2s;
}
.cart-btn:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
#cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 0;
  background: var(--clay); color: var(--cream);
  font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
}
.hamburger { display: none; font-size: 24px; color: var(--espresso); }

/* "More" dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 190px; background: var(--cream); border: 1px solid var(--sand-200);
  box-shadow: var(--shadow); padding: 8px 0; z-index: 250;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 11px 20px; font-size: 14px; color: var(--ink-soft);
  border-radius: 0;
}
.nav-dropdown-menu a:hover { background: var(--sand-100); color: var(--espresso); }
@media (max-width: 960px) {
  .nav-dropdown-menu { position: static; display: block; box-shadow: none; border: none; background: transparent; padding-left: 16px; }
  .nav-dropdown > a { display: none; }
}
@media (max-width: 960px) {
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--sand-50); padding: 16px 20px 24px;
    border-bottom: 1px solid var(--sand-200); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 16px; }
  .hamburger { display: block; }
  .nav-quote-btn { display: none; }
}

/* ═══ HERO — clear white, equipment lineup showcase ═══ */
.hero {
  position: relative; overflow: hidden;
  background: #FFFFFF;
  padding: 88px 0 0; text-align: center;
}
.hero-content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px;
  background: #fff; border: 1px solid var(--sand-200);
  color: var(--ink-soft); font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 78px); color: var(--espresso);
  font-weight: 500; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
.hero-sub {
  font-size: clamp(16px, 2vw, 18.5px); color: var(--ink-soft);
  max-width: 620px; margin: 0 auto 36px; font-weight: 300; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; margin-top: 40px;
  color: var(--ink-soft); font-size: 13.5px;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust b { color: var(--clay); }
/* staggered hero entrance */
.hero-content > * { opacity: 0; transform: translateY(24px); animation: heroUp .9s var(--ease) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .25s; }
.hero-content > *:nth-child(3) { animation-delay: .4s; }
.hero-content > *:nth-child(4) { animation-delay: .55s; }
.hero-content > *:nth-child(5) { animation-delay: .7s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
/* Equipment showcase — slow endless drift to the left, edge to edge */
.hero-lineup {
  width: 100%; margin: 14px auto 0; padding: 0;
  text-align: center; overflow: hidden;
  opacity: 0; animation: heroUp 1.1s var(--ease) .55s forwards;
}
.hero-track {
  display: flex; align-items: flex-end; width: max-content;
  animation: heroDrift 90s linear infinite;
  will-change: transform;
}
.hero-lineup:hover .hero-track { animation-play-state: paused; }
.hero-track img { width: auto; flex-shrink: 0; margin-right: 48px; }
@keyframes heroDrift { to { transform: translateX(-50%); } }
.hero-lineup-caption {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); padding: 10px 24px 26px;
}

/* ═══ STATS BAR ═══ */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--sand-200); }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--clay); line-height: 1.1; }
.stat-num sup { font-size: 22px; color: var(--gold); }
.stat-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
@media (max-width: 720px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ═══ CATEGORY TILES ═══ */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 2; }
@media (max-width: 960px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.category-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-sm); display: block;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.category-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.category-tile:hover img { transform: scale(1.07); }
.category-tile-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 22px;
  background: linear-gradient(to top, rgba(40,40,40,0.86) 0%, rgba(40,40,40,0.25) 55%, transparent 100%);
}
.category-tile-label {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--sand-50); line-height: 1.2;
}
.category-tile-count { font-size: 12.5px; color: rgba(250,250,250,0.75); margin-top: 4px; letter-spacing: 0.06em; }
.category-tile-arrow {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(250,250,250,0.16); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand-50); font-size: 16px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s var(--ease);
}
.category-tile:hover .category-tile-arrow { opacity: 1; transform: translateY(0); }

/* ═══ PRODUCT CARDS ═══ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 2; }
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--cream); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--sand-200); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; aspect-ratio: 4 / 2.9; overflow: hidden; background: var(--sand-100); cursor: pointer; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
/* Clean white product shots — uniform size on pure white */
.img-contain { background: #FFFFFF; }
.img-contain img { object-fit: contain; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .quick-view {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  padding: 8px 16px; border-radius: 0;
  background: rgba(251,253,249,0.92); backdrop-filter: blur(4px);
  font-size: 12px; font-weight: 600; color: var(--espresso);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.product-card:hover .quick-view { opacity: 1; transform: none; }
.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 13px; border-radius: 0;
  background: var(--gold); color: var(--espresso);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.product-badge.az { background: var(--sage); color: var(--cream); }
.product-card-body { padding: 22px 22px 0; flex: 1; }
.product-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 7px;
}
.product-name {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--espresso); margin-bottom: 8px; line-height: 1.25; cursor: pointer;
  transition: color .2s;
}
.product-name:hover { color: var(--clay); }
.product-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.product-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 22px 0;
}
.product-price { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--espresso); }
.product-price span { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--ink-soft); }
.product-unit { font-size: 12px; color: var(--ink-soft); }
.product-card-footer { display: flex; gap: 10px; padding: 16px 22px 22px; }
.qty-input {
  width: 64px; padding: 12px 8px; text-align: center;
  border: 1.5px solid var(--sand-200); border-radius: var(--radius-sm);
  background: var(--sand-50); font-weight: 600; font-size: 15px;
  transition: border-color .2s;
}
.qty-input:focus { outline: none; border-color: var(--clay); }
.add-to-cart-btn {
  flex: 1; padding: 12px; border-radius: var(--radius-sm);
  background: var(--clay); color: #FFFFFF;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  transition: background .25s, transform .2s var(--ease);
}
.add-to-cart-btn:hover { background: #9C4719; transform: translateY(-1px); }

/* ═══ STEPS ═══ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 2; }
@media (max-width: 960px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  position: relative; background: var(--cream); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 34px 26px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-display); font-style: italic; font-size: 44px;
  font-weight: 400; color: var(--sand-200); line-height: 1;
}
.step-icon {
  width: 54px; height: 54px; border-radius: 0;
  background: var(--clay-soft); display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  transition: transform .3s var(--ease);
}
.step-card:hover .step-icon { transform: rotate(-6deg) scale(1.08); }
.step-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--espresso); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
@media (max-width: 960px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.testimonial-card {
  background: var(--cream); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '“'; position: absolute; top: 10px; right: 24px;
  font-family: var(--font-display); font-size: 90px; line-height: 1;
  color: var(--sand-200); pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 17px; color: var(--espresso-2); line-height: 1.65; flex: 1; margin-bottom: 22px;
}
.testimonial-author { font-weight: 600; font-size: 14.5px; color: var(--espresso); }
.testimonial-role { font-size: 13px; color: var(--ink-soft); }

/* ═══ CTA BANNER — bright, warm accents on white ═══ */
.cta-banner {
  position: relative; overflow: hidden; background: #FFFFFF;
  padding: 96px 0; text-align: center; border-top: 1px solid var(--sand-200);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 120%, rgba(185,85,31,0.07), transparent 55%),
              radial-gradient(ellipse at 85% -20%, rgba(192,138,45,0.07), transparent 50%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(30px, 4.5vw, 52px); color: var(--espresso); font-weight: 500; margin: 14px 0 12px; }
.cta-banner h2 em { font-style: italic; color: var(--clay); }
.cta-banner p { color: var(--ink-soft); margin-bottom: 36px; font-size: 16.5px; }
.cta-banner .btn-ghost-light { border: 1.5px solid var(--sand-300); color: var(--espresso); }
.cta-banner .btn-ghost-light:hover { border-color: var(--clay); color: var(--clay); }

/* ═══ FOOTER — light, matches the white/grey theme ═══ */
footer { background: var(--sand-100); color: var(--ink-soft); position: relative; overflow: hidden; border-top: 1px solid var(--sand-200); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 72px 24px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; position: relative; z-index: 2;
}
@media (max-width: 960px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--espresso); margin-bottom: 4px; }
.footer-brand-name span { color: var(--clay); font-style: italic; font-weight: 500; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin: 12px 0 22px; max-width: 320px; }
.footer-contact-item { font-size: 14px; margin-bottom: 10px; display: flex; gap: 9px; align-items: center; }
.footer-contact-item a:hover { color: var(--clay); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 18px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--espresso); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--sand-200);
  padding: 24px; text-align: center; font-size: 13px; color: var(--ink-soft);
  position: relative; z-index: 2;
}

/* ═══ PAGE HERO (interior pages) — pure white, seamless with the shop ═══ */
.page-hero {
  background: #FFFFFF;
  padding: 72px 24px 48px; text-align: center; position: relative;
  border-bottom: 1px solid var(--sand-200);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--clay); justify-content: center; }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 60px); color: var(--espresso); font-weight: 500; margin: 14px 0 12px; }
.page-hero h1 em { font-style: italic; color: var(--clay); }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 16.5px; font-weight: 300; }
@media (max-width: 720px) { .page-hero { padding: 48px 20px 36px; } }

/* ═══ CART DRAWER ═══ */
#cart-overlay {
  position: fixed; inset: 0; background: rgba(46,46,46,0.45); z-index: 290;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#cart-overlay.open { opacity: 1; pointer-events: auto; }
#cart-panel {
  position: fixed; top: 0; right: -440px; width: min(420px, 100vw); height: 100vh; height: 100dvh;
  background: var(--sand-50); z-index: 300;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right .4s var(--ease);
}
#cart-panel.open { right: 0; }
.cart-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px; border-bottom: 1px solid var(--sand-200);
}
.cart-panel-header h3 { font-size: 22px; }
.cart-close-btn { font-size: 18px; color: var(--ink-soft); width: 38px; height: 38px; border-radius: 50%; transition: background .2s; }
.cart-close-btn:hover { background: var(--sand-100); }
#cart-sidebar-items { flex: 1; overflow-y: auto; padding: 18px 26px; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 60px 0; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 15px 0; border-bottom: 1px solid var(--sand-200);
}
.cart-item-name { display: block; font-weight: 600; font-size: 14.5px; color: var(--espresso); }
.cart-item-price { font-size: 13px; color: var(--ink-soft); }
.cart-item-actions { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 0;
  background: var(--sand-100); border: 1px solid var(--sand-200);
  font-size: 15px; font-weight: 600; color: var(--espresso);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.qty-btn:hover { background: var(--sand-200); }
.remove-btn { color: var(--danger); font-size: 13px; margin-left: 4px; opacity: .7; }
.remove-btn:hover { opacity: 1; }
.cart-panel-footer { padding: 22px 26px 28px; border-top: 1px solid var(--sand-200); background: var(--cream); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
#cart-sidebar-total { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--espresso); }
.cart-footer-note { font-size: 12px; color: var(--ink-soft); text-align: center; margin-top: 10px; }

/* ═══ TOAST ═══ */
.cart-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 20px);
  background: #FFFFFF; color: var(--espresso);
  border: 1px solid var(--sand-200); border-left: 3px solid var(--clay);
  padding: 14px 26px; border-radius: 0; font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 400; opacity: 0;
  transition: opacity .3s, transform .3s var(--ease);
}
.cart-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ═══ PRODUCT MODAL ═══ */
#product-modal-overlay {
  position: fixed; inset: 0; z-index: 350;
  background: rgba(46,46,46,0.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#product-modal-overlay.open { display: flex; }
.product-modal {
  background: var(--sand-50); border-radius: var(--radius-lg);
  max-width: 880px; width: 100%; max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lg);
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 760px) { .product-modal { grid-template-columns: 1fr; } }
.product-modal-img { position: relative; min-height: 320px; background: #fff; }
.product-modal-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 28px; /* full product always visible — never cropped */
}
@media (max-width: 760px) { .product-modal-img { min-height: 240px; } .product-modal-img img { position: relative; height: 240px; padding: 16px; } }
.product-modal-body { padding: 38px 36px; position: relative; }
.product-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sand-100); color: var(--ink-soft); font-size: 16px;
}
.product-modal-close:hover { background: var(--sand-200); }
.product-modal-body h3 { font-size: 30px; margin: 8px 0 12px; }
.product-modal-desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; }
.product-modal-specs { margin-bottom: 24px; }
.product-modal-specs li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px dashed var(--sand-200);
  font-size: 14px; color: var(--ink);
}
.product-modal-specs li::before { content: '✦'; color: var(--gold); font-size: 12px; margin-top: 3px; }
.product-modal-price { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--espresso); margin-bottom: 20px; }
.product-modal-price span { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.product-modal-actions { display: flex; gap: 12px; }
/* Add-ons inside modal */
.modal-addons { margin: 4px 0 20px; border-top: 1px solid var(--sand-200); padding-top: 14px; }
.addon-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--sand-200);
  font-size: 13.5px; cursor: pointer;
}
.addon-row input { width: 16px; height: 16px; accent-color: var(--clay); flex-shrink: 0; }
.addon-row .addon-name { flex: 1; color: var(--ink); }
.addon-row .addon-price { font-weight: 700; color: var(--clay); white-space: nowrap; }

/* Sibling model swatches inside modal */
.modal-models { margin-top: 24px; border-top: 1px solid var(--sand-200); padding-top: 16px; }
.modal-models-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.modal-models-row { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-model-swatch {
  width: 58px; height: 50px; border: 1.5px solid var(--sand-200); background: #fff;
  padding: 2px; transition: border-color .2s, transform .2s var(--ease);
}
.modal-model-swatch:hover { border-color: var(--clay); transform: translateY(-2px); }
.modal-model-swatch img { width: 100%; height: 100%; object-fit: contain; }

/* ═══ QUOTE CALCULATOR ═══ */
.calc-layout {
  display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start;
  position: relative; z-index: 2;
}
@media (max-width: 1020px) { .calc-layout { grid-template-columns: 1fr; } }
.calc-card {
  background: var(--cream); border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 30px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.calc-card > h3 {
  font-size: 22px; margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.calc-step-badge {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--clay); color: var(--cream);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.calc-card-sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }

.calc-field { margin-bottom: 18px; }
.calc-field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--espresso); margin-bottom: 7px; }
.calc-field input, .calc-field select, .calc-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--sand-200); border-radius: var(--radius-sm);
  background: var(--sand-50); transition: border-color .2s, box-shadow .2s;
}
.calc-field input:focus, .calc-field select:focus, .calc-field textarea:focus {
  outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(185,85,31,0.12);
}
.calc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .calc-field-row { grid-template-columns: 1fr; } }
.calc-hint { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

/* Days stepper */
.days-stepper { display: flex; align-items: center; gap: 14px; }
.days-stepper button {
  width: 44px; height: 44px; border-radius: 0;
  background: var(--sand-100); border: 1.5px solid var(--sand-200);
  font-size: 20px; font-weight: 600; color: var(--espresso);
  transition: background .2s, border-color .2s;
}
.days-stepper button:hover { background: var(--sand-200); border-color: var(--sand-300); }
.days-stepper .days-value {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  min-width: 100px; text-align: center; color: var(--espresso);
}
.days-stepper .days-value small { display: block; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.multiday-note {
  margin-top: 14px; padding: 11px 16px; border-radius: var(--radius-sm);
  background: var(--sage-soft); color: var(--sage);
  font-size: 13px; font-weight: 500;
}

/* Toggle rows */
.calc-toggle {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border: 1.5px solid var(--sand-200); border-radius: var(--radius);
  background: var(--sand-50); cursor: pointer; margin-bottom: 12px;
  transition: border-color .2s, background .2s;
}
.calc-toggle:hover { border-color: var(--sand-300); }
.calc-toggle.on { border-color: var(--clay); background: var(--clay-soft); }
.calc-toggle input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--clay); flex-shrink: 0; }
.calc-toggle-title { font-weight: 600; font-size: 14.5px; color: var(--espresso); }
.calc-toggle-desc { font-size: 13px; color: var(--ink-soft); }
.calc-toggle-price { margin-left: auto; font-weight: 700; font-size: 13.5px; color: var(--clay); white-space: nowrap; }

/* Product picker — full-image cards, not boxed rows */
.calc-products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .calc-products-grid { grid-template-columns: 1fr; } }
.calc-qty-controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex: 1; }
.calc-qty-controls .qty-btn { width: 36px; height: 36px; font-size: 17px; }
.calc-qty-controls .qty-num { font-weight: 700; font-size: 16px; color: var(--espresso); min-width: 30px; text-align: center; }
.calc-remove-link { font-size: 12px; font-weight: 600; color: var(--danger); }
.calc-in-event { border-color: var(--clay) !important; box-shadow: 0 0 0 1px var(--clay); }

/* Item picker (legacy rows) */
.calc-item-search { position: relative; margin-bottom: 16px; }
.calc-item-search input { padding-left: 42px; }
.calc-item-search::before {
  content: '⌕'; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  font-size: 19px; color: var(--ink-soft); z-index: 2;
}
.calc-cat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.calc-cat-pill {
  padding: 8px 15px; border-radius: 0;
  background: var(--sand-100); border: 1px solid var(--sand-200);
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  transition: all .2s;
}
.calc-cat-pill:hover { border-color: var(--gold); color: var(--espresso); }
.calc-cat-pill.active { background: var(--clay); border-color: var(--clay); color: #FFFFFF; }
.calc-items-list { max-height: 460px; overflow-y: auto; border: 1px solid var(--sand-200); border-radius: var(--radius); }
.calc-item-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-bottom: 1px solid var(--sand-200);
  background: var(--cream); transition: background .15s;
}
.calc-item-row:last-child { border-bottom: none; }
.calc-item-row:hover { background: var(--sand-50); }
.calc-item-row.selected { background: var(--gold-soft); }
.calc-item-thumb { width: 52px; height: 44px; border-radius: 0; object-fit: cover; flex-shrink: 0; }
.calc-item-info { flex: 1; min-width: 0; }
.calc-item-name { font-weight: 600; font-size: 14px; color: var(--espresso); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.calc-item-price { font-size: 12.5px; color: var(--ink-soft); }
.calc-item-qty { display: flex; align-items: center; gap: 7px; }
.calc-item-qty .qty-btn { width: 30px; height: 30px; }
.calc-item-qty .qty-num { min-width: 26px; text-align: center; font-weight: 700; font-size: 15px; color: var(--espresso); }
.calc-item-add {
  padding: 8px 16px; border-radius: 0;
  background: var(--clay); color: #FFFFFF;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  transition: background .2s;
}
.calc-item-add:hover { background: #9C4719; }

/* Summary panel — white card, orange total */
.calc-summary {
  position: sticky; top: 96px;
  background: #FFFFFF; color: var(--ink);
  border: 1px solid var(--sand-200);
  border-radius: 0; padding: 32px 30px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.calc-summary h3 { color: var(--espresso); font-size: 24px; margin-bottom: 4px; }
.calc-summary-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }
.calc-summary-items { margin-bottom: 18px; max-height: 240px; overflow-y: auto; }
.calc-summary-line {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px dashed var(--sand-200);
  font-size: 13.5px;
}
.calc-summary-line .line-name { color: var(--ink); }
.calc-summary-line .line-detail { display: block; font-size: 11.5px; color: var(--ink-soft); }
.calc-summary-line .line-amt { font-weight: 600; color: var(--espresso); white-space: nowrap; }
.calc-summary-empty { text-align: center; padding: 28px 0; color: var(--ink-soft); font-size: 14px; }
.calc-totals { border-top: 1px solid var(--sand-200); padding-top: 16px; }
.calc-total-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--ink); }
.calc-total-row.discount { color: #5F7D33; }
.calc-total-row.grand {
  margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--sand-200);
  align-items: baseline;
}
.calc-total-row.grand .label { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.calc-total-row.grand .amt { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--clay); transition: transform .2s var(--ease); }
.calc-total-row.grand .amt.pulse { animation: totalPulse .45s var(--ease); }
@keyframes totalPulse { 0% { transform: scale(1); } 40% { transform: scale(1.08); color: var(--espresso); } 100% { transform: scale(1); } }
.calc-summary-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.calc-summary .btn-light { border: 1.5px solid var(--sand-200); }
.calc-summary .btn-ghost-light { border: 1.5px solid var(--sand-300); color: var(--espresso); }
.calc-summary .btn-ghost-light:hover { border-color: var(--clay); color: var(--clay); }
.calc-summary-note { font-size: 11.5px; color: var(--ink-soft); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ═══ ABOUT / CONTACT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }

.faq-list { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.faq-item {
  background: var(--cream); border: 1px solid var(--sand-200);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-display); font-size: 17.5px; font-weight: 600; color: var(--espresso);
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--clay); font-weight: 400; transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 340px; }
.faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; position: relative; z-index: 2; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: #FFFFFF; color: var(--ink);
  border: 1px solid var(--sand-200);
  border-radius: 0; padding: 38px 34px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-info-card > * { position: relative; z-index: 2; }
.contact-info-card h3 { color: var(--espresso); font-size: 26px; margin-bottom: 10px; }
.contact-info-card > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 26px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; font-size: 14.5px; }
.contact-line .ci { width: 40px; height: 40px; border-radius: 0; background: var(--sand-100); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-line .ci svg { color: var(--clay); }
.contact-line b { display: block; color: var(--espresso); font-size: 14px; }
.contact-line span { color: var(--ink-soft); font-size: 13.5px; }

/* ═══ ICONS (inline SVG line icons) ═══ */
.icon { vertical-align: -3px; }
.step-icon svg { width: 25px; height: 25px; color: var(--clay); }
.ci svg { width: 18px; height: 18px; color: var(--gold); }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.cart-btn svg { width: 19px; height: 19px; color: var(--espresso); }
.hero-eyebrow svg { width: 14px; height: 14px; color: var(--clay); }

/* ═══ UTILITIES ═══ */
.bg-alt { background: var(--sand-100); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

::selection { background: var(--gold-soft); color: var(--espresso); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sand-100); }
::-webkit-scrollbar-thumb { background: var(--sand-300); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══ MOBILE POLISH ═══ */
@media (max-width: 720px) {
  .nav-inner { height: 64px; }
  .nav-links { top: 64px; }
  .nav-quote-btn { display: none; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero-trust { gap: 18px; font-size: 12.5px; }
  .hero-track img { margin-right: 36px; }
  .hero-lineup-caption { padding: 8px 18px 22px; }
  .ribbon-item { padding: 0 18px; gap: 10px; }
  .ribbon-item img { height: 46px; width: 62px; }
  .page-hero { padding: 56px 20px 48px; }
  .section-header { margin-bottom: 36px; }
  .cta-banner { padding: 64px 0; }
  .calc-summary { position: static; }
  .product-card-footer { flex-wrap: wrap; }
  input, select, textarea { font-size: 16px; } /* prevents iOS zoom-on-focus */
  .calc-field input, .calc-field select, .calc-field textarea { font-size: 16px; }
  .qty-input { font-size: 16px; }
  .product-modal { max-height: 94vh; }
  .footer-inner { padding: 52px 24px 36px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .product-grid { gap: 14px; }
  .steps-grid { gap: 14px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .stats-inner { padding: 28px 18px; gap: 16px; }
  .stat-num { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
