/* ==========================================================================
   CEDAR POINTE  -  An Alpha Development Group Community
   Landing page styles
   --------------------------------------------------------------------------
   Palette: deep pine green + cedar bronze + warm cream.
   Type: Plus Jakarta Sans (headings) + DM Sans (body) - matches ADG.
   Mobile-first. Plain, commented CSS so it's easy to tweak later.
   ========================================================================== */

/* ---- Fonts ------------------------------------------------------------- */
/* Matches Alpha Development Group's site: Plus Jakarta Sans (headings) +
   DM Sans (body). Both ship locally for speed. */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/DMSans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../fonts/PlusJakartaSans-latin.woff2') format('woff2');
}

/* ---- Design tokens (colors, spacing, fonts) ---------------------------- */
:root {
  /* Cedar Pointe palette */
  --pine:        #1E3B2F;   /* dominant dark green   */
  --pine-deep:   #15291F;   /* darker green for footers / overlays */
  --pine-soft:   #2C4C3D;   /* hover green */
  --cedar:       #B5713A;   /* warm cedar bronze = main accent */
  --cedar-deep:  #9A5C2C;   /* cedar hover */
  --cream:       #F6F1E7;   /* page background */
  --cream-2:     #EFE7D5;   /* alt section background */
  --sand:        #E4D9C2;   /* borders / dividers */
  --ink:         #1B221E;   /* near-black text */
  --muted:       #5C6660;   /* secondary text */
  --white:       #FFFFFF;

  /* Parent brand (Alpha Development Group) accents */
  --adg-navy:    #1A1A2E;
  --adg-red:     #D40000;

  /* Type (matches Alpha Development Group) */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 18px 50px rgba(21, 41, 31, 0.12);
  --shadow-sm: 0 6px 20px rgba(21, 41, 31, 0.08);
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--pine);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* ---- Reusable helpers -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--cedar);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.btn--primary { background: var(--cedar); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--cedar-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--dark { background: var(--pine); color: var(--white); }
.btn--dark:hover { background: var(--pine-soft); transform: translateY(-2px); }

/* Reveal-on-scroll animation (added/removed by main.js) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: flex-end; gap: 20px;
}
/* Links + CTA group. --nav-scoot (set by main.js) slides the group left so it
   sits centered at the top of the page; on scroll it returns to the right. */
.nav__menu {
  display: flex; align-items: center; gap: 34px;
  transform: translateX(var(--nav-scoot, 0));
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.is-scrolled .nav__menu { transform: translateX(0); }
.nav__links { display: none; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: color 0.2s ease; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--cedar); transition: width 0.25s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }

/* Scrolled state: solid cream bar, dark text */
.nav.is-scrolled { background: var(--cream); box-shadow: 0 4px 24px rgba(21,41,31,0.10); padding: 10px 0; }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__links a:hover { color: var(--pine); }

/* Mobile menu toggle */
.nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: background 0.3s ease; }
.nav.is-scrolled .nav__toggle span { background: var(--pine); }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* Mobile slide-down menu */
.mobile-menu {
  position: fixed; inset: 0 0 auto 0; z-index: 999;
  background: var(--pine-deep);
  padding: 110px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  display: block; color: #fff; font-family: var(--font-display);
  font-size: 1.6rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu .btn { margin-top: 26px; width: 100%; }

/* ==========================================================================
   SIGNATURE BRANDMARK  (morphs from hero-center to nav-left on scroll)
   --------------------------------------------------------------------------
   One fixed element. At the top of the page it sits large and centered near
   the top of the hero. Adding `is-scrolled` to <body> transitions it up into
   the nav bar: smaller, left-aligned, and colored for the cream background.
   Only `transform`, `top`, `left` and `height` change, so it animates smoothly.
   ========================================================================== */
.brandmark {
  position: fixed; z-index: 1100;
  /* Fixed top (not vh-based) so the brandmark's height is predictable and the
     hero's top padding can always clear it - stops the byline from colliding
     with the hero eyebrow on tall screens. */
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  transition: top 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              left 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              gap 0.45s ease, opacity 0.3s ease;
  will-change: top, left, transform;
}
/* The two stacked logos crossfade (white over the hero, full-color in the nav) */
.brandmark__logo { position: relative; display: block; height: 70px; transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.brandmark__logo-img { height: 100%; width: auto; display: block; transition: opacity 0.4s ease; }
.brandmark__logo-img--dark { position: absolute; inset: 0; opacity: 0; }
.brandmark__byline {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); white-space: nowrap; line-height: 1.2;
  transition: color 0.4s ease, font-size 0.4s ease, letter-spacing 0.4s ease;
}

/* Landed state: compact, at the left edge of the nav's content column */
body.is-scrolled .brandmark {
  top: 13px;
  left: max(24px, calc(50vw - (var(--maxw) / 2) + 24px));
  transform: translateX(0);
  align-items: flex-start; text-align: left; gap: 3px;
}
body.is-scrolled .brandmark__logo { height: 38px; }
body.is-scrolled .brandmark__logo-img--light { opacity: 0; }
body.is-scrolled .brandmark__logo-img--dark { opacity: 1; }
body.is-scrolled .brandmark__byline { color: var(--muted); font-size: 0.56rem; letter-spacing: 0.14em; }

/* When the mobile menu is open, get the floating brandmark out of the way */
body.menu-open .brandmark { opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .brandmark, .brandmark__logo, .nav__menu { transition: opacity 0.3s ease; }
}
/* Until main.js adds `is-ready` (after the first frame), suppress the morph
   transitions so the brandmark and menu don't animate from a default position
   on page load or on a refresh partway down the page. */
body:not(.is-ready) .brandmark,
body:not(.is-ready) .brandmark__logo,
body:not(.is-ready) .brandmark__logo-img,
body:not(.is-ready) .brandmark__byline,
body:not(.is-ready) .nav__menu { transition: none !important; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  /* Top padding leaves room for the floating brandmark (logo + byline) that
     sits near the top of the hero; bottom padding reserves room for the
     absolutely-positioned stat bar so the hero buttons never hide behind it. */
  padding: 206px 0 180px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--pine-deep) center/cover no-repeat;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21,41,31,0.55) 0%, rgba(21,41,31,0.25) 35%, rgba(21,41,31,0.85) 100%),
    linear-gradient(90deg, rgba(21,41,31,0.6) 0%, rgba(21,41,31,0.05) 60%);
}
/* Hero content is centered to stay in line with the centered brandmark above. */
.hero__content { max-width: 760px; margin: 0 auto; text-align: center; }
/* No leading accent line on the hero eyebrow (keep it on section headings). */
.hero__content .eyebrow::before { display: none; }
/* Hero brand mark = the real Cedar Pointe logo (white), inside the h1 for SEO */
.hero__logo { margin: 18px 0 22px; }
.hero__logo img {
  width: min(270px, 52%); height: auto; margin: 0 auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.35));
}
.hero__sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem); color: rgba(255,255,255,0.92);
  max-width: 560px; margin: 0 auto 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Floating stat bar at bottom of hero */
