/* ==========================================================================
   Oakridge Estates LLC
   Every component below reads from the palette tokens only. The client picked
   Clay and Stone, which lives in one block at the top. Never blue and yellow.

   Light and dark: every token is light-dark(light value, dark value), and the
   browser picks a side from the color-scheme set just below. That means one
   palette block instead of two, and dark mode still works with JavaScript
   turned off because the OS preference alone can drive it.

   Reading the tokens:
     --brand / --accent   the palette colors, always readable ON --surface
     --on-brand           text that sits ON --brand, so it flips white to dark
     --panel --band --bar  surfaces that are dark in BOTH modes, footer, cta
                           band and the sticky park bar. Text on them is
                           --on-dark, which never changes.
   ========================================================================== */

/* Tells the browser which side of every light-dark() to use. No attribute on
   <html> means follow the operating system. */
:root { color-scheme: light dark; }
[data-mode='light'] { color-scheme: light; }
[data-mode='dark']  { color-scheme: dark; }

/* ---------- Palette: Clay and Stone (chosen by the client) ---------- */
:root {
  --brand:       light-dark(#93412A, #DB8465);
  --brand-deep:  light-dark(#672A18, #E89C81);
  --brand-soft:  light-dark(#F7E8E0, #2E1F19);
  --accent:      light-dark(#45513F, #9FB393);
  --accent-soft: light-dark(#E9EDE6, #212619);
  --ink:         light-dark(#2A211C, #F2EBE6);
  --ink-soft:    light-dark(#6B5B52, #B0A099);
  --surface:     light-dark(#FFFFFF, #191412);
  --surface-alt: light-dark(#F8F2EC, #211A17);
  --line:        light-dark(#EADCD2, #362A25);
  --on-brand:    light-dark(#FFFFFF, #1A0D08);
  --panel:       light-dark(#2A211C, #120D0B);
  --band:        light-dark(#672A18, #241813);
  --bar:         light-dark(#93412A, #261913);
  --band-ink:    #672A18;
}

/* ---------- Shared, palette independent ---------- */
:root {
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --sh-sm: 0 1px 2px light-dark(rgba(20, 25, 22, .06), rgba(0, 0, 0, .5));
  --sh:    0 8px 26px light-dark(rgba(20, 25, 22, .08), rgba(0, 0, 0, .55));
  --sh-lg: 0 26px 60px light-dark(rgba(20, 25, 22, .14), rgba(0, 0, 0, .7));
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Text on the surfaces that stay dark in both modes. */
  --on-dark: #FFFFFF;
  /* Sticky header, translucent over whatever is scrolling under it. */
  --header-bg: light-dark(rgba(255, 255, 255, .92), rgba(18, 21, 19, .9));
  /* Diagonal hatching on placeholders. */
  --hatch:      light-dark(rgba(0, 0, 0, .035), rgba(255, 255, 255, .05));
  --hatch-soft: light-dark(rgba(0, 0, 0, .02),  rgba(255, 255, 255, .03));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, iframe { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -.005em; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.wrap--narrow { width: min(var(--wrap-narrow), 92%); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: var(--on-brand); padding: .7rem 1.2rem;
}
.skip:focus { left: 0; }

.ico { width: 1.05em; height: 1.05em; flex: none; vertical-align: -.15em; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .8rem;
}

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

/* Placeholder marker. Anything the owners still owe us wears this. */
.tbd {
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  color: var(--ink-soft);
  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, var(--hatch) 5px, var(--hatch) 10px);
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: .05rem .6rem;
  white-space: nowrap;
}
.is-tbd { opacity: .62; cursor: default; pointer-events: none; }
.draftnote { font-size: .92rem; font-style: italic; color: var(--ink-soft); }
.empty { color: var(--ink-soft); }
.fineprint { font-size: .88rem; color: var(--ink-soft); }
.fineprint--center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: var(--on-brand); }
.btn--primary:hover { background: var(--brand-deep); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand-soft); }
.btn--light { background: var(--on-dark); color: var(--band-ink); }
.btn--outline-light { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--sm { padding: .6rem 1.05rem; font-size: .88rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }

/* ---------- Preview notice ---------- */
.notice {
  background: var(--panel); color: var(--on-dark);
  font-size: .86rem; line-height: 1.5;
}
.notice__inner { display: flex; gap: .6rem; flex-wrap: wrap; padding: .6rem 0; }
.notice strong { color: var(--on-dark); }
.notice span { opacity: .78; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--brand); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.32rem; color: var(--ink); letter-spacing: -.02em; }
.brand__sub { font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }

.navtoggle {
  display: none; margin-left: auto;
  background: none; border: 0; padding: .5rem; cursor: pointer;
}
.navtoggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.navtoggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .95rem; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: .55rem .8rem; border-radius: var(--r-sm);
  background: none; border: 0; font-family: var(--sans); cursor: pointer;
}
.nav__link:hover { background: var(--surface-alt); }
.nav__link.is-active { color: var(--brand); font-weight: 600; }
.nav__group { position: relative; }

/* ---------- Light and dark switch ---------- */
/* The icon shows the mode you are switching TO, which is why the moon is the
   one on show while the site is light. */
.modetoggle {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 500;
  color: var(--ink-soft);
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem .85rem; cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.modetoggle:hover { color: var(--ink); border-color: var(--brand); background: var(--surface-alt); }
.modetoggle[hidden] { display: none; }
.modetoggle .ico { width: 17px; height: 17px; }
.modetoggle .ico--sun { display: none; }
[data-mode='dark'] .modetoggle .ico--sun { display: block; }
[data-mode='dark'] .modetoggle .ico--moon { display: none; }
.nav__link--menu .ico { transition: transform .2s ease; }
.nav__group.is-open .nav__link--menu .ico { transform: rotate(180deg); }

.parkmenu {
  position: absolute; top: calc(100% + .5rem); left: 0; z-index: 70;
  min-width: 280px; padding: .5rem;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__group.is-open .parkmenu { opacity: 1; visibility: visible; transform: none; }
.parkmenu__all {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  padding: .5rem .75rem; border-bottom: 1px solid var(--line); margin-bottom: .35rem;
}
.parkmenu__item {
  display: flex; flex-direction: column;
  padding: .6rem .75rem; border-radius: var(--r-sm);
  text-decoration: none; color: var(--ink);
}
.parkmenu__item:hover { background: var(--brand-soft); }
.parkmenu__item.is-active { background: var(--brand-soft); }
.parkmenu__item--soon { opacity: .55; }
.parkmenu__name { font-weight: 600; font-size: .96rem; }
.parkmenu__place { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Park bar ---------- */
.parkbar {
  position: sticky; top: 76px; z-index: 50;
  background: var(--bar); color: var(--on-dark);
}
.parkbar__inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: .6rem 0; }
.parkbar__id { display: flex; align-items: baseline; gap: .55rem; }
.parkbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); align-self: center; box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
.parkbar__name { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; }
.parkbar__place { font-size: .84rem; opacity: .72; }
.parkbar__nav { margin-left: auto; display: flex; gap: .15rem; overflow-x: auto; }
.parkbar__nav a {
  font-size: .85rem; font-weight: 500; text-decoration: none;
  padding: .35rem .7rem; border-radius: 999px; white-space: nowrap; opacity: .85;
}
.parkbar__nav a:hover { background: rgba(255,255,255,.15); opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--surface-alt); }
.shead { max-width: 62ch; margin-bottom: 2.6rem; }
.shead--center { margin-inline: auto; text-align: center; }
.shead__sub { color: var(--ink-soft); margin: 0; }

/* ---------- Photo placeholder ---------- */
.photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  border: 1px dashed var(--line);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 9px, var(--hatch-soft) 9px, var(--hatch-soft) 18px),
    var(--brand-soft);
  color: var(--brand);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  overflow: hidden;
}
.photo__art { width: 44px; height: 44px; opacity: .5; }
.photo__label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; opacity: .7; }
.photo--hero { aspect-ratio: 5 / 4; }
.photo--card { aspect-ratio: 16 / 10; border-radius: var(--r) var(--r) 0 0; border-bottom: 0; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem); background: linear-gradient(180deg, var(--surface-alt), var(--surface)); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { margin-bottom: .55em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 2.2rem; }
.hero__facts { display: flex; gap: 2.2rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong { font-family: var(--serif); font-size: 1.9rem; color: var(--brand); line-height: 1; }
.hero__facts span { font-size: .84rem; color: var(--ink-soft); margin-top: .3rem; }
.hero__media { position: relative; }
.hero__badge {
  position: absolute; left: -14px; bottom: -18px;
  display: flex; align-items: center; gap: .7rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh); padding: .85rem 1.15rem; color: var(--brand);
}
.hero__badge .ico { width: 22px; height: 22px; }
.hero__badge span { display: flex; flex-direction: column; font-size: .8rem; color: var(--ink-soft); line-height: 1.35; }
.hero__badge strong { color: var(--ink); font-size: .93rem; }

/* ---------- Page head ---------- */
.phead { padding: clamp(2.6rem, 5vw, 4.2rem) 0 clamp(1.5rem, 3vw, 2.4rem); background: var(--surface-alt); border-bottom: 1px solid var(--line); }

/* ---------- Park cards ---------- */
/* auto-fill, not auto-fit: a state with a single location keeps a normal sized
   card instead of one stretched across the whole row. */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.pcard {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.pcard--soon { opacity: .82; }
.pcard__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pcard__flag {
  align-self: flex-start;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: .25rem .65rem; border-radius: 999px; margin-bottom: .8rem;
}
.pcard__name { margin: 0 0 .25rem; font-size: 1.45rem; }
.pcard__place { display: flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--ink-soft); margin: 0 0 .9rem; }
.pcard__blurb { color: var(--ink-soft); font-size: .96rem; }
.pcard__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin: .4rem 0 1.2rem; font-size: .88rem; color: var(--ink-soft); }
.pcard__meta li { display: flex; align-items: center; gap: .4rem; }
.pcard__link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--brand); text-decoration: none; }
.pcard__link:hover { gap: .65rem; }
.pcard__actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .5rem; }

/* ---------- State groups on the locations page ---------- */
.stategroup + .stategroup { margin-top: clamp(2.6rem, 5vw, 4rem); }
.statehead {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: .8rem; margin-bottom: 1.6rem;
  border-bottom: 2px solid var(--brand-soft);
}
.statehead h2 { margin: 0; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.statehead__count {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: .22rem .65rem; border-radius: 999px;
}

/* State divider inside the header dropdown */
.parkmenu__state {
  display: block; padding: .6rem .75rem .15rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Park rows (communities index) ---------- */
.prows { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4.5rem); }
.prow { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.prow--flip .prow__media { order: 2; }
.prow--soon { opacity: .8; }
.prow__place { display: flex; align-items: center; gap: .4rem; color: var(--ink-soft); font-size: .95rem; margin: 0 0 1rem; }
.prow__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin: 0 0 1.5rem; font-size: .9rem; color: var(--ink-soft); }
.prow__meta li { display: flex; align-items: center; gap: .4rem; }

/* ---------- Feature grid ---------- */
.fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.4rem; }
.fcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; }
.fcard .ico { width: 26px; height: 26px; color: var(--accent); margin-bottom: .9rem; }
.fcard h3 { margin: 0 0 .45rem; }
.fcard p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; counter-reset: s; }
.step { position: relative; padding-top: 1.4rem; border-top: 3px solid var(--brand-soft); }
.step__n { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--brand); line-height: 1; display: block; margin-bottom: .5rem; }
.step h3 { margin: 0 0 .4rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4.5vw, 3.6rem); align-items: center; }
.split--wide { grid-template-columns: 1fr 1.15fr; }
.split__copy h2 { margin-top: 0; }
.split__copy p { color: var(--ink-soft); }
.inlinecta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* ---------- Glance strip ---------- */
.glance { background: var(--surface-alt); border-bottom: 1px solid var(--line); }
.glance__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem 2rem; padding: 1.6rem 0; }
.glance__item { display: flex; flex-direction: column; gap: .25rem; }
.glance__k { display: flex; align-items: center; gap: .4rem; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.glance__v { font-weight: 600; }
.glance__v--big { font-size: 1.15rem; margin: 0 0 .2rem; }

/* ---------- Park hero ---------- */
.phero { padding: clamp(2.6rem, 5vw, 4.4rem) 0; }
.phero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.phero h1 { margin-bottom: .4em; }
.phero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- Availability ---------- */
.agrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.acard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; }
.acard__ico { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); margin-bottom: 1rem; }
.acard__ico .ico { width: 21px; height: 21px; }
.acard h3 { margin: 0 0 .35rem; }
.acard__count { margin: 0 0 .6rem; color: var(--ink-soft); }
.acard__count strong { font-family: var(--serif); font-size: 1.5rem; color: var(--brand); }
.acard__body { margin: 0; font-size: .93rem; color: var(--ink-soft); }

