/* ============================================
   HAPPY SHORES CO — STYLES v6
   ============================================ */

:root {
  --ink: #0c2e2e;
  --teal: #0d7370;
  --teal-light: #148f8b;
  --teal-dark: #0a5553;
  --teal-bg: #0f3c3b;
  --gold: #e8a500;
  --gold-bright: #f2b705;
  --white: #ffffff;
  --gray-50: #f7fafa;
  --gray-100: #eef4f3;
  --gray-200: #d8e8e6;
  --text-muted: #4a7070;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 6px rgba(12,46,46,.06);
  --shadow-md: 0 8px 24px rgba(12,46,46,.09), 0 2px 6px rgba(12,46,46,.04);
  --shadow-lg: 0 20px 50px rgba(12,46,46,.13), 0 4px 16px rgba(12,46,46,.06);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- Layout ---- */
.container { width: min(1120px, 93vw); margin-inline: auto; }

/* ═══════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--stagger, 0ms);
}
.reveal-up.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---- Topbar ---- */
.topbar {
  background: var(--ink);
  color: #c8e8e2;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.topbar__inner {
  padding: .55rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__left { opacity: .75; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-call {
  background: var(--gold-bright);
  color: #0c2000;
  padding: .4rem .9rem;
}
.btn-call:hover { background: var(--gold); transform: translateY(-1px); }
.btn-cta {
  background: var(--teal);
  color: #fff;
  padding: .65rem 1.3rem;
  box-shadow: 0 4px 14px rgba(13,115,112,.3);
}
.btn-cta:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,115,112,.4);
}
.btn-hero { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn-outline {
  border: 2px solid rgba(255,255,255,.65);
  color: #fff;
  background: transparent;
  padding: .65rem 1.3rem;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-gold {
  background: var(--gold-bright);
  color: #0c2000;
  padding: .85rem 2.2rem;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(242,183,5,.35);
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(242,183,5,.45);
}
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 59, 58, .93);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; color: #fff; text-decoration: none; flex-shrink: 0; }
.brand__logo { width: 36px; height: 36px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255,255,255,.25); }
.brand__name { font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.nav__links { display: flex; align-items: center; gap: .2rem; }
.nav__links a { color: rgba(255,255,255,.8); text-decoration: none; padding: .4rem .7rem; border-radius: 8px; font-size: .88rem; font-weight: 500; transition: all .15s; }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav__links .btn-cta { color: #fff; margin-left: .6rem; padding: .5rem 1.1rem; font-size: .88rem; }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; gap: 5px; flex-direction: column; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .2s; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 88dvh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('MainBackground.png') center/cover no-repeat;
  z-index: -2;
  transform-origin: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg,
    rgba(6, 36, 36, .75) 0%,
    rgba(7, 44, 44, .62) 50%,
    rgba(5, 28, 28, .70) 100%);
}
.hero__content {
  padding: clamp(72px, 9vw, 112px) 0;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 1.5rem;
  color: #e9fbf7;
  width: 100%;
}

/* Staggered hero entrance animations */
.hero__watermark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.3));
  animation: heroScale .9s .05s cubic-bezier(.22,1,.36,1) both;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  padding: .35rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  animation: heroFadeUp .7s .25s cubic-bezier(.22,1,.36,1) both;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.07;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
  animation: heroFadeUp .85s .45s cubic-bezier(.22,1,.36,1) both;
}
.hero__title .accent { color: var(--gold-bright); }
.hero__sub {
  max-width: 48ch;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  animation: heroFadeUp .7s .68s cubic-bezier(.22,1,.36,1) both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .4rem;
  animation: heroFadeUp .7s .88s cubic-bezier(.22,1,.36,1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroScale {
  from { opacity: 0; transform: scale(.72); }
  to   { opacity: .96; transform: scale(1); }
}

/* Scroll hint arrow */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: heroFadeUp .6s 1.2s ease both;
}
.hero__scroll-hint span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .8; }
  50% { transform: rotate(45deg) translateY(6px); opacity: .3; }
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: #07201f;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: .85rem; color: rgba(255,255,255,.85); }
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; gap: .1rem; }
.trust-item strong { font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.25; }
.trust-item span { font-size: .76rem; color: rgba(255,255,255,.48); }

/* ═══════════════════════════════════════
   GALLERY — dramatic dark section, shown early
   ═══════════════════════════════════════ */
