/* ==========================================================================
   Cajun Christmas Lights — shared stylesheet
   Palette is pulled straight off the logo: cream type, dark banner green,
   and the four bulb colors from the gator's light string.
   ========================================================================== */

:root {
  /* Brand */
  --green-900: #101d18;   /* darkest — footer / hero ground */
  --green-800: #16261f;   /* header, dark sections */
  --green-700: #1f3529;   /* raised dark surfaces */
  --green-600: #0f5132;   /* CRM Christmas green — primary actions */
  --green-500: #1a6b45;   /* hover */

  --cream:     #f7ecd0;   /* logo type color */
  --cream-dim: #e3d6b6;
  --paper:     #fbf8f1;   /* light section background */
  --paper-alt: #f2ede0;   /* alternating light section */
  --ink:       #1b2620;   /* body text on light */
  --ink-soft:  #55635b;

  /* Bulbs */
  --bulb-red:   #d1372b;
  --bulb-gold:  #f2b441;
  --bulb-green: #34a05a;
  --bulb-blue:  #3b7fc4;

  --line: rgba(27, 38, 32, .14);
  --line-dark: rgba(247, 236, 208, .16);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 4px rgba(16, 29, 24, .05), 0 12px 28px rgba(16, 29, 24, .09);
  --shadow-lg: 0 4px 8px rgba(16, 29, 24, .06), 0 24px 60px rgba(16, 29, 24, .16);

  --wrap: 1160px;
  --font-display: "Alfa Slab One", Rockwell, "Roboto Slab", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-600); }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; }
