/* Hibiscus Court — Melbourne, FL
   Palette: coral/hibiscus pink, soft teal-green, warm sand, deep navy
   Distinct from Lakeview Cleveland (teal) and Prairie View Nebraska (terracotta).
   WCAG 2.2 AA floor. */

:root {
  --coral: #d4576b;
  --coral-deep: #b33d52;
  --coral-soft: #f8dce1;
  --hibiscus: #e87a8a;
  --teal: #3d8f82;
  --teal-soft: #d4ebe6;
  --teal-deep: #2a6b61;
  --sand: #f7efe4;
  --sand-deep: #ebe0d0;
  --foam: #fffbf7;
  --navy: #1b2a4a;
  --navy-mid: #2c3e5f;
  --text: #1e2a3a;
  --muted: #4a5568;
  --border: #dccfc0;
  --focus: #2a6b61;
  --error: #9b2c2c;
  --shadow: 0 10px 32px rgba(27, 42, 74, 0.1);
  --radius: 10px;
  --radius-lg: 22px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--foam);
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
a { color: var(--coral-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Soft wave utility bar — coastal, not prairie slate bar or Cleveland sticky-only */
.utility-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 55%, var(--teal-deep) 100%);
  color: #f0f4f8;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}
.utility-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.utility-bar a {
  color: #fff;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.utility-bar a:hover { color: var(--coral-soft); }

.site-header {
  background: rgba(255, 251, 247, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(212, 87, 107, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.15;
  min-height: 44px;
}
.logo span { max-width: 14ch; }
.logo svg { flex-shrink: 0; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.header-phone {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.header-phone:hover { color: var(--coral); }

.nav-toggle {
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 1rem;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
}

.site-nav {
  flex-basis: 100%;
  display: none;
}
.site-nav.is-open { display: block; }
@media (min-width: 980px) {
  .site-nav {
    display: block;
    flex-basis: auto;
    width: 100%;
    order: 3;
  }
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  color: var(--navy-mid);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--coral-soft);
  color: var(--coral-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  gap: 0.4rem;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-primary:hover { background: var(--coral-deep); color: #fff; border-color: var(--coral-deep); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-sand {
  background: var(--sand);
  color: var(--navy);
  border-color: var(--sand);
}
.btn-sand:hover { background: #fff; color: var(--navy); }

/* Hero — coastal overlay with soft wave bottom */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 68vw, 560px);
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(27,42,74,0.88) 0%, rgba(27,42,74,0.55) 48%, rgba(61,143,130,0.35) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4.5rem;
}
.hero-panel {
  max-width: 36rem;
  background: rgba(27, 42, 74, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: #fff;
}
.hero-lead { margin: 0 0 1.25rem; color: #e8eef5; font-size: 1.1rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.trust-line { margin: 0; font-size: 0.95rem; color: var(--coral-soft); font-weight: 600; }

.page-hero {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(232,122,138,0.18), transparent 50%),
    linear-gradient(180deg, var(--sand) 0%, var(--foam) 100%);
  padding: 2.75rem 0 2rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.page-hero p { margin: 0; color: var(--muted); max-width: 40rem; }

.section { padding: 3.25rem 0; }
.section-alt { background: var(--sand); }
.section-teal {
  background: linear-gradient(180deg, var(--teal-soft) 0%, #eef7f5 100%);
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 0.5rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  color: var(--navy);
  margin: 0 0 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 42rem; margin: 0 0 1.5rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
}
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-bottom: 0.85rem; }
.card .petal {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50% 50% 50% 8px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1fr 1fr; }
}
.split img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.85rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 3px var(--teal-soft);
}

.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--navy-mid);
  font-weight: 600;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.price-card.featured {
  background: var(--navy);
  color: #f0f4f8;
  border-color: var(--navy);
}
.price-card .label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--coral);
}
.price-card.featured .label { color: var(--hibiscus); }
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0.35rem 0;
  color: var(--navy);
}
.price-card.featured .amount { color: #fff; }
.price-card .period { font-size: 0.9rem; color: var(--muted); }
.price-card.featured .period { color: #c5d0e0; }
.disclaimer {
  background: var(--sand);
  border-left: 4px solid var(--coral);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  margin: 1.25rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
}
.gallery-grid figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.faq-list { max-width: 48rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.faq-item p { margin: 0; color: var(--muted); }

.form-grid { display: grid; gap: 1.1rem; max-width: 36rem; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  font: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-note { font-size: 0.95rem; color: var(--muted); }
#form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
}

.nap-block address { font-style: normal; line-height: 1.8; }
.nap-block a { font-weight: 600; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.compare-table tr:last-child td { border-bottom: none; }

.resource-links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.resource-links li {
  margin: 0.5rem 0;
  padding-left: 0;
}
.resource-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 600;
}

.cta-band {
  text-align: center;
  padding: 3.5rem 0;
  background:
    linear-gradient(125deg, rgba(27,42,74,0.95), rgba(212,87,107,0.85)),
    var(--navy);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #f0e6ea; max-width: 36rem; margin: 0 auto 1.5rem; }

.site-footer {
  background: var(--navy);
  color: #c5d0e0;
  padding: 3rem 0 1.5rem;
  font-size: 1rem;
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hibiscus);
  margin: 0 0 0.85rem;
  font-weight: 800;
}
.site-footer a { color: #f0f4f8; text-decoration: none; }
.site-footer a:hover { color: var(--coral-soft); text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-nap h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: 0;
  color: #fffbf7;
  font-weight: 600;
}
.footer-nap address { font-style: normal; line-height: 1.75; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.35rem 0; }
.site-footer li a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-bottom {
  border-top: 1px solid rgba(232, 122, 138, 0.25);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.95rem;
}
.prose { max-width: 46rem; }
.prose h2 { margin-top: 1.75rem; }


/* Homepage online resources */
.resource-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.resource-card-highlight {
  border: 2px solid var(--hibiscus);
  box-shadow: 0 8px 24px rgba(212, 87, 107, 0.15);
}
.resource-card .btn {
  margin-top: 0.5rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Footer social / review pills */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding-top: 0.5rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232, 122, 138, 0.45);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 0.95rem;
}
.social-pill:hover {
  background: rgba(232, 122, 138, 0.35);
  color: #fff !important;
}
.social-pill-accent {
  background: var(--hibiscus);
  border-color: var(--hibiscus);
}
