/* ============================================================
   DESIGN SYSTEM
============================================================ */
:root {
  --green:        #2E6B4F;
  --green-dark:   #1E4A35;
  --green-darker: #123020;
  --green-light:  #3A8C65;
  --green-pale:   #EBF4EF;
  --green-rule:   #2E6B4F;

  --text-dark:    #162018;
  --text-body:    #3C4E42;
  --text-light:   #6B7E72;
  --text-xlight:  #9AADA2;

  --bg:           #FFFFFF;
  --bg-alt:       #F7F9F7;
  --bg-cream:     #F2F5F1;

  --border:       #DDE5DF;
  --border-light: #EEF2EE;

  --shadow-sm:    0 1px 3px rgba(22,32,24,.07);
  --shadow-md:    0 4px 16px rgba(22,32,24,.08);
  --shadow-lg:    0 12px 36px rgba(22,32,24,.11);
  --shadow-xl:    0 24px 60px rgba(22,32,24,.13);

  --r-sm:   4px;
  --r:      8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-full: 9999px;

  --t:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img     { display: block; max-width: 100%; }
a       { text-decoration: none; color: inherit; }
ul      { list-style: none; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 96px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.accent-green { color: var(--green); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.title-rule {
  width: 52px;
  height: 3px;
  background: var(--green);
  margin-bottom: 28px;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r);
  transition: all var(--t);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 26px;
  box-shadow: 0 2px 8px rgba(46,107,79,.25);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 16px rgba(46,107,79,.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  padding: 13px 24px;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--green);
  color: #fff;
  padding: 9px 22px;
  font-size: 0.875rem;
  border-radius: var(--r);
}
.btn-nav:hover { background: var(--green-dark); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  padding: 13px 22px;
}
.btn-outline-dark:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--t);
}
.nav-bar.scrolled { box-shadow: 0 2px 20px rgba(22,32,24,.09); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; gap: 1px; }
.logo-name  {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.logo-tagline {
  font-size: 0.67rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--r-sm);
  transition: all var(--t);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--t);
  border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--text-dark); }
.nav-link.active::after           { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 18px;
  background: #fff;
  border-top: 1px solid var(--border-light);
}
.mobile-menu.open { display: flex; }
.mob-link {
  padding: 11px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--r);
  transition: all var(--t);
}
.mob-link:hover  { background: var(--bg-alt); color: var(--text-dark); }
.mob-cta         { margin-top: 8px; justify-content: center; }

/* ============================================================
   HERO — split layout
============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  padding-top: 76px; /* nav height offset */
}

.hero-left {
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 72px 0 72px 0;
  position: relative;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-left-inner {
  width: 100%;
  max-width: 520px;
  padding-left: 28px;
  padding-right: 48px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.hero-rule {
  width: 52px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   PILLARS BAR
============================================================ */
.pillars {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}

.pillars-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pillar {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 32px 8px 0;
}
.pillar-icon { flex-shrink: 0; margin-top: 2px; }
.pillar-body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.pillar-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

.pillar-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin: auto 0;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-slow);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border);
}

.svc-photo-wrap {
  position: relative;
  height: 260px;
}
.svc-photo-clip {
  width: 100%; height: 100%;
  overflow: hidden;
}
.svc-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}
.svc-card:hover .svc-photo { transform: scale(1.04); }

.svc-icon-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46,107,79,.35);
  z-index: 2;
}

.svc-body {
  padding: 32px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.svc-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.svc-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 5px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  transition: gap var(--t), color var(--t);
}
.svc-link:hover { gap: 10px; color: var(--green-dark); }

/* ============================================================
   LIGHTHOUSE GALLERY STRIP
============================================================ */
.lh-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
  overflow: hidden;
}

.lh-gallery-item {
  position: relative;
  overflow: hidden;
}
.lh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.lh-gallery-item:hover img { transform: scale(1.06); }

/* ============================================================
   STATS BAND
============================================================ */
.stats-band {
  background: var(--green-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1482178116735-0d7fc4305875?auto=format&fit=crop&w=1600&q=60') center/cover;
  opacity: 0.2;
}

.stats-band-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 48px;
}
.stat-icon { margin-bottom: 14px; opacity: 0.85; }
.stat-num  {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-txt {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 0.875rem; color: rgba(255,255,255,.62); }
.stat-divider {
  width: 1px;
  height: 72px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS — split
============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.testi-left {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 28px;
  max-width: 640px;
  width: 100%;
  margin-left: auto;
}
.testi-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}
.testi-rule {
  width: 52px; height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 36px;
}

.testi-quote { display: none; }
.testi-quote.active { display: block; }
.testi-quote p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
  position: relative;
}
.testi-quote p::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--green);
  opacity: 0.18;
  position: absolute;
  top: -18px; left: -6px;
  line-height: 1;
  font-style: normal;
}
.testi-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 6px;
}