h1 { font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; }
h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-weight: 800; font-size: 1.2rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Keyboard focus — visible on both light and dark grounds */
:focus-visible {
  outline: 3px solid var(--bulb-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--bulb-gold); color: var(--green-900); font-weight: 800;
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px; z-index: 200;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ==========================================================================
   Light string — the signature divider, drawn from the logo's bulbs
   ========================================================================== */
.lights {
  height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='34' viewBox='0 0 200 34'%3E%3Cpath d='M0 6 Q50 32 100 6 Q150 32 200 6' fill='none' stroke='%23294a3a' stroke-width='2' stroke-linecap='round'/%3E%3Cg%3E%3Cellipse cx='0' cy='12' rx='3.6' ry='5' fill='%23d1372b'/%3E%3Cellipse cx='20' cy='21' rx='3.6' ry='5' fill='%23f2b441'/%3E%3Cellipse cx='40' cy='25.4' rx='3.6' ry='5' fill='%2334a05a'/%3E%3Cellipse cx='60' cy='25.4' rx='3.6' ry='5' fill='%233b7fc4'/%3E%3Cellipse cx='80' cy='21' rx='3.6' ry='5' fill='%23d1372b'/%3E%3Cellipse cx='100' cy='12' rx='3.6' ry='5' fill='%23f2b441'/%3E%3Cellipse cx='120' cy='21' rx='3.6' ry='5' fill='%2334a05a'/%3E%3Cellipse cx='140' cy='25.4' rx='3.6' ry='5' fill='%233b7fc4'/%3E%3Cellipse cx='160' cy='25.4' rx='3.6' ry='5' fill='%23d1372b'/%3E%3Cellipse cx='180' cy='21' rx='3.6' ry='5' fill='%23f2b441'/%3E%3Cellipse cx='200' cy='12' rx='3.6' ry='5' fill='%23d1372b'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center top;
  filter: drop-shadow(0 0 5px rgba(242, 180, 65, .45));
}
.lights--onDark { filter: drop-shadow(0 0 7px rgba(242, 180, 65, .6)); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: 1.05rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--bulb-red); color: #fff;
  box-shadow: 0 4px 0 #98261d, 0 10px 22px rgba(209, 55, 43, .32);
}
.btn--primary:hover { background: #e0453a; }

.btn--gold {
  background: var(--bulb-gold); color: var(--green-900);
  box-shadow: 0 4px 0 #c58f28, 0 10px 22px rgba(242, 180, 65, .3);
}
.btn--gold:hover { background: #ffc65a; }

.btn--ghost {
  background: transparent; color: var(--cream); border-color: rgba(247, 236, 208, .45);
}
.btn--ghost:hover { background: rgba(247, 236, 208, .12); border-color: var(--cream); }

.btn--outline {
  background: #fff; color: var(--green-600); border-color: rgba(15, 81, 50, .3);
  box-shadow: var(--shadow);
}
.btn--outline:hover { border-color: var(--green-600); }

.btn--lg { padding: 1.2rem 2.2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-800);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  padding-block: .55rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { height: 56px; width: auto; }
.brand-name {
  display: none;
  font-family: var(--font-display); color: var(--cream);
  font-size: 1.05rem; line-height: 1.1; letter-spacing: .01em;
}
@media (min-width: 420px) { .brand-name { display: block; } }

.nav { display: none; align-items: center; gap: 1.6rem; }
.nav a {
  color: var(--cream-dim); text-decoration: none; font-weight: 700; font-size: .97rem;
  padding-block: .35rem; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease;
}
.nav a:hover { color: var(--cream); }
.nav a[aria-current="page"] { color: var(--cream); border-bottom-color: var(--bulb-gold); }

.header-cta { display: none; }

@media (min-width: 900px) {
  .nav, .header-cta { display: flex; }
  .header-cta { align-items: center; gap: .8rem; }
  .nav-toggle { display: none !important; }
}

.header-phone {
  color: var(--cream); text-decoration: none; font-weight: 800; white-space: nowrap;
}
.header-phone:hover { color: var(--bulb-gold); }

/* Mobile menu */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1px solid var(--line-dark); border-radius: 10px;
  color: var(--cream); cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  background: var(--green-700);
  border-top: 1px solid var(--line-dark);
  padding: .75rem 0 1.4rem;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 900px) { .mobile-nav { display: none !important; } }
.mobile-nav a {
  display: block; color: var(--cream); text-decoration: none;
  font-weight: 700; font-size: 1.08rem; padding: .85rem .25rem;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav .btn { margin-top: 1.1rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--green-900); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  /* Swap in a real night photo: background-image: url("images/hero.jpg") — the
     gradient below stays on top of it as the legibility scrim. */
  background:
    radial-gradient(1100px 460px at 50% 108%, rgba(242, 180, 65, .22), transparent 70%),
    radial-gradient(700px 300px at 12% 88%, rgba(59, 127, 196, .16), transparent 70%),
    linear-gradient(180deg, #0a1410 0%, #101d18 55%, #16261f 100%);
}
.hero-bg::after {
  /* faint falling-snow speckle */
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    radial-gradient(1.6px 1.6px at 18% 22%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.4px 1.4px at 72% 14%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.8px 1.8px at 42% 62%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.4px 1.4px at 88% 48%, rgba(255,255,255,.42), transparent),
    radial-gradient(1.6px 1.6px at 28% 78%, rgba(255,255,255,.28), transparent);
}
.hero.has-photo .hero-bg {
  background-image:
    linear-gradient(180deg, rgba(10, 20, 16, .68) 0%, rgba(10, 20, 16, .42) 45%, rgba(16, 38, 31, .84) 100%),
    var(--hero-photo);
  background-size: cover;
  /* The hero photo is nearly square with the lit house in its lower half —
     bias the crop downward so the lights, not empty sky, fill the band. */
  background-position: center 72%;
}
.hero.has-photo .hero-bg::after { opacity: .25; }

.hero-inner {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
  max-width: 780px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.15rem, 6.4vw, 4.1rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
  margin-bottom: .35em;
}
.hero h1 .glow { color: var(--bulb-gold); text-shadow: 0 0 34px rgba(242, 180, 65, .55); }
.hero-sub {
  color: var(--cream-dim); font-size: clamp(1.05rem, 2.3vw, 1.3rem);
  max-width: 46ch; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-note {
  margin-top: 1.6rem; color: rgba(247, 236, 208, .72);
  font-size: .95rem; display: flex; align-items: center; gap: .5rem;
}
.hero .lights { position: absolute; left: 0; right: 0; bottom: -2px; }

/* Page header for interior pages */
.page-head { position: relative; background: var(--green-800); overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 320px at 50% 120%, rgba(242, 180, 65, .18), transparent 70%);
}
.page-head-inner { position: relative; padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 3.75rem); }
.page-head h1 { color: var(--cream); font-size: clamp(1.9rem, 5vw, 3.1rem); }
.page-head p { color: var(--cream-dim); max-width: 56ch; margin: 0; font-size: 1.08rem; }
.page-head .lights { position: absolute; left: 0; right: 0; bottom: -2px; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: clamp(3.25rem, 7vw, 5.5rem); }
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--green-800); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: var(--cream-dim); }

