/* ==========================================================================
   HomesOfLakeNona.com — Core Stylesheet
   System fonts only. No external requests. No framework.
   Palette + type system defined once here; every page links this file.
   ========================================================================== */

:root {
  /* ---- Palette -----------------------------------------------------------
     Deliberately NOT the generic-AI trio (cream/serif/terracotta) and NOT a
     purple-blue gradient stack. Base is a deep lagoon teal — lifted from
     Lake Nona's own namesake water and the Florida planned-community
     landscaping palette — paired with a single warm brass-gold accent for
     action and emphasis. Warm, aspirational, distinct from the graphite/amber
     roofing site and from the bar/nightlife sites in this same family. */
  --ink: #10201d;
  --ink-soft: #3c5450;
  --lagoon: #0d5a5f;
  --lagoon-deep: #0a3f43;
  --lagoon-light: #4a8f8f;
  --lagoon-pale: #e2eeec;
  --paper: #f5f6f2;
  --paper-dim: #eaece5;
  --line: #dadfd6;
  --line-dark: #24413d;
  --gold: #c99a3c;
  --gold-dark: #9c7420;
  --gold-pale: #f6ecd4;
  --white: #ffffff;
  --success: #2e6b46;
  --error: #a33a2e;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

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

/* ---- Skip link ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 200;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---- Type system ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 4.6vw + 1rem, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
}

.lede {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold-dark);
  display: inline-block;
}
.eyebrow.on-dark {
  color: var(--gold);
}
.eyebrow.on-dark::before {
  background: var(--gold);
}

/* ---- Buttons ---------------------------------------------------------------*/
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--lagoon);
  color: var(--lagoon);
}

.btn-outline.on-dark {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn-outline.on-dark:hover {
  border-color: var(--white);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ---- Header ---------------------------------------------------------------*/
.site-header {
  background: var(--ink);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  line-height: 1;
}

.brand-mark {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.brand-mark span {
  color: var(--gold);
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9db3ae;
  margin-top: 5px;
}

.main-nav {
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d3ddda;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .header-cta { display: inline-block; }
}

.nav-toggle {
  display: inline-flex;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  padding: 9px 13px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.mobile-nav {
  display: none;
  background: var(--lagoon-deep);
  border-top: 1px solid var(--line-dark);
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px 18px;
}
.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a {
  display: block;
  padding: 13px 2px;
  text-decoration: none;
  color: #e7ede9;
  font-weight: 600;
}
.mobile-nav .btn {
  margin: 14px 2px 4px;
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, #146a6a 0%, var(--lagoon-deep) 46%, var(--ink) 100%);
  color: var(--white);
  padding: 68px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -30%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -18%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero h1 {
  color: var(--white);
}

.hero .lede {
  color: #d5e4e0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stat {
  background: rgba(10, 30, 29, 0.55);
  padding: 22px 20px;
}
.hero-stat .num {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  line-height: 1.15;
}
.hero-stat .label {
  font-size: 0.76rem;
  color: #c3d3cf;
  margin-top: 6px;
}

/* ---- Sections --------------------------------------------------------- */
section {
  padding: 66px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.section-dark p {
  color: #c6d3cf;
}

.section-tint {
  background: var(--lagoon-pale);
}

.section-head {
  max-width: 62ch;
  margin-bottom: 42px;
}

/* ---- Grids / Cards ------------------------------------------------------*/
.grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 26px;
  border-radius: var(--radius);
}

.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  padding: 30px 26px;
  border-radius: var(--radius);
}

.card h3 {
  margin-bottom: 0.4em;
}

.card .card-index {
  font-weight: 800;
  color: var(--gold-dark);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

/* ---- Neighborhood cards -------------------------------------------------*/
.village-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.village-card .village-band {
  background: var(--lagoon);
  padding: 20px 26px;
}
.village-card .village-band h3 {
  color: var(--white);
  margin: 0;
}
.village-card .village-tag {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.village-card .village-body {
  padding: 24px 26px 26px;
}
.village-card .village-facts {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  font-size: 0.88rem;
}
.village-card .village-facts li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.village-card .village-facts li strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---- Lists -------------------------------------------------------------*/
.check-list {
  list-style: none;
  margin: 0 0 1.2em;
  padding: 0;
}
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 13px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.step-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 30px 54px;
  border-left: 2px solid var(--line);
  margin-left: 18px;
}
.step-list li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: -20px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lagoon);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* ---- CTA band ------------------------------------------------------------*/
.cta-band {
  background: linear-gradient(160deg, var(--lagoon-deep), var(--ink));
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #d5e4e0; }
.cta-band .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ---- Breadcrumb ---------------------------------------------------------*/
.breadcrumb {
  font-size: 0.82rem;
  padding: 16px 0;
  color: var(--ink-soft);
}
.breadcrumb a {
  color: var(--lagoon);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ---- Placeholder callouts -------------------------------------------- */
.placeholder {
  background: var(--gold-pale);
  border: 1px dashed var(--gold-dark);
  color: #6b4f0a;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-block;
}

.placeholder-block {
  background: var(--gold-pale);
  border: 1px dashed var(--gold-dark);
  color: #6b4f0a;
  padding: 22px 24px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.placeholder-block strong { color: #4a3707; }

/* ---- Interim-contact notice ---------------------------------------------*/
.interim-notice {
  background: var(--lagoon-pale);
  border: 1px solid var(--lagoon-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--lagoon-deep);
}
.interim-notice strong { color: var(--ink); }

/* ---- Forms ---------------------------------------------------------------*/
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 12px 15px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--lagoon-light);
  outline-offset: 1px;
}
.form-hint {
  font-size: 0.78rem;
  color: #7a8781;
  margin-top: 4px;
}
.form-row {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.form-status {
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: #e5f2ea;
  border: 1px solid var(--success);
  color: #1f4a30;
}
.form-status.is-error {
  background: #f8e6e4;
  border: 1px solid var(--error);
  color: #6b241a;
}

/* ---- Footer ---------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #b9c6c1;
  padding: 58px 0 26px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 34px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 9px;
}
.footer-grid a {
  color: #b9c6c1;
  text-decoration: none;
}
.footer-grid a:hover {
  color: var(--white);
}
.footer-cluster {
  margin-top: 10px;
  padding-top: 10px;
}
.footer-cluster .cluster-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7f9490;
  margin-bottom: 8px;
  display: block;
}
.footer-legal {
  border-top: 1px solid var(--line-dark);
  margin-top: 42px;
  padding-top: 22px;
  font-size: 0.78rem;
  color: #869a95;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
}

/* ---- Utility -------------------------------------------------------------*/
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
