/* ============================================================
   HTown RV Parks — design system + public site
   Friendly, warm, BIG and simple (phone-first, low-literacy UX)
   ============================================================ */
:root {
  --pine: #1b4332;
  --pine-2: #2d6a4f;
  --leaf: #74c69d;
  --leaf-soft: #d8f3dc;
  --cream: #fdf6ec;
  --sand: #f6ead7;
  --sunset: #e76f51;
  --sunset-2: #bc4b27;
  --amber: #f4a261;
  --gold: #ffd166;
  --ink: #21302a;
  --radius: 18px;
  --shadow: 0 6px 24px rgba(27, 67, 50, .14);
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Shared semantic visual foundations. */
  --color-brand-pine: var(--pine);
  --color-brand-leaf: var(--pine-2);
  --color-brand-leaf-soft: var(--leaf-soft);
  --color-brand-cream: var(--cream);
  --color-brand-sand: var(--sand);
  --color-brand-coral: var(--sunset);
  --color-brand-coral-strong: var(--sunset-2);
  --color-brand-gold: var(--gold);
  --color-text: var(--ink);
  --color-text-muted: #5b6f64;
  --color-surface: #ffffff;
  --color-surface-quiet: #f2f5f1;
  --color-border: #e4e0d3;
  --color-focus: #e9a23b;
  --color-danger: #c1121f;

  --font-body: var(--font);
  --font-marketing-heading: var(--font-head);
  --font-size-xs: .75rem;
  --font-size-sm: .875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --line-height-tight: 1.2;
  --line-height-body: 1.55;

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  --border-thin: 1px;
  --border-strong: 2px;
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: var(--radius);
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, .08);
  --shadow-md: var(--shadow);
  --shadow-lg: 0 12px 44px rgba(27, 67, 50, .22);
  --focus-ring: 0 0 0 3px var(--color-focus);
  --focus-offset: 3px;

  --control-height-sm: 2.5rem;
  --control-height-md: 2.75rem;
  --control-height-lg: 3rem;
  --touch-target-min: 2.75rem;
  --content-public: 67.5rem;
  --content-reading: 47.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--pine-2); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; color: var(--pine); line-height: 1.18; }
.section { padding: 64px 22px; max-width: 1160px; margin: 0 auto; }
.section-title { font-size: clamp(26px, 4.5vw, 38px); text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: #5b6f64; max-width: 620px; margin: 0 auto 36px; font-size: 17px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: var(--focus-offset);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 800; font-size: 18px;
  min-height: var(--touch-target-min); padding: 13px 22px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: var(--shadow-sm);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--sunset); color: #fff; }
