/* ============================================================
   INFLATABLE ADVERTISING BALLOONS — "Sky High" Design System
   ============================================================ */

/* --- Brady Bunch Font --- */
@font-face {
  font-family: 'Brady Bunch';
  src: url('../fonts/bradybun.woff') format('woff'),
       url('../fonts/bradybun.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  --navy: #0B1D3A;
  --navy-light: #122B52;
  --navy-mid: #1A3660;
  --accent: #FF4D2A;
  --accent-hover: #E63E1E;
  --accent-glow: rgba(255, 77, 42, 0.25);
  --gold: #FFB800;
  --sky: #4DA8FF;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #5A6072;
  --border: #E2DDD5;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.06);
  --shadow-md: 0 8px 30px rgba(11,29,58,0.1);
  --shadow-lg: 0 20px 60px rgba(11,29,58,0.12);
  --shadow-accent: 0 8px 30px rgba(255,77,42,0.2);
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.section-eyebrow { display: inline-block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; color: var(--navy); margin-bottom: 1rem; }
.section-lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }

/* --- Reveal Animation --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap; border: 2px solid transparent;
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: var(--shadow-accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(255,77,42,0.3); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* =========================================
   HEADER
   ========================================= */
.site-header { position: sticky; top: 0; z-index: 1000; }

.header-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0.65rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.logo { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.logo-icon {
  flex-shrink: 0; display: flex;
  animation: logo-float 3s ease-in-out infinite;
}
.logo-icon svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-top {
  display: flex; gap: 0; line-height: 1;
}
.logo-letter {
  display: inline-block;
  font-family: 'Brady Bunch', 'Fredoka One', var(--font-display), cursive;
  font-size: 2.82rem;
  font-weight: normal;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.2);
  animation: letter-bounce 2.5s ease calc(var(--i) * 0.18s) 3;
}
/* Per-letter colors matching live site */
.logo-letter:nth-child(1)  { color: #FFF533; } /* i - yellow */
.logo-letter:nth-child(2)  { color: #EE3138; } /* N - red */
.logo-letter:nth-child(3)  { color: #0798DB; } /* f - blue */
.logo-letter:nth-child(4)  { color: #0FAC5B; } /* L - green */
.logo-letter:nth-child(5)  { color: #FFFFFF; } /* a - white */
.logo-letter:nth-child(6)  { color: #EE3138; } /* T - red */
.logo-letter:nth-child(7)  { color: #A84A88; } /* a - purple */
.logo-letter:nth-child(8)  { color: #F5862A; } /* B - orange */
.logo-letter:nth-child(9)  { color: #FFFFFF; } /* l - white */
.logo-letter:nth-child(10) { color: #FFF533; } /* e - yellow */
@keyframes letter-bounce {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-5px); }
  35% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  65% { transform: translateY(0); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.logo-bottom { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }

.header-contact-bar { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; transition: var(--transition); }
.header-phone:hover { color: var(--white); }
.header-cta-btn {
  display: inline-flex; padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--accent); color: var(--white); font-size: 0.8rem; font-weight: 600;
  transition: var(--transition);
}
.header-cta-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }

.mobile-toggle { display: none; padding: 0.5rem; }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Nav bar */
.main-nav { background: var(--navy-light); border-bottom: 3px solid var(--accent); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-list { display: flex; gap: 0; }
.nav-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1rem; color: rgba(255,255,255,0.75); font-size: 0.95rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s ease; border-radius: 2px;
}
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-thumb { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.15); }
.nav-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   HERO (Home)
   ========================================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #7EC8E3 0%, #A8DCF0 35%, #C9E9F6 65%, #E4F4FB 100%);
  padding-bottom: 0;
}
.hero-bg { position: absolute; inset: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(255,255,255,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 75% 15%, rgba(255,255,255,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 70% 30% at 50% 60%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(ellipse 40% 25% at 85% 55%, rgba(255,255,255,0.55) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 25% 75%, rgba(255,255,255,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 20% at 60% 85%, rgba(255,255,255,0.4) 0%, transparent 50%);
  animation: cloud-drift 30s ease-in-out infinite alternate;
}
@keyframes cloud-drift {
  0% { transform: translateX(0) scale(1); }
  50% { transform: translateX(-15px) scale(1.02); }
  100% { transform: translateX(10px) scale(1); }
}
.hero-dots {
  position: absolute; inset: 0; opacity: 0;
}

.hero-inner {
  position: relative; max-width: var(--max-w); margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.hero-text { color: var(--navy); }
.hero-eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 1.25rem; letter-spacing: -0.02em;
  color: var(--navy);
  line-height:.9;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: #1A3660; line-height: 1.6; margin-bottom: 2rem; max-width: 500px; }
.hero-lead strong { color: var(--accent); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-actions .btn-outline-light {
  color: var(--navy); border-color: var(--navy);
}
.hero-actions .btn-outline-light:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* Showcase images */
.showcase-stack {
  position: relative; aspect-ratio: 4/3; max-width: 520px; margin-left: auto;
}
.showcase-img {
  position: absolute; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(11,29,58,0.2);
  object-fit: cover; border: 3px solid rgba(255,255,255,0.6);
}
.showcase-img-1 { width: 70%; height: 75%; top: 0; right: 0; z-index: 3; animation: float-1 6s ease-in-out infinite; }
.showcase-img-2 { width: 55%; height: 60%; bottom: 5%; left: 0; z-index: 2; animation: float-2 7s ease-in-out infinite; }
.showcase-img-3 { width: 40%; height: 45%; bottom: 0; right: 5%; z-index: 1; animation: float-3 8s ease-in-out infinite; }

@keyframes float-1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-2 { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(0deg); } }
@keyframes float-3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Stat bar */
.hero-stat-bar {
  position: relative; background: var(--white); margin-top: -1px;
  border-top: 3px solid var(--accent);
}
.hero-stat-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem var(--gutter);
  display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; align-items: center;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* =========================================
   PRODUCT CARDS (Home)
   ========================================= */
.products-section { background: var(--cream); }
.product-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem;
}
.product-grid > * { flex: 0 1 calc(20% - 1.25rem); min-width: 180px; }
.product-card {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-card-img {
  aspect-ratio: 1; overflow: hidden; background: var(--cream-dark);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.product-card-body h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.35rem;
}
.product-card-body h2 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.product-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.75rem; }
.product-card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
  transition: var(--transition);
}
.product-card:hover .product-card-link { gap: 0.5rem; }

/* Larger product cards on listing page */
.product-grid-lg { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.product-grid-lg > * { flex: 0 1 calc(33.333% - 1.5rem); min-width: 300px; }
.product-card-lg .product-card-img-lg { aspect-ratio: 16/10; }

/* =========================================
   WHY SECTION
   ========================================= */
.why-section { position: relative; background: var(--white); overflow: hidden; }
.why-bg {
  position: absolute; top: -100px; right: -200px; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.why-grid > * { flex: 0 1 calc(25% - 1.5rem); min-width: 260px; }
.why-card {
  padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--cream); border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.why-icon { margin-bottom: 1rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(180deg, #A8DCF0 0%, #7EC8E3 40%, #5BB8DB 100%);
  position: relative; overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 80% 60%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(ellipse 60% 30% at 50% 20%, rgba(255,255,255,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 80%, rgba(255,255,255,0.4) 0%, transparent 50%);
  animation: cloud-drift 25s ease-in-out infinite alternate-reverse;
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 1rem; }
.cta-content p { font-size: 1.05rem; color: #1A3660; margin-bottom: 2rem; line-height: 1.6; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-actions .btn-outline-light {
  color: var(--navy); border-color: var(--navy);
}
.cta-actions .btn-outline-light:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* =========================================
   PRODUCT PAGE
   ========================================= */
.product-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #7EC8E3 0%, #A8DCF0 40%, #C9E9F6 100%);
}
.product-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 10% 25%, rgba(255,255,255,0.65) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 80% 15%, rgba(255,255,255,0.55) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 60% 70%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 40% 25% at 30% 80%, rgba(255,255,255,0.35) 0%, transparent 50%);
  animation: cloud-drift 30s ease-in-out infinite alternate;
}
.product-hero-inner {
  position: relative; max-width: var(--max-w); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center;
}
.product-hero-text { color: var(--navy); }
.product-hero-text h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; color: var(--navy);
}
.product-subtitle { font-size: 1.1rem; color: #1A3660; margin-bottom: 0.75rem; }
.product-highlight-badge {
  display: inline-block; padding: 0.5rem 1rem; border-radius: var(--radius-pill);
  background: rgba(255,77,42,0.12); border: 1px solid rgba(255,77,42,0.25);
  color: var(--accent); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.product-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.product-hero-actions .btn-outline-light {
  color: var(--navy); border-color: var(--navy);
}
.product-hero-actions .btn-outline-light:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* Product image gallery */
.product-hero-gallery { position: relative; }
.product-img-main {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(11,29,58,0.18); border: 3px solid rgba(255,255,255,0.6);
}
.product-img-main img { width: 100%; height: 100%; object-fit: cover; }
.product-img-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.product-thumb {
  width: 60px; height: 60px; border-radius: 8px; overflow: hidden;
  border: 2px solid rgba(11,29,58,0.2); opacity: 0.7;
  transition: var(--transition); flex-shrink: 0;
}
.product-thumb:hover, .product-thumb.active { opacity: 1; border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product body */
.product-body { background: var(--cream); padding: clamp(2rem, 5vw, 4rem) 0; }
.product-content {
  max-width: 900px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.product-content h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--cream-dark);
}
.product-content h2:first-child { margin-top: 0; }
.product-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.product-content p { margin-bottom: 1rem; color: var(--text); }
.product-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.product-content li { margin-bottom: 0.4rem; position: relative; list-style: none; padding-left: 1.2rem; }
.product-content li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.product-content strong { color: var(--navy); }

/* Product tables */
.product-content table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin: 1rem 0 1.5rem; font-size: 0.9rem;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  display: table;
}
.product-content thead { background: var(--navy); }
.product-content th {
  padding: 0.7rem 1rem; text-align: left; font-weight: 600;
  color: var(--white); font-size: 0.82rem; letter-spacing: 0.03em;
  white-space: nowrap;
}
.product-content td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.product-content tbody tr:last-child td { border-bottom: none; }
.product-content tbody tr:hover { background: var(--cream); }

/* Product bottom CTA */
.product-bottom-cta { padding: clamp(2rem, 5vw, 3rem) 0; background: var(--cream); }
.product-cta-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.product-cta-text h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.product-cta-text p { color: rgba(255,255,255,0.7); }
.product-cta-text a { color: var(--gold); }
.product-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero, .gallery-hero, .page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #7EC8E3 0%, #A8DCF0 40%, #C9E9F6 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.contact-hero-text, .gallery-hero-text, .page-hero-text {
  position: relative; color: var(--navy); text-align: center; max-width: 600px; margin: 0 auto;
}
.contact-hero-text h1, .gallery-hero-text h1, .page-hero-text h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; color: var(--navy);
}
.contact-hero-text p, .gallery-hero-text p, .page-hero-text p { color: #1A3660; font-size: 1.05rem; }

.contact-body { background: var(--cream); padding: clamp(2rem, 5vw, 4rem) 0; }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 2rem; align-items: start; }

.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.contact-details li {
  display: flex; gap: 0.75rem; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-details li:last-child { border-bottom: none; }
.contact-details li svg { flex-shrink: 0; margin-top: 2px; }
.contact-details strong { display: block; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.contact-details a { color: var(--navy); font-weight: 500; }
.contact-details a:hover { color: var(--accent); }

.contact-extras { margin-top: 1.5rem; padding: 1.25rem; background: var(--cream); border-radius: var(--radius); }
.contact-extras h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.contact-extras p { font-size: 0.88rem; color: var(--text-muted); }

/* Contact form */
.contact-form {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.req { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.65rem 0.9rem; font-size: 0.95rem; font-family: var(--font-body);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--cream); color: var(--text); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); background: var(--white);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #A0A0B0; }
.form-group input[type="file"] { padding: 0.5rem; cursor: pointer; }

/* =========================================
   GALLERY PAGES
   ========================================= */
.gallery-body { background: var(--cream); padding: clamp(2rem, 5vw, 4rem) 0; }
.gallery-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.gallery-categories > * { flex: 0 1 calc(25% - 1.25rem); min-width: 220px; }
.gallery-cat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.gallery-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.gallery-cat-content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.gallery-cat-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.gallery-cat-card:hover .gallery-cat-link { gap: 0.55rem; }

.gallery-toolbar { display: flex; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }

/* Photo grid */
.photo-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem;
}
.photo-grid > * { flex: 0 1 calc(20% - 1rem); min-width: 180px; }
.photo-item {
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: var(--white); border: 1px solid var(--border);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.photo-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.photo-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.4s ease; }
.photo-item:hover img { transform: scale(1.05); }
.photo-item figcaption {
  padding: 0.6rem 0.75rem; font-size: 0.8rem; color: var(--text-muted);
  font-weight: 500; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gallery-empty { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 1.05rem; }
.gallery-empty a { color: var(--accent); font-weight: 600; }

/* =========================================
   SINGLE PAGE (About, etc)
   ========================================= */
.page-body { background: var(--cream); padding: clamp(2rem, 5vw, 4rem) 0; }
.page-content {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.page-content h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 2rem 0 0.75rem; }
.page-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { padding-left: 0; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.5rem; position: relative; padding-left: 1.2rem; list-style: none; }
.page-content li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.page-content strong { color: var(--navy); }

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11,29,58,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 90vw; max-height: 85vh; position: relative; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-caption { text-align: center; color: rgba(255,255,255,0.7); margin-top: 0.75rem; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  color: var(--white); font-size: 2rem; z-index: 10;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1); transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  color: var(--white); font-size: 2.5rem; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1); transition: var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer-wave { line-height: 0; margin-bottom: -1px; }
.footer-wave svg { width: 100%; height: 40px; display: block; }
.footer-body { background: var(--navy); padding: clamp(2rem, 5vw, 3.5rem) 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem);
}
.footer-logo { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 1.25rem; font-style: italic; }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact-info a, .footer-contact-info span { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: var(--transition); }
.footer-contact-info a:hover { color: var(--white); }

.footer-links-col h4, .footer-cta-col h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links-col li { margin-bottom: 0.5rem; }
.footer-links-col a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: var(--transition); }
.footer-links-col a:hover { color: var(--white); padding-left: 4px; }

.footer-cta-col p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.5; }
.footer-payment { margin-top: 1.5rem; }
.footer-payment span { font-size: 0.78rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 0.4rem; }
.payment-icons { display: flex; gap: 0.5rem; align-items: center; }
.payment-icons img { opacity: 0.7; filter: brightness(0) invert(1); transition: var(--transition); }
.payment-icons img:hover { opacity: 1; }

.footer-bottom { background: var(--navy); }
.footer-bottom-inner { max-width: var(--max-w); margin: 0 auto; padding: 1rem var(--gutter); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .showcase-stack { max-width: 400px; margin: 0 auto; }
  .product-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .product-hero-text { order: 1; }
  .product-hero-gallery { order: 2; max-width: 500px; margin: 0 auto; }
  .product-hero-actions { justify-content: center; }
  .product-img-thumbs { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .header-contact-bar .header-phone { display: none; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-light); z-index: 100;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  .main-nav.is-open { display: block; }
  .nav-list { flex-direction: column; padding: 0.5rem 0; }
  .nav-link { padding: 0.75rem var(--gutter); }
  .nav-link::after { display: none; }

  .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
  .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .stat-divider { display: none; }
  .hero-stat-inner { gap: 1.25rem; }

  .product-grid > * { flex: 0 1 calc(50% - 1.25rem); min-width: 140px; }
  .product-grid-lg > * { flex: 0 1 100%; min-width: 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .photo-grid > * { flex: 0 1 calc(33.333% - 1rem); min-width: 130px; }

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

  .product-content table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .showcase-stack { display: none; }
  .product-card-img { aspect-ratio: 4/3; }
}
