:root {
  --ink: #0b1f2a;
  --ink-soft: #3d5563;
  --muted: #6b8290;
  --line: rgba(11, 31, 42, 0.1);
  --bg: #f7fafb;
  --card: #ffffff;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --sky: #e6f4f3;
  --sand: #f4f1ea;
  --hero-scrim: linear-gradient(120deg, rgba(7, 28, 38, 0.78), rgba(7, 28, 38, 0.35));
  --radius: 18px;
  --shadow: 0 18px 50px rgba(11, 31, 42, 0.12);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(247, 250, 251, 0.9);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 700; letter-spacing: 0.02em;
}
.brand-mark {
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #5eead4, var(--teal-deep));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
.brand span { font-size: 1.05rem; }
.nav-links {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
  align-items: center; font-size: 0.95rem;
}
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { color: var(--teal-deep); }
.nav-links .loc { font-weight: 600; color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; border-radius: 999px; padding: 0.7rem 1.2rem;
  font-weight: 600; border: 1px solid transparent; cursor: pointer;
  transition: 0.15s ease;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-deep); }
.btn-ghost {
  background: rgba(255,255,255,0.14); color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.24); }
.btn-outline {
  background: transparent; color: var(--teal-deep);
  border-color: rgba(13, 148, 136, 0.35);
}
.btn-outline:hover { background: var(--sky); }

/* Hero */
.hero {
  position: relative; min-height: clamp(420px, 68vh, 640px);
  display: grid; align-items: end; color: #fff;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0; background: var(--hero-scrim);
}
.hero-inner {
  position: relative; z-index: 1; padding: 4.5rem 0 3.2rem;
}
.kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.75rem; font-weight: 700; color: #99f6e4; margin-bottom: 0.8rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.08;
  margin: 0 0 0.9rem; max-width: 14ch;
}
.hero p.lead {
  max-width: 38rem; font-size: 1.08rem; color: rgba(255,255,255,0.9);
  margin: 0 0 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* Sections */
section { padding: 4rem 0; }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }
.section-head h2 {
  font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.55rem; line-height: 1.15;
}
.section-head p { margin: 0; color: var(--ink-soft); }
.eyebrow {
  color: var(--teal-deep); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.45rem;
}

/* Location cards */
.loc-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.loc-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; flex-direction: column; min-height: 100%;
  transition: transform 0.15s ease;
}
.loc-card:hover { transform: translateY(-3px); }
.loc-card .media {
  aspect-ratio: 16/11; background-size: cover; background-position: center;
}
.loc-card .body { padding: 1.2rem 1.25rem 1.35rem; display: grid; gap: 0.55rem; }
.loc-card h3 { margin: 0; font-size: 1.2rem; }
.loc-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.loc-card .meta {
  font-size: 0.82rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* Feature / fleet */
.feature-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
}
.feature h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.split {
  display: grid; gap: 1.5rem; align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}
.split .panel {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--line); padding: 1.5rem;
  box-shadow: var(--shadow);
}
.split .panel img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: calc(var(--radius) - 4px); min-height: 280px;
}
.split h2 { font-family: var(--serif); margin: 0 0 0.7rem; font-size: 2rem; }
.split p { color: var(--ink-soft); margin: 0 0 1rem; }
.list-clean { margin: 0 0 1.2rem; padding-left: 1.1rem; color: var(--ink-soft); }
.list-clean li { margin: 0.3rem 0; }

/* Foundation band */
.foundation-band {
  background: linear-gradient(160deg, #0b3b3a, #0f766e 55%, #115e59);
  color: #fff;
}
.foundation-band .eyebrow { color: #99f6e4; }
.foundation-band p { color: rgba(255,255,255,0.88); }
.foundation-band h2 { margin: 0 0 0.7rem; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.2rem); }

/* Page hero compact */
.page-hero {
  position: relative; min-height: 340px; display: grid; align-items: end;
  color: #fff; background-size: cover; background-position: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; background: var(--hero-scrim);
}
.page-hero .inner { position: relative; z-index: 1; padding: 3.5rem 0 2.2rem; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 0.6rem; max-width: 16ch; line-height: 1.1;
}
.page-hero p { margin: 0; max-width: 36rem; color: rgba(255,255,255,0.9); }

.prose { max-width: 44rem; }
.prose h2 { font-family: var(--serif); margin: 2rem 0 0.6rem; }
.prose p { color: var(--ink-soft); }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; }
.pill {
  background: var(--sky); color: var(--teal-deep); border-radius: 999px;
  padding: 0.35rem 0.75rem; font-size: 0.85rem; font-weight: 600;
}

/* Contact strip */
.contact-strip {
  background: var(--sand); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-inner {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center;
}
.contact-inner h2 { margin: 0 0 0.3rem; font-family: var(--serif); font-size: 1.6rem; }
.contact-inner p { margin: 0; color: var(--ink-soft); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.82); padding: 2.4rem 0 1.6rem;
}
.footer-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 1.6rem;
}
.site-footer h3 { margin: 0 0 0.55rem; color: #fff; font-size: 0.95rem; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.footer-note {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem; font-size: 0.86rem; color: rgba(255,255,255,0.6);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; justify-content: space-between;
}

@media (max-width: 900px) {
  .loc-grid, .feature-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .nav-links .hide-sm { display: none; }
}
@media (max-width: 640px) {
  .nav { flex-wrap: wrap; }
  .nav-links { width: 100%; gap: 0.55rem 0.85rem; }
}
