:root {
  --navy: #1a3a4f;
  --deep: #0f1e28;
  --slate: #2c4a5e;
  --steel: #4a6b7e;
  --fog: #c8d4db;
  --offwhite: #f0ebe3;
  --warm-white: #f7f4ef;
  --gold: #bc9656;
  --text-dark: #141b20;
  --text-mid: #3d5260;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 4rem;
  background: rgba(15, 30, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,212,219,0.12);
  transition: all 0.3s ease;
  min-height: 100px;
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 90px;
}

.nav-logo img {
  height: 90px; width: auto; max-width: 320px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--fog);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--steel);
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--deep);
  border: 1px solid rgba(200,212,219,0.15);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 0.75rem 1.2rem;
  font-size: 0.8rem; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(200,212,219,0.08);
  color: var(--fog); text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.dropdown-menu a:last-child { border-bottom: none; }
/* Prevent nav items from shifting on dropdown open */
.nav-links li { position: relative; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--fog); transition: all 0.3s; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  background: var(--deep);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(26,58,79,0.6) 0%, rgba(15,30,40,0.95) 60%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-texture {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a6b7e' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Strata lines */
.strata {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  overflow: hidden; pointer-events: none;
}
.strata svg { width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 4rem;
  padding-top: 130px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.3s;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 1.02;
  color: #fff;
  max-width: 720px;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic; color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem; font-weight: 300;
  color: var(--fog); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.9s;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--deep);
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #d4a96a; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--fog);
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(200,212,219,0.35);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--fog); color: #fff; transform: translateY(-2px); }

.hero-stats {
  position: absolute; bottom: 80px; right: 4rem;
  display: flex; gap: 3rem; z-index: 2;
  opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s;
}

.stat { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: #fff; line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--fog);
  margin-top: 0.2rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── ASYMMETRY & SPATIAL DETAILS ─── */
.section-ghost-num {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(200,212,219,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.offset-label {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(200,212,219,0.2);
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.diagonal-rule {
  position: absolute;
  width: 120px; height: 2px;
  background: var(--gold);
  transform: rotate(-35deg);
  opacity: 0.4;
}

/* ─── STAT COUNTER ─── */
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: #fff; line-height: 1;
  transition: color 0.3s;
}

/* ─── FORM CONFIRMATION ─── */
.form-confirmation {
  border: 1px solid var(--fog);
  background: #fff;
}

.form-confirmation div > div:first-child {
  width: 56px; height: 56px;
  background: #f0f7f4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #4a8a6e;
  font-size: 1.4rem;
}

/* ─── INSIGHTS PAGE ─── */
.insights-featured {
  background: #fff;
  border: 1px solid var(--fog);
  border-top: 4px solid var(--gold);
  padding: 3rem;
  max-width: 820px;
}

.insights-featured-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
}

.insights-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); background: var(--offwhite);
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--fog);
}

.insights-date {
  font-size: 0.8rem; color: var(--steel);
  font-weight: 300;
}

.insights-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--deep);
  line-height: 1.2; margin-bottom: 1rem;
}

.insights-featured-excerpt {
  font-size: 0.97rem; line-height: 1.85;
  color: var(--text-mid); font-weight: 300;
}

/* ─── INSIGHTS GRID ─── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insights-card {
  background: #fff;
  border: 1px solid var(--fog);
  padding: 1.8rem;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.insights-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.insights-card:hover {
  box-shadow: 0 8px 32px rgba(15,30,40,0.08);
  transform: translateY(-3px);
}

.insights-card:hover::before { transform: scaleX(1); }

.insights-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); margin-bottom: 0.75rem;
}

.insights-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--deep); line-height: 1.3;
  margin-bottom: 0.75rem; flex-grow: 1;
}

.insights-card-excerpt {
  font-size: 0.85rem; line-height: 1.75;
  color: var(--text-mid); font-weight: 300;
  margin-bottom: 1.2rem;
}

.insights-card-footer {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 1rem;
  border-top: 1px solid var(--fog);
  margin-top: auto;
}

.insights-card-date {
  font-size: 0.75rem; color: var(--steel);
  font-weight: 300;
}

.insights-card-link {
  font-size: 0.8rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.insights-card-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insights-featured { padding: 1.5rem; }
  #insights-signup .section-inner > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* ─── PRIVACY PAGE ─── */
.privacy-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--fog);
}
.privacy-block:last-of-type { border-bottom: none; }

.privacy-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--deep); margin-bottom: 0.75rem;
}

.privacy-block p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-mid); font-weight: 300;
  margin-bottom: 0.75rem;
}
.privacy-block p:last-child { margin-bottom: 0; }

/* ─── SECTION RHYTHM ─── */


/* ─── CONTRAST FIXES — em on dark backgrounds ─── */
#why .section-title em,
#basins .section-title em,
.about-page-hero .section-title em,
.services-page-hero .section-title em,
.contact-page-hero .section-title em,
.about-page-hero h1 em,
.insights-featured-title em { color: var(--gold) !important; }

/* Improve body text on dark sections */
.about-page-text .section-body { color: #d8e4eb !important; }
.about-cred { color: #d8e4eb !important; }

/* ─── SECTION BASICS ─── */
section { padding: 7rem 4rem; }

.section-inner {
  max-width: 1200px; margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; color: var(--deep);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--navy); }

.section-body {
  font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: var(--text-mid);
  max-width: 580px;
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── VALUE STRIP ─── */
#value-strip {
  background: var(--deep);
  padding: 3rem 4rem;
}

.value-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid rgba(200,212,219,0.1);
}

.value-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(200,212,219,0.1);
  transition: background 0.3s;
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(26,58,79,0.4); }

.value-icon {
  font-size: 1.5rem; margin-bottom: 1rem;
  color: var(--gold);
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #fff;
  margin-bottom: 0.6rem;
}

.value-desc {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--fog); font-weight: 300;
}

/* ─── ABOUT SECTION ─── */
#about-home {
  background: var(--warm-white);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.about-image-block {
  position: relative;
}

.about-image-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy), var(--slate));
  position: relative; overflow: hidden;
}

.about-image-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 20 Q10 10 20 20 Q30 30 40 20 L40 40 L0 40Z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.about-image-label {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--gold); padding: 1.2rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.1em;
  color: var(--deep); line-height: 1.3;
}

.about-image-accent {
  position: absolute; top: -1rem; left: -1rem;
  width: 60px; height: 60px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.about-text .section-body { margin-bottom: 2rem; }

.credentials {
  list-style: none; margin: 1.5rem 0 2rem;
}
.credentials li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--fog);
  font-size: 0.9rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 0.75rem;
}
.credentials li::before {
  content: '—'; color: var(--gold); font-weight: 700;
}

/* ─── SERVICES ─── */
#services-home {
  background: var(--offwhite);
}

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none; display: block;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: var(--deep); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-num { color: rgba(200,212,219,0.2); }
.service-card:hover .service-name { color: #fff; }
.service-card:hover .service-desc { color: var(--steel); }
.service-card:hover .service-arrow { color: var(--gold); opacity: 1; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1;
  color: var(--fog); transition: color 0.3s;
  margin-bottom: 1rem;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--deep);
  margin-bottom: 0.8rem; transition: color 0.3s;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.87rem; line-height: 1.7;
  color: var(--text-mid); font-weight: 300;
  transition: color 0.3s;
}

.service-arrow {
  margin-top: 1.5rem; font-size: 1.2rem;
  color: var(--navy); opacity: 0.4;
  transition: all 0.3s;
}

/* ─── WHY CHOOSE ─── */
#why {
  background: var(--deep);
  position: relative; overflow: hidden;
}

.why-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=60') center/cover no-repeat;
  opacity: 0.07;
}

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative; z-index: 1;
}

.why-text .section-title { color: #fff; }
.why-text .section-title em { color: var(--gold); }
.why-text .section-body { color: var(--fog); max-width: 100%; }

.why-points { list-style: none; margin-top: 2.5rem; }
.why-point {
  display: flex; gap: 1rem; margin-bottom: 1.8rem;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.why-point.visible { opacity: 1; transform: translateX(0); }

.why-point-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; color: var(--gold);
  line-height: 1; min-width: 2rem;
}

.why-point-text h4 {
  font-size: 0.95rem; font-weight: 600;
  color: #fff; margin-bottom: 0.3rem;
}

.why-point-text p {
  font-size: 0.87rem; color: var(--fog);
  line-height: 1.6; font-weight: 300;
}

.why-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(200,212,219,0.1);
}

.why-stat-box {
  background: rgba(26,58,79,0.5);
  padding: 2.5rem 2rem; text-align: center;
  transition: background 0.3s;
}
.why-stat-box:hover { background: rgba(26,58,79,0.8); }

.why-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--gold); line-height: 1;
}

.why-stat-label {
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
  margin-top: 0.5rem; font-weight: 300;
}

/* ─── CONTACT SECTION ─── */
#contact-home {
  background: var(--warm-white);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}

.contact-info .section-body { margin-bottom: 2.5rem; }

.contact-details { list-style: none; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--fog);
  font-size: 0.95rem; color: var(--text-mid);
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mid); font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid var(--fog);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.78rem; color: var(--steel);
  margin-top: 0.75rem; font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  padding: 4rem;
  border-top: 1px solid rgba(200,212,219,0.08);
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.88rem; color: var(--fog);
  line-height: 1.7; font-weight: 300;
  margin-top: 1rem; max-width: 280px;
}

.footer-brand img {
  height: 56px; width: auto; display: block;
}

.footer-col h5 {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fog);
  margin-bottom: 1.2rem; font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.87rem; color: var(--fog);
  text-decoration: none; transition: color 0.2s;
  font-weight: 300;
}
.footer-col ul a:hover { color: var(--fog); }

.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,212,219,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--steel);
}

/* ─── BASIN CARDS ─── */
.basin-card {
  background: rgba(26,58,79,0.35);
  padding: 1.4rem 1.6rem;
  border-bottom: none;
  transition: background 0.3s;
  cursor: default;
}
.basin-card:hover { background: rgba(26,58,79,0.7); }

.basin-region {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.35rem; font-weight: 500;
}

.basin-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: #fff;
  margin-bottom: 0.25rem; line-height: 1.2;
}

.basin-type {
  font-size: 0.76rem; color: var(--fog);
  font-weight: 300; letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  #basins { padding: 4rem 1.5rem !important; }
  #basins .section-inner > div { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  #basins .reveal:last-child > div { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  #basins .reveal:last-child > div { grid-template-columns: 1fr; }
}

/* ─── ABOUT PAGE ─── */
.about-page-hero {
  background: var(--deep);
  padding: 7rem 4rem 5rem;
  width: 100%;
  box-sizing: border-box;
}

.about-page-hero .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}

.about-page-photo {
  width: 420px;
  height: 480px;
  background: linear-gradient(160deg, var(--navy), var(--deep));
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-end;
  overflow: hidden;
  flex-shrink: 0;
}

.about-page-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.02) 30px,
    rgba(255,255,255,0.02) 31px
  );
}

.about-photo-label {
  background: var(--gold); padding: 0.8rem 1.2rem;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--deep);
  font-weight: 600; position: relative; z-index: 1;
}

.about-page-text .section-title { color: #fff; }
.about-page-text .section-body { color: var(--fog); }

.about-creds {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem;
}

.about-cred {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--fog);
}
.about-cred-dot {
  width: 6px; height: 6px;
  background: var(--gold); flex-shrink: 0;
}

