*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #07353d;
  background-color: #f7fafb;
  line-height: 1.6;
}

body.subsite {
  background-color: #f3f7f9;
}

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

a {
  color: #0b6b78;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 250, 251, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e1edf2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: #4b6c76;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.main-nav a:hover {
  background: #e1edf2;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #05303a;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  background: #0b6b78;
  color: #fff;
  box-shadow: 0 10px 20px rgba(7, 53, 61, 0.18);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  background: #074854;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(7, 53, 61, 0.22);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #0b6b78;
  border: 1px solid #0b6b78;
  box-shadow: none;
}

.btn-outline:hover {
  background: #0b6b78;
  color: #fff;
}

.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  box-shadow: none;
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero-landing {
  background: radial-gradient(circle at top left, #ffe6dc, #f7fafb 45%), radial-gradient(circle at bottom right, #c8edf1, #f7fafb 45%);
}

.hero-sub {
  background: linear-gradient(135deg, #c8edf1, #f7fafb);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  color: #05303a;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.hero-visual {
  justify-self: center;
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #05303a;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}

/* Layout */

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Cards */

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 25px rgba(12, 56, 65, 0.06);
  border: 1px solid #e4eef2;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #074854;
}

.card ul {
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.95rem;
}

.mt-lg {
  margin-top: 2rem;
}

/* Checklist */

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b6b78;
  font-weight: 700;
}

/* Locations */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.location-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 16px 40px rgba(12, 56, 65, 0.08);
  border: 1px solid #d9e7ec;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7, 53, 61, 0.18);
  border-color: #0b6b78;
}

.location-card h3 {
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.location-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0.9rem;
}

.location-tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #e1f2f5;
  color: #074854;
}

.location-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.location-link::after {
  content: "↗";
  font-size: 0.9rem;
}

.location-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #4b6c76;
}

/* Tabs / resources */

.tabs {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: #e4f2f5;
  margin-bottom: 1.3rem;
}

.tab-button {
  border: none;
  background: transparent;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #074854;
}

.tab-button.active {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(12, 56, 65, 0.16);
}

.tab-panels {
  border-radius: 1.1rem;
  background: #ffffff;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 25px rgba(12, 56, 65, 0.06);
  border: 1px solid #e4eef2;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.resource-list {
  padding-left: 1.2rem;
  margin: 0;
}

.resources-footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #4b6c76;
}

/* Service area */

.service-area {
  background: #0b6b78;
  color: #f4fdff;
  padding: 1.5rem 1.4rem;
  border-radius: 1rem;
}

/* Forms */

.contact-form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(12, 56, 65, 0.06);
  border: 1px solid #e4eef2;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid #c7d8df;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #0b6b7833;
  border-color: #0b6b78;
}

.form-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: #5b7780;
  margin-top: 0.75rem;
}

.form-success {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #0b6b78;
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #05303a;
  color: #e4f2f5;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #e4f2f5;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive */

@media (max-width: 900px) {
  .two-col,
  .grid-2,
  .grid-3,
  .location-grid,
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-text h1 {
    font-size: 2.05rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.25rem;
    background: #ffffff;
    border-radius: 0.8rem;
    padding: 0.75rem;
    box-shadow: 0 16px 40px rgba(12, 56, 65, 0.16);
    flex-direction: column;
    min-width: 190px;
  }

  .main-nav a {
    padding: 0.45rem 0.6rem;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.85rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0 2.75rem;
  }

  .logo {
    height: 44px;
  }

  .logo-subtitle {
    display: none;
  }
}
