/* ==========================================================================
   YELLOWSTONE SOLAR — CORE STYLESHEET
   Design system: Midnight Navy / Yellowstone Gold / Energy Blue
   Type: Poppins ExtraBold (display) + Inter (body)
   ========================================================================== */

:root {
  /* Brand colour tokens */
  --navy: #10243E;
  --navy-800: #16304F;
  --navy-700: #1C3A5E;
  --gold: #D4A017;
  --gold-light: #E8C05A;
  --blue: #0099D8;
  --blue-light: #4FC3F2;
  --bg: #FAFBFC;
  --bg-alt: #F1F4F7;
  --text: #2C3138;
  --text-mute: #5B6470;
  --success: #1B9C5A;
  --white: #FFFFFF;
  --line: rgba(16, 36, 62, 0.09);

  /* Gradients */
  --grad-sunrise: linear-gradient(135deg, #10243E 0%, #16304F 45%, #0099D8 100%);
  --grad-gold: linear-gradient(120deg, #D4A017 0%, #E8C05A 100%);
  --grad-glass: linear-gradient(160deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.03) 100%);

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Radii / shadow */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(16, 36, 62, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(16, 36, 62, 0.18);

  /* Layout */
  --container: 1240px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p { color: var(--text-mute); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.13rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 17px 34px;
  border-radius: 100px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 30px -10px rgba(212,160,23,0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(212,160,23,0.65); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); }
.btn-sm { padding: 12px 24px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s ease, box-shadow .4s ease, height .4s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-header.is-scrolled {
  background: rgba(250,251,252,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 2px 24px rgba(16,36,62,0.08);
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color .4s ease;
}
.site-header.is-scrolled .brand-name { color: var(--navy); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: 100px;
  transition: background .3s ease, color .3s ease;
  position: relative;
}
.site-header.is-scrolled .nav-link { color: var(--text); }
.nav-link:hover { background: rgba(255,255,255,0.14); }
.site-header.is-scrolled .nav-link:hover { background: var(--bg-alt); color: var(--navy); }
.nav-link.active { color: var(--gold); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  margin-top: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .3s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.dropdown a:hover { background: var(--bg-alt); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  transition: color .4s ease;
}
.site-header.is-scrolled .header-phone { color: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.14);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--white); }
.site-header.is-scrolled .nav-toggle svg { stroke: var(--navy); }
.site-header.is-scrolled .nav-toggle { background: var(--bg-alt); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,36,62,0.55) 0%, rgba(16,36,62,0.15) 38%, rgba(16,36,62,0.85) 100%);
}
.hero-sun {
  position: absolute;
  right: -10%;
  top: 8%;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(212,160,23,0.55), rgba(212,160,23,0) 70%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-bottom: 110px; width: 100%; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content .eyebrow::before { background: var(--white); }
.hero h1 { color: var(--white); margin: 22px 0 20px; max-width: 900px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,0.86); max-width: 620px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll .line { width: 1px; height: 34px; background: rgba(255,255,255,0.4); overflow: hidden; }
.hero-scroll .line::after {
  content: ''; display: block; width: 100%; height: 40%; background: var(--gold);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* Mountain divider (signature motif) */
.mountain-divider { display: block; width: 100%; height: 90px; }
.mountain-divider path { fill: var(--bg); }
.mountain-divider.alt path { fill: var(--bg-alt); }
.mountain-divider.navy path { fill: var(--navy); }
.mountain-divider.white path { fill: var(--white); }
.mountain-divider.flip { transform: rotate(180deg); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--navy);
  padding: 46px 0;
  position: relative;
  z-index: 3;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.trust-item { text-align: center; color: rgba(255,255,255,0.9); }
.trust-item .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--white);
  display: block;
}
.trust-item .stat-num .unit { color: var(--gold); }
.trust-item .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  display: block;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 30px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.96rem; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Glass card */
.glass {
  background: var(--grad-glass);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
}

/* ---------- Grid helpers ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ---------- Split feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 5/4; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-text .icon-badge { margin-bottom: 22px; }
.feature-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-weight: 500; font-size: 0.98rem; }
.feature-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--success); }

.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(0,153,216,0.12));
}
.icon-badge svg { width: 26px; height: 26px; color: var(--navy); }

/* ---------- Calculator ---------- */
.calculator {
  background: var(--grad-sunrise);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.25), transparent 70%);
  top: -180px; right: -140px;
}
.calc-form { position: relative; z-index: 1; }
.calc-field { margin-bottom: 22px; }
.calc-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.8); }
.calc-field input[type="number"], .calc-field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}
.calc-field input::placeholder { color: rgba(255,255,255,0.45); }
.calc-slider { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.25); }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.calc-bill-value { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; margin: 6px 0 18px; }