.gallery-section {
  background: linear-gradient(180deg, #051212 0%, #071a1a 60%, #051212 100%);
  padding: 5rem 0 3.5rem;
  overflow: hidden;
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--teal-light) 40%, var(--gold-bright) 60%, transparent 100%);
  opacity: .6;
}
.gallery-section .section-header { padding: 0 0 2.75rem; }
.gallery-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: .85rem;
}
.gallery-title { color: #fff !important; }
.gallery-sub   { color: rgba(255,255,255,.55) !important; }

.gallery-track-wrap {
  position: relative;
  overflow: hidden;
  padding: .5rem 0;
}
.gallery-track-wrap--mt { margin-top: 1.1rem; }

/* Fade edges so tracks bleed off screen cleanly */
.gallery-track-wrap::before,
.gallery-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.gallery-track-wrap::before { left: 0;  background: linear-gradient(to right, #051212, transparent); }
.gallery-track-wrap::after  { right: 0; background: linear-gradient(to left,  #051212, transparent); }

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 1.25rem;
  will-change: transform;
  cursor: grab;
}
.gallery-track:active { cursor: grabbing; }

.ba-card {
  flex: 0 0 310px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.25);
  transition: box-shadow .28s, transform .28s;
}
.ba-card:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 14px 40px rgba(0,0,0,.32); }

.ba-card.reveal { animation: cardReveal .55s ease both; }
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.ba-slider {
  position: relative;
  cursor: pointer;
  user-select: none;
  touch-action: pan-x;
  overflow: hidden;
}
.ba-label--before { transition: opacity .55s ease; }
.ba-label--after  { opacity: 0; transition: opacity .55s ease; }
.ba-slider[data-showing="after"] .ba-label--before { opacity: 0; }
.ba-slider[data-showing="after"] .ba-label--after  { opacity: 1; }
.ba-slider::after {
  content: 'Click to reveal after';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.52);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .3s ease;
}
.ba-slider[data-showing="after"]::after { content: 'Click to see before'; opacity: .65; }
.ba-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ba-before { position: absolute; inset: 0; height: 100%; }
.ba-label {
  position: absolute;
  top: 10px;
  background: rgba(0,0,0,.52);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  pointer-events: none;
}
.ba-label--before { left: 10px; }
.ba-label--after  { right: 10px; }
.ba-caption {
  padding: .75rem 1rem;
  font-size: .83rem;
  color: #0c2e2e;
  font-weight: 500;
  border-top: 1px solid #f0f4f4;
}

/* Wave divider */
.wave-divider { line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; height: 70px; }
.wave-divider--light { background: #051212; }

/* ---- Section base ---- */
.section { padding: clamp(72px, 8vw, 108px) 0; }
.section--teal {
  background: linear-gradient(140deg, #093e3c 0%, #0d6460 55%, #0f7872 100%);
  color: #fff;
}
.section--dark { background: var(--ink); color: #fff; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-sub { color: rgba(255,255,255,.65); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: .65rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   SERVICES — with cursor-spotlight hover
   ═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  list-style: none;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity .28s;
}
/* Cursor-following spotlight */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(13,115,112,.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }
.service-icon { font-size: 2.2rem; margin-bottom: 1.1rem; display: block; line-height: 1; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Impact Stats ---- */
.impact-section {
  background: linear-gradient(135deg, #081e1e 0%, #0d3b3a 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.impact-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 2.5rem;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.impact-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 600px; margin-left: auto; margin-right: auto; }
.impact-stat {
  padding: 2rem 1rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.impact-stat.in-view { opacity: 1; transform: none; }
.impact-stat:nth-child(2) { transition-delay: .15s; }
.impact-stat:nth-child(3) { transition-delay: .3s; }
.impact-number { font-family: 'Playfair Display', Georgia, serif; font-size: 4.25rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: .65rem; }
.impact-unit { font-size: 2.6rem; color: var(--gold-bright); }
.impact-label { font-size: .87rem; font-weight: 500; color: rgba(255,255,255,.55); line-height: 1.55; }

/* ---- Why Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: all .28s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,183,5,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.why-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold-bright); margin-bottom: .6rem; }
.why-card p { font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.7; }

/* ---- Serving ---- */
.serving-layout { display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center; }
.serving-tag {
  display: inline-flex;
  background: var(--teal);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.serving-copy h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 1rem; }
.serving-copy p { color: var(--text-muted); margin-bottom: .75rem; max-width: 52ch; }
.serving-copy .btn-cta { margin-top: .75rem; }
.serving-lakes { display: flex; flex-direction: column; gap: .6rem; min-width: 200px; }
.lake-badge {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: .7rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.lake-badge:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.lake-badge--muted { color: var(--text-muted); font-weight: 500; border-left-color: var(--gray-200); }

/* ---- CTA Block ---- */
.cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(36px, 5vw, 64px) 0;
}
.cta-logo { width: 68px; height: 68px; border-radius: 50%; opacity: .9; filter: drop-shadow(0 4px 14px rgba(0,0,0,.22)); }
.cta-block h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: #fff; }
.cta-block p { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 40ch; }

/* ---- FAQ ---- */
.faq-section { padding: clamp(72px, 8vw, 108px) 0; background: var(--gray-50); }
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s;
}
.faq-item.in-view { opacity: 1; transform: translateY(0); transition-delay: var(--delay, 0ms); }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  padding: 1.15rem 1.3rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.active .faq-question { color: var(--teal); background: var(--gray-50); }
.faq-question::after { content: "+"; font-size: 1.25rem; font-weight: 700; color: var(--teal); flex-shrink: 0; transition: transform .3s ease; }
.faq-item.active .faq-question::after { content: "−"; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--gray-50);
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 1.3rem;
  border-top: 1px solid transparent;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 1rem 1.3rem 1.4rem; border-top-color: var(--gray-200); }
.faq-answer p { margin: 0; color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.faq-answer a { color: var(--teal); text-decoration: underline; }

/* ---- Footer ---- */
.site-footer { background: #081e1e; color: #a8d4ce; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 2.5rem 0; }
.footer__brand { display: flex; align-items: center; gap: .75rem; }
.footer__brand img { width: 34px; height: 34px; border-radius: 50%; }
.footer__brand div { display: flex; flex-direction: column; gap: .1rem; }
.footer__brand strong { color: #fff; font-size: .9rem; }
.footer__brand span { font-size: .76rem; opacity: .5; }
.footer__nav { display: flex; gap: .5rem 1.1rem; flex-wrap: wrap; }
.footer__nav a { color: #a8d4ce; text-decoration: none; font-size: .87rem; transition: color .15s; }
.footer__nav a:hover { color: #fff; }
.footer__contact a { color: var(--gold-bright); text-decoration: none; font-weight: 600; font-size: .95rem; transition: color .15s; }
.footer__contact a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .75rem; margin-top: .6rem; }
.footer__social a { color: rgba(255,255,255,.45); transition: color .15s; display: flex; align-items: center; }
.footer__social a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1rem 0; }
.footer__bottom small { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 64px 16px auto 16px;
    background: #0d3b3a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: none;
    flex-direction: column;
  }
  .nav.open .nav__links { display: flex; }
  .nav-toggle { display: flex; }
  .nav__links .btn-cta { margin-left: 0; margin-top: .25rem; }
}

@media (max-width: 768px) {
  .serving-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .serving-lakes { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .lake-badge { font-size: .82rem; padding: .55rem .9rem; }
  .topbar__left { display: none; }
}

@media (max-width: 480px) {
  .nav { padding: .6rem 0; }
  .brand__name { font-size: .88rem; }
  .nav__links { inset: 58px 12px auto 12px; }

  .hero { min-height: 92dvh; }
  .hero__watermark { width: 58px; height: 58px; }
  .hero__content { gap: 1.1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; width: min(320px, 100%); }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; padding: .9rem 1.25rem; font-size: .95rem; }

  .trust-strip { padding: 1.25rem 0; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; gap: .75rem 1rem; }
  .trust-item { flex-direction: column; text-align: center; gap: .3rem; }
  .trust-icon { font-size: 1.4rem; }
  .trust-item strong { font-size: .8rem; }
  .trust-item span { font-size: .7rem; }

  .gallery-section { padding: 3.5rem 0 2.5rem; }
  .ba-card { flex: 0 0 min(280px, calc(100vw - 3rem)); }
  .ba-img { height: 190px; }
  .gallery-track { gap: 1rem; }

  .section { padding: 3.5rem 0; }
  .faq-section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-sub { font-size: .95rem; }

  .impact-section { padding: 3rem 0 2.5rem; }
  .impact-grid--2 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .impact-number { font-size: 2.6rem; }
  .impact-unit { font-size: 1.7rem; }
  .impact-label { font-size: .78rem; }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem 1.25rem; }
  .service-icon { font-size: 1.8rem; margin-bottom: .65rem; }

  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.6rem 1.4rem; }
  .why-icon { font-size: 2rem; margin-bottom: .75rem; }

  .cta-block { gap: 1rem; }
  .btn-gold.btn-lg { padding: 1rem 1.75rem; font-size: .95rem; width: min(300px, 100%); }

  .faq-item.active .faq-answer { max-height: 500px; }
  .faq-question { font-size: .9rem; padding: 1rem 1.1rem; }

  .serving-copy .btn-cta { display: block; text-align: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; padding: 2rem 0; }
  .footer__nav { gap: .4rem .9rem; }
  .footer__nav a { font-size: .82rem; }

  .hero__scroll-hint { display: none; }
}

/* Touch device wording */
@media (pointer: coarse) {
  .ba-slider::after { content: 'Tap to reveal after'; }
  .ba-slider[data-showing="after"]::after { content: 'Tap to see before'; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-item    { opacity: 1 !important; transform: none !important; transition: none !important; }
  .impact-stat { opacity: 1 !important; transform: none !important; }
  .hero__watermark, .hero__badge, .hero__title, .hero__sub, .hero__actions, .hero__scroll-hint {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}
