@charset "UTF-8";

:root {
  --brand: #0f7f7a;
  --brand-dark: #075c5c;
  --accent: #cf7d2b;
  --ink: #163033;
  --muted: #5c6f73;
  --line: #dbe5e7;
  --surface: #f4f8f8;
  --white: #fff;
  --shadow: 0 18px 45px rgba(11, 48, 51, .12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--brand-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(15, 127, 122, .35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand img {
  width: 150px;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 650;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--surface);
  color: var(--brand-dark);
}

.cta-link {
  background: var(--brand) !important;
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #0d4748;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 42, 45, .82), rgba(6, 42, 45, .28) 52%, rgba(6, 42, 45, .08));
  content: "";
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.hero h1 {
  max-width: 740px;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.hero p {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-weight: 750;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, .92);
  color: var(--brand-dark);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--surface);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
}

.hero h1 {
  color: var(--white);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.team-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(11, 48, 51, .05);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-card strong {
  display: block;
  padding: 18px;
  color: var(--ink);
  font-size: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: start;
}

.split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.text-flow > * + * {
  margin-top: 18px;
}

.text-flow hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.page-title {
  padding: 82px 0;
  background: linear-gradient(120deg, #e8f3f2, #fff);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card div {
  padding: 18px;
}

.team-card p {
  color: var(--muted);
  font-size: .95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d7da;
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .92rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.address-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.address-list li + li {
  margin-top: 16px;
}

.site-footer {
  padding: 38px 0;
  background: #123236;
  color: rgba(255, 255, 255, .82);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner a {
  color: var(--white);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 82px 0 auto;
    display: none;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 560px;
  }

  .feature-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .hero-content,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 126px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .section {
    padding: 52px 0;
  }

  .feature-grid,
  .team-grid,
  .gallery,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}