.notebox {
  display: flex; gap: .9rem; align-items: flex-start;
  margin-top: 1.8rem; padding: 1.2rem 1.4rem;
  background: var(--accent-soft); border-radius: var(--r); color: var(--ink);
}
.notebox .ico { width: 22px; height: 22px; color: var(--accent); margin-top: .2rem; }
.notebox p { margin: 0; font-size: .94rem; }

/* ---------- Checklists ---------- */
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .8rem 1.6rem; }
.checks li { display: flex; align-items: flex-start; gap: .6rem; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.checks .ico { color: var(--accent); margin-top: .28em; }
.checks--tight { grid-template-columns: 1fr; gap: 0; }
.mini { font-size: 1rem; margin: 1.6rem 0 .4rem; }

/* ---------- Gallery ---------- */
.ggrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }

/* ---------- Map ---------- */
.map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.map iframe { width: 100%; height: 380px; border: 0; }
/* Google serves the embed light whatever we do, so take the glare off it in
   dark mode. Two selectors because this is not a color and cannot ride on a
   light-dark() token like everything else. */
[data-mode='dark'] .map iframe { filter: brightness(.85) contrast(1.06); }
@media (prefers-color-scheme: dark) {
  :root:not([data-mode='light']) .map iframe { filter: brightness(.85) contrast(1.06); }
}

