/* ============================================================
   Badger Outdoor Lighting — design system v2
   Brand: orange #F26B21 + golden yellow #F5A623
   Warm, friendly, premium. Deep night-sky base.
   Type: Fraunces (display) / Inter (body)
   ============================================================ */

:root {
  --night-900: #0b1622;
  --night-800: #10202f;
  --night-700: #172c3f;
  --night-600: #22394d;

  --orange: #f26b21;
  --orange-dark: #d9551a;
  --gold: #f5a623;
  --gold-light: #ffc25c;

  --cream: #fbf7f0;
  --cream-dark: #f0e9dd;
  --ink: #1a1410;
  --muted: #6b5f54;
  --line: rgba(26,20,16,0.10);

  --font-display: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1180px;
  --radius: 6px;
  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--ink); background: var(--cream); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
.eyebrow { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; display: inline-block; }
.hero .eyebrow, .page-hero .eyebrow, .band .eyebrow, .cta-band .eyebrow { color: var(--gold-light); }
.lead { font-size: 1.15rem; color: var(--muted); }

.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; padding: 15px 32px; border-radius: var(--radius); cursor: pointer; border: none; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 20px rgba(242,107,33,0.32); }
.btn-primary:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 10px 28px rgba(242,107,33,0.42); }
.btn-gold { background: var(--gold); color: var(--night-900); box-shadow: 0 6px 20px rgba(245,166,35,0.3); }
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(251,247,240,0.35); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-dark { background: var(--night-900); color: var(--cream); }
.btn-dark:hover { transform: translateY(-2px); background: var(--night-700); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(11,22,34,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(251,247,240,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand img { height: 52px; width: auto; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; line-height: 1.05; }
.brand-name span { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(251,247,240,0.82); font-size: 0.9rem; font-weight: 500; padding: 8px 13px; border-radius: var(--radius); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { margin-left: 8px; }

.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; background: none; border: none; font-family: var(--font-body); color: rgba(251,247,240,0.82); font-size: 0.9rem; font-weight: 500; padding: 8px 13px; border-radius: var(--radius); }
.dropdown-toggle svg { width: 13px; height: 13px; transition: transform 0.2s; }
.has-dropdown:hover .dropdown-toggle { color: var(--gold-light); }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 210px; background: var(--night-800); border: 1px solid rgba(251,247,240,0.1); border-radius: 8px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.2s var(--ease); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius); font-size: 0.9rem; }
.dropdown a:hover { background: var(--night-600); }

.nav-toggle { display: none; background: none; border: none; color: var(--cream); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

.hero { position: relative; color: var(--cream); background: linear-gradient(180deg, var(--night-900), var(--night-800)); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 45% at 80% 12%, rgba(245,166,35,0.2), transparent 62%), radial-gradient(ellipse 45% 40% at 12% 88%, rgba(242,107,33,0.14), transparent 62%); pointer-events: none; }
.hero-inner { position: relative; padding: clamp(70px, 10vw, 130px) 0 clamp(70px,10vw,120px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.2rem; color: rgba(251,247,240,0.82); max-width: 36ch; margin-bottom: 2.1rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { border-radius: 10px; box-shadow: 0 30px 70px rgba(0,0,0,0.55); aspect-ratio: 4/3; object-fit: cover; }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: var(--gold); color: var(--night-900); border-radius: 10px; padding: 16px 22px; box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.hero-badge strong { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.hero-badge span { font-size: 0.76rem; font-weight: 600; }

.trust { background: var(--night-900); border-top: 1px solid rgba(251,247,240,0.07); }
.trust-inner { display: flex; justify-content: center; gap: clamp(22px,5vw,68px); flex-wrap: wrap; padding: 24px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(251,247,240,0.74); font-size: 0.9rem; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

section { padding: clamp(60px, 8vw, 105px) 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; border-radius: 12px; overflow: hidden; min-height: 400px; display: flex; align-items: flex-end; color: var(--cream); transition: transform 0.4s var(--ease); isolation: isolate; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.6s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,22,34,0.05) 25%, rgba(11,22,34,0.9) 100%); }
.service-card:hover { transform: translateY(-4px); }
.service-card:hover img { transform: scale(1.05); }
.service-card.featured { grid-column: span 2; min-height: 440px; }
.service-card-body { padding: 32px; }
.service-card .tag { display: inline-block; background: var(--orange); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.service-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.service-card.featured h3 { font-size: 2.1rem; }
.service-card p { font-size: 0.98rem; color: rgba(251,247,240,0.88); margin-bottom: 1.1rem; max-width: 52ch; }
.service-card .link { font-weight: 600; font-size: 0.9rem; color: var(--gold-light); display: inline-flex; align-items: center; gap: 6px; }
.service-card .link svg { width: 16px; height: 16px; transition: transform 0.25s; }
.service-card:hover .link svg { transform: translateX(4px); }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,76px); align-items: center; }
.feature.reverse .feature-text { order: 2; }
.feature-media img { border-radius: 12px; box-shadow: 0 20px 50px rgba(11,22,34,0.2); aspect-ratio: 5/4; object-fit: cover; }
.feature-text h2 { margin-bottom: 1.2rem; }
.feature-list { list-style: none; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.feature-list li:last-child { border-bottom: none; }
.feature-list svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }

.band { background: var(--night-900); color: var(--cream); }
.band .section-head p, .band .lead { color: rgba(251,247,240,0.8); }
.band .feature-list li { border-color: rgba(251,247,240,0.12); }
.band .feature-list svg { color: var(--gold); }

.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aud-card { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.aud-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(11,22,34,0.14); }
.aud-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.aud-card-body { padding: 26px; }
.aud-card h3 { margin-bottom: 0.6rem; }
.aud-card p { font-size: 0.96rem; color: var(--muted); }
.band .aud-card { background: var(--night-800); border-color: rgba(251,247,240,0.1); }
.band .aud-card p { color: rgba(251,247,240,0.75); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat strong { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); color: var(--gold); display: block; line-height: 1; }
.stat span { font-size: 0.92rem; color: rgba(251,247,240,0.74); margin-top: 8px; display: block; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { text-align: center; }
.step-num { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-display); font-size: 1.2rem; display: grid; place-items: center; }
.step h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--muted); }
.band .step p { color: rgba(251,247,240,0.72); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { border-radius: 8px; aspect-ratio: 1; object-fit: cover; transition: transform 0.4s var(--ease), filter 0.4s; }
.gallery img:hover { transform: scale(1.03); filter: brightness(1.08); }
.gallery .wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery .tall { grid-row: span 2; aspect-ratio: 1/2; }

.cta-band { background: linear-gradient(120deg, var(--night-900), var(--night-700)); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 50% 65% at 50% 0%, rgba(242,107,33,0.22), transparent 65%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: rgba(251,247,240,0.82); max-width: 48ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-line svg { width: 22px; height: 22px; color: var(--orange); flex: none; }
.contact-line a, .contact-line span { font-weight: 500; }
.contact-line small { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 400; }
.form-embed { background: var(--cream-dark); border-radius: 12px; padding: 8px; }
.form-embed iframe { width: 100%; min-height: 640px; border: none; border-radius: 8px; }

.site-footer { background: var(--night-900); color: rgba(251,247,240,0.7); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(251,247,240,0.1); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.94rem; color: rgba(251,247,240,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(251,247,240,0.2); border-radius: 50%; display: grid; place-items: center; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-social svg { width: 18px; height: 18px; }

.page-hero { background: linear-gradient(180deg, var(--night-900), var(--night-800)); color: var(--cream); position: relative; overflow: hidden; }
.page-hero.has-image { min-height: 62vh; display: flex; align-items: flex-end; }
.page-hero.has-image::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, rgba(11,22,34,0.35) 0%, rgba(11,22,34,0.55) 55%, rgba(11,22,34,0.9) 100%); }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 55% 60% at 80% 20%, rgba(245,166,35,0.16), transparent 60%); }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(66px,9vw,110px) 0 clamp(52px,7vw,84px); max-width: 760px; }
.page-hero.has-image .page-hero-inner { padding-bottom: clamp(44px,6vw,68px); }
.breadcrumb { font-size: 0.82rem; color: rgba(251,247,240,0.65); margin-bottom: 1.3rem; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.18rem; color: rgba(251,247,240,0.85); max-width: 54ch; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 460px; }
  .services { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .audience { grid-template-columns: 1fr; }
  .feature, .feature.reverse .feature-text { grid-template-columns: 1fr; order: 0; }
  .feature.reverse .feature-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .nav-links { position: fixed; top: 82px; right: 0; left: 0; background: var(--night-900); flex-direction: column; align-items: stretch; padding: 16px 24px 24px; gap: 2px; transform: translateY(-130%); transition: transform 0.35s var(--ease); border-bottom: 1px solid rgba(251,247,240,0.1); max-height: calc(100vh - 82px); overflow-y: auto; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a, .dropdown-toggle { padding: 12px 8px; font-size: 1rem; width: 100%; text-align: left; }
  .has-dropdown { display: flex; flex-direction: column; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 0 0 0 16px; }
  .has-dropdown:hover .dropdown-toggle svg { transform: none; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .stats, .steps { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .wide { grid-column: span 2; }
  .hero-badge { left: 12px; bottom: -18px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Decorative ampersand accent */
.amp { font-family: 'Georgia', 'Times New Roman', serif; font-style: italic; font-weight: 400; color: var(--gold); }

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq-item summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; padding: 20px 40px 20px 0; position: relative; list-style: none; color: var(--ink); transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: var(--orange); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--orange); }
.faq-item p { padding: 0 40px 22px 0; color: var(--muted); margin: 0; }
