:root {
  --navy: #0b1f2b;
  --deep: #102937;
  --teal: #1aa9a1;
  --sea: #3bc7c0;
  --sand: #f4efe7;
  --mist: #e4eef1;
  --ink: #0f1720;
  --foam: #f8fbfb;
  --shadow: 0 24px 60px rgba(5, 24, 35, 0.15);
}

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

body {
  font-family: "Manrope", "Noto Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, rgba(59, 199, 192, 0.12), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(26, 169, 161, 0.14), transparent 45%),
    linear-gradient(160deg, #f7fafb 0%, #eef5f7 40%, #fefbf6 100%);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 169, 161, 0.18), transparent 65%);
  z-index: 0;
}

.page::before {
  top: -200px;
  right: -120px;
}

.page::after {
  bottom: -240px;
  left: -160px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 251, 251, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 41, 55, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, var(--teal), var(--deep));
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.brand__text {
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
}

.content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  padding: 80px min(5vw, 60px) 40px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: #22323b;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 32px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}

.stat-label {
  font-size: 0.85rem;
  color: #4b5a64;
}

.hero__panel {
  background: linear-gradient(160deg, rgba(11, 31, 43, 0.94), rgba(16, 41, 55, 0.9));
  color: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.panel-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 199, 192, 0.2);
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero__panel h3 {
  color: white;
  margin-bottom: 12px;
}

.hero__panel ul {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  color: #d6e6eb;
}

.panel-footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #c6d9df;
}

.section {
  padding: 60px min(5vw, 60px);
}

.section--alt {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

.section__header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section__header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.stack {
  display: grid;
  gap: 20px;
}

.stack-card {
  padding: 22px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tag-row span,
.location-tags span {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.checklist,
.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.checklist li::before,
.mini-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 10px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 16px;
  background: var(--foam);
  border-radius: 14px;
}

.timeline-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.timeline-card {
  padding: 22px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.location-list {
  display: grid;
  gap: 16px;
}

.location-list strong {
  display: block;
  font-weight: 600;
}

.location-list span {
  font-size: 0.85rem;
  color: #4f5e68;
}

.muted {
  color: #4f5e68;
}

.quote {
  margin-bottom: 18px;
}

.quote p {
  font-style: italic;
  color: #1f2c34;
}

.quote footer {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #4f5e68;
}

.cta {
  background: linear-gradient(120deg, rgba(11, 31, 43, 0.95), rgba(26, 169, 161, 0.85));
  color: white;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta h2,
.cta h3 {
  color: white;
}

.page-hero {
  padding: 70px 0 10px;
}

.page-hero__content {
  padding: 30px min(5vw, 60px) 0;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 169, 161, 0.15);
  color: var(--navy);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: white;
}

.btn-ghost {
  border-color: rgba(16, 41, 55, 0.25);
  color: var(--navy);
  background: white;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(11, 31, 43, 0.12);
}

.form-card {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #3a4b55;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 32, 0.15);
  background: var(--foam);
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(26, 169, 161, 0.7);
  box-shadow: 0 0 0 3px rgba(26, 169, 161, 0.15);
}

.form-field span.field-validation-error {
  display: block;
  color: #a33232;
  font-size: 0.8rem;
  margin-top: 6px;
}

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

.validation-summary {
  color: #a33232;
  font-size: 0.9rem;
}

.form-note {
  font-size: 0.8rem;
  color: #4f5e68;
}

.alert-success {
  background: rgba(26, 169, 161, 0.15);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.contact-meta {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.location-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.site-footer {
  padding: 50px min(5vw, 60px) 30px;
  background: var(--navy);
  color: #d9e7ee;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-brand {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: white;
}

.footer-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-meta {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 70px min(6vw, 40px) 30px;
  }

  .site-nav {
    position: absolute;
    right: 5vw;
    top: 72px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 46px min(6vw, 32px);
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