.hero__stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: rgba(21,41,31,0.72);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stats-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.hero__stat .num {
  font-family: var(--font-display); font-size: 1.9rem; color: #fff; line-height: 1;
}
.hero__stat .num span { color: var(--cedar); }
.hero__stat .lbl {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin-top: 7px;
}
@media (min-width: 760px) {
  .hero__stats-inner { grid-template-columns: repeat(4, 1fr); }
  /* Stat bar is a single, shorter row on wider screens, so less bottom room is needed. */
  .hero { padding: 206px 0 128px; }
}

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
.section { padding: 92px 0; }
.section--cream2 { background: var(--cream-2); }
.section--pine { background: var(--pine); color: rgba(255,255,255,0.85); }
.section--pine h2, .section--pine h3 { color: #fff; }
.section__head { max-width: 680px; margin-bottom: 54px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__head h2 {
  font-size: clamp(2rem, 5vw, 3.1rem); margin: 18px 0 16px; font-weight: 700;
}
.section__head p { color: var(--muted); font-size: 1.08rem; }
.section--pine .section__head p { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   INTRO / ABOUT THE COMMUNITY  (asymmetric split with overlap)
   ========================================================================== */
.intro__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .intro__grid { grid-template-columns: 1.05fr 0.95fr; gap: 70px; } }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.intro__badge {
  position: absolute; bottom: -26px; right: -10px;
  background: var(--cedar); color: #fff; padding: 22px 26px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); max-width: 230px;
}
.intro__badge .num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: #fff; }
.intro__badge .txt { font-size: 0.84rem; margin-top: 6px; color: rgba(255,255,255,0.92); }
.intro__copy p { color: var(--muted); margin-bottom: 18px; }
.intro__list { margin-top: 26px; display: grid; gap: 14px; }
.intro__list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.intro__list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(181,113,58,0.14); color: var(--cedar);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}

/* ==========================================================================
   HOME OPTIONS  (Custom vs Model)
   ========================================================================== */
.options { display: grid; gap: 28px; }
@media (min-width: 820px) { .options { grid-template-columns: 1fr 1fr; } }
.option-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.option-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.option-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.option-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.option-card:hover .option-card__img img { transform: scale(1.05); }
.option-card__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(21,41,31,0.85); color: #fff; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; border-radius: 30px;
}
.option-card__body { padding: 30px 30px 34px; flex: 1; display: flex; flex-direction: column; }
.option-card__body h3 { font-size: 1.7rem; margin-bottom: 12px; }
.option-card__body p { color: var(--muted); margin-bottom: 18px; }
.option-card__body .btn { margin-top: auto; align-self: flex-start; }
.option-card__note {
  font-size: 0.82rem; color: var(--cedar); font-weight: 600; margin-bottom: 18px;
  display: inline-flex; gap: 8px; align-items: center;
}