/* ---------- Contact row ---------- */
.contactrow { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.2rem; }

/* ---------- Other communities ---------- */
.othergrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.other {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1.4rem; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color .18s ease, transform .18s ease;
}
.other:hover { border-color: var(--brand); transform: translateY(-2px); }
.other__name { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.other__place { display: flex; align-items: center; gap: .4rem; font-size: .87rem; color: var(--ink-soft); }
.other__go { margin-top: .7rem; display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 600; color: var(--brand); }
.other--all { background: var(--brand-soft); border-style: dashed; }

/* ---------- Resident quick cards ---------- */
.qgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.qcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; display: flex; flex-direction: column; }
.qcard__ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); margin-bottom: 1rem; }
.qcard__ico .ico { width: 22px; height: 22px; }
.qcard h2 { font-size: 1.3rem; margin: 0 0 .5rem; }
.qcard p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.qcard .btn { align-self: flex-start; }

.alert { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: var(--r); padding: 1.6rem 1.8rem; }
.alert__ico { color: var(--accent); }
.alert__ico .ico { width: 26px; height: 26px; }
.alert h2 { font-size: 1.3rem; margin: 0 0 .5rem; }
.alert p { margin: 0 0 .5rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Directory ---------- */
.dirgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.dir { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; }
.dir h3 { margin: 0 0 .3rem; font-size: 1.25rem; }
.dir__place { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--ink-soft); margin: 0 0 1rem; }
.dir__list { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.1rem; }
.dir__list li { display: flex; align-items: center; gap: .55rem; font-size: .95rem; }
.dir__list .ico { color: var(--accent); }
.dir__list--big li { font-size: 1.05rem; }
.dir__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--brand); text-decoration: none; font-size: .93rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 0 1.4rem; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none; cursor: pointer;
  padding: 1.1rem 0; font-weight: 600;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ico { color: var(--accent); transition: transform .2s ease; }