.btn-primary:hover { background: var(--sunset-2); }
.btn-secondary { background: var(--pine-2); color: #fff; }
.btn-secondary:hover { background: var(--pine); }
.btn-ghost { background: #fff; color: var(--pine); border: 2px solid var(--pine-2); box-shadow: none; }
.btn-big { font-size: 18px; padding: 14px 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 246, 236, .97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-in { max-width: 1260px; min-height: 72px; margin: 0 auto; display: flex; align-items: center; gap: 14px; padding: 9px 22px; }
.logo { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; min-height: var(--touch-target-min); text-decoration: none; }
.logo svg { width: 46px; height: 46px; }
.logo-name { font-family: var(--font-head); font-weight: 700; color: var(--pine); font-size: 19px; line-height: 1.05; white-space: nowrap; }
.logo-name small { display: block; font-size: 11px; color: var(--sunset-2); letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-target-min);
  text-decoration: none;
  font-weight: 700;
  color: var(--pine);
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
}
.nav a:hover { background: var(--leaf-soft); }
.nav .nav-phone { background: var(--pine-2); color: #fff; border-radius: 999px; padding: 10px 18px; }
.lang-toggle {
  border: 2px solid var(--pine-2); background: #fff; color: var(--pine);
  min-height: var(--touch-target-min); font-weight: 900; font-family: var(--font); border-radius: 999px; padding: 7px 14px; cursor: pointer; font-size: 14px;
}
.menu-btn { display: none; min-width: 44px; min-height: 44px; margin-left: auto; background: none; border: none; font-size: 30px; color: var(--pine); cursor: pointer; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  width: min(calc(100% - 44px), 1160px);
  min-height: clamp(320px, 35vw, 410px);
  margin: 24px auto 0;
  border-radius: 22px 22px 0 0;
  background: url("../images/Mainbackground.webp") center 58% / cover no-repeat;
}
.hero-message-band {
  width: min(calc(100% - 44px), 1160px);
  margin: 0 auto;
  color: #fff;
  background: var(--pine);
  border-radius: 0 0 22px 22px;
}
.hero-message-in {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 34px;
  align-items: center;
  padding: 32px 36px 36px;
}
.hero-copy { min-width: 0; }
.hero-copy-park { display: flex; align-items: center; gap: 20px; }
.hero-message-band h1 { color: #fff; font-size: clamp(32px, 5vw, 50px); max-width: 660px; }
.hero-message-band p.tag { color: var(--leaf-soft); font-size: clamp(18px, 2.4vw, 22px); font-weight: 600; margin-top: 12px; max-width: 650px; }
.hero-ctas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.hero-ctas .btn { width: 100%; min-width: 0; }
.hero-ctas .btn-primary { background: var(--sunset); }
.hero-ctas .btn-secondary { background: transparent; border: 1px solid rgba(255,255,255,.65); }
.hero-ctas .btn-ghost { grid-column: 1 / -1; color: var(--pine); background: var(--gold); border-color: var(--gold); }
.trust-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - 88px), 1080px);
  margin: 0 auto;
  background: var(--sand);
  border-bottom: 1px solid var(--color-border);
}
.trust-chips span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--pine);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  border-right: 1px solid rgba(27, 67, 50, .16);
}
.trust-chips span:last-child { border-right: 0; }

