/* ===== Drillan EOOD — Landing Style ===== */
:root {
  --teal-900: #0c3d3d;
  --teal-800: #0c5e5e;
  --teal-600: #14a085;
  --teal-400: #3ac1a8;
  --teal-100: #d6ece5;
  --terracotta: #c87654;
  --terracotta-dark: #a85635;
  --amber: #e8a652;
  --cream: #faf7f2;
  --sand: #ede4d3;
  --sand-light: #f5efe4;
  --dark: #1f1a14;
  --text: #3a342c;
  --muted: #8a8179;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(31, 26, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(31, 26, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 26, 20, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 26, 20, 0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--teal-800);
  transition: color 0.25s, transform 0.25s;
}
.brand:hover {
  color: var(--terracotta);
  transform: translateY(-1px);
}
.brand-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  display: block;
  overflow: visible;
}
/* Footer: white logo on dark teal bg */
.brand-footer {
  color: var(--white);
}
.brand-footer:hover {
  color: var(--amber);
}
.brand-footer .brand-logo {
  height: 60px;
  max-width: 260px;
}
.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-weight: 500;
  color: var(--text);
  font-size: 15px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-800); }
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--teal-800);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}
.nav-phone svg { width: 16px; height: 16px; }
.nav-phone:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 118, 84, 0.3);
}
.nav-toggle {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- HERO — Living Water ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, #0e6a6a 0%, #0a5050 50%, #073838 100%);
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Slow ambient pulse */
.hero-deep {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 75%, rgba(58, 193, 168, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(20, 160, 133, 0.22) 0%, transparent 50%);
  animation: hero-deep-pulse 14s ease-in-out infinite;
}
@keyframes hero-deep-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.06); }
}
/* Drifting surface light */
.hero-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 45% 85%, rgba(255, 255, 255, 0.06) 0%, transparent 25%);
  mix-blend-mode: screen;
  animation: hero-light-drift 22s ease-in-out infinite;
}
@keyframes hero-light-drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -25px); }
  66% { transform: translate(-30px, 30px); }
}
/* Caustics — sun rays through water */
.hero-caustics {
  position: absolute; inset: 0;
  background:
    repeating-radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 9px),
    repeating-radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 14px);
  animation: hero-caustics-shift 24s linear infinite;
  opacity: 0.5;
}
@keyframes hero-caustics-shift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 120px 60px, -100px -80px; }
}
/* Wave layers — flowing endlessly */
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%;
  overflow: hidden;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0;
  width: 200%; height: 100%;
}
.hero-wave-1 {
  height: 70%;
  animation: hero-wave-slide 14s linear infinite;
}
.hero-wave-1 path { fill: rgba(255, 255, 255, 0.05); }
.hero-wave-2 {
  height: 85%;
  animation: hero-wave-slide 22s linear infinite reverse;
}
.hero-wave-2 path { fill: rgba(20, 160, 133, 0.18); }
.hero-wave-3 {
  height: 100%;
  animation: hero-wave-slide 32s linear infinite;
}
.hero-wave-3 path { fill: rgba(7, 56, 56, 0.6); }
@keyframes hero-wave-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Rising bubbles */
.hero-bubbles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -40px;
  left: var(--left);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  opacity: 0;
  animation: bubble-rise var(--dur) ease-in infinite;
  animation-delay: var(--delay);
  box-shadow: inset -2px -2px 4px rgba(255,255,255,0.15);
}
@keyframes bubble-rise {
  0% { transform: translate(0, 0); opacity: 0; }
  8% { opacity: 0.7; }
  50% { transform: translate(18px, -45vh); }
  92% { opacity: 0.5; }
  100% { transform: translate(-12px, -110vh); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deep, .hero-light, .hero-caustics, .hero-wave, .bubble {
    animation: none !important;
  }
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: calc(100vh - 260px);
}
.hero-content { max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-badge svg {
  width: 10px; height: 10px;
  color: var(--teal-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(7, 56, 56, 0.4);
}
.hero-title span { display: block; }
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex; gap: 48px; flex-wrap: wrap;
}
.hero-trust > div {
  display: flex; flex-direction: column;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  opacity: 0.7;
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  margin: 6px auto;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(200, 118, 84, 0.3);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 118, 84, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--teal-800);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal-800);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ---------- CALL BANNER ---------- */
.call-banner {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
  color: var(--white);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.call-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(58, 193, 168, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(200, 118, 84, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.call-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.call-text {
  display: flex; align-items: center; gap: 20px;
}
.call-icon {
  width: 48px; height: 48px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}
.call-label {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.call-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}

/* ---------- SECTIONS ---------- */
section { scroll-margin-top: 80px; }
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  position: relative;
  padding-left: 30px;
}
.section-kicker::before {
  content: ''; position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1px;
  background: var(--terracotta);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-800) 100%);
  box-shadow: var(--shadow-lg);
}
.about-img-wrap picture,
.about-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover .about-img-wrap img {
  transform: scale(1.04);
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.about-img-placeholder svg { width: 60%; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--terracotta);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge span {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.95;
}
@media (max-width: 1024px) {
  .about-image .about-badge {
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -24px !important;
  }
}
.about-text .section-kicker { padding-left: 30px; }
.about-text .section-title { text-align: left; }
.lead {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 500;
}
.about-text p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  margin-top: 32px;
  display: grid; gap: 14px;
}
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  color: var(--dark);
}
.about-list svg {
  width: 20px; height: 20px;
  color: var(--teal-600);
  flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0;
  background: var(--sand-light);
  position: relative;
}
.services::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 94, 94, 0.1), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--terracotta);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.9);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-100);
  color: var(--teal-800);
  border-radius: 14px;
  margin-bottom: 22px;
  transition: all 0.4s;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon {
  background: var(--teal-800);
  color: var(--white);
  transform: rotate(-5deg);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- PROCESS ---------- */
.process {
  padding: 120px 0;
  background: var(--cream);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-timeline-4 {
  grid-template-columns: repeat(4, 1fr);
}
.process-timeline::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  padding-top: 20px;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--terracotta);
  color: var(--white);
  transform: scale(1.1);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
  background: var(--sand-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info {
  display: flex;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.info-card .btn-block {
  margin-top: auto;
}
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31, 26, 20, 0.06);
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-item:first-child { padding-top: 0; }
.info-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-100);
  color: var(--teal-800);
  border-radius: 12px;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 600;
}
.info-value {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
}
a.info-value { color: var(--teal-800); transition: color 0.2s; }
a.info-value:hover { color: var(--terracotta); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: saturate(0.85) contrast(1.05);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(31, 26, 20, 0.04);
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(31, 26, 20, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: var(--sand-light);
  transition: all 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 160, 133, 0.08);
}
.form-field textarea { resize: vertical; }
.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: 0.4;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand {
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 380px;
  opacity: 0.75;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-col strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 4px;
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--terracotta); }
.footer-bottom a:hover { color: var(--amber); }

