:root {

  --teal-900: #1e3838;
  --teal-800: #294c4c;
  --teal-700: #35625f;
  --teal-600: #43786f;
  --teal-500: #5b9490;
  --teal-400: #7dabA7;
  --teal-100: #e7f1ef;
  --teal-50:  #f3f8f7;

  /* Reserved for error/warning states only — not used as a brand accent */
  --coral-700: #a33d1a;
  --coral-100: #fdeae2;

  /* Warm complementary accent (candy-wall gold) — the site's secondary color */
  --yellow-500: #f2b84b;
  --yellow-100: #fdf1dc;
  --gold-700: #8a5700;

  --cream: #fbf9f4;
  --white: #ffffff;
  --ink-900: #24302f;
  --ink-700: #46524f;
  --ink-500: #6b7674;
  --line: #e3ddd0;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(30, 56, 56, 0.06);
  --shadow-md: 0 12px 32px rgba(30, 56, 56, 0.10);

  --font-display: "Baloo 2", "Segoe UI Rounded", ui-rounded, system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-700); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--gold-700); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-900);
  line-height: 1.15;
  margin-top: 0;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-top: 0; }
ul, ol { padding-left: 1.25em; }
button { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-900);
  color: var(--white);
  padding: 0.75em 1.25em;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section-tight { padding-top: 40px; padding-bottom: 40px; }
.section-alt { background: var(--teal-50); }
.section-teal {
  background: var(--teal-800);
  color: var(--teal-50);
}
.section-teal h2, .section-teal h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold-700);
  background: var(--yellow-100);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-teal .eyebrow { background: rgba(255,255,255,0.14); color: var(--yellow-500); }

.lede {
  font-size: 1.15rem;
  color: var(--ink-700);
  max-width: 62ch;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color .15s ease;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-800); color: var(--white); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--teal-800); }
.btn-outline:hover { background: var(--teal-800); color: var(--white); }
.section-teal .btn-outline { color: var(--white); }
.section-teal .btn-outline:hover { background: var(--white); color: var(--teal-900); }
.btn-light { background: var(--white); color: var(--teal-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--teal-100); color: var(--teal-900); }
.btn-block { width: 100%; justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { height: 46px; width: auto; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--teal-900);
}
.nav-toggle svg { width: 28px; height: 28px; }

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  display: inline-block;
  padding: 0.6em 0.85em;
  color: var(--teal-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: var(--radius-pill);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--teal-100);
  color: var(--teal-800);
}
.nav-cta { margin-left: 8px; }

.primary-nav .nav-cta a.btn-primary,
.primary-nav .nav-cta a.btn-primary:hover { color: var(--white); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding: 12px 20px 40px;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav a { padding: 0.9em 1em; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: 10px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.blob {
  position: absolute;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}
.blob-1 { top: -80px; right: -100px; width: 360px; }
.blob-2 { bottom: -120px; left: -120px; width: 320px; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.5em 1em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-800);
  box-shadow: var(--shadow-sm);
}
.badge-chip svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; }

.page-header {
  padding-top: 44px;
  padding-bottom: 44px;
  background: var(--teal-100);
  text-align: center;
}
.page-header .lede { margin-left: auto; margin-right: auto; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--teal-700);
  margin-bottom: 10px;
}
.breadcrumbs a { color: var(--teal-700); }

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin-top: 14px;
}

.photo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.photo-card .photo-frame { aspect-ratio: 4/3; overflow: hidden; }
.photo-card .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-card figcaption { padding: 10px 14px; font-size: 0.85rem; color: var(--ink-700); }

.team-card { text-align: center; }
.team-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-role { color: var(--gold-700); font-weight: 600; font-size: 0.92rem; }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 860px) {
  .bio-grid { grid-template-columns: 320px 1fr; }
}
.bio-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bio-facts {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.bio-facts li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.bio-facts svg { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-900);
  padding: 18px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--teal-600);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding-bottom: 20px; color: var(--ink-700); }
.faq-item .faq-answer p { margin: 0 0 0.8em; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-quote { font-size: 1.02rem; color: var(--ink-800); }
.testimonial-name {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-800);
}
.stars { color: var(--gold-700); letter-spacing: 2px; margin-bottom: 10px; }

.steps {
  display: grid;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.step-num::before { content: counter(step); }

.cta-banner {
  background: var(--teal-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner .lede { color: var(--teal-100); margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--teal-900); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 860px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.info-block h3 { display: flex; align-items: center; gap: 10px; }
.info-block h3 svg { width: 22px; height: 22px; color: var(--teal-600); }
.info-block dl { margin: 12px 0 0; }
.info-block dt { font-weight: 700; color: var(--teal-800); margin-top: 12px; }
.info-block dt:first-child { margin-top: 0; }
.info-block dd { margin: 2px 0 0; color: var(--ink-700); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 6px;
  font-size: 0.94rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  font: inherit;
  color: var(--ink-900);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal-500);
  outline: none;
  box-shadow: 0 0 0 3px var(--teal-100);
}
.form-note { font-size: 0.85rem; color: var(--ink-500); margin-top: 6px; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: var(--teal-100); color: var(--teal-800); }
.form-status.error { background: var(--coral-100); color: var(--coral-700); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--teal-900);
  color: var(--teal-100);
  padding-top: 56px;
  padding-bottom: 26px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.site-footer a { color: var(--teal-100); }
.site-footer a:hover { color: var(--yellow-500); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 38px; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-nav ul, .footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 0.94rem; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--teal-400);
}
.footer-bottom a { color: var(--teal-400); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack { display: grid; gap: 16px; }

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--teal-500);
  margin-bottom: 0;
  line-height: 1;
}