.faq__item[open] summary .ico { transform: rotate(180deg); }
.faq__item p { margin: 0 0 1.2rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Seller box ---------- */
.sellerbox { background: var(--brand-soft); border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 3rem); text-align: center; }
.sellerbox h2 { margin-top: 0; }
.sellerbox p { color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }

/* ---------- CTA band ---------- */
.band { background: var(--band); color: var(--on-dark); padding: clamp(2.6rem, 5vw, 4rem) 0; }
.band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.band__title { margin: 0 0 .4rem; color: var(--on-dark); }
.band__body { margin: 0; opacity: .8; max-width: 52ch; }
.band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Footer ---------- */
.footer { background: var(--panel); color: rgba(255,255,255,.72); padding: clamp(3rem, 5vw, 4.5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer .brand { color: rgba(255,255,255,.9); }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255,255,255,.55); }
.footer__blurb { margin-top: 1rem; font-size: .93rem; max-width: 34ch; }
.footer__head { font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin: 0 0 1rem; }
.footer__list { display: flex; flex-direction: column; gap: .55rem; font-size: .94rem; }
.footer__list a { text-decoration: none; }
.footer__list a:hover { color: #fff; }
.footer__soon { opacity: .5; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; }
.footer__bar p { margin: 0; }
.footer__legal { opacity: .6; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner, .phero__inner, .split, .split--wide, .prow { grid-template-columns: 1fr; }
  .prow--flip .prow__media { order: 0; }
  .hero__media { order: -1; }
  .hero__badge { left: auto; right: 10px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 90px; }
  .navtoggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .8rem 4%; box-shadow: var(--sh);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: .8rem .6rem; }
  .nav .btn { justify-content: center; margin-top: .5rem; }
  .nav .modetoggle { justify-content: center; margin-top: .6rem; }
  .parkmenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin-left: .6rem; padding: 0 0 0 .6rem;
    display: none;
  }
  .nav__group.is-open .parkmenu { display: block; }
  .parkbar { position: static; }
  .parkbar__inner { padding: .7rem 0; }
  .parkbar__nav { margin-left: 0; width: 100%; padding-bottom: .2rem; }
  .hero__facts { gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Clickable location cards ---------- */
.pcard__media { display: block; color: inherit; text-decoration: none; }
.pcard__name a { color: inherit; text-decoration: none; }
.pcard__name a:hover { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.glance__v a { color: inherit; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.glance__v a:hover { color: var(--brand); text-decoration-color: currentColor; }

/* ---------- Resident app note, phones only (site.js adds .is-phone) ---------- */
.appnote { display: none; margin-top: 1.2rem; }
.is-phone .appnote { display: block; }
.appnote a { color: var(--brand); font-weight: 600; }

/* ---------- Park cover images (uncropped, the banners carry text to the edges) ---------- */
.cover { display: block; width: 100%; height: auto; border-radius: var(--r); box-shadow: var(--sh); }
.cover--card { border-radius: 0; box-shadow: none; }

/* ---------- Community rules page ---------- */
.rules { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.rules__toc { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow: auto; padding: 1.1rem 1.2rem; background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--r); font-size: .88rem; }
.rules__tochead { margin: 0 0 .6rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.rules__toc ol { margin: 0; padding-left: 1.3rem; display: flex; flex-direction: column; gap: .35rem; color: var(--ink-soft); }
.rules__toc a { color: var(--ink); text-decoration: none; }
.rules__toc a:hover { color: var(--brand); text-decoration: underline; }
.rules__body { min-width: 0; }
.rules__sec { padding: 0 0 1.8rem; margin: 0 0 1.8rem; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.rules__sec h2 { display: flex; align-items: center; gap: .7rem; font-size: 1.35rem; margin: 0 0 .9rem; }
.rules__n { flex: none; display: inline-grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-family: var(--sans); font-size: .85rem; font-weight: 700; }
.rules__list { margin: 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .5rem; list-style: disc; }
.rules__list li::marker { color: var(--brand); }
.rules__sub { margin: .45rem 0 .2rem; padding-left: 1.2rem; list-style: circle; display: flex; flex-direction: column; gap: .3rem; }
.rules__ack { border-bottom: 0; padding: 1.4rem 1.5rem; background: var(--accent-soft); border-radius: var(--r); }
@media (max-width: 860px) {
  .rules { grid-template-columns: 1fr; gap: 1.6rem; }
  .rules__toc { position: static; max-height: none; }
  .rules__toc ol { columns: 2; display: block; }
  .rules__toc li { margin-bottom: .35rem; break-inside: avoid; }
}
@media (max-width: 480px) { .rules__toc ol { columns: 1; } }
.glance__note { display: block; margin-top: .3rem; font-size: .8rem; color: var(--ink-soft); line-height: 1.4; }