.about-page-bio {
  background: var(--warm-white);
  padding: 6rem 4rem;
}

.bio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.bio-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--deep);
  margin-bottom: 1rem;
}

.bio-block p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-mid); font-weight: 300;
  margin-bottom: 1rem;
}

.linkedin-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #0077b5; color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; margin-top: 1.5rem;
  transition: background 0.2s;
}
.linkedin-btn:hover { background: #005f91; }

/* ─── BASIN STYLES ─── */
.basin-pill {
  background: var(--offwhite);
  border: 1px solid var(--fog);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem; color: var(--navy);
  font-weight: 500; letter-spacing: 0.04em;
  display: inline-block;
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--fog);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(15,30,40,0.08);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: 0.8;
  color: var(--fog); margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem; line-height: 1.8;
  color: var(--text-mid); font-weight: 300;
  font-style: italic; margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fog);
}

.testimonial-author-info strong {
  display: block; font-size: 0.88rem;
  color: var(--deep); font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.78rem; color: var(--steel);
  font-weight: 300;
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr !important; }
}

/* ─── ACHIEVEMENT CARDS ─── */
.achievement-card {
  background: rgba(26,58,79,0.35);
  padding: 2.2rem 2rem;
  transition: background 0.3s;
}
.achievement-card:hover { background: rgba(26,58,79,0.65); }

.achievement-icon {
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 0.9rem;
}

.achievement-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: #fff;
  margin-bottom: 0.75rem; line-height: 1.25;
}

.achievement-card p {
  font-size: 0.87rem; line-height: 1.8;
  color: var(--fog); font-weight: 300;
  margin-bottom: 1.2rem;
}

.achievement-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}

.achievement-tags span {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(200,212,219,0.07);
  border: 1px solid rgba(200,212,219,0.15);
  color: var(--fog); padding: 0.3rem 0.7rem;
}

@media (max-width: 900px) {
  .achievement-card { grid-template-columns: 1fr !important; }
}

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: flex; flex-direction: column;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 2rem 4rem 1fr;
  gap: 0 1.8rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

.process-connector {
  grid-column: 1;
  width: 2px;
  background: var(--fog);
  margin: 2.2rem auto 0;
  align-self: stretch;
}

.process-num {
  grid-column: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--navy);
  line-height: 1; padding-top: 0.1rem;
  min-width: 4rem;
  transition: color 0.2s;
}

.process-body { grid-column: 3; padding-top: 0.15rem; }

.process-body h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--deep); margin-bottom: 0.5rem;
}

.process-body p {
  font-size: 0.92rem; line-height: 1.8;
  color: var(--text-mid); font-weight: 300;
}

.process-step:hover .process-num { color: var(--gold); }

@media (max-width: 600px) {
  .process-step { grid-template-columns: 0 3rem 1fr; gap: 0 1rem; }
  .process-connector { display: none; }
}

/* ─── SERVICE CATEGORIES & ICONS ─── */
.service-category { margin-bottom: 1rem; }

.service-category-header {
  display: flex; align-items: flex-start; gap: 2rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--fog);
}

.service-category-line {
  width: 3px; min-height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  flex-shrink: 0; margin-top: 0.4rem;
}

.service-category-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--deep);
  line-height: 1.1; margin-bottom: 0.6rem;
}
.service-category-title em { font-style: italic; color: var(--navy); }

.service-category-desc {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.7; font-weight: 300; max-width: 560px;
}

.service-full-num-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  min-width: 80px;
}

.service-icon {
  width: 48px; height: 48px;
  color: var(--navy); opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.service-full-item:hover .service-icon {
  opacity: 1; color: var(--gold);
}

/* update service-full-item grid to accommodate icon */
.service-full-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 4rem; padding: 4rem 0;
  border-bottom: 1px solid var(--fog);
  align-items: start;
}
.service-full-item:last-of-type { border-bottom: none; }

