/* ==========================================================================
   L&G Enterprises — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --green-950: #0d2018;
  --green-900: #123023;
  --green-800: #1a4432;
  --green-700: #235940;
  --green-600: #2f6f4f;
  --green-500: #3f8760;
  --green-100: #e4ede6;
  --gold-700: #9c7a35;
  --gold-600: #b3893f;
  --gold-500: #c9a15a;
  --gold-400: #dcbc80;
  --gold-100: #f6ecd6;
  --cream-50: #faf7f1;
  --cream-100: #f4efe4;
  --stone-200: #ece4d2;
  --stone-300: #ddd2b8;
  --ink-900: #171c18;
  --ink-700: #3b423c;
  --ink-500: #656d63;
  --ink-300: #9aa196;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(13, 32, 24, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 32, 24, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 32, 24, 0.18);
  --radius: 6px;
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  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; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--green-950);
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 3.2vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

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

.section { padding: 108px 0; }
.section-sm { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; margin-top: 16px; }

.bg-cream { background: var(--cream-100); }
.bg-green { background: var(--green-950); color: var(--stone-200); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green .section-head p { color: #c3d0c7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline-dark {
  border-color: var(--green-800);
  color: var(--green-950);
}
.btn-outline-dark:hover { background: var(--green-950); color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 0.98rem; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.topbar {
  background: var(--green-950);
  color: #cfe0d3;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 20px;
}
.topbar-links { display: flex; gap: 26px; align-items: center; }
.topbar a:hover { color: var(--gold-400); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social svg { width: 15px; height: 15px; }
.topbar-hide-mobile { }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 28, 24, 0.07);
  transition: padding 0.3s ease, box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.3s ease;
}
.site-header.scrolled .nav-wrap { padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand-logo { height: 54px; width: auto; display: block; }
.footer-logo-chip {
  display: inline-flex;
  background: var(--cream-50);
  padding: 10px 16px;
  border-radius: 8px;
}
.footer-logo-chip .brand-logo { height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .b1 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--green-950);
  letter-spacing: 0.01em;
}
.brand-text .b2 {
  font-size: 0.62rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-600);
  transition: width .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--green-950); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 12px 22px; font-size: 0.8rem; }
.header-phone {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-950);
}
.header-phone svg { width: 18px; height: 18px; color: var(--gold-600); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--green-950); transition: all .3s ease; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-950);
  z-index: 900;
  padding: 100px 36px 40px;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--stone-200);
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 26px; }
.mobile-close {
  position: absolute;
  top: 26px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  z-index: 910;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: block;
  overflow: hidden;
  color: var(--white);
}
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,32,24,.62) 0%, rgba(13,32,24,.42) 38%, rgba(13,32,24,.82) 100%);
  z-index: 2;
}
.hero-content { position: relative; z-index: 3; padding: 132px 0 56px; }
.hero-content .eyebrow { color: var(--gold-400); }
.hero-content .eyebrow::before { background: var(--gold-400); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white);
  max-width: 820px;
  font-weight: 500;
}
.hero h1 em { font-style: italic; color: var(--gold-400); font-weight: 400; }
.hero-sub {
  font-size: 1.18rem;
  max-width: 560px;
  color: #dfe8e1;
  margin: 20px 0 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 40px;
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 26px;
}
.hero-stat { text-align: left; border-left: 1px solid rgba(255,255,255,0.14); padding-left: 22px; }
.hero-stat:first-child { border-left: none; padding-left: 0; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hero-stat .num .suffix { color: var(--gold-400); font-size: 1.6rem; }
.hero-stat .label { font-size: .78rem; letter-spacing: .05em; color: #b9c7bf; margin-top: 4px; }

.hero-dots {
  position: absolute; bottom: 26px; right: 32px; z-index: 4;
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none;
}
.hero-dots button.active { background: var(--gold-400); width: 22px; border-radius: 4px; }

/* ==========================================================================
   Marquee / partner strip
   ========================================================================== */
