:root {
  color-scheme: light;
  --forest: #163a31;
  --deep: #102b25;
  --leaf: #2d6448;
  --lake: #377f8d;
  --lake-pale: #dcebea;
  --cream: #f4f1e9;
  --paper: #fffefa;
  --sand: #e6dcc5;
  --ink: #17251f;
  --muted: #57675e;
  --line: #d9ded5;
  --shadow: 0 18px 55px rgba(21, 50, 40, .12);
  --radius: 18px;
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; line-height: 1.65; background: var(--paper); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--leaf); text-underline-offset: .2em; }
a:hover { color: var(--deep); }
.skip-link { position: absolute; left: -9999px; top: 0; padding: .7rem 1rem; z-index: 100; background: white; }
.skip-link:focus { left: 1rem; top: 1rem; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: relative; z-index: 3; background: rgba(255,254,250,.97); border-bottom: 1px solid rgba(22,58,49,.10); }
.header-row { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--forest); text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; background: var(--forest); display: grid; place-items: center; color: white; box-shadow: 0 5px 14px #163a3133; }
.brand-mark svg { width: 27px; height: 27px; }
.brand-name { display: grid; line-height: 1.1; font-weight: 750; letter-spacing: -.035em; font-size: 17px; }
.brand-name small { margin-top: 5px; color: var(--muted); font-weight: 550; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 27px); }
.nav a { font-size: 13px; font-weight: 650; letter-spacing: .025em; text-decoration: none; color: #43564d; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--leaf); }
.nav .nav-contact { padding: 10px 17px; border: 1px solid var(--forest); border-radius: 999px; color: var(--forest); }
.nav .nav-contact:hover { color: white; background: var(--forest); }
.mobile-contact { display: none; }
.hero { position: relative; min-height: 545px; display: grid; align-items: center; isolation: isolate; color: white; background: var(--deep); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(90deg, rgba(9,35,28,.84) 0%, rgba(9,35,28,.63) 44%, rgba(9,35,28,.08) 100%), url("/hero-lakeview.jpg"); background-size: cover; background-position: center 55%; }
.hero-inner { padding-block: 80px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #d6ead5; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 750; }
.eyebrow::before { content: ""; width: 25px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 18px 0 18px; max-width: 760px; font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -.055em; font-weight: 760; }
.hero-copy { max-width: 610px; margin-bottom: 28px; color: rgba(255,255,255,.9); font-size: clamp(17px, 2vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 20px; border: 1px solid transparent; border-radius: 999px; background: var(--leaf); color: white; font-weight: 700; font-size: 14px; text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { color: white; background: var(--deep); transform: translateY(-2px); }
.button--light { background: #fffefa; color: var(--forest); }
.button--light:hover { color: var(--forest); background: #eaf1e8; }
.button--outline { border-color: rgba(255,255,255,.78); background: transparent; color: white; }
.button--outline:hover { border-color: white; color: var(--forest); background: white; }
.quickfacts { position: relative; margin-top: -28px; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); padding: 24px 10px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.quickfact { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 10px; border-right: 1px solid var(--line); }
.quickfact:last-child { border: 0; }
.quickfact strong { display: block; color: var(--forest); line-height: 1.25; font-size: 16px; }
.quickfact span { display: block; color: var(--muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.fact-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--leaf); border-radius: 50%; background: #eaf1e8; font-size: 19px; }
.section { padding-block: 82px; }
.section--cream { background: var(--cream); }
.section--green { background: var(--forest); color: white; }
.section--green h2, .section--green h3 { color: white; }
.section--green p { color: rgba(255,255,255,.77); }
.section-head { max-width: 700px; margin: 0 auto 38px; text-align: center; }
.section-head .eyebrow { color: var(--leaf); }
.section--green .section-head .eyebrow { color: #c5dfc9; }
h2 { margin-bottom: 14px; color: var(--forest); font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.045em; }
h3 { margin-bottom: 10px; color: var(--forest); font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.intro-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.intro-photo { position: relative; }
.intro-photo img { width: 100%; aspect-ratio: 1.15; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.photo-note { position: absolute; left: -14px; bottom: 22px; max-width: 250px; padding: 15px 18px; border-radius: 14px; background: white; box-shadow: var(--shadow); color: var(--forest); font-size: 13px; font-weight: 700; }
.intro-copy p { color: var(--muted); font-size: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; text-decoration-thickness: 1px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { overflow: hidden; border: 1px solid rgba(22,58,49,.09); border-radius: var(--radius); background: white; box-shadow: 0 6px 25px rgba(21,50,40,.06); }
.card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.card-body { padding: 23px 24px 26px; }
.card-body p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.card-kicker { margin-bottom: 8px; color: var(--lake); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 34px 40px; border-radius: 22px; background: var(--lake-pale); }
.callout h2 { margin: 0; font-size: 30px; }
.callout p { margin: 8px 0 0; color: var(--muted); }
.page-intro { padding: 74px 0 42px; background: var(--cream); }
.page-intro .eyebrow { color: var(--leaf); }
.page-intro h1 { max-width: 850px; margin-bottom: 12px; color: var(--forest); font-size: clamp(40px, 5vw, 60px); }
.page-intro p { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.page-content { padding: 56px 0 86px; }
.page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.info-card p:last-child, .info-card ul:last-child { margin-bottom: 0; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-item { padding: 21px 22px; border-radius: 15px; background: white; border: 1px solid rgba(22,58,49,.09); }
.feature-item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.notice { padding: 20px 22px; border-left: 4px solid #a18550; border-radius: 0 12px 12px 0; background: #f6f0e4; color: #504632; }
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 26px; align-items: stretch; }
.contact-card { padding: 36px; color: white; border-radius: 22px; background: var(--forest); }
.contact-card h2 { color: white; font-size: 30px; }
.contact-card p { color: rgba(255,255,255,.78); }
.contact-list { display: grid; gap: 16px; margin-top: 26px; }
.contact-row { display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: #fff; }
.contact-row b { display: block; color: #c5dfc9; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.contact-row a, .contact-row span { color: white; }
.map-wrap { padding: 12px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.map-wrap img { width: 100%; height: 100%; min-height: 360px; object-fit: contain; border-radius: 14px; background: #e7ece5; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 16px; background: white; box-shadow: 0 5px 20px rgba(21,50,40,.07); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { padding: 12px 15px; color: var(--muted); font-size: 13px; }
.gallery .tall { grid-row: span 2; }
.gallery .tall img { height: calc(100% - 48px); aspect-ratio: auto; }
.rules-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.rules-list article { padding: 22px; border-radius: 15px; border: 1px solid var(--line); background: white; }
.rules-list p { margin: 0; color: var(--muted); font-size: 14px; }
.site-footer { padding: 54px 0 25px; background: var(--deep); color: rgba(255,255,255,.73); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 38px; padding-bottom: 36px; }
.site-footer .brand { color: white; }
.site-footer .brand-name small { color: rgba(255,255,255,.6); }
.site-footer h3 { color: white; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer p, .site-footer li { font-size: 13px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.site-footer a { color: white; }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.57); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.75); }
.small-print { margin-top: 22px; color: var(--muted); font-size: 12px; }
@media (max-width: 920px) {
  .header-row { min-height: 74px; flex-wrap: wrap; padding-block: 12px; }
  .nav { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 10px 18px; padding-bottom: 8px; }
  .nav a { font-size: 12px; }
  .hero { min-height: 500px; }
  .quickfacts { grid-template-columns: repeat(2, 1fr); gap: 18px 0; margin-top: -22px; }
  .quickfact:nth-child(2) { border: 0; }
  .intro-grid { gap: 34px; }
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 30px, 1160px); }
  .header-row { gap: 10px; }
  .brand { gap: 9px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-name { font-size: 15px; }
  .brand-name small { font-size: 9px; }
  .nav { gap: 8px 15px; overflow: visible; }
  .nav .nav-contact { display: none; }
  .mobile-contact { display: inline-flex; align-items: center; justify-content: center; padding: 8px 13px; border: 1px solid var(--forest); border-radius: 999px; color: var(--forest); font-size: 12px; font-weight: 700; text-decoration: none; }
  .hero { min-height: 510px; align-items: end; }
  .hero::before { background-image: linear-gradient(0deg, rgba(9,35,28,.91) 0%, rgba(9,35,28,.64) 55%, rgba(9,35,28,.09) 100%), url("/hero-lakeview.jpg"); background-position: 60% center; }
  .hero-inner { padding-block: 60px 74px; }
  h1 { font-size: clamp(42px, 13vw, 60px); }
  .quickfacts { padding: 18px 6px; gap: 16px 0; }
  .quickfact { justify-content: flex-start; padding-inline: 10px; }
  .quickfact strong { font-size: 14px; }
  .quickfact span { font-size: 9px; }
  .fact-icon { width: 31px; height: 31px; font-size: 15px; }
  .section { padding-block: 60px; }
  .intro-grid, .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .intro-photo { order: -1; }
  .intro-photo img { aspect-ratio: 1.35; }
  .card-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .tall { grid-row: auto; }
  .gallery .tall img { height: auto; aspect-ratio: 4 / 3; }
  .feature-list, .rules-list, .page-grid { grid-template-columns: 1fr; }
  .callout { align-items: flex-start; flex-direction: column; padding: 26px; }
  .page-intro { padding: 54px 0 30px; }
  .page-content { padding: 34px 0 62px; }
  .contact-card { padding: 27px; }
  .map-wrap img { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }
