:root {
  --ink: #20302e;
  --deep-lake: #0f3f4a;
  --lake: #247d8f;
  --cypress: #315f4d;
  --sunset: #dc7a42;
  --golden: #e4b85f;
  --porch: #f9f0dc;
  --paper: #fffaf0;
  --mist: #e5f2f1;
  --line: rgba(32, 48, 46, .16);
  --muted: #66726f;
  --shadow: 0 24px 64px rgba(15, 63, 74, .17);
}

* {
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(36, 125, 143, .06) 0 25%, transparent 25% 50%, rgba(49, 95, 77, .05) 50% 75%, transparent 75%) 0 0 / 46px 46px,
    var(--paper);
  font-family: "Gill Sans", "Gill Sans MT", Inter, system-ui, sans-serif;
}

a {
  color: var(--lake);
  text-decoration: none;
}

.top-strip {
  color: #fff;
  background: linear-gradient(90deg, var(--deep-lake), var(--cypress));
  border-bottom: 3px solid var(--golden);
  font-size: .88rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 250, 240, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.navbar {
  padding-block: .78rem;
}

.navbar-brand {
  color: var(--deep-lake);
  font-family: Georgia, "Times New Roman", serif;
  line-height: .95;
  max-width: 430px;
  white-space: normal;
}

.navbar-brand span:last-child {
  font-size: 25px;
  font-weight: 500;
}

.brand-mark {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0 42%, transparent 43%),
    radial-gradient(circle at 50% 76%, var(--lake) 0 34%, var(--deep-lake) 35% 100%);
  border-radius: 50% 50% 8px 8px;
  box-shadow: 0 9px 24px rgba(15, 63, 74, .2);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 950;
}

.nav-link {
  color: var(--ink);
  font-size: .92rem;
  
  padding: .54rem .76rem !important;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle.show {
  color: #fff !important;
  background: var(--lake);
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 18px 18px 8px 8px;
  padding: .55rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dropdown-item {
  border-radius: 12px;
}

.dropdown-item:hover {
  color: #fff;
  background: var(--deep-lake);
}

.navbar-toggler {
  border-color: var(--line);
  border-radius: 14px;
  background: #fff;
}

.btn {
  border-radius: 10px;
  
}

.btn-primary {
  --bs-btn-bg: var(--deep-lake);
  --bs-btn-border-color: var(--deep-lake);
  --bs-btn-hover-bg: #0a3038;
  --bs-btn-hover-border-color: #0a3038;
}

.btn-warning {
  --bs-btn-bg: var(--sunset);
  --bs-btn-border-color: var(--sunset);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: #c76734;
  --bs-btn-hover-border-color: #c76734;
  --bs-btn-hover-color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: var(--deep-lake);
  --bs-btn-border-color: var(--deep-lake);
  --bs-btn-hover-bg: var(--deep-lake);
  --bs-btn-hover-border-color: var(--deep-lake);
}

.hero {
  min-height: 85vh;
  display: grid;
  align-items: center;
  padding: 7rem 0 5rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 63, 74, .95) 0 45%, rgba(15, 63, 74, .66) 46% 62%, rgba(220, 122, 66, .12) 63%),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=82&fm=webp") center / cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  background: repeating-radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.34) 0 9px, rgba(255,255,255,0) 10px 28px);
  opacity: .75;
}

.hero::after {
  content: "Lake Eustis";
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  bottom: 5rem;
  color: rgba(255, 255, 255, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 9vw, 9rem);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0;
}

.hero h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.2vw, 40px);
  line-height: 1.2;
  font-weight: 500;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.75;
}

.eyebrow {
  color: var(--sunset);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 950;
}

.hero .eyebrow {
  color: var(--golden) !important;
}

.hero-panel {
  max-width: 660px;
  margin-top: 1.4rem;
  padding: 1.2rem 1.35rem;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 5px solid var(--golden);
  border-radius: 20px 20px 8px 8px;
  backdrop-filter: blur(12px);
}

.hero-panel a {
  color: #fff !important;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.glass-card {
  color: var(--deep-lake);
  background: rgba(255, 255, 255, .9);
  border-radius: 8px;
  padding: .68rem .9rem;
  
  box-shadow: 0 12px 28px rgba(15, 63, 74, .16);
}

.hero .actions {
  justify-content: flex-start !important;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-title {
  color: var(--deep-lake);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.4vw, 30px);
  line-height: .98;
  font-weight: 500;
}

