/* ASSET_VER 20260912b — build stamp. Cache correctness is carried by the
   content hash in this filename, not by this string. */
/* =====================================================================
   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: 1180px;
  --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 ---------- */
/* ALL containers — header/nav inner, hero inner, body sections, footer inner.
   1180px fixed, measured-edge. This is the ONLY place a container width is set;
   never override it inline, per page, or with a second class. */
.container { width: min(var(--max-w), 100% - 44px); margin-inline: auto; }
/* Retired: .container-narrow and .container-prose set a SECOND pair of vertical
   edges. They are now no-ops so existing markup keeps aligning to the same edges. */
.container-narrow, .container-prose { width: min(var(--max-w), 100% - 44px); }
.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-d > .nav-item > a,
.site-header.over-hero .nav-d > .nav-item > .nav-trigger { color: #fff; background: transparent; }
.site-header.over-hero .nav-d > .nav-item > a.active { color: #fff; background: transparent; }
.site-header.over-hero .nav-d > .nav-item > a:hover,
.site-header.over-hero .nav-d > .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 (NO backdrop-filter: creates a containing block that traps fixed children) */
.site-header.solid { background: #f6f8f4; 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; }

/* ---------- DESKTOP NAV (.nav-d) — inside header, hidden on mobile ---------- */
.nav-d { display: flex; align-items: center; gap: .05rem; }
.nav-d .nav-item { position: relative; }
.nav-d a, .nav-d .nav-trigger { font-size: .88rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: .55rem .7rem; 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-d a:hover, .nav-d .nav-trigger:hover, .nav-d a.active { color: var(--green-deep); background: var(--green-mist); }
.nav-d .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-d .nav-item:hover .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-d .nav-item:hover .nav-dropdown, .nav-d .nav-item:focus-within .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); }
@media (max-width: 1240px) and (min-width: 1081px) { .header-phone { display: none; } }
.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); }

/* Hamburger toggle button */
.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; }

/* Hide desktop nav and show toggle on mobile widths */
@media (max-width: 1080px) {
  .nav-d { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-right .header-phone, .header-right .btn-cta { display: none; }
}

/* ---------- MOBILE MENU (.nav-m) — body-level, slide-in from right ---------- */
.nav-m { display: none; }
.nav-m-backdrop { display: none; }

@media (max-width: 1080px) {
  .nav-m-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(21,32,27,.55);
    opacity: 0; visibility: hidden;
    transition: opacity .25s, visibility .25s;
    z-index: 9998;
  }
  .nav-m-backdrop.is-open { opacity: 1; visibility: visible; }

  .nav-m {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(420px, 100vw);
    background: #f6f8f4;
    box-shadow: -20px 0 50px -10px rgba(21,32,27,.4);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-m.is-open { transform: translateX(0); }

  .nav-m-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line-soft); }
  .nav-m-title { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
  .nav-m-close { background: none; border: 0; width: 42px; height: 42px; font-size: 1.8rem; line-height: 1; color: var(--ink); cursor: pointer; padding: 0; border-radius: 7px; display: flex; align-items: center; justify-content: center; }
  .nav-m-close:hover { background: var(--green-mist); color: var(--green-deep); }

  .nav-m-list { display: flex; flex-direction: column; padding: .5rem 1rem; flex: 1; }
  .nav-m-list > a, .nav-m-group > summary {
    display: block; padding: 1rem .85rem; font-size: 1.02rem; font-weight: 500;
    color: var(--ink); text-decoration: none; border-radius: 8px;
    border-bottom: 1px solid var(--line-soft);
    cursor: pointer; list-style: none;
  }
  .nav-m-list > a:last-child { border-bottom: 0; }
  .nav-m-list > a.active { color: var(--green-deep); background: var(--green-mist); }
  .nav-m-list > a:hover, .nav-m-list > a:focus-visible { background: var(--sage); color: var(--green-deep); }
  .nav-m-group { border-bottom: 1px solid var(--line-soft); }
  .nav-m-group > summary::-webkit-details-marker { display: none; }
  .nav-m-group > summary { position: relative; }
  .nav-m-group > summary::after {
    content: ''; position: absolute; right: 1rem; top: 50%;
    width: 8px; height: 8px;
    border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
    transform: translateY(-65%) rotate(45deg);
    transition: transform .2s;
  }
  .nav-m-group[open] > summary::after { transform: translateY(-35%) rotate(-135deg); }
  .nav-m-group > summary:hover { background: var(--sage); color: var(--green-deep); }
  .nav-m-sub { padding: 0 0 .5rem .85rem; display: flex; flex-direction: column; gap: 0; }
  .nav-m-sub a {
    display: block; padding: .7rem .85rem; font-size: .94rem; color: var(--ink-soft);
    text-decoration: none; border-radius: 6px;
  }
  .nav-m-sub a:hover, .nav-m-sub a.active { background: var(--green-mist); color: var(--green-deep); }

  .nav-m-foot { padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .65rem; }
  .nav-m-phone {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .9rem 1rem; font-weight: 600; font-size: .98rem; color: var(--green-deep);
    background: var(--green-mist); border-radius: 8px; text-decoration: none;
  }
  .nav-m-cta {
    display: block; padding: .95rem 1rem; text-align: center; font-weight: 600;
    background: var(--green); color: #fff; border-radius: 8px;
    text-decoration: none; box-shadow: 0 8px 20px -8px rgba(47,125,84,.55);
  }
  .nav-m-cta:hover { background: var(--green-deep); }

  /* Hamburger morph when menu open */
  body.nav-open .nav-toggle span { background: transparent; }
  body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 1081px) {
  .nav-m, .nav-m-backdrop { display: none !important; }
}

/* ---------- 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); }
.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; font-size: clamp(1.9rem, 4vw, 2.85rem); line-height: 1.08; max-width: 16ch; 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; } }

/* Mobile refinements — keep the hero compact and the float button out of the way */
@media (max-width: 720px) {
  .hero-full { min-height: auto; }
  .hero-full::after { background: linear-gradient(180deg, rgba(21,32,27,.7) 0%, rgba(21,32,27,.4) 40%, rgba(21,32,27,.7) 78%, rgba(21,32,27,.92) 100%); }
  .hero-full .container { padding-top: calc(var(--header-h) + 1.4rem); padding-bottom: 1.4rem; }
  .hero-full .hero-eyebrow { font-size: .66rem; letter-spacing: .14em; margin-bottom: .85rem; }
  .hero-full h1 { font-size: 2rem; line-height: 1.1; max-width: 100%; }
  .hero-full .lead { font-size: .98rem; line-height: 1.55; }
  .hero-actions { margin-top: 1rem; gap: .65rem; }
  .hero-stats { margin-top: 1.4rem; }
  .hero-stats .hs { padding: .8rem .9rem; }
  .hero-stats .hs .v { font-size: 1rem; }
  .hero-stats .hs .l { font-size: .6rem; letter-spacing: .1em; }
  .section { padding: 2.25rem 0; }
}

/* ---------- 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-frame.align-right img { object-position: right center; }
.media-frame.align-right::before { inset: 14px 14px -14px -14px; }
.media-cap { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 60px -28px rgba(21,32,27,.4); margin: 0; }
.media-cap img { width: 100%; height: 100%; border-radius: 14px; object-fit: cover; display: block; }
.media-cap figcaption { position: absolute; left: 1rem; bottom: 1rem; right: auto; background: rgba(21,32,27,.78); backdrop-filter: blur(4px); color: #fff; font-size: .82rem; padding: .55rem .85rem; border-radius: 8px; max-width: calc(100% - 2rem); }
.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; } }

/* Zoomable image link (click to open full-size) */
.img-zoom { display: block; cursor: zoom-in; position: relative; text-decoration: none; }
.img-zoom::after { content: '⤢'; position: absolute; top: .65rem; right: .65rem; width: 30px; height: 30px; border-radius: 6px; background: rgba(21,32,27,.65); color: #fff; font-size: .9rem; line-height: 30px; text-align: center; opacity: 0; transition: opacity .2s; pointer-events: none; }
.img-zoom:hover::after, .img-zoom:focus-visible::after { opacity: 1; }
.fp-card .img-zoom img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--sage); display: block; }
.figure .img-zoom { border-radius: 12px; overflow: hidden; }

/* Float CTA */

/* 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; } }

/* Hide hero intro blurb on mobile (matches other sites) */
@media (max-width: 760px){ .hero-full .lead{ display:none; } }

/* Press / In-the-News section */
.press-list{list-style:none;padding:0;margin:1.4rem 0 0;display:grid;gap:.7rem}
.press-list li{background:#fff;border:1px solid var(--line);border-radius:12px}
.press-list a{display:block;padding:1rem 1.2rem;color:var(--ink);text-decoration:none;transition:background .15s,border-color .15s}
.press-list a:hover{background:var(--green-mist)}
.press-list strong{color:var(--green-deep);margin-right:.4rem}

/* =====================================================================
   PURCHASE / STAMP DUTY CALCULATOR MODULE (.ppc)
   Namespaced. Colour comes entirely from this site's existing tokens —
   no palette values are declared here.
   ===================================================================== */
.ppc{
  --ppc-ink:var(--green-deep);
  --ppc-line:var(--line);
  --ppc-surface:var(--sage);
  --ppc-accent:var(--amber);
  --ppc-muted:var(--muted);
  --ppc-serif:var(--font-display);
  --ppc-sans:var(--font-body);
  margin:26px 0 8px;
}
.ppc-grid{display:grid;grid-template-columns:minmax(300px,1fr) minmax(0,1.35fr);gap:22px;align-items:start}
.ppc-card{background:var(--ppc-surface);border:1px solid var(--ppc-line);border-radius:12px;padding:22px}
.ppc-card + .ppc-card{margin-top:22px}
.ppc-card > h3{margin:0 0 4px;font-size:1.1rem}
.ppc-card > h3 + .ppc-sub{margin:0 0 18px;padding-bottom:14px;border-bottom:1px solid var(--ppc-line);
  font-size:.86rem;color:var(--ppc-muted)}

.ppc-f{margin-bottom:16px}
.ppc-f label{display:block;font-size:.82rem;font-weight:600;margin-bottom:5px}
.ppc-f input{width:100%;padding:10px 12px;font:inherit;font-size:.95rem;color:inherit;
  background:#fff;border:1px solid var(--ppc-line);border-radius:7px}
.ppc-f input:focus-visible{outline:2px solid var(--ppc-accent);outline-offset:1px;border-color:var(--ppc-accent)}
.ppc-pair{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ppc-hint{font-size:.78rem;color:var(--ppc-muted);margin-top:4px}

.ppc-seg{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:8px}
.ppc-seg button{padding:10px 4px;font:inherit;font-size:.95rem;font-weight:700;line-height:1.25;cursor:pointer;
  background:#fff;color:inherit;border:1px solid var(--ppc-line);border-radius:7px}
.ppc-seg button span{display:block;font-size:.72rem;font-weight:400;color:var(--ppc-muted)}
.ppc-seg button[aria-pressed="true"]{background:var(--ppc-ink);border-color:var(--ppc-ink);color:#fff}
.ppc-seg button[aria-pressed="true"] span{color:rgba(255,255,255,.78)}
.ppc-linkbtn{display:inline-block;padding:9px 16px;font:inherit;font-size:.88rem;font-weight:600;cursor:pointer;
  background:#fff;color:var(--ppc-ink);border:1px solid var(--ppc-ink);border-radius:7px;text-decoration:none}
.ppc-linkbtn:hover{background:var(--ppc-ink);color:#fff}

.ppc-tl{list-style:none;margin:18px 0 0;padding:0 0 0 22px;border-left:2px solid var(--ppc-line)}
.ppc-tl li{position:relative;padding:0 0 20px 4px}
.ppc-tl li:last-child{padding-bottom:0}
.ppc-tl li::before{content:"";position:absolute;left:-29px;top:6px;width:11px;height:11px;border-radius:50%;
  background:var(--ppc-surface);border:2px solid var(--ppc-accent)}
.ppc-tl li:last-child::before{background:var(--ppc-accent)}
.ppc-tl .wk{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ppc-muted)}
.ppc-tl .ev{font-weight:600}
.ppc-tl .de{font-size:.85rem;color:var(--ppc-muted)}

.ppc-tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:12px;margin-top:16px}
.ppc-tile{background:#fff;border:1px solid var(--ppc-line);border-radius:9px;padding:13px 15px}
.ppc-tile .k{font-size:.76rem;color:var(--ppc-muted)}
.ppc-tile .v{font-family:var(--ppc-serif);font-size:1.32rem;line-height:1.2;margin-top:3px}
.ppc-tile.is-key{border-color:var(--ppc-accent)}
.ppc-tile.is-key .v{color:var(--ppc-accent)}

.ppc-rows{margin-top:4px}
.ppc-row{display:flex;justify-content:space-between;gap:18px;align-items:baseline;
  padding:12px 0;border-bottom:1px dashed var(--ppc-line)}
.ppc-row:last-child{border-bottom:0}
.ppc-row .lab{font-weight:600}
.ppc-row .lab small{display:block;font-weight:400;font-size:.8rem;color:var(--ppc-muted)}
.ppc-row .amt{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums}
.ppc-row .amt small{display:block;font-size:.8rem;color:var(--ppc-muted)}
.ppc-row.is-total{border-bottom:0;border-top:1px solid var(--ppc-line);margin-top:4px}
.ppc-row.is-total .amt{font-weight:700}

.ppc-headline{display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap;
  margin-top:18px;padding:18px 20px;background:#fff;border:1px solid var(--ppc-accent);border-radius:10px}
.ppc-headline .k{font-size:.78rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--ppc-accent)}
.ppc-headline .k small{display:block;font-size:.82rem;font-weight:400;letter-spacing:0;text-transform:none;color:var(--ppc-muted)}
.ppc-headline .v{font-family:var(--ppc-serif);font-size:2rem;line-height:1;font-variant-numeric:tabular-nums}

.ppc-scroll{overflow-x:auto;margin-top:16px;border:1px solid var(--ppc-line);border-radius:9px;background:#fff}
table.ppc-dt{width:100%;min-width:860px;border-collapse:collapse;font-size:.88rem}
table.ppc-dt th,table.ppc-dt td{padding:10px 13px;text-align:right;border-bottom:1px solid var(--ppc-line);white-space:nowrap}
table.ppc-dt th:first-child,table.ppc-dt td:first-child{text-align:left;white-space:normal;min-width:150px}
table.ppc-dt th:nth-child(2),table.ppc-dt td:nth-child(2){text-align:left}
table.ppc-dt thead th{background:var(--ppc-ink);color:#fff;font-family:var(--ppc-sans);font-size:.7rem;
  letter-spacing:.08em;text-transform:uppercase;font-weight:700;border-bottom:0}
table.ppc-dt tbody td{font-variant-numeric:tabular-nums}
table.ppc-dt tr.is-sp td{background:var(--ppc-surface);font-weight:600}
table.ppc-dt tr.is-tot td{border-bottom:0;font-weight:700;background:var(--ppc-surface)}
table.ppc-dt td.na{color:var(--ppc-muted)}
table.ppc-dt td.disb{color:var(--ppc-accent);font-weight:600}

.ppc-cmp{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px;margin-top:16px}
.ppc-col{background:#fff;border:1px solid var(--ppc-line);border-radius:10px;padding:18px}
.ppc-col.is-sel{border-color:var(--ppc-accent);box-shadow:inset 0 0 0 1px var(--ppc-accent)}
.ppc-col h4{margin:0 0 12px;font-family:var(--ppc-serif);font-size:1.08rem;font-weight:400}
.ppc-col .ppc-row{padding:9px 0;font-size:.92rem}
.ppc-note{margin-top:14px;font-size:.85rem;color:var(--ppc-muted)}
.ppc-flag{margin-top:16px;padding:14px 16px;background:var(--ppc-surface);
  border-left:3px solid var(--ppc-accent);border-radius:0 8px 8px 0;font-size:.9rem}
.ppc-flag b{display:block;margin-bottom:2px}
.ppc-actions{display:flex;justify-content:flex-end;gap:12px;align-items:center;margin-bottom:14px;font-size:.85rem;color:var(--ppc-muted)}
.scroll-hint{display:none}
@media (max-width:860px){
  .scroll-hint{display:block;font-size:.8rem;font-weight:600;color:var(--ppc-muted);margin:10px 0 -6px}
  .scroll-hint::after{content:" \2192"}
}
.ppc [hidden]{display:none !important}

@media (max-width:860px){
  .ppc-grid{grid-template-columns:1fr}
  .ppc-headline .v{font-size:1.6rem}
}
@media print{
  .ppc-actions,.ppc-linkbtn,.demo-note{display:none !important}
  .ppc-grid{grid-template-columns:1fr 1fr}
  .ppc-card{break-inside:avoid;background:#fff}
  .ppc-scroll{overflow:visible}
  table.ppc-dt{min-width:0;font-size:.72rem}
  table.ppc-dt thead th{background:#eee;color:#000;-webkit-print-color-adjust:exact;print-color-adjust:exact}
}
@media (prefers-reduced-motion:reduce){*{transition:none !important;animation:none !important}}

/* =====================================================================
   MOBILE QUICK-CONTACT BAR (.mcta) — BUILD-SPEC canonical, mandatory on
   every page. Only the Enquire background is mapped to this site's token;
   the bar and WhatsApp colours are fixed by spec. WhatsApp label uses
   #0B3B22 (5.30:1) — white on this green measures 2.38:1 and fails AA.
   ===================================================================== */
.mcta{display:none}
@media(max-width:760px){
  .mcta{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;position:fixed;left:0;right:0;bottom:0;z-index:150;
    background:#1e2528;padding:10px 12px calc(10px + env(safe-area-inset-bottom))}
  .mcta a{display:flex;align-items:center;justify-content:center;padding:12px 8px;border-radius:10px;
    font-weight:700;font-size:.95rem;text-decoration:none;white-space:nowrap;color:#fff;min-height:48px}
  .mcta a.mcta-call{background:#3d454a}
  .mcta a.mcta-wa{background:#3fbf5a;color:#0B3B22}
  .mcta a.mcta-enq{background:var(--green)}
  body{padding-bottom:calc(66px + env(safe-area-inset-bottom))}
}
@media print{.mcta{display:none !important}}