.eyebrow {
  display: inline-block; font-weight: 800; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--bulb-red); margin-bottom: .6rem;
}
.section--dark .eyebrow { color: var(--bulb-gold); }
.section-head { max-width: 62ch; margin-bottom: 2.75rem; }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); margin: 0; }
.section--dark .section-head p { color: var(--cream-dim); }

/* Trust bar */
.trustbar { background: var(--paper-alt); border-bottom: 1px solid var(--line); }
.trustbar ul {
  list-style: none; margin: 0; padding: 1.1rem 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.2rem;
}
.trustbar li {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .95rem; color: var(--ink);
}
.trustbar svg { width: 19px; height: 19px; color: var(--green-600); flex: none; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 660px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .99rem; }
.card ul { margin: .85rem 0 0; padding-left: 1.15rem; color: var(--ink-soft); font-size: .97rem; }
.card li { margin-bottom: .3rem; }

.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: rgba(15, 81, 50, .09); color: var(--green-600);
}
.card-icon svg { width: 27px; height: 27px; }
.card-icon--red   { background: rgba(209, 55, 43, .1);  color: var(--bulb-red); }
.card-icon--gold  { background: rgba(242, 180, 65, .18); color: #b9821c; }
.card-icon--blue  { background: rgba(59, 127, 196, .12); color: var(--bulb-blue); }

/* Numbered steps */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.25rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -.15rem;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem;
  background: var(--bulb-gold); color: var(--green-900);
  box-shadow: 0 0 0 6px rgba(242, 180, 65, .16);
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); margin: 0; }
.section--dark .step p { color: var(--cream-dim); }
.section--dark .step::before { box-shadow: 0 0 0 6px rgba(242, 180, 65, .12); }