.testi-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--t), transform var(--t);
}
.dot.active {
  background: var(--green);
  transform: scale(1.2);
}

.testi-right {
  position: relative;
  overflow: hidden;
}
.testi-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--bg-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  padding: 13px 16px;
  box-shadow: var(--shadow-lg);
}
.ab-icon {
  width: 34px; height: 34px;
  background: var(--green-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-badge strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.about-badge span   { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 1px; }

.about-content .section-title { text-align: left; }
.about-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9375rem;
  color: var(--text-body);
  font-weight: 500;
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--bg); }

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.faq-col-header .section-title { text-align: left; }
.faq-col-header .eyebrow { display: block; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--green); }

.faq-caret {
  flex-shrink: 0;
  color: var(--text-xlight);
  transition: transform var(--t), color var(--t);
}
.faq-item.open .faq-caret { transform: rotate(180deg); color: var(--green); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding-bottom: 20px;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { text-align: left; }

.contact-intro {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  transition: all var(--t);
}
.contact-method:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(46,107,79,.1);
  transform: translateX(3px);
}
.cm-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cm-label { display: block; font-size: 0.7rem; font-weight: 600; color: var(--text-xlight); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.cm-val   { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }

.contact-right {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}
.optional { font-weight: 400; color: var(--text-xlight); }

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--bg-alt);
  transition: all var(--t);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(46,107,79,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-xlight); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%239AADA2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 13px 16px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.visible { display: flex; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cta-lh-icon { flex-shrink: 0; opacity: 0.85; }
.cta-body { flex: 1; }
.cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.cta-sub { font-size: 0.9375rem; color: var(--text-light); }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.cta-email {
  font-size: 0.825rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.cta-email:hover { color: var(--green); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--green-darker);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-logo-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.footer-logo-tag { font-size: 0.68rem; color: rgba(255,255,255,.4); letter-spacing: 0.03em; }
.footer-about {
  font-size: 0.875rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 260px;
}
.footer-contact-q {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}
.footer-contact-q a   { color: rgba(255,255,255,.4); transition: color var(--t); }
.footer-contact-q a:hover { color: rgba(255,255,255,.75); }
.footer-contact-q span { color: rgba(255,255,255,.15); }

.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a  { font-size: 0.875rem; color: rgba(255,255,255,.38); transition: color var(--t); }
.footer-col a:hover { color: rgba(255,255,255,.75); }

.footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,.24);
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1);    }
}
@keyframes ruleGrow {
  from { width: 0;    opacity: 0; }
  to   { width: 52px; opacity: 1; }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0);   }
  45%       { transform: translateY(-6px); }
  65%       { transform: translateY(-3px); }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0   rgba(46,107,79,.35); }
  70%  { box-shadow: 0 0 0 12px rgba(46,107,79,0);  }
  100% { box-shadow: 0 0 0 0   rgba(46,107,79,0);   }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
@keyframes lhBeaconCore {
  0%, 100% { opacity: 1;    filter: drop-shadow(0 0 4px #FFD700) drop-shadow(0 0 8px #FFB300); }
  50%       { opacity: 0.45; filter: drop-shadow(0 0 1px #FFD700); }
}
@keyframes lhBeaconGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.1; }
}
@keyframes lhBeaconRay {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}
.lh-light-core { animation: lhBeaconCore 2.8s ease-in-out infinite; }
.lh-light-glow { animation: lhBeaconGlow 2.8s ease-in-out infinite; }

@keyframes lhRaysSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.lh-rays-spin {
  transform-origin: 26px 9px;
  animation: lhRaysSpin 6s linear infinite, lhBeaconRay 2.8s ease-in-out infinite;
}

/* Hero left content — staggered on load */
.hero-left-inner .hero-headline {
  animation: fadeUp 0.75s cubic-bezier(0.4,0,0.2,1) 0.15s both;
}
.hero-left-inner .hero-rule {
  animation: ruleGrow 0.55s cubic-bezier(0.4,0,0.2,1) 0.45s both;
}
.hero-left-inner .hero-desc {
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.55s both;
}
.hero-left-inner .hero-ctas {
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.70s both;
}
/* Hero photo fade-in */
.hero-right { animation: fadeIn 1.1s ease 0.2s both; }

/* Primary CTA pulse on hover */
.btn-primary:hover {
  animation: pulseRing 0.6s ease;
}

/* Nav brand fade in */
.logo { animation: fadeRight 0.6s cubic-bezier(0.4,0,0.2,1) 0.05s both; }

/* Pillar icons bounce once when pillar becomes visible */
.pillar.visible .pillar-icon {
  animation: iconBounce 0.55s cubic-bezier(0.4,0,0.2,1) 0.25s both;
}

/* Service card icon badge pulse */
.svc-card.visible .svc-icon-badge {
  animation: pulseRing 0.7s ease 0.4s both;
}

/* Gallery items scale in */
.lh-gallery-item.visible img {
  animation: scaleIn 0.6s cubic-bezier(0.4,0,0.2,1) both;
}

/* Stat numbers — color flash when animated */
.stat-num {
  transition: color 0.3s ease;
}

/* Stats band items stagger via nth-child */
.stats-grid .stat-item:nth-child(1) { animation-delay: 0s;    }
.stats-grid .stat-item:nth-child(3) { animation-delay: 0.12s; }
.stats-grid .stat-item:nth-child(5) { animation-delay: 0.24s; }
.stats-grid .stat-item:nth-child(7) { animation-delay: 0.36s; }

/* Eyebrow slide-in */
.eyebrow {
  animation: fadeRight 0.5s cubic-bezier(0.4,0,0.2,1) both;
  animation-play-state: paused;
}
.reveal.visible ~ * .eyebrow,
.reveal.visible .eyebrow { animation-play-state: running; }

/* Section title underline grow on hover */
.section-title {
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 0.4s ease;
  padding-bottom: 2px;
}
.section-title:hover { background-size: 100% 2px; }

/* Contact method slide hint */
.contact-method { transition: all var(--t), box-shadow var(--t); }

/* Testimonial quote crossfade */
.testi-quote {
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  pointer-events: none;
}
.testi-quote.active {
  opacity: 1;
  max-height: 400px;
  pointer-events: auto;
}

/* About badge float */
.about-badge {
  animation: iconBounce 4s ease-in-out 1s infinite;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Gallery items reveal from scale instead of translateY */
.lh-gallery-item.reveal { transform: scale(0.96); }
.lh-gallery-item.reveal.visible { transform: scale(1); }

[data-delay="0"]   { transition-delay: 0s;     }
[data-delay="100"] { transition-delay: 0.10s;  }
[data-delay="120"] { transition-delay: 0.12s;  }
[data-delay="200"] { transition-delay: 0.20s;  }
[data-delay="240"] { transition-delay: 0.24s;  }
[data-delay="300"] { transition-delay: 0.30s;  }
[data-delay="360"] { transition-delay: 0.36s;  }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero              { grid-template-columns: 1fr; min-height: auto; }
  .hero-left         { padding: 64px 0; }
  .hero-left-inner   { max-width: 100%; padding: 0 28px; margin: 0; }
  .hero-right        { height: 50vh; }

  .pillars-grid      { flex-wrap: wrap; gap: 28px; }
  .pillar            { flex: 1 1 40%; padding: 0; }
  .pillar-divider    { display: none; }

  .services-grid     { grid-template-columns: 1fr 1fr; }

  .stats-grid        { flex-wrap: wrap; gap: 36px; }
  .stat-item         { flex: 1 1 40%; padding: 0; }
  .stat-divider      { display: none; }

  .testimonials      { grid-template-columns: 1fr; }
  .testi-left        { padding: 64px 28px; max-width: 100%; margin: 0; }
  .testi-right       { height: 320px; }

  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap  { max-width: 440px; }
  .about-badge       { right: 0; }

  .faq-wrap          { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }

  .cta-inner         { flex-wrap: wrap; gap: 24px; }
  .cta-actions       { align-items: flex-start; }

  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-right    { height: 40vh; }

  .lh-gallery { grid-template-columns: 1fr 1fr; height: 320px; }

  .services-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-right { padding: 24px; }

  .cta-lh-icon { display: none; }

  .footer-inner       { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