.marquee-band {
  background: var(--green-950);
  padding: 26px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  color: #9db3a4; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item svg { width: 15px; height: 15px; color: var(--gold-500); }

/* ==========================================================================
   Feature / intro split
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 560px; object-fit: cover; }
.split-media-tag {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}
.split-media-tag .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--green-800); }
.split-media-tag .cap { font-size: .82rem; color: var(--ink-500); margin-top: 2px; }
.split-body p { color: var(--ink-500); margin-top: 18px; font-size: 1.04rem; }
.check-list { margin-top: 30px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-700); }
.check-list svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.split-body .btn { margin-top: 34px; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-300);
  border: 1px solid var(--stone-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 30px;
  position: relative;
  transition: background .3s ease;
}
.service-card:hover { background: var(--cream-100); }
.service-card .ico {
  width: 48px; height: 48px;
  color: var(--green-800);
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-500); font-size: .92rem; }
.service-card .learn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: .82rem; font-weight: 600;
  color: var(--gold-700); opacity: 0; transform: translateY(4px);
  transition: all .25s ease;
}
.service-card:hover .learn { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 8px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-500);
  display: block;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.08rem; margin-bottom: 10px; }
.process-step p { color: var(--ink-500); font-size: .92rem; }
.process-grid > *:not(:last-child) { border-right: 1px dashed var(--stone-300); padding-right: 34px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-wrap { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }
.testi-slide { display: none; }
.testi-slide.active { display: block; animation: fadeUp .6s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity:1; transform:translateY(0);} }
.stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 26px; }
.stars svg { width: 20px; height: 20px; color: var(--gold-500); }
.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}
.testi-person { margin-top: 30px; }
.testi-person .name { font-weight: 600; color: var(--white); }
.testi-person .loc { font-size: .85rem; color: #a9bcb0; margin-top: 3px; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; }
.testi-dots button.active { background: var(--gold-400); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--stone-300);
  border-radius: 30px;
  background: var(--white);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--gold-500); }
.filter-btn.active { background: var(--green-950); border-color: var(--green-950); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3.2;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 4/7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,32,24,0) 45%, rgba(13,32,24,.78) 100%);
  opacity: .75;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: .92; }
.gallery-caption {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  z-index: 2; color: var(--white);
}
.gallery-caption .tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-400); }
.gallery-caption .title { font-family: var(--font-display); font-size: 1.15rem; margin-top: 4px; }
.gallery-zoom {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-6px);
  transition: all .3s ease;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-zoom svg { width: 16px; height: 16px; color: var(--green-950); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13,32,24,.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: #cfe0d3; font-size: .9rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(13,32,24,.85), rgba(13,32,24,.85)), url('../images/pool-sunset.jpg') center/cover fixed;
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); max-width: 720px; margin: 0 auto; }
.cta-band p { color: #d6e2da; max-width: 560px; margin: 18px auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Stat band
   ========================================================================== */
.stat-band { background: var(--green-950); padding: 70px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-grid .num { font-family: var(--font-display); font-size: 3rem; color: var(--gold-400); }
.stat-grid .label { color: #b9c7bf; font-size: .85rem; letter-spacing: .04em; margin-top: 6px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-950); color: #b9c7bf; padding-top: 90px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand .brand-text .b1 { color: var(--white); }
.footer-brand p { margin: 20px 0 24px; font-size: .92rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-950); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 22px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { display: grid; gap: 13px; }
.footer-col a { font-size: .92rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: .82rem; color: #8ea296; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--gold-400); }

/* ==========================================================================
   Sticky mobile call bar
   ========================================================================== */
.mobile-callbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--green-950);
  padding: 12px 18px;
  gap: 12px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.25);
}
.mobile-callbar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 4px; font-size: .88rem; font-weight: 600;
}
.mobile-callbar .call { background: var(--gold-500); color: var(--green-950); }
.mobile-callbar .quote { border: 1px solid rgba(255,255,255,.3); color: #fff; }

/* Back to top */
.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 300;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-950); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .3s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 200px 0 110px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,32,24,.72), rgba(13,32,24,.78)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-400); }
.page-hero .eyebrow::before { background: var(--gold-400); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: 760px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: #c3d0c7; margin-top: 20px; }
.breadcrumb a:hover { color: var(--gold-400); }

/* ==========================================================================
   Misc components
   ========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.badge-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 30px;
  background: var(--cream-100); border: 1px solid var(--stone-300);
  font-size: .82rem; font-weight: 500; color: var(--ink-700);
}
.badge-pill svg { width: 15px; height: 15px; color: var(--gold-600); }

.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card {
  background: var(--white); border: 1px solid var(--stone-300); border-radius: var(--radius);
  padding: 38px 32px;
}
.value-card .ico { width: 42px; height: 42px; color: var(--gold-600); margin-bottom: 20px; }
.value-card p { color: var(--ink-500); font-size: .92rem; margin-top: 10px; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1.5px; background: var(--stone-300); }
.timeline-item { position: relative; padding-bottom: 46px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -40px; top: 4px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold-500); border: 3px solid var(--cream-50); box-shadow: 0 0 0 1.5px var(--gold-500);
}
.timeline-item .yr { font-family: var(--font-display); color: var(--green-800); font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p { color: var(--ink-500); font-size: .95rem; }

.team-note {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--cream-100); border-radius: var(--radius); padding: 34px;
  border-left: 3px solid var(--gold-500);
}
.team-note svg { width: 34px; height: 34px; color: var(--gold-600); flex-shrink: 0; }
.team-note p { color: var(--ink-700); font-style: italic; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.6; }

/* Builders page */
.builder-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.builder-card {
  border: 1px solid var(--stone-300); border-radius: var(--radius);
  padding: 40px 30px; text-align: center; background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.builder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.builder-card .mark {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--cream-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-800);
}
.builder-card .mark svg { width: 28px; height: 28px; }
.builder-card h3 { font-size: 1.02rem; }
.builder-card .placeholder-note { font-size: .78rem; color: var(--ink-300); margin-top: 6px; font-style: italic; }

.builder-card .mark.mark-photo {
  width: 84px; height: 84px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--stone-300);
  overflow: hidden; padding: 8px;
}
.builder-card .mark.mark-photo img { width: 100%; height: 100%; object-fit: contain; }
.builder-card .mark.mark-word {
  width: auto; height: auto; border-radius: 0; background: none;
  flex-direction: column; gap: 2px; margin-bottom: 20px;
}
.builder-card .mark.mark-word .word-main {
  font-family: var(--font-display); font-weight: 700; font-size: 1.7rem;
  letter-spacing: .04em; color: var(--ink-900);
}
.builder-card .mark.mark-word .word-sub {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600;
}
.builder-card .mark.mark-word-sans .word-main-sm {
  font-family: var(--font-body); font-weight: 400; font-size: 1.05rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-900);
}
.builder-card .mark.mark-word-sans .word-sub {
  margin-top: 3px;
}

