:root {
  --teal: #2a8f8a;
  --teal-deep: #1f6f6a;
  --teal-ink: #163f3c;
  --sand: #e8dcc8;
  --sand-deep: #d4c4a8;
  --cream: #faf6ef;
  --cream-card: #fffdf9;
  --foam: #f0f7f6;
  --gold: #c9a66b;
  --gold-deep: #a8844a;
  --muted: #5a6b68;
  --line: rgba(31, 111, 106, 0.14);
  --radius: 18px;
  --shadow: 0 14px 34px rgba(22, 63, 60, 0.10);
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--teal-ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
}
img { max-width: 100%; height: auto; display: block; border-radius: 14px; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }
.wrap, .container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--teal-deep); color: #fff;
  padding: .6rem 1rem; z-index: 100; border-radius: 999px;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.utility-bar {
  background: var(--teal-ink); color: #e8f4f3; font-size: .86rem; padding: .45rem 0;
}
.utility-bar .container {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.utility-bar a { color: #fff; font-weight: 700; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 0; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--teal-deep);
}
.logo svg { flex-shrink: 0; border-radius: 12px; }
.header-actions { display: flex; align-items: center; gap: .65rem; margin-left: auto; }
.header-phone { font-weight: 700; text-decoration: none; color: var(--teal-ink); white-space: nowrap; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: .45rem 0.9rem; font: inherit; cursor: pointer;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .25rem .7rem; align-items: center;
}
.site-nav a {
  text-decoration: none; color: var(--teal-ink); font-weight: 600; font-size: .86rem;
  padding: .25rem .15rem;
}
.site-nav a[aria-current="page"] { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.2rem; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font: inherit;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-deep); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-outline { background: #fff; color: var(--teal-deep); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-sand { background: var(--sand); color: var(--teal-ink); }
.btn-sand:hover { background: var(--gold); color: #fff; }
.hero {
  min-height: 64vh; display: grid; align-items: end;
  background-size: cover; background-position: center;
  position: relative; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(22,63,60,.88), rgba(42,143,138,.55) 55%, rgba(201,166,107,.35));
}
.hero-inner { position: relative; padding: 4.8rem 0 3.2rem; }
.eyebrow, .pill {
  display: inline-block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 800; color: var(--teal-deep); background: rgba(250,246,239,.95);
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero h1, .page-hero h1, .section h1, .section h2, .prose h2, .prose h3 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.22;
}
.hero h1, .page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin: 0 0 1rem; }
.hero .lead, .page-hero .lead { font-size: 1.12rem; max-width: 44rem; opacity: .97; }
.page-hero {
  background: linear-gradient(120deg, var(--teal-ink), var(--teal));
  color: #fff; padding: 3.2rem 0 2.4rem;
}
.page-hero .eyebrow { color: var(--teal-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.hours-banner {
  background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; margin: 1.5rem 0;
}
.section { padding: 3.2rem 0; }
.section.alt { background: var(--foam); }
.section.sand { background: var(--sand); }
.section-head { max-width: 40rem; margin-bottom: 1.75rem; }
.section-head h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin: 0 0 .6rem; color: var(--teal-ink); }
.grid-3, .grid-2, .card-grid {
  display: grid; gap: 1.25rem;
}
.grid-3, .card-grid { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .card-grid, .grid-2 { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: flex-start; padding: .5rem 0 1rem; }
  .header-phone { display: none; }
}
.card {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem 1.4rem; box-shadow: var(--shadow);
}
.card img { width: 100%; height: 180px; object-fit: cover; margin-bottom: .9rem; }
.card h3 { margin: 0 0 .45rem; font-size: 1.2rem; color: var(--teal-deep); }
.card p { margin: 0 0 .75rem; color: var(--muted); }
.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.prose p { margin: 0 0 1.05rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; padding-left: 1.2rem; }
.prose li { margin-bottom: .35rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; height: 210px; object-fit: cover; }
.gallery-grid figcaption { font-size: .85rem; color: var(--muted); margin-top: .4rem; }
.faq details {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: 14px;
  padding: .9rem 1.1rem; margin-bottom: .7rem;
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--teal-deep); }
.form-grid { display: grid; gap: .9rem; max-width: 640px; }
.form-grid label { display: grid; gap: .3rem; font-weight: 600; font-size: .92rem; }
.form-grid input, .form-grid select, .form-grid textarea {
  font: inherit; padding: .7rem .85rem; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--teal-ink);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .88rem; color: var(--muted); }
.map-band, .footer-map {
  background: var(--teal-ink); color: #e8f4f3; padding: 2.5rem 0;
}
.map-band h2, .footer-map h2 { font-family: var(--font-display); margin: 0 0 .4rem; }
.map-wrap iframe {
  width: 100%; max-width: 100%; height: 380px; border: 0; border-radius: 16px;
  background: #0f2a28;
}
.site-footer {
  background: #102e2c; color: #d7e8e6; padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin: 0 0 .7rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .35rem; }
.site-footer a { color: #cfe7e5; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer address { font-style: normal; line-height: 1.65; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .88rem; color: #9fbdb9;
}
.alnm, .alnm-body { font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0; }
.chip {
  background: var(--sand); color: var(--teal-ink); border-radius: 999px;
  padding: .3rem .7rem; font-size: .82rem; font-weight: 700;
}
.star-note {
  background: linear-gradient(90deg, #fff8e8, #f0f7f6);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0; padding: 1rem 1.15rem; margin: 1.25rem 0;
}
.directory-brand { margin: .4rem 0 1rem; }
.directory-brand img { max-height: 70px; width: auto; border-radius: 0; }
.directory-brand-dark { background: #111; display: inline-block; padding: .5rem .75rem; border-radius: 10px; }
.directory-facility img { width: 100%; max-height: 360px; object-fit: cover; }
.cta-band {
  background: linear-gradient(120deg, var(--teal), var(--teal-deep));
  color: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
.cta-band a { color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