/* 3-card variant — keep 3 across on tablet, stack on mobile */
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .services-grid-3 { grid-template-columns: 1fr; }
}


/* Map occupies full right column */
.map-wrap.map-large {
  aspect-ratio: auto;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap.map-large iframe {
  width: 100%; height: 100%;
  border: none;
  filter: saturate(0.85) contrast(1.05);
}
@media (max-width: 768px) {
  .map-wrap.map-large { min-height: 320px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
  .process-timeline::before { display: none; }
  .about-grid { gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 10px; }
  .nav-inner { height: 72px; }
  .brand-logo { height: 44px; max-width: 140px; }
  .brand { padding: 2px 6px; }
  .brand-footer { padding: 12px 16px; }
  .brand-footer .brand-logo { height: 56px; max-width: 180px; }
  .nav-toggle { display: flex; }

  /* Mobile menu — slide-down panel */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-top: 1px solid rgba(31, 26, 20, 0.08);
    box-shadow: 0 20px 40px rgba(31, 26, 20, 0.12);
    padding: 12px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-links.is-open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid rgba(31, 26, 20, 0.05);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(20, 160, 133, 0.06); }

  /* Hamburger animation */
  .nav-toggle span { transition: transform 0.3s ease, opacity 0.2s ease; transform-origin: center; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding: 120px 0 80px; }
  .hero-trust { gap: 28px; }
  .hero-trust strong { font-size: 1.8rem; }
  .hero-cta .btn { flex: 1; min-width: 160px; }
  .call-inner { flex-direction: column; text-align: center; }
  .call-text { flex-direction: column; gap: 12px; }
  .call-number { font-size: 1.5rem; }
  .about, .services, .process, .contact { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about-img-wrap {
    width: 100%;
    max-width: 420px;
  }

  .about-badge strong { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .section-head { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-trust { gap: 20px; width: 100%; }
  .hero-trust > div { flex: 1; min-width: 0; }
  .hero-trust strong { font-size: 1.5rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
}