.placeholder-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fdf3da; border: 1px dashed var(--gold-600); color: #7a5c1c;
  font-size: .78rem; padding: 7px 14px; border-radius: 30px; margin-bottom: 18px;
}

/* Service areas */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
.areas-grid ul { border-top: 1px solid var(--stone-300); }
.areas-grid li {
  padding: 16px 0; border-bottom: 1px solid var(--stone-300);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .98rem; color: var(--ink-700);
}
.areas-grid li svg { width: 16px; height: 16px; color: var(--gold-600); }

/* Map embed frame */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--stone-300); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Accordion (services detail / FAQ) */
.accordion-item { border-bottom: 1px solid var(--stone-300); }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; padding: 26px 0;
  background: none; border: none; font-family: var(--font-display);
  font-size: 1.1rem; color: var(--green-950);
}
.accordion-head svg { width: 20px; height: 20px; color: var(--gold-600); transition: transform .3s ease; flex-shrink: 0; }
.accordion-item.open .accordion-head svg { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-item.open .accordion-body { max-height: 240px; }
.accordion-body p { color: var(--ink-500); padding-bottom: 26px; max-width: 720px; font-size: .95rem; }

/* Service detail rows (services.html) */
.svc-detail {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center;
  padding: 90px 0; border-bottom: 1px solid var(--stone-300);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.rev { grid-template-columns: 1.1fr 0.9fr; }
.svc-detail.rev .svc-media { order: 2; }
.svc-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.svc-index { font-family: var(--font-display); font-size: 1rem; color: var(--gold-600); margin-bottom: 14px; letter-spacing: .05em; }
.svc-body p { color: var(--ink-500); margin-top: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.svc-tags span { font-size: .78rem; padding: 7px 14px; background: var(--cream-100); border: 1px solid var(--stone-300); border-radius: 30px; color: var(--ink-700); }

/* ==========================================================================
   Before / After slider
   ========================================================================== */
.ba-wrap { max-width: 920px; margin: 0 auto; }
.ba-wrap.narrow { max-width: 400px; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
  background: var(--green-950);
}
.ba-slider.aspect-916 { aspect-ratio: 9/16; }
.ba-slider img, .ba-slider video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
}
.ba-tag {
  position: absolute; top: 18px; z-index: 2;
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 30px;
  background: rgba(13,32,24,.72); color: var(--white);
  pointer-events: none;
}
.ba-tag.before-tag { left: 18px; }
.ba-tag.after-tag { right: 18px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 0;
  z-index: 3;
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -1px;
  width: 2px; background: var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ba-handle .ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  gap: 3px;
  pointer-events: none;
}
.ba-handle .ba-grip svg { width: 14px; height: 14px; color: var(--green-950); }
.ba-caption { text-align: center; color: var(--ink-500); font-size: .9rem; margin-top: 20px; }

.video-wrap {
  max-width: 760px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--green-950);
}
.video-wrap video { display: block; width: 100%; aspect-ratio: 16/9; background: var(--green-950); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; }
.contact-card {
  background: var(--white); border: 1px solid var(--stone-300); border-radius: var(--radius);
  padding: 46px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-700); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--stone-300); border-radius: 4px;
  font-family: inherit; font-size: .94rem; background: var(--cream-50); color: var(--ink-900);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8rem; color: var(--ink-300); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 52px; height: 52px; color: var(--green-700); margin: 0 auto 18px; }