.lead {
  color: #43514f;
  line-height: 1.78;
}

.muted {
  color: var(--muted);
}

.alt-band {
  background:
    linear-gradient(135deg, rgba(229, 242, 241, .88), rgba(249, 240, 220, .92)),
    radial-gradient(circle at 80% 20%, rgba(228, 184, 95, .22), transparent 28rem);
  border-block: 1px solid var(--line);
}

.dark-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 63, 74, .96), rgba(49, 95, 77, .88)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80&fm=webp") center / cover;
}

.dark-band .section-title,
.dark-band .eyebrow {
  color: #fff;
}

.dark-band .muted {
  color: rgba(255, 255, 255, .78);
}

.feature-panel,
.program-card,
.blog-card,
.calc-shell,
.toc-box,
.article-cta {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px 24px 8px 8px;
  padding: 1.4rem;
  box-shadow: 0 16px 44px rgba(15, 63, 74, .09);
}

.program-card,
.blog-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.program-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.program-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -1.4rem -1.4rem 1rem;
  background: linear-gradient(90deg, var(--lake), var(--golden), var(--sunset));
}

.program-card h3,
.blog-card h2,
.feature-panel h2,
.feature-panel h3 {
  color: var(--deep-lake);
}

.calc-shell {
  background: linear-gradient(180deg, #fff, var(--mist));
  border-top: 6px solid var(--lake);
}

.form-control {
  border-radius: 16px 16px 6px 6px;
  border-color: rgba(15, 63, 74, .22);
  padding: .76rem .95rem;
}

.form-control:focus {
  border-color: var(--lake);
  box-shadow: 0 0 0 .2rem rgba(36, 125, 143, .16);
}

.result-box {
  background: #fff;
  border: 1px solid rgba(36, 125, 143, .22);
  border-radius: 18px 18px 8px 8px;
  padding: 1rem;
}

.link-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px 24px 8px 8px;
  padding: .75rem 1.15rem;
  box-shadow: 0 14px 38px rgba(15, 63, 74, .08);
}

.link-grid a {
  display: flex;
  justify-content: space-between;
  padding: .92rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep-lake);
  
}

.link-grid a::after {
  content: "~";
  color: var(--sunset);
}

.link-grid a:last-child {
  border-bottom: 0;
}

.page-hero {
  padding: 6.4rem 0 4.35rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 63, 74, .96), rgba(36, 125, 143, .88)),
    radial-gradient(circle at 78% 20%, rgba(228, 184, 95, .25), transparent 30%);
}

.page-hero h1 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
}
.page-hero .lead{
  color: rgba(255, 255, 255, 1);
}

.article-wrap {
  max-width: 920px;
}

.article-wrap h2,
.article-wrap h3 {
  margin-top: 2.1rem;
  color: var(--deep-lake);
}

.toc-box {
  background: var(--mist);
  border-left: 6px solid var(--lake);
}

.article-cta {
  margin: 1.65rem 0;
  background: linear-gradient(135deg, var(--porch), #fff);
  border-color: rgba(220, 122, 66, .25);
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px 18px 6px 6px !important;
  margin-bottom: .75rem;
}

.accordion-button {
  color: var(--deep-lake);
  background: #fff;
  
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: var(--deep-lake);
  box-shadow: none;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(135deg, #0b333b, #102f27);
  border-top: 5px solid var(--golden);
}

.site-footer a {
  color: rgba(255, 255, 255, .88);
}

.site-footer h3,
.site-footer strong {
  color: #fff;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: none;
  background: rgba(255, 250, 240, .95);
  border-top: 1px solid var(--line);
  padding: .65rem;
  box-shadow: 0 -14px 40px rgba(15, 63, 74, .18);
  backdrop-filter: blur(14px);
}

.columns-list {
  columns: 2;
}

.modal-content {
  border: 1px solid var(--line);
  border-radius: 24px 24px 8px 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

@media (max-width: 1199.98px) {
  .navbar-brand {
    max-width: 360px;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 5.5rem 0 3.75rem;
  }

  .hero::after {
    display: none;
  }

  .section-pad {
    padding: 3.75rem 0;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 76px;
  }

  .top-strip .container {
    justify-content: center !important;
    text-align: center;
  }

  .navbar-brand {
    max-width: 240px;
  }

  .navbar-brand span:last-child {
    font-size: 45px;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .columns-list {
    columns: 1;
  }
}