/* ==========================================================================
   AVAILABLE LOTS
   ========================================================================== */
.lots__filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; justify-content: center;
}
.lots__filter {
  padding: 10px 20px; border-radius: 30px; border: 1.5px solid var(--sand);
  font-size: 0.88rem; font-weight: 600; color: var(--muted); background: var(--white);
  transition: all 0.2s ease;
}
.lots__filter:hover { border-color: var(--cedar); color: var(--cedar); }
.lots__filter.is-active { background: var(--pine); border-color: var(--pine); color: #fff; }

.lots__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .lots__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .lots__grid { grid-template-columns: repeat(3, 1fr); } }

.lot-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 26px 26px 24px; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative; overflow: hidden;
}
.lot-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--cedar); transition: height 0.3s ease;
}
.lot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.lot-card:hover::before { height: 100%; }
.lot-card.is-hidden { display: none; }
.lot-card__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.lot-card__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--pine); }
.lot-card__num small { font-size: 0.78rem; color: var(--muted); font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; display: block; }
.lot-card__phase { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cedar); font-weight: 700; }
.lot-card__size { display: flex; gap: 20px; padding: 14px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); margin-bottom: 16px; }
.lot-card__size div .v { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.lot-card__size div .k { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.lot-card__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; min-height: 28px; }
.badge {
  font-size: 0.74rem; font-weight: 600; padding: 5px 12px; border-radius: 30px;
  background: rgba(30,59,47,0.07); color: var(--pine);
}
.badge--water { background: rgba(58,121,181,0.12); color: #2C6CA8; }
.badge--cedar { background: rgba(181,113,58,0.14); color: var(--cedar-deep); }
/* Key USP badge: solid pine so "No Rear Neighbor" stands out on the 7 lots that have it */
.badge--green { background: var(--pine); color: #fff; }
.lot-card__cta { display: flex; align-items: center; justify-content: space-between; }
.lot-card__price { font-size: 0.9rem; color: var(--muted); }
.lot-card__price strong { color: var(--pine); font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.lot-card__inquire {
  font-size: 0.88rem; font-weight: 600; color: var(--cedar); display: inline-flex; gap: 6px; align-items: center;
  transition: gap 0.2s ease;
}
.lot-card__inquire:hover { gap: 11px; }

/* Interactive site plan / lot map.
   Mobile: simple single-column stack (head, map, panel in DOM order).
   Desktop (940px+): two columns with the panel beside the map. */
.lotmap { margin: 0 0 60px; display: grid; gap: 28px; }
/* Divider heading between the map and the filterable cards */
.lots__browse { text-align: center; max-width: 620px; margin: 0 auto 26px; padding-top: 14px; border-top: 1px solid var(--sand); }
.lots__browse h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 22px 0 8px; }
.lots__browse p { color: var(--muted); margin: 0; }
@media (min-width: 940px) {
  .lotmap {
    grid-template-columns: 1.7fr 1fr;
    grid-template-areas: "head head" "stage panel";
    gap: 30px 36px; align-items: start;
  }
  .lotmap__head { grid-area: head; }
  .lotmap__stage { grid-area: stage; }
  .lotmap__panel { grid-area: panel; }
}
.lotmap__head { max-width: 680px; }
.lotmap__head h3 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: 14px 0 10px; }
.lotmap__head p { color: var(--muted); }

.lotmap__stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--sand); box-shadow: var(--shadow-sm);
}
.lotmap__img { width: 100%; display: block; }
.lotmap__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Clickable lot polygons: invisible until hovered, then highlighted */
.lotmap__lot {
  fill: rgba(212, 0, 0, 0.0); stroke: transparent; stroke-width: 3;
  cursor: pointer; transition: fill 0.18s ease, stroke 0.18s ease; outline: none;
}
.lotmap__lot:hover, .lotmap__lot:focus-visible {
  fill: rgba(181, 113, 58, 0.40); stroke: var(--cedar);
}
.lotmap__lot.is-selected {
  fill: rgba(30, 59, 47, 0.45); stroke: var(--pine);
}
/* gentle pulse so users notice the lots are interactive */
@keyframes lotPulse { 0%,100% { fill: rgba(212,0,0,0.04); } 50% { fill: rgba(212,0,0,0.16); } }
.lotmap__lot:not(.is-selected) { animation: lotPulse 3.2s ease-in-out infinite; }
.lotmap__lot:hover, .lotmap__lot:focus-visible, .lotmap__lot.is-selected { animation: none; }
@media (prefers-reduced-motion: reduce) { .lotmap__lot { animation: none; } }

.lotmap__tip {
  position: absolute; z-index: 5; transform: translate(-50%, -140%);
  background: var(--pine); color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 6px 11px; border-radius: 30px; white-space: nowrap; pointer-events: none;
  box-shadow: var(--shadow-sm);
}

/* Detail panel beside the map */
.lotmap__panel {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm);
}
@media (min-width: 940px) { .lotmap__panel { position: sticky; top: 110px; } }
.lotpanel__hint h4 { font-size: 1.3rem; margin-bottom: 10px; }
.lotpanel__hint p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.lotpanel__num { font-family: var(--font-display); font-size: 1.9rem; color: var(--pine); margin-bottom: 18px; }
.lotpanel__num small { display: block; font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.lotpanel__size { display: flex; gap: 26px; padding: 16px 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); margin-bottom: 18px; }
.lotpanel__size .v { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.lotpanel__size .k { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.lotmap__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.lotpanel__price { color: var(--muted); margin-bottom: 22px; }
.lotpanel__price strong { color: var(--pine); font-family: var(--font-display); }
.lotmap__panel .btn { width: 100%; }

/* ==========================================================================
   LOCATION & COMMUNITY
   ========================================================================== */
/* Local vibe cards */
.locgrid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-bottom: 56px; }
@media (min-width: 760px) { .locgrid { grid-template-columns: repeat(3, 1fr); } }
.loccard {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 28px 26px; border-top: 3px solid var(--cedar);
}
.loccard h3 { font-size: 1.3rem; margin-bottom: 10px; }
.loccard p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* Map + info split */
.locmap { display: grid; gap: 36px; align-items: stretch; }
@media (min-width: 900px) { .locmap { grid-template-columns: 1fr 1fr; gap: 48px; } }
.locmap__info { display: flex; flex-direction: column; }
.locmap__info h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 16px 0 8px; }
.locmap__addr { color: var(--cedar); font-weight: 600; font-size: 1.05rem; margin-bottom: 22px; }
.locmap__lists { display: grid; gap: 24px; margin-bottom: 28px; }
@media (min-width: 560px) and (max-width: 899px) { .locmap__lists { grid-template-columns: 1fr 1fr; } }
.locmap__list h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pine); margin-bottom: 12px; }
.locmap__list ul { display: grid; gap: 12px; }
.locmap__list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.locmap__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--cedar); }
.locmap__list li strong { color: var(--ink); }
.locmap__info .btn { align-self: flex-start; margin-top: auto; }
.locmap__frame {
  min-height: 360px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--sand); background: var(--cream-2);
}
.locmap__frame iframe { display: block; width: 100%; height: 100%; min-height: 360px; }

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .amenities__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .amenities__grid { grid-template-columns: repeat(4, 1fr); } }
.amenity {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 30px 26px; transition: background 0.25s ease, transform 0.25s ease;
}
.amenity:hover { background: rgba(255,255,255,0.10); transform: translateY(-5px); }
.amenity__icon { width: 46px; height: 46px; margin-bottom: 18px; color: var(--cedar); }
.amenity h3 { font-size: 1.25rem; margin-bottom: 8px; }
.amenity p { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin: 0; }

