:root {
  --navy-900: #051D38;
  --navy-800: #08284A;
  --navy-700: #0B2E54;
  --teal-600: #00A1B4;
  --teal-400: #4DC3D1;
  --teal-200: #A8E3EA;
  --teal-100: #E3F6F8;
  --teal-50:  #F4FBFC;
  --cyan-accent: #22BFDA;
  --ink:       #111111;
  --ink-mid:   #3A3A3A;
  --ink-muted: #6B6B6B;
  --ink-faint: #A8A8A8;
  --white:     #FFFFFF;
  --off-white: #F8F7F4;
  --border:    rgba(0,0,0,0.08);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Sora', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-logo-text { font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li { position: relative; display: flex; align-items: center; height: 68px; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--cyan-accent); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.nav-cta {
  background: var(--navy-700); color: var(--white) !important;
  padding: 8px 20px; border-radius: 6px;
  font-weight: 500 !important; font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy-800) !important; color: var(--white) !important; }

/* ── MEGA MENU ── */
.mega-menu {
  display: none;
  position: absolute; top: 68px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 24px 28px;
  gap: 0;
  min-width: 400px;
  flex-direction: row;
  z-index: 200;
}
.has-mega:hover .mega-menu { display: flex; }
.mega-col { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mega-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--teal-100);
}
.mega-col a {
  font-size: 13px; color: var(--ink-mid) !important; padding: 6px 0;
  display: block; border-radius: 4px;
  transition: color 0.15s, padding-left 0.15s !important;
}
.mega-col a:hover { color: var(--navy-700) !important; padding-left: 4px !important; }
.mega-divider { width: 1px; background: var(--border); margin: 0 24px; flex-shrink: 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 5vw 80px 5vw;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--teal-600);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-h1 em { font-style: italic; color: var(--navy-700); }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink-muted);
  margin-bottom: 32px;
  font-style: italic;
}
.hero-body {
  font-size: 15px; line-height: 1.8; color: var(--ink-muted);
  max-width: 480px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy-700); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 14px 28px; border-radius: 8px; border: 1px solid var(--border);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--teal-600); color: var(--navy-700); transform: translateY(-1px); }

.hero-right {
  position: relative; overflow: hidden;
  background: var(--navy-900);
}
.hero-right img.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(11,46,84,0.15) 0%, rgba(11,46,84,0.75) 65%, rgba(11,46,84,0.92) 100%);
}
.hero-caption {
  position: absolute; top: 40px; right: 48px; z-index: 2;
  text-align: right; color: rgba(255,255,255,0.9);
  font-size: 12.5px; letter-spacing: 0.5px; max-width: 260px; line-height: 1.5;
}
.hero-stats {
  position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  border-radius: 10px; padding: 16px; border: 1px solid rgba(255,255,255,0.18);
}
.stat-num {
  font-family: var(--serif); font-size: 30px; color: var(--white);
  line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 10.5px; color: rgba(255,255,255,0.75); line-height: 1.4; }

/* ── SECTION BASE ── */
section { padding: 80px 5vw; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content:''; display:block; width:20px; height:2px; background:var(--teal-600); }
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15; color: var(--ink);
  margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--navy-700); }
.section-lead {
  font-size: 16px; line-height: 1.8; color: var(--ink-muted);
  max-width: 580px;
}

/* ── PURPOSE ── */
.purpose { background: var(--off-white); }
.purpose-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.purpose-cards { display: flex; flex-direction: column; gap: 16px; }
.purpose-card {
  background: var(--white); border-radius: 12px;
  padding: 28px; border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.purpose-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.purpose-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-100); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.purpose-icon svg { width: 22px; height: 22px; stroke: var(--navy-700); }
.purpose-card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.purpose-card-body { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 56px; }
.service-item {
  background: var(--white); padding: 36px 32px;
  transition: background 0.2s;
  cursor: default;
}
.service-item:hover { background: var(--teal-50); }
.service-num { font-family: var(--serif); font-size: 40px; color: var(--teal-200); line-height: 1; margin-bottom: 16px; }
.service-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.service-body { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag { font-size: 11px; color: var(--navy-700); background: var(--teal-100); padding: 3px 10px; border-radius: 20px; font-weight: 500; }

/* ── APPROACH ── */
.approach { background: var(--navy-900); color: var(--white); }
.approach .section-eyebrow { color: var(--teal-400); }
.approach .section-eyebrow::before { background: var(--teal-400); }
.approach .section-h2 { color: var(--white); }
.approach .section-lead { color: rgba(255,255,255,0.6); }
.approach-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
.approach-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-600), var(--teal-600), var(--teal-600), transparent);
}
.approach-step { padding: 0 24px; text-align: center; position: relative; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px;
  margin: 0 auto 24px; position: relative; z-index: 2;
  border: 3px solid var(--navy-900);
  box-shadow: 0 0 0 1px var(--teal-600);
}
.step-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-body { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }

/* ── VISION MISSION ── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.vm-card {
  border-radius: 16px; padding: 48px 40px; position: relative; overflow: hidden;
}
.vm-card.vision { background: var(--navy-700); color: var(--white); }
.vm-card.mission { background: var(--off-white); border: 1px solid var(--border); }
.vm-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 20px; opacity: 0.7;
}
.vm-card.vision .vm-label { color: var(--teal-200); }
.vm-card.mission .vm-label { color: var(--teal-600); }
.vm-text {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
}
.vm-card.vision .vm-text { color: var(--white); }
.vm-card.mission .vm-text { color: var(--ink); }
.vm-body { font-size: 14px; line-height: 1.8; margin-top: 20px; }
.vm-card.vision .vm-body { color: rgba(255,255,255,0.7); }
.vm-card.mission .vm-body { color: var(--ink-muted); }
.vm-deco {
  position: absolute; bottom: -30px; right: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

/* ── VALUES ── */
.values { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.value-card {
  background: var(--white); border-radius: 12px;
  padding: 32px 28px; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.value-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-600); margin-bottom: 20px; }
.value-title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.value-body { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }

/* ── CULTURE ── */
.culture-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.culture-list { display: flex; flex-direction: column; gap: 0; }
.culture-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.culture-item:first-child { padding-top: 0; }
.culture-item:last-child { border-bottom: none; }
.culture-num {
  font-family: var(--serif); font-size: 32px; color: var(--teal-200);
  line-height: 1; flex-shrink: 0; width: 40px;
}
.culture-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.culture-body { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }

/* ── CLIENTS ── */
.clients { background: var(--off-white); text-align: center; }

/* LIFE AT YBIANCE GALLERY */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: 14px; margin-top: 56px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; background: var(--off-white); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px 12px; font-size: 12.5px; color: var(--white); background: linear-gradient(0deg, rgba(11,46,84,0.85) 0%, rgba(11,46,84,0) 100%); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-caption { opacity: 1; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}
.clients-logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; }
.client-pill {
  background: var(--white); border: 1px solid var(--border); border-radius: 40px;
  padding: 10px 22px; font-size: 13px; font-weight: 500; color: var(--ink-mid);
  transition: border-color 0.2s, color 0.2s;
}
.client-pill:hover { border-color: var(--cyan-accent); color: var(--navy-700); }

/* ── CTA ── */
.cta-section {
  background: var(--navy-700);
  text-align: center; padding: 120px 5vw;
  position: relative; overflow: hidden;
}
.cta-bg-circle-1 { position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-bg-circle-2 { position: absolute; bottom: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-200); margin-bottom: 20px; }
.cta-h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 54px); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.cta-body { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 40px; line-height: 1.8; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--navy-700);
  padding: 14px 32px; border-radius: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--teal-100); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.4);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: border-color 0.2s, transform 0.15s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 64px 5vw 40px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-name { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-family: var(--serif); font-size: 15px; color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 20px; line-height: 1.5; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy { font-size: 13px; }
.footer-location { font-size: 13px; display: flex; align-items: center; gap: 6px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--navy-700); }
.contact-detail-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-600); margin-bottom: 4px; }
.contact-detail-value { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.contact-form { background: var(--white); border-radius: 16px; padding: 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--ink-mid); letter-spacing: 0.3px; }
.form-input, .form-select, .form-textarea {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
  outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal-600); background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit { width: 100%; padding: 14px; border-radius: 8px; background: var(--navy-700); color: var(--white); font-family: var(--sans); font-size: 15px; font-weight: 500; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 8px; }
.form-submit:hover { background: var(--navy-800); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success-title { font-family: var(--serif); font-size: 24px; color: var(--navy-700); margin-bottom: 8px; }
.form-success-body { font-size: 14px; color: var(--ink-muted); }

/* ── MOBILE MENU ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s ease; }
.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; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 32px 6vw; overflow-y: auto; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu-section { margin-bottom: 28px; }
.mobile-menu-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal-600); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--teal-100); }
.mobile-menu a { display: block; font-size: 16px; color: var(--ink-mid); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--border); transition: color 0.2s, padding-left 0.2s; }
.mobile-menu a:hover { color: var(--navy-700); padding-left: 6px; }
.mobile-menu-cta { display: block; text-align: center; background: var(--navy-700); color: var(--white) !important; padding: 16px 28px; border-radius: 10px; font-size: 15px; font-weight: 500; text-decoration: none; margin-top: 24px; border-bottom: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .purpose-inner, .culture-inner, .vm-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .approach-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .approach-steps::before { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 64px 6vw; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

/* Meter teaser (index page) */
.meter-teaser { background: var(--navy-700); position: relative; overflow: hidden; }
.meter-teaser-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; position: relative; }
@media (max-width: 900px) { .meter-teaser-grid { grid-template-columns: 1fr; } }