/* ---------- sub-page hero banner ---------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  width: min(calc(100% - 44px), 1160px);
  min-height: clamp(270px, 32vw, 350px);
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, .18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 45, 34, .2) 0%, rgba(20, 45, 34, .76) 100%),
    url("../images/entrance-road.jpg") center 60% / cover no-repeat;
}
.page-hero .hero-in { width: 100%; max-width: 1080px; margin: 0 auto; padding: 110px 36px 38px; }
.page-hero h1 { color: #fff; font-size: clamp(31px, 5vw, 48px); text-shadow: 0 2px 14px rgba(0,0,0,.32); }
.page-hero p.tag { color: #fff4e8; font-size: clamp(17px, 2.4vw, 21px); font-weight: 600; margin: 10px 0 0; max-width: 680px; text-shadow: 0 1px 8px rgba(0,0,0,.38); }
.page-hero.ph-homes { background-image: linear-gradient(180deg, rgba(20,45,34,.18), rgba(20,45,34,.78)), url("../images/rv-exterior-puma.jpg"); }
.page-hero.ph-amen { background-image: linear-gradient(180deg, rgba(20,45,34,.16), rgba(20,45,34,.76)), url("../images/picnic-table.jpg"); }
.page-hero.ph-map { background-image: linear-gradient(180deg, rgba(20,45,34,.18), rgba(20,45,34,.78)), url("../images/entrance-road.jpg"); }
.page-hero.ph-reviews { background-image: linear-gradient(180deg, rgba(20,45,34,.16), rgba(20,45,34,.76)), url("../images/hero-rv.jpg"); }
.page-hero.ph-faq { background-image: linear-gradient(180deg, rgba(20,45,34,.18), rgba(20,45,34,.78)), url("../images/office-laundry.jpg"); }
.page-hero.ph-apply { background-image: linear-gradient(180deg, rgba(20,45,34,.16), rgba(20,45,34,.76)), url("../images/rv-large-interior.jpg"); }

/* ---------- secondary public page rhythm ---------- */
.secondary-section { padding-top: 54px; padding-bottom: 54px; }
.secondary-section-sizes,
.secondary-section-steps,
.secondary-section-gallery { padding-top: 18px; }
.secondary-section-amenities { padding-bottom: 36px; }
.secondary-section-amenities .amenities { max-width: 1020px; margin: 0 auto; }
.secondary-section-amenities .amenity { padding-block: 24px; }
.secondary-section-map { max-width: 1204px; }
.secondary-section-map .map-wrap { overflow-x: auto; overscroll-behavior-inline: contain; }
.secondary-section-reviews .reviews { max-width: 1040px; margin: 0 auto; }
.secondary-section-reviews .review:nth-child(even) { background: var(--sand); }
.secondary-section-gallery .gallery figure { border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.secondary-section-gallery .gallery img { height: auto; aspect-ratio: 4 / 3; }
.secondary-section-gallery .gallery figcaption { min-height: 48px; padding-block: 12px; }
.secondary-section-steps .step { border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.secondary-section-visit {
  width: min(calc(100% - 44px), 760px);
  margin: 0 auto 64px;
  padding: 34px;
  text-align: center;
  background: var(--sand);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.secondary-section-visit .section-sub { margin-bottom: 0; }
.public-secondary-main > .cta-band {
  width: min(calc(100% - 44px), 1160px);
  margin: 18px auto 0;
  border-radius: 20px;
}

/* ---------- section teaser link + CTA band ---------- */
.teaser-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-target-min);
  text-align: center;
  margin-top: 26px;
  font-weight: 800;
  font-size: 17px;
  color: var(--pine-2);
}
.cta-band { background: var(--pine-2); color: #fff; text-align: center; padding: 52px 20px; margin-top: 60px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 36px); }
.cta-band p { color: #d8f3dc; font-size: 17px; margin: 10px auto 22px; max-width: 520px; }
.cta-band .btn-primary { background: var(--gold); color: var(--pine); }
.cta-band .btn-primary:hover { background: #f4c94f; }

/* ---------- photo gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.gallery figure { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 190px; object-fit: cover; display: block; }
.gallery figcaption { padding: 10px 14px; font-weight: 700; font-size: 14px; color: var(--pine); }

/* ---------- reviews page extras ---------- */
.review-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.review .who a { color: var(--pine-2); text-decoration: none; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 8px 18px; font-weight: 800; color: var(--pine); box-shadow: var(--shadow); font-size: 15px; }

/* ---------- office details ---------- */
.info-bar { padding: 18px 22px 0; color: var(--pine); background: transparent; border: 0; }
.info-bar-in {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  font-size: 15.5px;
  font-weight: 700;
}
.info-bar-in > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 54px;
  padding: 12px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.info-bar a {
  display: inline;
  min-height: 0;
  padding: 0;
  color: var(--sunset-2);
  font-weight: 900;
  text-decoration: none;
}

/* ---------- pricing cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 22px; }
.card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; border: 1px solid var(--color-border); transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-4px); }
.card.featured { border: 2px solid var(--pine-2); }
.card-img { height: 150px; background-size: cover; background-position: center; position: relative; }
.card-badge { position: absolute; top: 10px; left: 10px; background: var(--sunset); color: #fff; font-size: 12.5px; font-weight: 900; padding: 5px 12px; border-radius: 999px; }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 20px; }
.card-price { font-size: 30px; font-weight: 900; color: var(--sunset-2); }
.card-price small { font-size: 15px; color: #5b6f64; font-weight: 700; }
.card-list { list-style: none; color: #41544a; font-size: 15px; font-weight: 600; }
.card-list li { padding: 3px 0; }
.card .btn { margin-top: auto; font-size: 16px; padding: 12px 18px; }
.avail-note { text-align: center; margin-top: 26px; font-weight: 800; color: var(--pine-2); font-size: 18px; }

/* ---------- amenities ---------- */
.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.amenity { background: var(--sand); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px 14px; text-align: center; box-shadow: none; }
.amenity .ico { font-size: 34px; }
.amenity p { font-weight: 800; color: var(--pine); margin-top: 8px; font-size: 15px; }

/* ---------- map ---------- */
.map-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 18px; }
.map-note { text-align: center; font-size: 14px; color: var(--color-text-muted); margin-top: 12px; font-weight: 600; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); text-align: center; }
.step .num { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; background: var(--gold); color: var(--pine); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; }
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: #5b6f64; font-size: 15.5px; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.review { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.review .stars { color: var(--amber); font-size: 19px; letter-spacing: 2px; }
.review p { font-size: 15.5px; color: #41544a; margin: 10px 0 12px; font-style: italic; }
.review .who { font-weight: 800; color: var(--pine); font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item[open] { border-color: rgba(45, 106, 79, .48); }
.faq-item summary { cursor: pointer; min-height: 60px; font-weight: 800; color: var(--pine); padding: 18px 20px; font-size: 16.5px; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--sunset); font-weight: 900; }
.faq-item[open] summary::after { content: "–"; }
.faq-item div { padding: 0 20px 18px; color: #41544a; font-size: 15.5px; }

/* ---------- apply form ---------- */
.apply-card { max-width: 680px; margin: 0 auto; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 32px 30px; }
.apply-card label { font-weight: 800; color: var(--pine); display: block; margin: 16px 0 6px; font-size: 16px; }
.apply-card input, .apply-card select, .apply-card textarea {
  width: 100%; min-height: 50px; font-family: var(--font); font-size: 17px; padding: 12px 14px;
  border: 2px solid var(--color-border); border-radius: var(--radius-sm); background: var(--cream);
}
.apply-card input:focus, .apply-card select:focus, .apply-card textarea:focus { outline: 3px solid var(--color-focus); outline-offset: 2px; border-color: var(--pine-2); }
.apply-card .btn { width: 100%; margin-top: 22px; }
.apply-ok { text-align: center; padding: 30px 10px; }
.apply-ok .big { font-size: 52px; }
.apply-ok h3 { font-size: 24px; margin: 10px 0; }

/* ---------- resident maintenance ---------- */
body.resident-page {
  min-height: 100dvh;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, var(--color-brand-leaf-soft) 0, rgba(216, 243, 220, 0) 240px),
    var(--color-brand-cream);
}
.resident-topnav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 64px;
  padding: 10px max(16px, calc((100% - 720px) / 2));
  color: #fff;
  background: var(--color-brand-pine);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow-sm);
}
.resident-topnav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-target-min);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.resident-topnav a:hover { text-decoration: underline; }
.resident-topnav .lang-toggle {
  flex: 0 0 auto;
  min-height: var(--touch-target-min);
  margin-left: auto;
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .62);
  border-radius: var(--radius-sm);
}
.resident-topnav .lang-toggle:hover { background: rgba(255, 255, 255, .1); }
.t-wrap {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px) 16px 72px;
}
.t-card {
  margin-bottom: var(--space-4);
  padding: clamp(22px, 4vw, 32px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.t-card h1,
.t-card h2 {
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  line-height: var(--line-height-tight);
}
.t-card p.sub {
  max-width: 58ch;
  margin-bottom: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--font-size-md);
}
.t-card label {
  display: block;
  margin: var(--space-3) 0 var(--space-2);
  color: var(--color-text);
  font-weight: 800;
}
.t-card input,
.t-card select,
.t-card textarea {
  width: 100%;
  min-height: 52px;
  margin-bottom: var(--space-3);
  padding: 12px 14px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  background: var(--color-brand-cream);
  border: var(--border-strong) solid var(--color-border);
  border-radius: var(--radius-sm);
}
.t-card textarea {
  min-height: 112px;
  line-height: var(--line-height-body);
  resize: vertical;
}
.t-card input:hover,
.t-card select:hover,
.t-card textarea:hover { border-color: rgba(45, 106, 79, .45); }
.t-card input:focus,
.t-card select:focus,
.t-card textarea:focus { border-color: var(--color-brand-leaf); }
.resident-primary-action {
  width: 100%;
  margin-top: var(--space-2);
}
.resident-primary-action:disabled {
  cursor: wait;
  opacity: .68;
}
.resident-error {
  display: none;
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--color-brand-coral-strong);
  font-weight: 700;
  background: #fff6f2;
  border: 1px solid rgba(188, 75, 39, .28);
  border-radius: var(--radius-sm);
}
.verified {
  margin-bottom: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: #eef7f1;
  border: 1px solid rgba(45, 106, 79, .22);
  border-left: 5px solid var(--color-brand-leaf);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.resident-verified strong {
  display: block;
  color: var(--color-brand-pine);
  font-size: var(--font-size-lg);
}
.resident-verified #verifiedLine {
  margin-top: var(--space-1);
  color: var(--color-text-muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.text-btn {
  min-height: var(--touch-target-min);
  margin-top: var(--space-2);
  padding: 8px 0;
  color: var(--color-brand-pine);
  font: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: underline;
  background: none;
  border: 0;
  cursor: pointer;
}
.big-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}
.cat-btn {
  min-width: 0;
  min-height: 112px;
  padding: var(--space-4) var(--space-3);
  color: var(--color-brand-pine);
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  background: var(--color-brand-cream);
  border: var(--border-strong) solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .12s ease, background-color .12s ease, box-shadow .12s ease;
}
.cat-btn:hover {
  background: var(--color-brand-leaf-soft);
  border-color: rgba(45, 106, 79, .42);
}
.cat-btn .ico {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 1.85rem;
  line-height: 1;
}
.cat-btn.sel {
  background: #fff1ea;
  border-color: var(--color-brand-coral-strong);
  box-shadow: inset 0 0 0 1px var(--color-brand-coral-strong);
}
.resident-urgency-label { margin-top: var(--space-5) !important; }
.resident-disclaimer {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  border-top: 1px solid var(--color-border);
}
.okbox {
  padding: var(--space-5) var(--space-3) var(--space-2);
  text-align: center;
}
.okbox .big {
  margin-bottom: var(--space-2);
  font-size: 3rem;
  line-height: 1;
}
.resident-success {
  margin-top: var(--space-4);
  background: var(--color-brand-leaf-soft);
  border: 1px solid rgba(45, 106, 79, .25);
  border-radius: var(--radius-md);
}
.resident-success h3 {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
}
.resident-office-card {
  background: var(--color-brand-sand);
  box-shadow: none;
}
.resident-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.resident-contact-actions .btn {
  width: 100%;
  min-width: 0;
}
.resident-office-hours {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

/* ---------- footer ---------- */
.site-footer { background: var(--pine); color: #cfe8d8; margin-top: 0; padding: 52px 22px 110px; }
.footer-in { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; font-size: 15px; }
.site-footer h4 { color: #fff; margin-bottom: 10px; font-size: 16px; }
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-width: var(--touch-target-min);
  min-height: var(--touch-target-min);
  padding-inline: 9px;
  margin-inline: -9px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.footer-bottom { text-align: center; margin-top: 34px; font-size: 13px; color: #9dbfac; }

/* ---------- sticky mobile call/text bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none; gap: 0; box-shadow: 0 -4px 18px rgba(0,0,0,.18);
}
.mobile-bar a {
  flex: 1; min-height: 56px; text-align: center; padding: 15px 8px calc(15px + env(safe-area-inset-bottom)); font-weight: 900; font-size: 17px;
  text-decoration: none; color: #fff;
}
.mobile-bar .mb-call { background: var(--pine-2); }
.mobile-bar .mb-text { background: var(--sunset); }

/* ---------- chat widget ---------- */
#hrv-chat #chat-fab {
  position: fixed; right: 18px; bottom: 24px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; border: 2px solid #fff; cursor: pointer;
  background: var(--pine-2); color: #fff; font-size: 26px; box-shadow: var(--shadow-md);
}
#chat-panel[hidden] { display: none; }
#chat-panel {
  position: fixed; right: 14px; bottom: 96px; z-index: 81;
  width: min(390px, calc(100vw - 28px)); height: min(560px, calc(100dvh - 120px));
  min-height: 0;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
}
.chat-head { min-height: 56px; background: var(--pine); color: #fff; padding: 8px 10px 8px 16px; font-weight: 900; display: flex; align-items: center; gap: 10px; }
.chat-head small { font-weight: 600; opacity: .75; font-size: 12px; flex: 1; }
.chat-head button { flex: 0 0 auto; min-width: 44px; min-height: 44px; background: none; border: none; color: #fff; font-size: 17px; cursor: pointer; }
.chat-box { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: var(--cream); }
.chat-msg { display: flex; }
.chat-user { justify-content: flex-end; }
.chat-bubble { max-width: 88%; padding: 11px 14px; border-radius: var(--radius-md); font-size: 15px; overflow-wrap: anywhere; }
.chat-bot .chat-bubble { background: #fff; border: 1px solid var(--color-border); border-bottom-left-radius: 4px; }
.chat-user .chat-bubble { background: var(--pine-2); color: #fff; border-bottom-right-radius: 4px; }
.chat-cta { display: flex; gap: 7px; margin-top: 10px; flex-wrap: wrap; }
.chat-cta a { display: inline-flex; align-items: center; min-height: var(--touch-target-min); background: var(--sunset); color: #fff; text-decoration: none; font-weight: 800; font-size: 13px; padding: 7px 12px; border-radius: var(--radius-sm); }
.chat-quick { display: flex; gap: 7px; padding: 8px 12px; flex-wrap: nowrap; overflow-x: auto; background: #fff; border-top: 1px solid var(--color-border); }
.chat-quick button { flex: 0 0 auto; min-height: var(--touch-target-min); background: var(--leaf-soft); border: 1px solid rgba(45, 106, 79, .14); font-family: var(--font); font-weight: 800; color: var(--pine); font-size: 13px; padding: 7px 12px; border-radius: var(--radius-sm); cursor: pointer; }
.chat-form { display: flex; gap: 8px; padding: 10px 12px 12px; background: #fff; border-top: 1px solid var(--color-border); }
.chat-form input { flex: 1; min-width: 0; min-height: 44px; font-family: var(--font); font-size: 15px; padding: 10px 13px; border: 2px solid var(--color-border); border-radius: var(--radius-sm); }
.chat-form button { flex: 0 0 44px; min-height: 44px; background: var(--sunset); color: #fff; border: none; border-radius: var(--radius-sm); font-size: 17px; cursor: pointer; }

/* ---------- responsive ---------- */
@media (min-width: 1201px) and (max-width: 1440px) {
  body:not([data-page="main"]) .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px 16px 18px;
    background: var(--cream);
    border-bottom: 2px solid var(--sand);
  }
  body:not([data-page="main"]) .nav.open { display: flex; }
  body:not([data-page="main"]) .nav a { padding: 13px 14px; font-size: 18px; }
  body:not([data-page="main"]) .menu-btn { display: block; }
}

@media (max-width: 1200px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: stretch; padding: 12px 16px 18px; border-bottom: 2px solid var(--sand); gap: 6px; }
  .nav.open { display: flex; }
  .nav a { font-size: 18px; padding: 13px 14px; }
  .menu-btn { display: block; }
}

@media (max-width: 860px) {
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
  .mobile-bar { display: flex; }
  #hrv-chat #chat-fab { bottom: calc(74px + env(safe-area-inset-bottom)); }
  #chat-panel {
    top: max(12px, env(safe-area-inset-top));
    bottom: calc(148px + env(safe-area-inset-bottom));
    height: auto;
  }
}

/* ============================================================
   v4 — HTown RV Parks (two parks): main landing, park pages,
   size carousel, park chooser cards, map images
   ============================================================ */
.logo-img { width: 52px; height: 52px; object-fit: contain; }

/* main hero background (new photo) */
.hero-main {
  background-image: url("../images/Mainbackground.webp");
}
.hero-park-logo {
  width: 112px; max-width: 28vw; flex: 0 0 auto;
  background: var(--cream); border-radius: var(--radius-md); padding: 9px;
}

/* park chooser cards (main landing) */
.park-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 960px; margin: 0 auto; }
.park-card {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) 112px; align-items: center; gap: 7px 20px;
  min-height: 190px; overflow: hidden;
  background: var(--leaf-soft); border-radius: 16px; box-shadow: none;
  padding: 26px; text-decoration: none; color: var(--ink);
  transition: transform .14s ease, box-shadow .14s ease; border: 1px solid rgba(45, 106, 79, .18);
}
.park-card:nth-child(2) { background: var(--sand); border-color: rgba(188, 75, 39, .16); }
.park-card::before { position: absolute; top: -42px; right: -36px; width: 126px; height: 126px; border-radius: 50%; background: rgba(255,255,255,.38); content: ""; }
.park-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.park-card-logo { position: relative; z-index: 1; grid-column: 2; grid-row: 1 / span 5; justify-self: center; }
.park-card-logo img { width: 104px; height: 104px; object-fit: contain; }
.park-card h3, .park-card .park-addr, .park-card .park-chip, .park-card .park-visit { grid-column: 1; position: relative; z-index: 1; }
.park-card h3 { font-size: 24px; }
.park-addr { color: var(--color-text-muted); font-size: 14.5px; }
.park-chip { justify-self: start; font-weight: 800; font-size: 14px; padding: 5px 9px; border-radius: 6px; }
.park-chip.open { background: rgba(255,255,255,.68); color: var(--pine-2); }
.park-chip.wait { background: rgba(255,255,255,.68); color: var(--sunset-2); }
.park-visit { font-weight: 800; color: var(--sunset-2); margin-top: 4px; }

/* landing-page section rhythm */
.public-section-tight { padding-top: 34px; }
.public-section-pricing { padding-top: 58px; }
.public-section-gallery .gallery figure { border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.public-section-sizes .car-frame,
.public-section-map .map-wrap { border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.public-section-reviews .review:nth-child(2) { background: var(--sand); }

/* size tabs + photo carousel */
.size-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.size-tab {
  font-family: var(--font); font-weight: 800; font-size: 16px; cursor: pointer;
  border: 2.5px solid var(--pine-2); background: #fff; color: var(--pine);
  border-radius: 999px; padding: 10px 20px; display: flex; flex-direction: column; align-items: center; line-height: 1.2;
}
.size-tab small { font-weight: 700; font-size: 12px; color: var(--sunset-2); }
.size-tab.active { background: var(--pine-2); color: #fff; }
.size-tab.active small { color: var(--gold); }
.carousel { display: flex; align-items: center; gap: 10px; max-width: 860px; margin: 0 auto; }
.car-frame { position: relative; flex: 1; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--sand); }
.car-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s ease; }
.car-frame img.show { opacity: 1; }
.car-arrow {
  background: #fff; border: 2.5px solid var(--pine-2); color: var(--pine); cursor: pointer;
  width: 46px; height: 46px; border-radius: 50%; font-size: 26px; font-weight: 900; line-height: 1;
  box-shadow: var(--shadow); flex-shrink: 0;
}
.car-arrow:hover { background: var(--leaf-soft); }
.car-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.car-dot { width: 44px; height: 44px; border-radius: 50%; border: none; background: radial-gradient(circle, #cfd8d2 0 5px, transparent 6px); cursor: pointer; padding: 0; }
.car-dot.on { background: radial-gradient(circle, var(--pine-2) 0 5px, transparent 6px); }

/* park map image (real map drawings) */
.map-img-wrap { max-width: 860px; margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 12px; }
.map-img-wrap img { width: 100%; border-radius: 12px; }

/* back-to-all-parks nav link */
.nav-back { color: var(--sunset-2) !important; }

@media (max-width: 760px) {
  .car-arrow { width: 44px; height: 44px; font-size: 20px; }
  .hero-park-logo { width: 100px; }
}

@media (max-width: 900px) {
  .hero-message-in { grid-template-columns: 1fr; gap: 24px; }
  .hero-ctas { max-width: 620px; }
  .park-card { grid-template-columns: minmax(0, 1fr) 92px; padding: 22px; }
  .park-card-logo img { width: 88px; height: 88px; }
  .secondary-section-reviews .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .header-in { min-height: 64px; padding: 7px 14px; }
  .logo-img { width: 46px; height: 46px; }
  .logo-name { font-size: 17px; }
  .nav { max-height: calc(100dvh - 64px); overflow-y: auto; }
  .page-hero { width: 100%; min-height: 245px; margin-top: 0; border-inline: 0; border-radius: 0 0 28px 28px; }
  .page-hero .hero-in { padding: 94px 18px 30px; }
  .page-hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .page-hero p.tag { font-size: 17px; }
  .hero { width: 100%; min-height: 235px; margin-top: 0; border-radius: 0; background-position: center 58%; }
  .hero-message-band { width: 100%; border-radius: 0 0 28px 28px; }
  .hero-message-in { padding: 27px 18px 30px; }
  .hero-message-band h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero-copy-park { gap: 14px; align-items: flex-start; }
  .hero-park-logo { width: 82px; max-width: 26vw; }
  .trust-chips { grid-template-columns: 1fr; width: calc(100% - 28px); }
  .trust-chips span { justify-content: flex-start; min-height: 48px; padding: 12px 10px; text-align: left; border-right: 0; border-bottom: 1px solid rgba(27, 67, 50, .14); }
  .trust-chips span:last-child { border-bottom: 0; }
  .info-bar { padding: 14px 14px 0; }
  .info-bar-in { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .info-bar-in > span { justify-content: flex-start; padding: 12px 16px; text-align: left; border-radius: var(--radius-md); }
  .section { padding: 46px 14px; }
  .secondary-section { padding-top: 42px; padding-bottom: 42px; }
  .secondary-section-sizes,
  .secondary-section-steps,
  .secondary-section-gallery { padding-top: 12px; }
  .secondary-section-amenities { padding-bottom: 28px; }
  .secondary-section-visit { width: calc(100% - 28px); margin-bottom: 46px; padding: 28px 18px; }
  .public-secondary-main > .cta-band { width: calc(100% - 28px); border-radius: var(--radius-md); }
  .secondary-section-reviews .reviews { grid-template-columns: 1fr; gap: 14px; }
  .secondary-section-map .map-wrap { padding: 10px; }
  .secondary-section-map .park-map-svg { min-width: 680px; max-width: none; }
  .apply-card { padding: 24px 18px; }
  .public-section-tight { padding-top: 24px; }
  .public-section-pricing { padding-top: 42px; }
  .section-sub { margin-bottom: 26px; }
  .park-cards { grid-template-columns: 1fr; gap: 13px; }
  .park-card { min-height: 170px; grid-template-columns: minmax(0, 1fr) 84px; gap: 6px 14px; padding: 20px; }
  .park-card-logo img { width: 80px; height: 80px; }
  .park-card h3 { font-size: 22px; }
  .cta-band { margin-top: 28px; padding: 44px 18px; }
}

@media (max-width: 420px) {
  .resident-topnav {
    flex-wrap: wrap;
    padding-inline: 12px;
  }
  .resident-topnav a { min-width: 0; }
  .t-wrap { padding: 22px 12px 48px; }
  .t-card { padding: 22px 16px; }
  .verified { padding: 14px 16px; }
  .resident-contact-actions { gap: var(--space-2); }
  .resident-contact-actions .btn { padding-inline: 12px; }
}

@media (max-width: 360px) {
  .logo { gap: 8px; }
  .logo-img { width: 42px; height: 42px; }
  .logo-name { font-size: 16px; }
  .logo-name small {
    max-width: 145px;
    white-space: normal;
    font-size: 9px;
    line-height: 1.05;
    letter-spacing: .08em;
  }
  .big-grid { grid-template-columns: minmax(0, 1fr); }
  .cat-btn {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: var(--space-3);
    align-items: center;
    min-height: 64px;
    padding: var(--space-3) var(--space-4);
    text-align: left;
  }
  .cat-btn .ico {
    margin-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-message-in { padding-inline: 14px; }
  .hero-copy-park { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 12px; }
  .hero-park-logo { width: 68px; max-width: none; }
  .hero-message-band h1 { font-size: 29px; }
  .hero-message-band p.tag { font-size: 17px; }
  .hero-ctas { gap: 7px; }
  .hero-ctas .btn { padding-inline: 10px; font-size: 16px; }
  .park-card { grid-template-columns: minmax(0, 1fr) 68px; padding: 18px; }
  .park-card-logo img { width: 66px; height: 66px; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .carousel { gap: 6px; }
  .car-arrow { width: 44px; height: 44px; }
  #chat-panel { right: 8px; left: 8px; width: auto; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .card,
  .park-card,
  .car-frame img,
  .cat-btn { transition: none; }
}

/* v4.1 — generated SVG park maps */
.park-map-svg { width: 100%; height: auto; display: block; }
.map-wrap, .map-img-wrap { max-width: 980px; }
.public-section-map .map-wrap,
.secondary-section-map .map-wrap { margin-inline: auto; }