/* ==========================================================================
   WHY ADG  (credibility strip)
   ========================================================================== */
.why__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .why__grid { grid-template-columns: 0.95fr 1.05fr; gap: 64px; } }
.why__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
/* ADG logo above the builder headline, reinforcing who's building the homes */
.builder__logo { height: 54px; width: auto; margin: 16px 0 6px; }
.why__points { display: grid; gap: 26px; margin-top: 30px; }
@media (min-width: 560px) { .why__points { grid-template-columns: 1fr 1fr; } }
.why__point .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--cedar); line-height: 1; }
.why__point h4 { font-size: 1.1rem; margin: 10px 0 6px; color: var(--pine); }
.why__point p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ==========================================================================
   INQUIRY FORM
   ========================================================================== */
.inquire { background: var(--pine-deep); color: #fff; }
.inquire__grid { display: grid; gap: 48px; }
@media (min-width: 920px) { .inquire__grid { grid-template-columns: 0.9fr 1.1fr; gap: 70px; } }
.inquire h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 18px; }
.inquire__lead { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.inquire__contact { display: grid; gap: 16px; margin-top: 30px; }
.inquire__contact a, .inquire__contact span { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,0.9); font-size: 1rem; }
.inquire__contact .ic { color: var(--cedar); width: 22px; }

.form {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow);
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 560px) { .form__row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--pine); margin-bottom: 7px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--sand); border-radius: var(--radius); transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cedar); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form__consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; }
.form__consent input { margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--cedar); }
.form__consent label { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.form .btn { width: 100%; }
.form__success { display: none; text-align: center; padding: 30px 10px; }
.form__success.show { display: block; }
.form__success h3 { color: var(--pine); font-size: 1.6rem; margin-bottom: 10px; }
.form__success p { color: var(--muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; margin-bottom: 44px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__mark { width: 190px; height: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 0.92rem; max-width: 320px; }
.footer__logo { margin-top: 24px; }
.footer__logo-label { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.footer__logo img { height: 36px; width: auto; opacity: 0.9; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; font-size: 0.94rem; margin-bottom: 10px; color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--cedar); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: var(--cedar); }

/* small print disclaimer */
.disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 16px; max-width: 760px; line-height: 1.6; }

/* ==========================================================================
   MOBILE GUARDS (<= 560px)
   Prevent the long uppercase labels from overflowing narrow screens.
   ========================================================================== */
@media (max-width: 560px) {
  /* allow eyebrow + its accent line to wrap, tighten spacing */
  .eyebrow { flex-wrap: wrap; font-size: 0.68rem; letter-spacing: 0.14em; gap: 9px; }
  .eyebrow::before { width: 24px; }

  /* brandmark: smaller logo + byline so it fits, and lands clear of the toggle */
  .brandmark { top: 72px; }
  .brandmark__logo { height: 48px; }
  .brandmark__byline { font-size: 0.54rem; letter-spacing: 0.1em; }
  /* Scrolled (in the nav bar): keep it compact and single-line so nothing
     spills onto the hero below the bar. */
  body.is-scrolled .brandmark { top: 9px; gap: 1px; }
  body.is-scrolled .brandmark__logo { height: 27px; }
  body.is-scrolled .brandmark__byline { font-size: 0.44rem; letter-spacing: 0.08em; }
  .nav__inner { gap: 10px; }

  /* hero: smaller logo + full-width stacked buttons so nothing is clipped */
  .hero__logo img { width: min(200px, 56%); }
  .hero__sub { max-width: 100%; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { width: 100%; }

  /* stat bar: comfortable 2-up grid, labels wrap */
  .hero__stats-inner { padding: 18px 20px; gap: 16px 14px; }
  .hero__stat .num { font-size: 1.6rem; }
  .hero__stat .lbl { font-size: 0.64rem; letter-spacing: 0.1em; }

  /* keep the offset badge inside the screen */
  .intro__badge { right: 0; left: auto; max-width: 200px; }
}
