/* =====================================================================
   HARRISON FOOD FACTORY (harrisonfoodbuilding.com.sg)
   Distinct build: fresh-green × slate, full-bleed hero, overlay nav,
   geometric Space Grotesk display + Inter body. Differentiated from
   the .sg site (gold/cream editorial serif).
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #f6f8f4;
  --ink: #161e19;
  --ink-soft: #354039;
  --muted: #69736b;
  --green: #2f7d54;
  --green-light: #3d9c69;
  --green-deep: #205c3c;
  --green-mist: #e9f0ea;
  --sage: #eef2eb;
  --sage-deep: #e3e9df;
  --line: #d7ddd3;
  --line-soft: #e7ebe2;
  --dark: #15201b;
  --dark-soft: #1d2a23;
  --amber: #c98a2b;
  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1240px;
  --max-w-narrow: 960px;
  --max-w-prose: 720px;
  --s-section: clamp(2.5rem, 4.8vw, 4rem);
  --s-section-sm: clamp(1.5rem, 3vw, 2.25rem);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.66;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--line); transition: color .2s, text-decoration-color .2s; }
a:hover { color: var(--green); text-decoration-color: var(--green-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; margin: 0 0 .55em; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.75rem); font-weight: 700; line-height: 1.04; }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.accent { color: var(--green); }
.eyebrow { font-family: var(--font-body); font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--green); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--ink-soft); }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.container-narrow { max-width: var(--max-w-narrow); }
.container-prose { max-width: var(--max-w-prose); }
.section { padding: var(--s-section) 0; }
.section-sm { padding: var(--s-section-sm) 0; }
.section-tight { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.section-sage { background: var(--sage); }
.section-mist { background: var(--green-mist); }
.section-dark { background: var(--dark); color: #dfe7e0; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--green-light); }
.section-dark .eyebrow::before { background: var(--green-light); }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Header / nav (transparent overlay → solid on scroll) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s, border-color .3s; border-bottom: 1px solid transparent; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { height: 46px; width: auto; max-width: 230px; object-fit: contain; display: block; }
.brand .logo-dark { display: none; }

/* On hero (transparent) — light text + white logo */
.site-header.over-hero { background: transparent; }
.site-header.over-hero .brand .logo-light { display: block; }
.site-header.over-hero .brand .logo-dark { display: none; }
.site-header.over-hero .nav > .nav-item > a,
.site-header.over-hero .nav > .nav-item > .nav-trigger { color: #fff; }
.site-header.over-hero .nav > .nav-item > a:hover,
.site-header.over-hero .nav > .nav-item > .nav-trigger:hover { color: #fff; background: rgba(255,255,255,.14); }
.site-header.over-hero .header-phone { color: #fff; }
.site-header.over-hero .nav-toggle span,
.site-header.over-hero .nav-toggle span::before,
.site-header.over-hero .nav-toggle span::after { background: #fff; }

/* Scrolled / inner pages — solid */
.site-header.solid { background: rgba(246,248,244,.94); backdrop-filter: saturate(140%) blur(10px); border-bottom-color: var(--line); box-shadow: 0 6px 22px -16px rgba(21,32,27,.35); }
.site-header.solid .brand .logo-light { display: none; }
.site-header.solid .brand .logo-dark { display: block; }

body { padding-top: 0; }
body.has-page-hero { /* inner pages start solid; spacer handled by page-hero padding */ }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav-item { position: relative; }
.nav a, .nav-trigger { font-size: .9rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: .55rem .8rem; border-radius: 7px; transition: color .2s, background .2s; display: inline-flex; align-items: center; gap: .35rem; background: none; border: 0; cursor: pointer; font-family: var(--font-body); }
.nav a:hover, .nav-trigger:hover, .nav a.active { color: var(--green-deep); background: var(--green-mist); }
.nav-trigger::after { content: ''; width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s; }
.nav-item:hover .nav-trigger::after, .nav-item.open .nav-trigger::after { transform: rotate(-135deg); margin-top: 1px; }
.nav-dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 22px 48px -16px rgba(21,32,27,.22); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: .58rem .85rem; border-radius: 7px; font-size: .88rem; color: var(--ink); }
.nav-dropdown a:hover { background: var(--green-mist); color: var(--green-deep); }

.header-right { display: flex; align-items: center; gap: 1rem; }
.header-phone { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--green); }
.btn-cta { padding: .62rem 1.15rem; background: var(--green); color: #fff !important; border-radius: 8px; font-weight: 600; font-size: .85rem; text-decoration: none; letter-spacing: .01em; box-shadow: 0 8px 20px -8px rgba(47,125,84,.55); transition: background .2s, transform .2s; white-space: nowrap; }
.btn-cta:hover { background: var(--green-deep); color: #fff !important; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; padding: 0; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); position: relative; transition: .2s; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ink); transition: .2s; border-radius: 2px; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 1003; }
  .brand { position: relative; z-index: 1003; }
  .header-right .header-phone, .header-right .btn-cta { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(21,32,27,.5); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; z-index: 1000; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  .nav { position: fixed; top: 0; right: 0; bottom: 0; height: 100%; width: min(420px, 100vw); background: var(--bg); flex-direction: column; align-items: stretch; padding: 5.5rem 1.5rem 2rem; gap: .1rem; box-shadow: -20px 0 50px -10px rgba(21,32,27,.3); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; z-index: 1002; }
  .nav.is-open { transform: translateX(0); }
  .site-header.over-hero .nav > .nav-item > a, .site-header.over-hero .nav > .nav-item > .nav-trigger { color: var(--ink); }
  .nav .nav-item { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav .nav-item:last-child { border-bottom: 0; }
  .nav a, .nav-trigger { padding: .95rem .5rem; font-size: 1.02rem; width: 100%; justify-content: space-between; border-radius: 0; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .5rem 1rem; min-width: 0; background: transparent; max-height: 0; overflow: hidden; transition: max-height .25s; }
  .nav-item.open .nav-dropdown { max-height: 520px; }
  .nav .mobile-cta { margin-top: 1rem; background: var(--green); color: #fff !important; text-align: center; justify-content: center; border-radius: 8px; }
}
body.nav-open .site-header { z-index: 1002; }
body.nav-open { overflow: hidden; }
@media (min-width: 1081px) { .nav-backdrop { display: none !important; } .nav .mobile-cta { display: none; } }

/* ---------- FULL-WIDTH HERO ---------- */
.hero-full { position: relative; min-height: clamp(560px, 88vh, 820px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-full .hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-full .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-full::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(21,32,27,.62) 0%, rgba(21,32,27,.28) 38%, rgba(21,32,27,.55) 72%, rgba(21,32,27,.9) 100%); }
.hero-full .container { position: relative; padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: clamp(2rem, 4vw, 3.25rem); width: 100%; }
.hero-full .hero-eyebrow { color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: .6rem; }
.hero-full .hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--green-light); }
.hero-full h1 { color: #fff; max-width: 17ch; margin-bottom: 1.1rem; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero-full .lead { color: rgba(255,255,255,.92); max-width: 56ch; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(2rem, 4vw, 3rem); background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; overflow: hidden; backdrop-filter: blur(3px); }
.hero-stats .hs { background: rgba(21,32,27,.32); padding: 1.1rem 1.25rem; }
.hero-stats .hs .v { font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 700; color: #fff; line-height: 1.1; }
.hero-stats .hs .l { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: .25rem; }
@media (max-width: 760px) { .hero-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hero-actions .btn { width: 100%; justify-content: center; } }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(1.5rem, 3vw, 2.5rem)) 0 clamp(1.5rem, 2.5vw, 2.25rem); background: var(--dark); color: #eef2ec; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 20%, rgba(61,156,105,.22), transparent 55%), repeating-linear-gradient(135deg, transparent 0 38px, rgba(255,255,255,.018) 38px 39px); pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--green-light); } .page-hero .eyebrow::before { background: var(--green-light); }
.page-hero h1 { color: #fff; margin-bottom: .8rem; font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.page-hero .lead { color: rgba(238,242,236,.86); max-width: 62ch; }
.breadcrumbs { font-size: .78rem; color: rgba(238,242,236,.55); margin-bottom: 1rem; letter-spacing: .03em; }
.breadcrumbs a { color: rgba(238,242,236,.78); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-light); }
.breadcrumbs span { margin: 0 .5rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.5rem; font-size: .9rem; font-weight: 600; letter-spacing: .01em; text-decoration: none; border: 1.5px solid transparent; border-radius: 8px; cursor: pointer; transition: all .2s ease; font-family: var(--font-body); }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 10px 24px -10px rgba(47,125,84,.55); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(3px); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: 1rem 1.85rem; font-size: .95rem; }
.section-dark .btn-outline { color: #eef2ec; border-color: rgba(238,242,236,.4); }
.section-dark .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid-4 { grid-template-columns: 1fr; } }

/* Why-invest: numbered ledger rows (different from .sg cards) */
.ledger { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.ledger .row { display: flex; gap: 1rem; padding: 1.5rem 1.6rem; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.ledger .row:nth-child(2n) { border-right: 0; }
.ledger .row .n { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--green); flex-shrink: 0; width: 2.4rem; height: 2.4rem; border-radius: 8px; background: var(--green-mist); display: flex; align-items: center; justify-content: center; }
.ledger .row h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.ledger .row p { font-size: .92rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 760px) { .ledger { grid-template-columns: 1fr; } .ledger .row { border-right: 0; } }

.section-heading { max-width: 760px; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading p { color: var(--ink-soft); margin-bottom: 0; }

/* Stat strip (inner pages) */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; background: var(--dark); color: #eef2ec; padding: clamp(2rem,4vw,2.75rem) clamp(1.5rem,4vw,3rem); border-radius: 14px; }
.stat-strip .stat { border-left: 1px solid rgba(255,255,255,.14); padding-left: 1.25rem; }
.stat-strip .stat:first-child { border-left: 0; padding-left: 0; }
.stat-strip .num { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700; color: var(--green-light); display: block; margin-bottom: .2rem; line-height: 1; }
.stat-strip .label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(238,242,236,.66); }
@media (max-width: 800px) { .stat-strip { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; } .stat-strip .stat:nth-child(3) { border-left: 0; padding-left: 0; } }

/* Split */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.split.flip { grid-template-columns: 1fr 1.05fr; }
.split.flip .split-text { order: 2; }
@media (max-width: 900px) { .split, .split.flip { grid-template-columns: 1fr; } .split.flip .split-text { order: 0; } }

/* Image treatments (different from .sg) — framed with offset accent */
.media-frame { position: relative; }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; box-shadow: 0 30px 60px -28px rgba(21,32,27,.4); position: relative; z-index: 1; }
.media-frame::before { content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 2px solid var(--green); border-radius: 14px; z-index: 0; }
.media-frame.tall img { aspect-ratio: 3/4; }
.media-cap { position: relative; }
.media-cap img { width: 100%; border-radius: 14px; object-fit: cover; box-shadow: 0 30px 60px -28px rgba(21,32,27,.4); }
.media-cap figcaption { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; background: rgba(21,32,27,.72); backdrop-filter: blur(4px); color: #fff; font-size: .82rem; padding: .55rem .85rem; border-radius: 8px; }
.img-plain { width: 100%; border-radius: 14px; box-shadow: 0 25px 50px -24px rgba(21,32,27,.32); }
.img-contain { width: 100%; height: auto; display: block; border-radius: 12px; background: #fff; border: 1px solid var(--line); }
.figure { margin: 0; }
.figure figcaption { font-size: .82rem; color: var(--muted); margin-top: .6rem; text-align: center; }

/* Full-bleed image band */
.band { position: relative; min-height: clamp(280px, 38vw, 440px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.band .band-bg { position: absolute; inset: 0; z-index: -2; }
.band .band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(21,32,27,.85) 0%, rgba(21,32,27,.55) 55%, rgba(21,32,27,.25) 100%); }
.band h2 { color: #fff; } .band p { color: rgba(255,255,255,.9); max-width: 52ch; }

/* Gallery strip */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.gallery figure { margin: 0; position: relative; border-radius: 12px; overflow: hidden; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .g-wide { grid-column: span 8; aspect-ratio: 16/9; }
.gallery .g-tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery .g-half { grid-column: span 6; aspect-ratio: 16/10; }
.gallery .g-third { grid-column: span 4; aspect-ratio: 4/3; }
.gallery figcaption { position: absolute; left: .7rem; bottom: .7rem; background: rgba(21,32,27,.72); color: #fff; font-size: .74rem; padding: .35rem .65rem; border-radius: 6px; }
@media (max-width: 760px) { .gallery .g-wide, .gallery .g-tall, .gallery .g-half, .gallery .g-third { grid-column: span 12; aspect-ratio: 16/10; } }

/* Use-case cards (floor plan reference) */
.fp-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.fp-card:hover { transform: translateY(-3px); box-shadow: 0 28px 52px -24px rgba(21,32,27,.22); }
.fp-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--sage); }
.fp-card .body { padding: 1.25rem 1.35rem; }
.fp-card h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.fp-card .meta { font-size: .82rem; color: var(--muted); margin: 0; }

/* Forms */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; font-family: inherit; font-size: .95rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 9px; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,125,84,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.field-check { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); line-height: 1.5; }
.field-check input { width: auto; margin-top: .2rem; }
.form-message { padding: .85rem 1rem; border-radius: 9px; font-size: .9rem; display: none; }
.form-message.ok { display: block; background: #dcefe1; color: #205c3c; border: 1px solid #b3d8c1; }
.form-message.err { display: block; background: #f0dada; color: #6b2e2e; border: 1px solid #d8b3b3; }
.form-card { padding: clamp(1.5rem,3vw,2rem); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 50px -30px rgba(21,32,27,.25); }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.data-table th, .data-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.data-table th { background: var(--sage); font-weight: 700; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.data-table tr:hover td { background: var(--sage); }
.badge { display: inline-block; padding: .22rem .55rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 5px; }
.badge-available { background: #dcefe1; color: #205c3c; }
.badge-reserved { background: #f4e8cf; color: #7a5a14; }
.badge-sold { background: #f0dada; color: #6b2e2e; }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--green-deep), var(--green)); color: #fff; padding: clamp(2.5rem,5vw,4rem) 0; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.3rem); margin-bottom: .6rem; }
.cta-banner p { color: rgba(255,255,255,.92); max-width: 56ch; margin: 0 auto 1.5rem; }
.cta-banner .container { text-align: center; }
.cta-banner .btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-banner .btn-primary { background: #fff; color: var(--green-deep); border-color: #fff; }
.cta-banner .btn-primary:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.cta-banner .btn-outline:hover { background: #fff; color: var(--green-deep); border-color: #fff; }
@media (max-width: 600px) { .cta-banner .btns { flex-direction: column; } .cta-banner .btns .btn { width: 100%; justify-content: center; } }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 1.15rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); transition: color .2s; }
.faq-item summary:hover { color: var(--green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-size: 1.5rem; font-weight: 300; color: var(--green); flex-shrink: 0; transition: transform .25s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 1.25rem; color: var(--ink-soft); line-height: 1.65; max-width: 70ch; }
.faq-item .answer p { margin: 0 0 .85em; } .faq-item .answer p:last-child { margin-bottom: 0; }

/* Map */
.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 25px 50px -24px rgba(21,32,27,.25); aspect-ratio: 16/9; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,3vw,2.25rem); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; text-decoration: none; color: var(--ink); }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 28px 52px -24px rgba(21,32,27,.2); color: var(--ink); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--sage); }
.blog-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .eyebrow { margin-bottom: .6rem; font-size: .68rem; }
.blog-card h3 { font-size: 1.15rem; line-height: 1.25; margin-bottom: .6rem; }
.blog-card p { font-size: .92rem; color: var(--ink-soft); margin: 0 0 1rem; line-height: 1.55; flex: 1; }
.blog-card .read-more { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }

/* Intro split (subpages) */
.intro-split .intro-head h2 { margin-top: 0; max-width: 34ch; }
.intro-split .intro-body { columns: 2; column-gap: clamp(2rem,4vw,3.5rem); }
.intro-split .intro-body p { font-size: 1.0rem; line-height: 1.72; color: var(--ink-soft); margin-top: 0; }
@media (max-width: 820px) { .intro-split .intro-body { columns: 1; } }

/* Facts card */
.facts-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem 1.75rem; }
.facts-card h4 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin: 0 0 1rem; }
.facts-card dl { margin: 0; display: grid; gap: .7rem; }
.facts-card .frow { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line-soft); }
.facts-card .frow:last-child { border-bottom: 0; padding-bottom: 0; }
.facts-card dt { color: var(--muted); font-size: .9rem; }
.facts-card dd { margin: 0; font-weight: 600; font-size: .92rem; text-align: right; }

.price-callout { padding: clamp(1.5rem,3vw,2.25rem); background: var(--green-mist); border-left: 4px solid var(--green); border-radius: 12px; }
.price-callout .price { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 700; color: var(--green-deep); margin-bottom: .25rem; }
.price-callout .label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.highlight-box { padding: clamp(1.5rem,3vw,2.25rem); background: var(--dark); color: #eef2ec; border-radius: 14px; }
.highlight-box h3 { color: #fff; margin-bottom: .5rem; } .highlight-box p { color: rgba(238,242,236,.85); margin-bottom: 0; }

/* Article */
.article { max-width: 820px; }
.article p { font-size: 1.02rem; line-height: 1.72; color: var(--ink-soft); margin-bottom: 1.15em; }
.article h2 { margin-top: 2.5rem; margin-bottom: .85rem; } .article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 1.75rem; margin-bottom: .6rem; }
.article ul, .article ol { padding-left: 1.4rem; margin: 0 0 1.25rem; }
.article li { margin-bottom: .5rem; line-height: 1.65; color: var(--ink-soft); }
.article ul li::marker { color: var(--green); }
.checklist { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.checklist li { position: relative; padding-left: 1.85rem; margin-bottom: .7rem; line-height: 1.55; }
.checklist li::before { content: ''; position: absolute; left: 0; top: .5rem; width: 16px; height: 8px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

/* Footer */
.site-footer { background: var(--dark); color: #b7c2ba; padding-top: clamp(3rem,5vw,4.5rem); padding-bottom: 1.25rem; font-size: .92rem; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(1.75rem,4vw,3rem); padding-bottom: 2.5rem; }
.footer-main h5 { color: var(--green-light); font-size: .74rem; font-weight: 700; letter-spacing: .16em; margin-bottom: 1.25rem; }
.footer-main ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.footer-main a { color: #b7c2ba; text-decoration: none; transition: color .2s; }
.footer-main a:hover { color: #fff; }
.footer-brand .footer-logo { display: block; margin-bottom: 1.1rem; }
.footer-brand .footer-logo img { width: 180px; height: auto; }
.footer-brand p { font-size: .92rem; line-height: 1.6; color: rgba(183,194,186,.85); max-width: 38ch; }
.footer-contact-item { margin-bottom: 1.1rem; }
.footer-contact-item strong { display: block; color: #fff; font-weight: 600; font-size: .93rem; margin-bottom: .15rem; }
.footer-contact-item span, .footer-contact-item a { font-size: .92rem; color: rgba(183,194,186,.9); }
.footer-link { color: #fff !important; font-weight: 600; }
.footer-disclaimer { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; line-height: 1.7; color: rgba(183,194,186,.6); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; color: rgba(183,194,186,.65); }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0 1.25rem; }
.footer-bottom-links a { color: rgba(183,194,186,.85); text-decoration: none; padding: 0 .5rem; border-left: 1px solid rgba(255,255,255,.18); }
.footer-bottom-links a:first-child { border-left: 0; padding-left: 0; }
.footer-bottom-links a:hover { color: #fff; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 0 1rem; align-items: center; }
.footer-meta span { padding: 0 .5rem; border-left: 1px solid rgba(255,255,255,.18); }
.footer-meta span:first-child { border-left: 0; padding-left: 0; }
.footer-meta a { color: inherit; text-decoration: none; } .footer-meta a:hover { color: #fff; }
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-main { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; align-items: flex-start; } .site-footer { padding-bottom: 5.5rem; } }

/* Float CTA */
.float-call { position: fixed; bottom: 24px; right: 24px; z-index: 50; background: var(--amber); color: #fff; padding: .85rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .86rem; letter-spacing: .02em; text-decoration: none; box-shadow: 0 14px 30px -8px rgba(201,138,43,.55); display: inline-flex; align-items: center; gap: .5rem; transition: transform .2s, background .2s; }
.float-call:hover { background: #a96f1d; color: #fff; transform: translateY(-2px); }
.float-call::before { content: '📞'; font-size: .95rem; }
@media (max-width: 600px) { .float-call { bottom: 16px; right: 16px; padding: .7rem 1rem; font-size: .78rem; } }

/* Entry animation */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-full .container > * { animation: fadeUp .7s ease backwards; }
.hero-full .container > *:nth-child(1) { animation-delay: .05s; }
.hero-full .container > *:nth-child(2) { animation-delay: .13s; }
.hero-full .container > *:nth-child(3) { animation-delay: .21s; }
.hero-full .container > *:nth-child(4) { animation-delay: .29s; }
.hero-full .container > *:nth-child(5) { animation-delay: .37s; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } }
