/* ============================================================
   Aveary Assurance — Full Redesign
   Premium editorial aesthetic for a personal insurance advisor
   Fonts: Bodoni Moda (display) · DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --cream:     #FAF7F2;
  --cream-2:   #F3EBE0;
  --cream-3:   #EAE0D2;
  --ivory:     #E0D3C0;
  --gold:      #C49238;
  --gold-deep: #9E7220;
  --gold-pale: #F6EBCF;
  --gold-line: rgba(196,146,56,.18);
  --char:      #1A1510;
  --char-2:    #251E17;
  --char-3:    #322820;
  --forest:    #2D3B4A;
  --forest-2:  #1F2C38;
  --forest-3:  #162030;
  --forest-line: rgba(255,255,255,.08);
  --warm-6:    #6A5540;
  --warm-4:    #9E8670;
  --warm-2:    #D4C4B0;
  --white:     #ffffff;

  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  36px;
  --r-pill: 999px;

  --sh-soft: 0 4px 32px rgba(26,21,16,.07);
  --sh-gold: 0 10px 40px rgba(196,146,56,.30);
  --sh-lift: 0 20px 60px rgba(26,21,16,.14);
}

/* ── Reset ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,body { margin:0; padding:0; }
body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: var(--cream);
  color: var(--char);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.75;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p   { margin: 0; }
ul  { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Type ────────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'League Spartan', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.06;
}
p { font-family: 'Libre Baskerville', Georgia, serif; color: var(--warm-6); line-height: 1.8; }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'League Spartan', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-line { display: block; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
.eyebrow--light { color: rgba(255,255,255,.5); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-family: 'League Spartan', sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .2s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-gold   { background: var(--gold); color: var(--char); box-shadow: var(--sh-gold); }
.btn-gold:hover { background: var(--gold-deep); color: var(--char); }

.btn-dark   { background: var(--char); color: #fff; }
.btn-dark:hover { background: var(--char-2); box-shadow: var(--sh-lift); }

.btn-white-dark { background: #fff; color: var(--char); box-shadow: var(--sh-soft); }
.btn-white-dark:hover { background: var(--cream-2); }

.btn-ghost  {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }


/* ════════════════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--cream-2);
  padding: 10px 40px;
  border-bottom: 1px solid var(--gold-line);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-license {
  font-size: 11px; font-weight: 500;
  color: var(--warm-6); letter-spacing: .06em;
}
.topbar-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--gold-deep);
  transition: color .15s;
}
.topbar-phone:hover { color: var(--char); }
.topbar-phone svg { flex-shrink: 0; color: var(--gold); }


/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--forest);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--forest-line);
  transition: box-shadow .25s;
}
.site-header.scrolled { background: var(--forest-2); box-shadow: 0 2px 28px rgba(0,0,0,.18); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; gap: 24px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }

.logo-aa {
  display: inline-flex; align-items: flex-end; line-height: 1;
}
.logo-aa span {
  font-family: 'League Spartan', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold); line-height: 1;
  letter-spacing: -0.14em;
}
.logo-aa span:first-child { opacity: .6; }
.logo-aa--light span { color: var(--gold); }

.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: 'League Spartan', serif;
  font-size: 19px; font-weight: 600;
  letter-spacing: .05em; color: #fff; line-height: 1;
}
.logo-sub {
  font-family: 'League Spartan', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); line-height: 1;
}
.logo--light .logo-name { color: rgba(255,255,255,.88); }
.logo--light .logo-sub  { color: rgba(255,255,255,.35); }

/* Nav */
.nav { flex: 1; display: flex; justify-content: center; gap: 2px; }
.nav a {
  padding: 9px 18px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.72);
  transition: color .15s, background .15s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.1); }

.header-end { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 9px; border-radius: var(--r-md);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
}
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Drawer */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 48;
  background: rgba(18,14,10,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .28s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed; top: 0; right: -290px; bottom: 0; width: 270px;
  background: var(--cream); z-index: 60;
  padding: 90px 28px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid var(--cream-3);
  box-shadow: -4px 0 36px rgba(26,21,16,.12);
}
.drawer.open { right: 0; }
.drawer a {
  display: block; padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 17px; font-weight: 500; color: var(--char);
  transition: background .15s;
}
.drawer a:hover { background: var(--cream-2); }
.drawer-phone {
  display: flex !important; align-items: center; gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--cream-3);
  padding-top: 20px !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
}
.drawer-phone:hover { background: transparent !important; }


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 54fr 46fr;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  position: relative;
  background: var(--forest);
}

/* Large background watermark */
.hero-watermark {
  position: absolute;
  bottom: -40px; left: -30px;
  font-family: 'League Spartan', serif;
  font-size: clamp(140px, 20vw, 260px);
  font-weight: 700; font-style: italic;
  color: rgba(196,146,56,.055);
  line-height: 1; pointer-events: none;
  user-select: none; z-index: 0; letter-spacing: -0.04em;
  white-space: nowrap;
}

/* Hero copy */
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 60px 120px 240px;
  background: var(--forest);
  position: relative; z-index: 2;
}

.hero-eyebrow { margin-bottom: 28px; }

.hero-h1 {
  display: flex; flex-direction: column;
  line-height: .96;
  margin-bottom: 28px;
}
.h1-top {
  font-family: 'League Spartan', serif;
  font-size: clamp(28px, 5.2vw, 70px);
  font-weight: 300; color: #fff;
  display: block;
}
.h1-mid {
  font-family: 'League Spartan', serif;
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 300; font-style: italic;
  color: var(--gold);
  display: block;
  line-height: .88;
  letter-spacing: -0.03em;
  transition: opacity .4s ease, transform .4s ease;
}
.h1-mid.word-fade-out {
  opacity: 0; transform: translateY(-12px);
}
.h1-mid.word-fade-in {
  opacity: 0; transform: translateY(12px);
}
.h1-mid.word-visible {
  opacity: 1; transform: none;
}
.h1-bot {
  font-family: 'League Spartan', serif;
  font-size: clamp(28px, 5.2vw, 70px);
  font-weight: 300; color: #fff;
  display: block;
}

.hero-desc {
  font-size: 17px; line-height: 1.78;
  color: rgba(255,255,255,.65); max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.8);
}
.chip svg { color: var(--gold); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative; overflow: hidden;
  background: var(--forest);
}

/* Precious hero photo — transparent PNG, sits directly on green */
.hero-precious {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* Stats card floating bottom-left of photo */
.hero-stat-card {
  position: absolute; bottom: 40px; left: -2px; z-index: 4;
  background: var(--forest); color: #fff;
  padding: 20px 28px; border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: var(--sh-lift);
  animation: floatY 5s ease-in-out infinite;
}
.hsc-row { display: flex; align-items: center; gap: 20px; }
.hsc-item { text-align: center; }
.hsc-item strong {
  display: block;
  font-family: 'League Spartan', serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.hsc-item span { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; display: block; }
.hsc-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); flex-shrink: 0; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}


/* ════════════════════════════════════════════════════════════
   MARQUEE TRUST STRIP
════════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--cream);
  padding: 18px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
}
.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-inner {
  display: flex; gap: 36px; width: max-content;
  animation: marquee 36s linear infinite;
  align-items: center;
}
.marquee-inner span {
  font-family: 'League Spartan', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--char); white-space: nowrap;
}
.marquee-inner span.md { color: var(--gold); font-size: 10px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ════════════════════════════════════════════════════════════
   SERVICES — full-width panels, text overlay on clear side
════════════════════════════════════════════════════════════ */
.services-section { overflow: hidden; }

.svc-section-head {
  background: var(--cream);
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--gold-line);
}
.svc-section-title {
  font-family: 'League Spartan', serif;
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 400; color: var(--char);
  margin: 16px 0 0; line-height: 1.06;
}
.svc-section-title em { color: var(--gold); font-style: italic; }
.svc-section-intro {
  font-size: 16px; color: var(--warm-6);
  line-height: 1.75; margin-top: 16px; max-width: 480px;
}

/* ── Panel base — full-width, image fills entire panel ── */
.svc-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}

.svc-panel-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
  z-index: 0;
}
.svc-panel:hover .svc-panel-bg { transform: scale(1.03); }

/* No gradient — images are naturally light on the clear side */
.svc-panel-fade { display: none; }

/* Text — grid cell, same structure left and right */
.svc-panel-copy {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
  position: relative; z-index: 2;
}
.svc-panel-copy--left {
  grid-column: 1;
  text-align: right;
  align-items: flex-end;
}
.svc-panel-copy--right {
  grid-column: 2;
  text-align: left;
  align-items: flex-start;
}

/* Label */
.svc-label {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.svc-label--light { color: rgba(255,255,255,.55); }

/* Heading */
.svc-heading {
  font-family: 'League Spartan', serif;
  font-size: clamp(26px, 3.8vw, 54px);
  font-weight: 700; line-height: 1.08;
  color: var(--char); margin-bottom: 18px;
}
.svc-heading em { font-style: italic; color: var(--gold); }

/* Tagline */
.svc-tagline {
  font-size: 15.5px; font-weight: 500;
  color: var(--warm-6);
  line-height: 1.72; margin-bottom: 24px; max-width: 360px;
}

/* Bullet list */
.svc-bullets {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.svc-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--char); line-height: 1.5;
}
.svc-bullets li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  order: 0;
}
.svc-panel-copy--left .svc-bullets li { flex-direction: row-reverse; }
.svc-panel-copy--left .svc-bullets li::before { order: 0; }
.svc-bullets--light li { color: rgba(255,255,255,.75); }
.svc-bullets--light li::before { opacity: .9; }

/* Button */
.svc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: var(--r-pill);
  font-family: 'League Spartan', sans-serif;
  font-size: 14px; font-weight: 600;
  background: var(--char); color: #fff;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.svc-btn:hover { background: var(--char-2); transform: translateY(-2px); box-shadow: var(--sh-lift); }
.svc-btn--gold { background: var(--gold); color: var(--char); box-shadow: var(--sh-gold); }
.svc-btn--gold:hover { background: var(--gold-deep); color: var(--char); }

/* ── Commercial — full viewport cinematic block ── */
.svc-panel--commercial {
  min-height: 100vh;
  display: block;
}

.svc-panel-commercial-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10, 8, 5, 0.52);
}

.svc-panel-commercial-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 40px;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  left: 50%; transform: translateX(-50%);
  width: 100%;
}

.svc-commercial-heading {
  font-family: 'League Spartan', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700; line-height: 1.06;
  color: #fff; margin: 18px 0 24px;
}
.svc-commercial-heading em { font-style: italic; color: var(--gold); }

.svc-commercial-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic; color: var(--gold);
  margin: 0 0 24px; line-height: 1.4;
}
.svc-commercial-desc {
  font-size: 17px; color: rgba(255,255,255,.62);
  line-height: 1.78; margin-bottom: 36px; max-width: 520px;
}

/* ── Schedule strip ── */
.svc-schedule-strip {
  background: var(--forest-2);
  padding: 64px 0;
  border-top: 1px solid var(--forest-line);
}
.svc-schedule-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.svc-schedule-title {
  font-family: 'League Spartan', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400; color: #fff;
  margin-top: 14px; line-height: 1.15;
}
.svc-schedule-title em { font-style: italic; color: var(--gold); }


/* ════════════════════════════════════════════════════════════
   FOR BUSINESS OWNERS
════════════════════════════════════════════════════════════ */
.biz-section {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
}

.biz-bg-text {
  position: absolute; bottom: -60px; right: -40px;
  font-family: 'League Spartan', serif;
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 700; font-style: italic;
  color: rgba(196,146,56,.06);
  line-height: 1; pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: -0.04em;
}

.biz-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px; align-items: center;
  position: relative; z-index: 1;
}

.biz-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700; color: var(--char);
  margin: 18px 0 22px;
}
.biz-title em { color: var(--gold); font-style: italic; }

.biz-desc {
  font-size: 16px; color: var(--warm-6);
  line-height: 1.82; margin-bottom: 32px;
  max-width: 500px;
}

.biz-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.biz-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--char); font-weight: 500; line-height: 1.5;
}
.biz-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-pale); border: 1px solid rgba(196,146,56,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* Stats */
.biz-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-soft);
}
.biz-stat {
  background: var(--cream);
  padding: 48px 36px;
  text-align: center;
  transition: background .2s;
}
.biz-stat:hover { background: var(--gold-pale); }
.biz-stat strong {
  display: block;
  font-family: 'League Spartan', sans-serif;
  font-size: 56px; font-weight: 700;
  color: var(--gold); line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 10px;
}
.biz-stat span {
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--warm-4); line-height: 1.5;
}


/* ════════════════════════════════════════════════════════════
   ENERGY SPOTLIGHT
════════════════════════════════════════════════════════════ */
.energy-section {
  background: var(--forest-3);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.energy-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,146,56,.12), transparent 60%);
  pointer-events: none;
}

.energy-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 72px; align-items: center;
  position: relative; z-index: 1;
}

.energy-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(196,146,56,.15);
  border: 1px solid rgba(196,146,56,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}

.energy-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300; color: #fff;
  margin: 14px 0 18px;
}
.energy-title em { color: var(--gold); font-style: italic; }

.energy-desc { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 28px; max-width: 480px; }

.energy-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px;
}
.energy-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.6); font-weight: 500;
}
.energy-list li::before {
  content: '⚡';
  font-size: 12px;
}

/* Circular badge */
.energy-badge-wrap {
  position: relative; width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.energy-badge-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(196,146,56,.25);
  animation: spin 16s linear infinite;
}
.energy-badge-ring.r1 { width: 180px; height: 180px; }
.energy-badge-ring.r2 { width: 130px; height: 130px; animation-duration: 10s; animation-direction: reverse; }
.energy-badge-center {
  text-align: center; z-index: 1;
}
.ebc-label {
  display: block;
  font-family: 'League Spartan', serif;
  font-size: 20px; font-weight: 600;
  color: var(--gold); line-height: 1.2;
}
.ebc-sub {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 6px;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ════════════════════════════════════════════════════════════
   PERSONAL QUOTE
════════════════════════════════════════════════════════════ */
.quote-section {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.quote-inner {
  max-width: 860px; margin: 0 auto;
  text-align: center; position: relative;
}
.quote-mark {
  display: block;
  font-family: 'League Spartan', serif;
  font-size: 100px; line-height: .7;
  color: var(--gold); opacity: .35;
  margin-bottom: -10px;
  font-style: italic;
}
blockquote { margin: 0; }
blockquote p {
  font-family: 'League Spartan', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300; font-style: italic;
  color: var(--char); line-height: 1.2;
  margin-bottom: 28px;
}
blockquote cite {
  font-family: 'League Spartan', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--warm-4); font-style: normal;
}


/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--forest-2);
  padding: 0;
  position: relative; overflow: hidden;
}
.cta-inner-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: end;
  min-height: 600px;
  position: relative;
}
.cta-photo-wrap {
  position: relative;
  align-self: end;
  height: 100%;
  display: flex; align-items: flex-end;
}
.cta-photo {
  display: block;
  height: 560px;
  width: auto;
  object-fit: contain;
  object-position: bottom left;
  margin-left: 60px;
}
.cta-content {
  padding: 80px 0;
  position: relative; z-index: 1;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.cta-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300; color: #fff;
  margin: 16px 0 18px; line-height: 1.06;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 15.5px; color: rgba(255,255,255,.42); line-height: 1.78; }

.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-action-btn {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 28px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s, border-color .2s, transform .15s;
}
.cta-action-btn:hover { background: rgba(255,255,255,.09); border-color: rgba(196,146,56,.3); transform: translateX(4px); }
.cta-action-btn--primary {
  background: rgba(196,146,56,.14);
  border-color: rgba(196,146,56,.3);
}
.cta-action-btn--primary:hover { background: rgba(196,146,56,.22); }
.cta-action-btn svg { color: var(--gold); flex-shrink: 0; }
.cta-action-btn strong { display: block; font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.cta-action-btn span  { font-size: 12.5px; color: rgba(255,255,255,.42); }


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest-2);
  padding: 72px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}
.footer-brand p {
  margin-top: 18px; font-size: 14px;
  color: rgba(255,255,255,.6); line-height: 1.7; max-width: 300px;
}
.footer-motto {
  margin-top: 10px; font-size: 11px;
  color: rgba(255,255,255,.4); letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.75);
  transition: color .15s, padding-left .15s;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-license {
  font-size: 11px; color: rgba(255,255,255,.45);
  line-height: 1.8; margin-top: 8px; letter-spacing: .04em;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-bottom strong { color: rgba(255,255,255,.65); font-weight: 600; }


/* ════════════════════════════════════════════════════════════
   FLOATING CALL BUTTON
════════════════════════════════════════════════════════════ */
.float-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 30;
  display: flex; align-items: center; gap: 9px;
  background: var(--char); color: #fff;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-family: 'League Spartan', sans-serif;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 36px rgba(0,0,0,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.float-btn:hover {
  background: var(--char-2);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0,0,0,.4);
}


/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 56px 40px 56px; order: 2; }
  .hero-visual { height: 440px; order: 1; }
  .hero-visual::before { display: none; }
  .hero-watermark { display: none; }

  .nav { display: none; }
  .header-end .btn-gold { display: none; }
  .burger { display: flex; }

  /* ── Service panels — stacked layout on tablet/mobile ── */
  .svc-panel {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  /* Image becomes a normal block element on top */
  .svc-panel-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    object-fit: cover;
    order: 0;
    transition: none;
  }
  /* Copy sits below the image on a solid background */
  .svc-panel-copy {
    position: relative;
    width: 100%;
    padding: 44px 40px;
    background: var(--cream);
    order: 1;
    z-index: 1;
  }
  .svc-panel-copy--left,
  .svc-panel-copy--right {
    grid-column: unset;
    text-align: left;
    align-items: flex-start;
  }
  .svc-panel-copy--left .svc-bullets li { flex-direction: row; }
  .svc-panel-fade { display: none; }

  /* Disable hover scale — causes layout jump on touch devices */
  .svc-panel:hover .svc-panel-bg { transform: none; }

  /* Commercial panel — image stays absolute, copy fills it */
  .svc-panel--commercial { min-height: 70vh; display: block; }
  .svc-panel--commercial .svc-panel-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
  }
  /* Fix conflicting inset + left:50% positioning */
  .svc-panel-commercial-copy {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transform: none;
    padding: 48px 28px;
    max-width: 100%;
  }

  .biz-inner { grid-template-columns: 1fr; gap: 48px; }
  .biz-bg-text { display: none; }

  .cta-inner-wrap { grid-template-columns: 1fr; }
  .cta-photo-wrap { display: none; }
  .cta-content { padding: 64px 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .header-inner { padding: 14px 20px; }
  .topbar { padding: 8px 20px; }
  .topbar-license { display: none; }

  /* Hero */
  .hero-copy { padding: 40px 24px 48px; }
  .hero-visual { height: 300px; }
  .h1-top, .h1-bot { font-size: clamp(26px, 6vw, 48px); }
  .h1-mid { font-size: clamp(44px, 12vw, 80px); }
  .hero-desc { font-size: 15px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 13px; }

  /* Services */
  .svc-section-head { padding: 56px 0 40px; }
  .svc-panel-bg { height: 240px; }
  .svc-panel-copy { padding: 40px 24px; }
  .svc-heading { font-size: clamp(28px, 7vw, 42px); }
  .svc-tagline { font-size: 14px; max-width: 100%; }
  .svc-panel--commercial { min-height: 80vh; }
  .svc-panel-commercial-copy { padding: 40px 20px; }
  .svc-commercial-heading { font-size: clamp(28px, 7vw, 44px); }
  .svc-commercial-tagline { font-size: 16px; }

  /* Business section */
  .biz-stats { grid-template-columns: 1fr 1fr; }
  .biz-stat { padding: 28px 16px; }
  .biz-stat strong { font-size: 40px; }
  .biz-title { font-size: clamp(28px, 7vw, 44px); }

  /* Quote */
  .quote-section { padding: 64px 0; }
  .quote-mark { font-size: 60px; }
  blockquote p { font-size: clamp(22px, 5vw, 34px); }

  /* CTA */
  .cta-title { font-size: clamp(26px, 7vw, 44px); }
  .cta-action-btn { padding: 14px 18px; }
  .cta-action-btn strong { font-size: 14px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Float button */
  .float-btn span { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}

@media (max-width: 390px) {
  .logo-aa span { font-size: 24px; }
  .logo-name { font-size: 15px; }
  .logo-sub { display: none; }
  .h1-top, .h1-bot { font-size: 22px; }
  .h1-mid { font-size: clamp(38px, 11vw, 56px); }
  .svc-heading { font-size: 26px; }
  .biz-stat strong { font-size: 36px; }
}