/* Feature row (text + visual) */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split ul { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.split li { display: flex; gap: .8rem; margin-bottom: .95rem; align-items: flex-start; }
.split li svg { width: 22px; height: 22px; color: var(--green-600); flex: none; margin-top: .18rem; }
.section--dark .split li svg { color: var(--bulb-gold); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; }
.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; background: var(--green-800); box-shadow: var(--shadow);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot--tall { aspect-ratio: 3 / 4; }

/* Placeholder tile shown until a real photo is dropped in */
.shot--placeholder {
  display: grid; place-items: center; text-align: center; padding: 1rem;
  background:
    radial-gradient(420px 200px at 50% 115%, rgba(242, 180, 65, .2), transparent 70%),
    linear-gradient(170deg, #16261f, #0a1410);
  border: 1px dashed rgba(247, 236, 208, .28);
  color: rgba(247, 236, 208, .62); font-size: .84rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.shot--placeholder span { display: block; max-width: 22ch; }
.gallery figcaption {
  margin-top: .55rem; font-size: .92rem; color: var(--ink-soft); font-weight: 600;
}
.section--dark .gallery figcaption { color: var(--cream-dim); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.stars { display: flex; gap: .15rem; margin-bottom: .9rem; color: var(--bulb-gold); }
.stars svg { width: 19px; height: 19px; }
.quote-card blockquote { margin: 0 0 1.2rem; font-size: 1.05rem; color: var(--ink); }
.quote-card cite { margin-top: auto; font-style: normal; font-weight: 800; font-size: .95rem; }
.quote-card cite span { display: block; font-weight: 600; color: var(--ink-soft); font-size: .88rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: .8rem; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3rem 1.15rem 1.35rem;
  font-weight: 800; font-size: 1.05rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2.5px solid var(--green-600); border-bottom: 2.5px solid var(--green-600);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .faq-body { padding: 0 1.35rem 1.3rem; color: var(--ink-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; background: var(--green-600); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(242, 180, 65, .28), transparent 70%);
}
.cta-band .wrap { position: relative; padding-block: clamp(3rem, 6vw, 4.5rem); text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(247, 236, 208, .88); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.15rem; }
.field label, .fieldset-label {
  display: block; font-weight: 800; font-size: .92rem; margin-bottom: .4rem; color: var(--ink);
}
.field .hint { font-weight: 600; color: var(--ink-soft); font-size: .85rem; margin-bottom: .45rem; }
.req { color: var(--bulb-red); }

.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem .95rem; background: #fff;
  border: 1.5px solid rgba(27, 38, 32, .22); border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(15, 81, 50, .14);
}
.field input:user-invalid, .field select:user-invalid {
  border-color: var(--bulb-red); box-shadow: 0 0 0 4px rgba(209, 55, 43, .12);
}

.row2 { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
.row-addr { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .row2 { grid-template-columns: 1fr 1fr; }
  .row-addr { grid-template-columns: 2fr 1fr 1fr; }
}

fieldset { border: 0; padding: 0; margin: 0 0 1.15rem; }
.checks { display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .checks { grid-template-columns: 1fr 1fr; } }
.check {
  display: flex; align-items: center; gap: .7rem; cursor: pointer;
  padding: .85rem 1rem; border: 1.5px solid rgba(27, 38, 32, .18);
  border-radius: 10px; font-weight: 700; font-size: .97rem;
  transition: border-color .15s ease, background-color .15s ease;
}
.check:hover { border-color: rgba(15, 81, 50, .5); }
.check input { width: 20px; height: 20px; accent-color: var(--green-600); flex: none; margin: 0; }
.check:has(input:checked) { border-color: var(--green-600); background: rgba(15, 81, 50, .06); }

.form-msg {
  padding: .9rem 1.1rem; border-radius: 10px; font-weight: 700;
  margin-bottom: 1.1rem; display: none;
}
.form-msg.is-error { display: block; background: #fdecea; color: #8f2018; border: 1px solid #f3c4bf; }

.form-success { display: none; text-align: center; padding: 1rem 0 .5rem; }
.form-success.is-visible { display: block; }
.form-success .tick {
  width: 74px; height: 74px; margin: 0 auto 1.25rem; border-radius: 50%;
  display: grid; place-items: center; background: rgba(52, 160, 90, .14); color: var(--bulb-green);
}
.form-success .tick svg { width: 38px; height: 38px; }

.form-aside .card { background: #fff; }
.form-aside .card + .card { margin-top: 1.25rem; }

@media (min-width: 980px) {
  .quote-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 2.5rem; align-items: start; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-900); color: var(--cream-dim); }
.footer-top { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer img.footer-logo { height: 92px; width: auto; margin-bottom: 1rem; }
.site-footer h4 {
  color: var(--cream); font-size: .85rem; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--cream-dim); text-decoration: none; }
.site-footer a:hover { color: var(--bulb-gold); }
.site-footer p { color: rgba(247, 236, 208, .7); font-size: .96rem; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .88rem; color: rgba(247, 236, 208, .6);
}
.social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-dark); color: var(--cream);
  transition: background-color .15s ease, border-color .15s ease;
}
.social a:hover { background: rgba(247, 236, 208, .12); border-color: var(--cream); }
.social svg { width: 20px; height: 20px; }

/* Sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(16, 29, 24, .96); border-top: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
}
.callbar .btn { flex: 1; padding: .9rem 1rem; font-size: .97rem; }
@media (min-width: 900px) { .callbar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 76px; } }
