/* Lagoon Modern — Easy Move */
:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-2: #F1F6F8;
  --lagoon: #0DAEC4;
  --lagoon-dark: #0A8DA1;
  --lagoon-soft: #E5F6F8;
  --navy: #0A1E3F;
  --ink: #1A2332;
  --muted: #5A6577;
  --line: #E2E8EC;
  --shadow: 0 1px 3px rgba(10, 30, 63, 0.06), 0 8px 24px rgba(10, 30, 63, 0.06);
  --shadow-lg: 0 4px 8px rgba(10, 30, 63, 0.08), 0 24px 48px rgba(10, 30, 63, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 600; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 0.5rem; }

.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--lagoon-dark); margin-bottom: 1rem; display: inline-block;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Accessible focus styles (visible only on keyboard navigation) */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--lagoon-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-cta:focus-visible {
  outline-offset: 4px;
}

/* Respect users' motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section--surface { background: var(--surface); }
.section--lagoon-soft { background: var(--lagoon-soft); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 1.05rem; color: var(--navy); letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--lagoon) 0%, var(--lagoon-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.nav-links { display: flex; gap: 2rem; list-style: none; font-size: 0.92rem; }
.nav-links a { color: var(--muted); font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  padding: 0.6rem 1.2rem;
  background: var(--navy); color: white !important;
  border-radius: 8px; font-size: 0.88rem; font-weight: 500;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--lagoon-dark); }

/* Burger toggle (mobile) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
  padding: 0; margin-left: 0.5rem;
  position: relative;
  z-index: 101;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.site-header.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down nav — hidden on desktop entirely */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh; height: 100dvh;
  background: var(--surface);
  padding: 5.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.25s ease, visibility 0s linear 0.35s;
  z-index: 99;
  overflow-y: auto;
}
.site-header.menu-open .mobile-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s ease, opacity 0.25s ease, visibility 0s linear 0s;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav li:first-child { border-top: 1px solid var(--line); }
.mobile-nav li a {
  display: block; padding: 1.1rem 0;
  font-size: 1.2rem; font-weight: 500; color: var(--navy);
}
.mobile-nav-actions {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: auto; padding-top: 1.5rem;
}
.mobile-nav-actions .btn { width: 100%; justify-content: center; padding: 1rem 1.25rem; }
.mobile-nav-legal {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--muted); line-height: 1.5;
}
.mobile-nav-legal strong { color: var(--navy); display: block; margin-bottom: 0.25rem; font-size: 0.78rem; letter-spacing: 0.04em; }

/* Hero */
.hero { padding: 9rem 0 5rem; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 .accent { color: var(--lagoon-dark); }
.hero-text .lede {
  font-size: 1.15rem; color: var(--muted); margin-bottom: 2.25rem; line-height: 1.65; max-width: 52ch;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem; font-weight: 500;
  border-radius: 10px; cursor: pointer;
  transition: all 0.18s; border: 1px solid transparent;
  font-family: inherit;
}
.btn--primary { background: var(--navy); color: white; }
.btn--primary:hover { background: var(--lagoon-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--lagoon { background: var(--lagoon); color: white; }
.btn--lagoon:hover { background: var(--lagoon-dark); }

.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.stat { }
.stat-num { font-size: 1.8rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow-lg);
}
.hero-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: white; padding: 1.25rem 1.5rem; border-radius: 12px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1rem;
  max-width: 280px;
}
.hero-card-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--lagoon-soft); color: var(--lagoon-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.hero-card-text { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }
.hero-card-text strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.15rem; }

/* Trust bar */
.trustbar {
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trustbar-inner {
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: space-between;
}
.trustbar-label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.trustbar-items { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.trustbar-item { font-weight: 600; color: var(--navy); font-size: 0.95rem; opacity: 0.85; }

/* Section header */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 0.75rem; }

/* What we do */
.intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.intro-grid img { aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; }
.intro-bullets { list-style: none; margin-top: 1.5rem; }
.intro-bullets li {
  padding: 0.65rem 0 0.65rem 1.75rem; position: relative; color: var(--ink);
}
.intro-bullets li::before {
  content: ''; position: absolute; left: 0; top: 1.05rem; width: 0.65rem; height: 0.65rem;
  border-radius: 50%; background: var(--lagoon);
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services-grid--four { grid-template-columns: repeat(4, 1fr); }
.services-grid--four .service-card { padding: 2rem 1.75rem; }
.services-grid--four .service-card h3 { font-size: 1.15rem; }
.services-grid--four .service-card p { font-size: 0.92rem; }
.service-card {
  background: var(--surface); padding: 2.25rem;
  border: 1px solid var(--line); border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--lagoon-soft); color: var(--lagoon-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
}
.service-card p { color: var(--muted); margin-bottom: 1.25rem; }
.service-card ul { list-style: none; }
.service-card li {
  font-size: 0.9rem; padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--ink);
}
.service-card li::before {
  content: '✓'; position: absolute; left: 0; color: var(--lagoon-dark); font-weight: 700;
}

/* Trust */
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
}
.trust-cell {
  padding: 2.25rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-cell:nth-child(2n) { border-right: none; }
.trust-cell:nth-last-child(-n+2) { border-bottom: none; }
.trust-cell .num {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lagoon-dark); font-weight: 600; margin-bottom: 0.75rem;
}
.trust-cell p { color: var(--muted); font-size: 0.95rem; }