.info-list { display: grid; gap: 26px; }
.info-row { display: flex; gap: 18px; align-items: flex-start; }
.info-row .ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-950); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-row .ico svg { width: 20px; height: 20px; }
.info-row h4 { font-size: 1rem; margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--ink-500); font-size: .94rem; }
.info-row a:hover { color: var(--gold-700); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .process-grid > *:nth-child(2n)::before { }
  .process-grid > * { border-right: none !important; padding-right: 0 !important; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .hero-stat:nth-child(3) { border-left: none; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .builder-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav ul, .header-phone span { display: none; }
  .hamburger { display: flex; }
  .split, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .split-media img { height: 380px; }
  .split-media-tag { left: 0; }
  .svc-detail, .svc-detail.rev { grid-template-columns: 1fr; gap: 34px; padding: 56px 0; }
  .svc-detail.rev .svc-media { order: 0; }
  .svc-media img { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3.2; }
  .mobile-callbar { display: flex; }
  .section { padding: 70px 0; }
  .topbar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  h2 { font-size: 2rem; }
  .hero-content { padding: 130px 0 60px; }
  .hero-actions .btn { flex: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .builder-grid, .areas-grid { grid-template-columns: 1fr; }
  .cta-band { background-attachment: scroll; }
  .page-hero { padding: 150px 0 80px; }
}