@media (max-width: 900px) {
  .service-full-item { grid-template-columns: 1fr; gap: 1rem; }
  .service-full-num-wrap { flex-direction: row; align-items: center; }
  .service-category-header { flex-direction: column; gap: 1rem; }
  .service-category-line { width: 40px; min-height: 3px;
    background: linear-gradient(to right, var(--gold), transparent); }
}

/* ─── SERVICES PAGE HERO ─── */
.services-page-hero {
  background: var(--deep);
  padding: 7rem 4rem 5rem;
  text-align: center;
}

.services-page-hero .section-title { color: #fff; }
.services-page-hero .section-body {
  color: var(--fog); margin: 0 auto 3rem;
}

.services-full {
  padding: 5rem 4rem;
  background: var(--warm-white);
}

.service-full-item {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; padding: 4rem 0;
  border-bottom: 1px solid var(--fog);
  align-items: start;
}
.service-full-item:last-child { border-bottom: none; }

.service-full-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem; color: var(--fog); line-height: 0.9;
}

.service-full-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--deep);
  margin-bottom: 1rem;
}

.service-full-body p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-mid); font-weight: 300;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--offwhite); color: var(--navy);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--fog);
}

/* ─── CONTACT PAGE ─── */
.contact-page-hero {
  background: var(--deep);
  padding: 7rem 4rem 5rem;
}

.contact-page-hero .section-title { color: #fff; }
.contact-page-hero .section-body { color: var(--fog); }

.contact-page-form {
  background: var(--warm-white);
  padding: 6rem 4rem;
}

.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}

.contact-page-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--deep);
  margin-bottom: 1rem;
}

.contact-page-info p {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-mid); font-weight: 300;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--deep); padding: 1.2rem 1.5rem;
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
}

.contact-card-icon {
  font-size: 1.2rem; color: var(--gold); min-width: 28px;
}

.contact-card-text {
  font-size: 0.88rem; color: #d8e4eb; font-weight: 300;
}
.contact-card-text strong {
  display: block; color: #fff;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.2rem;
  font-weight: 600;
}

.social-links {
  display: flex; gap: 0.8rem; margin-top: 1.5rem;
}
.social-link {
  width: 40px; height: 40px;
  background: var(--navy); color: var(--fog);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--deep); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .hero-content { padding: 0 1.5rem; padding-top: 80px; }
  .hero-stats { display: none; }
  .about-grid,
  .contact-grid,
  .why-grid,
  .about-page-hero .section-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .about-page-photo { width: 100% !important; height: 380px !important; }
  .bio-grid,
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .value-strip-inner { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(200,212,219,0.1); }
  .services-grid { grid-template-columns: 1fr; }
  .service-full-item { grid-template-columns: 1fr; gap: 1rem; }
  .service-full-num { font-size: 4rem; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  footer { padding: 3rem 1.5rem; }
  .about-page-hero,
  .services-page-hero,
  .contact-page-hero { padding: 6rem 1.5rem 3rem; }
  .services-full,
  .contact-page-form,
  .about-page-bio { padding: 3rem 1.5rem; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  #value-strip { padding: 2rem 1.5rem; }
  #basins { padding: 4rem 1.5rem !important; }
  #basins .section-inner > div { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  #basins .reveal:last-child > div { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Mobile nav open */
nav.nav-open .nav-links {
  display: flex; flex-direction: column;
  position: fixed; top: 60px; left: 0; right: 0;
  background: var(--deep); padding: 2rem;
  gap: 1.5rem; align-items: flex-start;
  border-bottom: 1px solid rgba(200,212,219,0.1);
}

.dropdown-menu {
  position: static;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: all;
  min-width: unset;
  background: transparent;
  border: none;
  padding-left: 1rem;
  display: none;
}
nav.nav-open .dropdown-menu { display: block; }
