/* =====================================================
   D&N SERVICES — Plumbing + Cleaning
   styles.css
   ===================================================== */

/* =====================================================
   THEME TOKENS
   ===================================================== */
:root {
  /* Cleaning palette — bright sky / fresh */
  --c-deep: #0a3a8c;
  --c-primary: #1565d8;
  --c-bright: #2da5ff;
  --c-mist: #eaf4ff;
  --c-tint: #f4faff;

  /* Plumbing palette — deep ocean / industrial */
  --p-deep: #062451;
  --p-primary: #0a4a9e;
  --p-bright: #1d80c7;
  --p-mist: #e0ecf8;
  --p-tint: #f1f6fb;

  --deep: var(--c-deep);
  --primary: var(--c-primary);
  --bright: var(--c-bright);
  --mist: var(--c-mist);
  --tint: var(--c-tint);

  --paper: #fbfdff;
  --ink: #0c1b35;
  --ink-soft: #4a5d7e;
  --white: #ffffff;
  --accent: #ffd166;

  --shadow-sm: 0 4px 12px rgba(21, 101, 216, 0.08);
  --shadow-md: 0 12px 36px rgba(21, 101, 216, 0.14);
  --shadow-lg: 0 28px 64px rgba(10, 58, 140, 0.22);
}

body.mode-plumbing {
  --deep: var(--p-deep);
  --primary: var(--p-primary);
  --bright: var(--p-bright);
  --mist: var(--p-mist);
  --tint: var(--p-tint);
}

/* =====================================================
   BASE
   ===================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  transition: background 0.6s ease;
}
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* =====================================================
   MODE TRANSITION
   ===================================================== */
.veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: linear-gradient(120deg, transparent 0%, var(--primary) 40%, var(--deep) 60%, transparent 100%);
  transform: translateX(-110%);
  opacity: 0;
}
.veil.sweep { animation: veilSweep 900ms cubic-bezier(0.83, 0, 0.17, 1); }
@keyframes veilSweep {
  0% { transform: translateX(-110%); opacity: 0; }
  25% { opacity: 1; }
  50% { transform: translateX(0%); opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateX(110%); opacity: 0; }
}

.mode-content { transition: opacity 0.35s ease, transform 0.35s ease; }
body.swapping .mode-content { opacity: 0; transform: translateY(8px); }

.only-cleaning { display: block; }
.only-plumbing { display: none; }
body.mode-plumbing .only-cleaning { display: none; }
body.mode-plumbing .only-plumbing { display: block; }

.inline-cleaning { display: inline; }
.inline-plumbing { display: none; }
body.mode-plumbing .inline-cleaning { display: none; }
body.mode-plumbing .inline-plumbing { display: inline; }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateX(40px) translateY(20px);
}
.reveal-right.in-view {
  transform: translateX(0) translateY(0);
}
/* Staggered children */
.services-grid .service-card.reveal,
.gallery-grid .gallery-item.reveal,
.pricing-grid .price-card.reveal,
.testimonials-grid .testimonial.reveal {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.78);
  border-bottom: 1px solid rgba(21, 101, 216, 0.08);
  transition: background 0.5s;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* === New D&N Logo === */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--bright));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 18px rgba(21, 101, 216, 0.32);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.brand:hover .brand-mark::before { transform: translateX(100%); }

.brand-mark-letters {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.brand-mark-letters .amp {
  font-style: italic;
  font-weight: 400;
  opacity: 0.85;
  margin: 0 1px;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--deep);
  letter-spacing: -0.01em;
  transition: color 0.5s;
}
.brand-text .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  margin: 0 2px;
  transition: color 0.5s;
}

/* === Mode toggle === */
.mode-toggle {
  display: inline-flex;
  background: var(--mist);
  padding: 5px;
  border-radius: 999px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(10, 58, 140, 0.06);
  transition: background 0.5s;
}
.mode-toggle button {
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.mode-toggle button.active { color: white; }
.mode-pill {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--ink);
  border-radius: 999px;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
  box-shadow: 0 6px 16px rgba(12, 27, 53, 0.25);
}

.nav-cta {
  background: var(--ink);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding: 130px 32px 80px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Floating bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(45, 165, 255, 0.18), rgba(21, 101, 216, 0.04));
  border: 1px solid rgba(45, 165, 255, 0.15);
  animation: float 12s ease-in-out infinite;
  transition: background 0.6s, border-color 0.6s;
}
body.mode-plumbing .bubble {
  background: radial-gradient(circle at 30% 30%, rgba(29, 128, 199, 0.18), rgba(10, 74, 158, 0.05));
  border-color: rgba(29, 128, 199, 0.15);
}
.bubble-1 { width: 80px; height: 80px; top: 10%; left: 5%; animation-duration: 14s; }
.bubble-2 { width: 50px; height: 50px; top: 60%; left: 8%; animation-duration: 10s; animation-delay: -3s; }
.bubble-3 { width: 120px; height: 120px; top: 20%; right: 8%; animation-duration: 16s; animation-delay: -2s; }
.bubble-4 { width: 36px; height: 36px; top: 80%; left: 45%; animation-duration: 9s; animation-delay: -5s; }
.bubble-5 { width: 64px; height: 64px; bottom: 15%; right: 20%; animation-duration: 13s; animation-delay: -7s; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-30px) translateX(15px); }
  66% { transform: translateY(20px) translateX(-15px); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--mist);
  border-radius: 999px;
  transition: all 0.5s;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  transition: background 0.5s;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.98;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
  transition: color 0.5s;
}
.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: white;
  color: var(--ink);
  border: 1.5px solid rgba(12, 27, 53, 0.12);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }

/* =====================================================
   HERO LAYOUT + PHOTO CARD
   ===================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-top: 20px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}

/* Photo styling */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.92) saturate(1.05);
}
.hero-visual:hover .hero-photo {
  transform: scale(1.04);
}
/* Tinted overlay matching mode */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 58, 140, 0.15) 0%, transparent 30%, rgba(10, 58, 140, 0.55) 100%);
  transition: background 0.6s;
  pointer-events: none;
}
body.mode-plumbing .hero-visual::before {
  background:
    linear-gradient(180deg, rgba(2, 19, 46, 0.2) 0%, transparent 25%, rgba(2, 19, 46, 0.7) 100%);
}

/* Glass tag (top left) */
.hero-card-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: white;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

/* Floating info badges */
.hero-badge {
  position: absolute;
  z-index: 4;
  background: white;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 58, 140, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  animation: badgeFloat 5s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-badge-top {
  top: 80px;
  right: -16px;
  font-size: 12.5px;
}
.hero-badge-bottom {
  bottom: 24px;
  left: -20px;
  animation-delay: -2.5s;
  max-width: 220px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: greenPulse 2s infinite;
}
@keyframes greenPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.5s;
}
.hero-badge-title { font-size: 13px; line-height: 1.2; }
.hero-badge-sub {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* =====================================================
   HERO STATS
   ===================================================== */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(12, 27, 53, 0.08);
  flex-wrap: wrap;
}
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: -0.02em;
  transition: color 0.5s;
}
.stat .lbl {
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trustbar {
  background: var(--mist);
  padding: 28px 0;
  transition: background 0.6s;
  border-top: 1px solid rgba(21, 101, 216, 0.06);
  border-bottom: 1px solid rgba(21, 101, 216, 0.06);
}
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: white;
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: color 0.5s;
}
.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.trust-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* =====================================================
   SECTION BASICS
   ===================================================== */
.section { padding: 100px 32px; max-width: 1240px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 16px;
  transition: color 0.5s;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 20px;
  max-width: 800px;
}
.section-title em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
  transition: color 0.5s;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 60px;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services-section {
  background: linear-gradient(180deg, var(--paper), var(--mist));
  margin: 0;
  max-width: none;
  padding: 100px 0;
  transition: background 0.6s;
}
.services-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(21, 101, 216, 0.08);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--mist);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--ink);
  color: var(--accent);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--paper);
  transition: background 0.6s;
}
.gallery-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--mist);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
  filter: brightness(0.95);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 27, 53, 0.85) 100%);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transform: translateY(8px);
  opacity: 0.9;
  transition: all 0.4s;
}
.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* =====================================================
   PRICING
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.price-card {
  background: white;
  border-radius: 28px;
  padding: 40px 32px;
  border: 1px solid rgba(21, 101, 216, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.price-card.featured {
  background: linear-gradient(165deg, var(--ink) 0%, var(--deep) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transition: background 0.6s;
}
.price-card.featured::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(45, 165, 255, 0.4), transparent 70%);
  border-radius: 50%;
}
.price-card:hover { transform: translateY(-4px); }
.price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--mist);
  color: var(--primary);
  border-radius: 999px;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.price-card.featured .price-tag {
  background: rgba(255, 209, 102, 0.2);
  color: var(--accent);
}
.price-card h4 { font-size: 26px; margin-bottom: 8px; }
.price-card .desc { font-size: 14px; opacity: 0.7; margin-bottom: 28px; }
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.price .currency { font-family: 'Fraunces', serif; font-size: 22px; opacity: 0.7; }
.price .amount {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price .unit { font-size: 14px; opacity: 0.65; margin-left: 4px; }
.price-features {
  list-style: none;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.price-features li {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14.5px;
}
.price-features svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
  transition: color 0.5s;
}
.price-card.featured .price-features svg { color: var(--accent); }
.price-card .btn { width: 100%; justify-content: center; }
.price-card.featured .btn-primary { background: var(--accent); color: var(--ink); }

/* =====================================================
   ABOUT / DUO
   ===================================================== */
.duo-section {
  background: var(--ink);
  color: white;
  padding: 120px 0;
  margin: 0;
  max-width: none;
  position: relative;
  overflow: hidden;
}
.duo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(21, 101, 216, 0.4), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(45, 165, 255, 0.3), transparent 45%);
  transition: background 0.6s;
}
body.mode-plumbing .duo-section::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(10, 74, 158, 0.5), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(29, 128, 199, 0.3), transparent 45%);
}
.duo-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.duo-section .section-eyebrow { color: var(--accent); }
.duo-section .section-title { color: white; }
.duo-section .section-title em { color: var(--bright); }

.duo-card {
  padding: 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  margin-top: 32px;
  max-width: 720px;
}
.duo-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.duo-card .role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 8px;
}
.duo-card h3 { font-size: 36px; margin-bottom: 20px; color: white; }
.duo-card h3 em { font-style: italic; color: var(--bright); font-weight: 400; transition: color 0.5s; }
.duo-card p { font-size: 16px; opacity: 0.78; line-height: 1.7; }
.duo-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.5;
}
.duo-divider::before, .duo-divider::after {
  content: ""; flex: 1; height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.partner-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--bright);
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
}
.partner-link:hover { color: white; }
.partner-link svg { transition: transform 0.3s; }
.partner-link:hover svg { transform: translateX(4px); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(21, 101, 216, 0.08);
  position: relative;
  transition: all 0.3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--mist);
  margin-bottom: 12px;
  transition: color 0.5s;
}
.testimonial p { font-size: 16px; color: var(--ink); line-height: 1.65; margin-bottom: 24px; }
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 27, 53, 0.06);
}
.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--bright));
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  transition: background 0.5s;
}
.testimonial .author-info .name { font-weight: 600; font-size: 15px; }
.testimonial .author-info .where { font-size: 13px; color: var(--ink-soft); }
.stars { color: var(--accent); margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }

/* =====================================================
   CONTACT / BOOKING
   ===================================================== */
.contact-section {
  background: linear-gradient(165deg, var(--mist), var(--paper));
  padding: 120px 0;
  margin: 0;
  max-width: none;
  transition: background 0.6s;
}
.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 20px; line-height: 1; }
.contact-info h2 em { font-style: italic; color: var(--primary); font-weight: 400; transition: color 0.5s; }
.contact-info p { font-size: 17px; color: var(--ink-soft); margin-bottom: 36px; }

.contact-list { list-style: none; margin-bottom: 36px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(12, 27, 53, 0.08);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: color 0.5s;
}
.contact-list .lbl {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.contact-list .val { font-size: 16px; font-weight: 600; color: var(--ink); }

.booking-form {
  background: white;
  padding: 44px;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(21, 101, 216, 0.08);
}
.booking-form h3 { font-size: 26px; margin-bottom: 8px; }
.booking-form .form-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 28px; }
.form-mode-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--mist);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: var(--deep);
  font-weight: 600;
  transition: all 0.5s;
}
.form-mode-banner svg { color: var(--primary); flex-shrink: 0; transition: color 0.5s; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(12, 27, 53, 0.1);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: all 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(21, 101, 216, 0.1);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Manrope', sans-serif;
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--ink);
  color: white;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 16px;
}
.footer-brand em { font-style: italic; color: var(--bright); font-weight: 400; transition: color 0.5s; }
.footer-brand .amp { font-style: italic; font-weight: 400; color: var(--bright); margin: 0 2px; transition: color 0.5s; }
.footer-tag { font-size: 14.5px; opacity: 0.7; line-height: 1.7; max-width: 360px; }
footer h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.6;
  margin-bottom: 18px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer ul li {
  padding: 6px 0;
  font-size: 14.5px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
footer ul li:hover { opacity: 1; }
.copy {
  max-width: 1240px;
  margin: 32px auto 0;
  font-size: 13px;
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 900px) {
  .nav-inner { padding: 12px 16px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .brand-text { display: none; }
  .mode-toggle button { padding: 8px 14px; font-size: 12.5px; }
  .nav-cta { padding: 9px 14px; font-size: 12.5px; }

  .hero { padding: 130px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat .num { font-size: 30px; }

  .hero-badge-top { right: 8px; top: 60px; }
  .hero-badge-bottom { left: 8px; bottom: 16px; max-width: 200px; }

  .section { padding: 70px 20px; }
  .services-section, .duo-section, .contact-section, .gallery-section { padding: 70px 0; }
  .services-inner, .duo-inner, .contact-inner, .gallery-inner { padding: 0 20px; }
  .duo-card { padding: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .booking-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Gallery — collapse to 2-col on mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-large { grid-column: span 2; grid-row: span 2; }

  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal, .bubble, .hero-badge, .hero-badge-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}