/* Provider clarification */
.clarify-table {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; margin-top: 2.5rem;
}
.clarify-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 0;
  border-bottom: 1px solid var(--line);
}
.clarify-row:last-child { border-bottom: none; }
.clarify-row > div:first-child {
  padding: 1.5rem; background: var(--surface-2);
  display: flex; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
}
.clarify-row.direct > div:first-child { color: var(--lagoon-dark); }
.clarify-row.coordinated > div:first-child { color: var(--navy); }
.clarify-row > div:last-child { padding: 1.5rem; }
.clarify-row strong { display: block; color: var(--navy); margin-bottom: 0.25rem; }
.clarify-row span { color: var(--muted); font-size: 0.92rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: 520px; }
.gallery-item { overflow: hidden; border-radius: 16px; background: var(--surface-2); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.04); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 2rem;
}
.testimonial blockquote {
  font-size: 1rem; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.6;
}
.testimonial-mark {
  font-size: 2rem; color: var(--lagoon-dark); line-height: 0.5; margin-bottom: 0.5rem; font-family: Georgia, serif;
}
.testimonial cite {
  font-style: normal; font-size: 0.85rem; color: var(--muted); display: block;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
.testimonial cite strong { color: var(--navy); display: block; font-weight: 600; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; }
.contact-info ul { list-style: none; margin-top: 2rem; }
.contact-info li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-info .label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; display: block; font-weight: 500; }
.contact-info .value { font-size: 1.05rem; color: var(--navy); font-weight: 500; }

.contact-form {
  background: var(--surface); padding: 2.5rem; border-radius: 16px; border: 1px solid var(--line);
}
form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
label { font-size: 0.85rem; color: var(--ink); font-weight: 500; display: block; margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--lagoon); box-shadow: 0 0 0 3px var(--lagoon-soft); }
textarea { resize: vertical; min-height: 110px; }
.checkbox-row { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.checkbox-row input { width: auto; margin-top: 0.25rem; }
.checkbox-row a { color: var(--lagoon-dark); text-decoration: underline; }
.form-status { font-size: 0.9rem; padding: 0.5rem 0; min-height: 1.5rem; }
.form-status.success { color: var(--lagoon-dark); }
.form-status.error { color: #C0392B; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4.5rem 0 2rem; font-size: 0.92rem; }
.footer .brand { color: white; font-size: 1.1rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer p { margin-top: 1rem; max-width: 30ch; }
.footer h4 { color: white; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.footer-legal-entity {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; gap: 0.35rem;
  font-size: 0.85rem; line-height: 1.5;
  max-width: 36ch;
}
.footer-legal-entity strong {
  color: white; font-weight: 600; letter-spacing: 0.05em;
  font-size: 0.82rem; text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.footer-legal-entity span { color: rgba(255, 255, 255, 0.65); }
.footer ul { list-style: none; }
.footer li { padding: 0.35rem 0; }
.footer a:hover { color: var(--lagoon); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.75rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem;
}

/* Legal pages */
.legal-page { padding-top: 7rem; padding-bottom: 5rem; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal-page .updated { font-size: 0.8rem; color: var(--lagoon-dark); margin-bottom: 2.5rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.legal-page h2 { font-size: 1.4rem; margin: 2.5rem 0 0.75rem; color: var(--navy); }
.legal-page h3 { font-size: 1.05rem; margin: 1.75rem 0 0.5rem; }
.legal-page p, .legal-page li { color: var(--ink); margin-bottom: 0.85rem; line-height: 1.7; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--lagoon-dark); text-decoration: underline; }
.legal-page .back-link { display: inline-block; margin-top: 2.5rem; padding: 0.7rem 1.4rem; background: var(--lagoon-soft); color: var(--lagoon-dark) !important; border-radius: 10px; font-weight: 500; text-decoration: none; font-size: 0.92rem; }

/* Services list cards (6 detailed) */
.services-list-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.service-detail-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-detail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-detail-card .srow-num {
  display: inline-block;
  font-family: 'Inter', monospace;
  color: var(--lagoon-dark); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.service-detail-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-detail-card p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.55; }
.service-detail-card ul { list-style: none; }
.service-detail-card li {
  font-size: 0.92rem; padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--ink);
}
.service-detail-card li::before {
  content: '✓'; position: absolute; left: 0; color: var(--lagoon-dark); font-weight: 700;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.about-text p { font-size: 1.05rem; color: var(--ink); line-height: 1.7; margin-bottom: 1.25rem; }
.about-pillars { list-style: none; margin: 1.5rem 0; padding: 0; }
.about-pillars li {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: baseline;
}
.about-pillars li:last-child { border-bottom: 1px solid var(--line); }
.about-pillars strong {
  font-weight: 600; color: var(--lagoon-dark); font-size: 1.05rem;
}
.about-pillars span { color: var(--muted); font-size: 0.98rem; line-height: 1.6; }
.about-mission {
  margin-top: 1.5rem !important;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--lagoon);
  background: var(--lagoon-soft);
  font-size: 1.05rem !important;
  border-radius: 0 8px 8px 0;
}
.about-mission strong { color: var(--navy); }

/* CTA banner */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--lagoon-soft) 0%, var(--surface-2) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 22ch; margin: 1rem auto 1.25rem;
  line-height: 1.15;
}
.cta-banner p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 50ch; margin: 0 auto 2.25rem;
  line-height: 1.6;
}
.cta-actions { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Responsive */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: flex; }
  .site-header.menu-open { background: var(--surface); }
  .hero-grid, .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .services-grid--four, .services-list-cards, .testimonials { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-pillars li { grid-template-columns: 1fr; gap: 0.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-cell { border-right: none !important; }
  .gallery { grid-template-columns: 1fr 1fr; height: auto; grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item:nth-child(1) { grid-row: auto; grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .clarify-row { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .hero { padding: 7rem 0 3rem; }
  .hero-card { position: static; margin-top: 1rem; max-width: 100%; }
}