.calc-results { position: relative; z-index: 1; }
.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; }
.result-tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 22px;
}
.result-tile .val { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--gold-light); }
.result-tile .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---------- Logo carousel ---------- */
.logo-strip { overflow: hidden; position: relative; }
.logo-track { display: flex; gap: 80px; align-items: center; width: max-content; animation: scrollLogos 32s linear infinite; }
.logo-track img, .logo-track .logo-text { height: 30px; opacity: 0.55; filter: grayscale(1); transition: opacity .3s ease, filter .3s ease; }
.logo-track .logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--navy);
  display: flex; align-items: center; height: auto; opacity: 0.45;
}
.logo-track .logo-text:hover, .logo-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Process timeline ---------- */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-timeline::before {
  content: '';
  position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: 0.35;
}
.process-step { position: relative; text-align: left; }
.process-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.3rem;
  margin-bottom: 24px; position: relative; z-index: 1;
  box-shadow: var(--shadow-card);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.94rem; }

/* ---------- Gallery / Masonry ---------- */
.masonry { columns: 3; column-gap: 24px; }
.masonry-item { break-inside: avoid; margin-bottom: 24px; border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: var(--shadow-card); }
.masonry-item img { width: 100%; transition: transform .6s ease; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(16,36,62,0.7); backdrop-filter: blur(6px);
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
}

/* Before/after slider */
.ba-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 16/9; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white);
  cursor: ew-resize; z-index: 3;
}
.ba-handle::after {
  content: '⇔';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); color: var(--navy); font-weight: 700;
}
.ba-label { position: absolute; top: 18px; padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; z-index: 2; }
.ba-label.before { left: 18px; background: rgba(16,36,62,0.75); color: var(--white); }
.ba-label.after { right: 18px; background: var(--gold); color: var(--navy); }

/* ---------- Reviews ---------- */
.review-card { padding: 34px; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 18px; height: 18px; color: var(--gold); }
.review-quote { font-size: 1.02rem; color: var(--text); margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }
.review-name { font-weight: 700; color: var(--navy); font-size: 0.94rem; }
.review-loc { font-size: 0.82rem; color: var(--text-mute); }

.video-testimonial { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 9/12; box-shadow: var(--shadow-soft); }
.video-testimonial img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(16,36,62,0.1), rgba(16,36,62,0.75));
}
.play-btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); transition: transform .3s ease;
}
.video-testimonial:hover .play-btn { transform: scale(1.08); }
.play-btn svg { width: 22px; height: 22px; color: var(--navy); margin-left: 3px; }
.video-caption { position: absolute; bottom: 20px; left: 20px; color: var(--white); }
.video-caption .name { font-weight: 700; }
.video-caption .role { font-size: 0.82rem; opacity: 0.8; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--white);
  font-size: 0.98rem; color: var(--text); transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,153,216,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- FAQ Accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 4px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy);
}
.accordion-trigger svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s ease; color: var(--gold); }
.accordion-item.open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.accordion-panel-inner { padding: 0 4px 26px; color: var(--text-mute); font-size: 0.98rem; max-width: 720px; }

/* ---------- Stat counters generic ---------- */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.counter-num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--navy); }
.counter-num .unit { color: var(--gold); }
.counter-label { color: var(--text-mute); font-weight: 600; margin-top: 6px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--grad-sunrise);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,160,23,0.35), transparent 60%);
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 18px auto 34px; position: relative; z-index: 1; }
.cta-banner .hero-actions { justify-content: center; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 90px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.55); margin: 18px 0 24px; max-width: 300px; font-size: 0.94rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background .3s ease; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 17px; height: 17px; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.62); transition: color .25s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-accreditations { display: flex; gap: 26px; align-items: center; padding: 34px 0; flex-wrap: wrap; }
.footer-accreditations .badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.footer-accreditations svg { width: 18px; height: 18px; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.84rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 20px; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar { display: none; }

/* ---------- Breadcrumb / page hero (interior pages) ---------- */
.page-hero {
  background: var(--grad-sunrise);
  padding: calc(var(--header-h) + 90px) 0 100px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: -6%; top: -10%; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.3), transparent 70%);
}
.page-hero .eyebrow { color: var(--gold-light); position: relative; z-index: 1; }
.page-hero .eyebrow::before { background: var(--white); }
.page-hero h1 { color: var(--white); margin: 18px 0 16px; max-width: 760px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 600px; font-size: 1.1rem; position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); position: relative; z-index: 1; margin-bottom: 4px; }
.breadcrumb a:hover { color: var(--white); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.tag-pill {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(0,153,216,0.1); color: var(--blue); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.03em;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16/9; width: 100%; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--white);
  padding: 14px 22px; z-index: 2000; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
