:root {
  --teal: #1A6C77;
  --black: #000000;
  --offwhite: #FAF9F7;
  --dark: #3A3E3F;
  --warm: #C9B27F;

  --radius: 1.25rem;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}

body {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--black);
  background: var(--offwhite);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: rgba(26, 108, 119, 0.65);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: rgba(26, 108, 119, 1);
}

:focus-visible {
  outline: 3px solid rgba(26, 108, 119, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.55rem 0.75rem;
  background: var(--offwhite);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  transform: translateY(-200%);
  transition: transform 160ms ease;
  z-index: 999;
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 2.25rem 0;
}

.section-header {
  margin-bottom: 1.25rem;
}

.kicker {
  margin: 0 0 0.5rem;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
}

.headline {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.06;
}

.lead {
  margin: 0;
  color: var(--dark);
  font-size: 1.18rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  line-height: 1.15;
}

.section-subtitle {
  margin: 0;
  color: var(--dark);
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-name {
  display: block;
  font-weight: 700;
  font-size: 1.35rem;
}

.brand-tagline {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
}

.brand-link {
  text-decoration: none;
}

.site-nav .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
}

.site-nav a[aria-current="page"] {
  border-color: rgba(26, 108, 119, 0.45);
  background: rgba(26, 108, 119, 0.06);
}

.hero {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-content {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26, 108, 119, 0.08), rgba(201, 178, 127, 0.10));
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-panel {
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.hero-layer {
  position: absolute;
  inset: -20%;
  transform: rotate(-6deg);
}

.hero-layer-a {
  background: radial-gradient(circle at 30% 30%, rgba(26, 108, 119, 0.28), transparent 55%);
}

.hero-layer-b {
  background: radial-gradient(circle at 70% 40%, rgba(201, 178, 127, 0.30), transparent 55%);
}

.hero-layer-c {
  background: radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.10), transparent 60%);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: rgba(38, 158, 145, 0.65);
  color: var(--offwhite);
  border-color: rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  background: rgba(38, 158, 145, 0.65);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: rgba(250, 249, 247, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.card-text {
  margin: 0;
  color: var(--dark);
}

.note-panel {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(26, 108, 119, 0.20);
  background: linear-gradient(180deg, rgba(26, 108, 119, 0.06), rgba(201, 178, 127, 0.08));
}

.bullets {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
}

.mini-list {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
  color: var(--dark);
}

.faq {
  margin: 0;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(250, 249, 247, 0.92);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.05);
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq dt {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.faq dd {
  margin: 0;
  color: var(--dark);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 0 1.25rem;
  background: linear-gradient(180deg, rgba(26, 108, 119, 0.05), rgba(201, 178, 127, 0.08));
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-text {
  margin: 0;
  color: var(--dark);
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-small {
  margin: 0;
  color: var(--dark);
  font-size: 0.98rem;
}

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .hero {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1.5rem;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1.4fr 0.8fr;
    align-items: start;
  }
}
/* ...existing content remains... */

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(26, 108, 119, 0.65);
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.link-button:hover {
  text-decoration-color: rgba(26, 108, 119, 1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/*TESTING*/
/* ==========================================
   MODERN FULL-SCREEN MOBILE MENU OVERLAY
   Matches the new header.php + nav.js approach
   ========================================== */

/* Hamburger button – only on mobile */
.nav-toggle {
  display: none; /* hidden by default */
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 2px solid rgba(26, 108, 119, 0.6);
    background: white;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    cursor: pointer;
    font-weight: 700;
    color: var(--black);
  }

  .nav-toggle:hover {
    background: rgba(26, 108, 119, 0.05);
  }

  /* Optional: animate bars to X when open */
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle__bar {
    width: 22px;
    height: 2.5px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.28s ease;
  }
}

/* Full-screen overlay (grey tint) */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* your grey tint – adjust opacity if needed */
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: opacity 0.28s ease, visibility 0s linear 0.3s;
  pointer-events: none;
}

.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease;
}

/* The centered menu panel */
.mobile-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  width: 88%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 9999;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.32s ease;
}

.mobile-menu-open .mobile-menu {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Menu header (title + close ×) */
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mobile-menu__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
}

.nav-close {
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.6rem;
  border-radius: 50%;
}

.nav-close:hover {
  background: rgba(26, 108, 119, 0.1);
}

/* Mobile nav list */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.mobile-nav-list a {
  display: block;
  padding: 0.95rem 1.2rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

.mobile-nav-list a:hover {
  background: rgba(26, 108, 119, 0.07);
}

.mobile-nav-list a[aria-current="page"] {
  border-color: var(--teal);
  background: rgba(26, 108, 119, 0.1);
}

.mobile-nav-list .nav-cta {
  border-color: var(--teal);
  background: rgba(26, 108, 119, 0.12);
  font-weight: 700;
}

/* Hide desktop nav on mobile, hide mobile stuff on desktop */
@media (max-width: 899px) {
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 900px) {
  .mobile-menu-overlay,
  .mobile-menu {
    display: none;
  }

  .desktop-nav {
    display: block;
  }

  /* Your existing desktop nav styles remain active */
}

/* Prevent scroll when open */
.mobile-menu-open body {
  overflow: hidden;
}
