:root {
  color-scheme: light;
  --ink: #0c1b1f;
  --muted: #3f585f;
  --accent: #0f6b6e;
  --accent-2: #ffb454;
  --surface: #f7f2ec;
  --surface-alt: #f2e9df;
  --white: #ffffff;
  --shadow: 0 30px 60px rgba(12, 27, 31, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fefaf4 0%, #f3efe8 45%, #efe8dc 100%);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  line-height: 1.1;
}

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

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

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
  z-index: -2;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #ffe3b8 0%, rgba(255, 227, 184, 0) 70%);
  top: -120px;
  left: -80px;
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #b7e2e4 0%, rgba(183, 226, 228, 0) 70%);
  bottom: -220px;
  right: -120px;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(12, 27, 31, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 27, 31, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 20% 10%, rgba(0, 0, 0, 0.8), transparent 70%);
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 233, 0.9);
  border-bottom: 1px solid rgba(12, 27, 31, 0.08);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--white);
  padding: 0.4rem;
  box-shadow: 0 12px 20px rgba(12, 27, 31, 0.12);
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links .cta {
  padding: 0.6rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(15, 107, 110, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 40px rgba(15, 107, 110, 0.3);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(12, 27, 31, 0.2);
  box-shadow: none;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.hero-badges div {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 15px 30px rgba(12, 27, 31, 0.08);
}

.badge-title {
  display: block;
  font-weight: 600;
}

.badge-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: floatIn 0.9s ease-out;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(15, 107, 110, 0.12), transparent 60%);
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.card-top h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.card-top p {
  color: var(--muted);
}

.card-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.card-list span {
  font-weight: 600;
}

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

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: linear-gradient(120deg, rgba(15, 107, 110, 0.08), rgba(255, 180, 84, 0.12));
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.stat-grid {
  display: grid;
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 14px 30px rgba(12, 27, 31, 0.08);
}

.stat-num {
  font-size: 2rem;
  font-weight: 600;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 18px 35px rgba(12, 27, 31, 0.1);
}

.info-card h3 {
  margin-bottom: 0.8rem;
}

.info-card p {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill-row span {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.85rem;
}

.facility-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.facility-panel h3 {
  margin-bottom: 0.6rem;
}

.facility-panel p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-list div {
  padding: 1.5rem 1.8rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(12, 27, 31, 0.08);
}

.service-list h3 {
  margin-bottom: 0.5rem;
}

.service-list p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.contact-details span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
}

.contact-details p {
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(12, 27, 31, 0.12);
  font-family: inherit;
}

.contact-form button {
  margin-top: 0.5rem;
  padding: 0.9rem;
  border-radius: 12px;
  border: none;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(12, 27, 31, 0.08);
  background: rgba(248, 242, 233, 0.9);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  text-align: center;
  color: var(--muted);
}

.footer-grid .brand-name {
  color: var(--ink);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    padding: 2rem;
  }

  .site-header {
    position: static;
  }
}
