/* Greenway Garden — Runway direction */
:root {
  --white: #F2F4F1;
  --paper: #FFFFFF;
  --graphite: #1F2422;
  --graphite-2: #2A302D;
  --ink: #1F2422;
  --muted: #5A635F;
  --line: #D5DAD5;
  --line-dark: #3A413E;
  --text-dark: #E9EDEA;
  --muted-dark: #A3ACA7;
  --green: #0A6B3C;
  --green-deep: #064E2B;
  --lime: #8CC63F;

  --cat-l: #EFE8B4;
  --cat-r: #F2A43E;
  --cat-a: #BC8B5F;
  --cat-a1: #E5C9A3;
  --cat-farm: #7FB14C;
  --cat-com: #A4A43C;
  --cat-r1: #A4A43C;
  --cat-r2: #6E8A2B;
  --cat-sb: #F4C4A4;
  --road: #D2D7D2;

  --f-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 20px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
p { margin: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.dark :focus-visible, .footer :focus-visible { outline-color: var(--lime); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3 {
  font-family: var(--f-display);
  font-stretch: 112%;
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
h2 { font-size: clamp(34px, 4.4vw, 62px); }
h3 { font-size: clamp(20px, 1.7vw, 25px); letter-spacing: -0.012em; line-height: 1.15; }

.eyebrow, .mono {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow { color: var(--muted); }
.dark .eyebrow { color: var(--muted-dark); }

.icon { width: 20px; height: 20px; flex: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px;
  border-radius: 999px; border: 1px solid transparent;
  font: 600 15.5px/1.1 var(--f-body);
  text-decoration: none; white-space: nowrap; cursor: pointer; background: none;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s;
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: var(--white); }
.btn-quiet { color: var(--muted); padding-inline: 12px; }
.btn-quiet:hover { color: var(--ink); }
.btn-glass { background: rgba(18, 22, 20, .5); color: #fff; border-color: rgba(255,255,255,.28); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(18, 22, 20, .72); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 14.5px; }
.dim { opacity: .7; letter-spacing: .06em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  font-weight: 600; text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .25s; }
.link-arrow:hover .icon { transform: translateX(4px); }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background-color .3s, box-shadow .3s; }
.site-header.is-scrolled, body.menu-open .site-header {
  background: rgba(242, 244, 241, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand img { height: 46px; width: auto; }
.nav { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.nav a { position: relative; text-decoration: none; font-size: 15px; font-weight: 500; padding-block: 6px; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.2,.7,.1,1); }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle .bar { width: 16px; height: 1.5px; background: var(--ink); transition: transform .3s; }
.menu-toggle[aria-expanded="true"] .bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-h) 0 0; background: var(--white); padding: 24px var(--gutter) 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; overflow-y: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { font-family: var(--f-display); font-stretch: 112%; font-size: 34px; font-weight: 540; letter-spacing: -0.02em; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* Hero */
.hero { padding-top: calc(var(--header-h) + clamp(24px, 4vw, 56px)); padding-bottom: clamp(36px, 5vw, 64px); }
.hero-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 14px; border-top: 1px solid var(--ink); margin-bottom: clamp(18px, 3vw, 34px); }
.hero-badges { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.approval-badge { display: inline-flex; align-items: center; gap: 8px; font: 500 12px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; }
.approval-badge img { width: 22px; height: auto; }
.status { display: inline-flex; align-items: center; gap: 9px; font: 500 12px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(10,107,60,.45); } 100% { box-shadow: 0 0 0 10px rgba(10,107,60,0); } }

.hero-title {
  font-size: min(7.2vw, 108px);
  font-stretch: 118%;
  font-weight: 530;
  letter-spacing: -0.045em;
  line-height: .98;
  text-wrap: initial;
}
br.sm { display: none; }
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.hero-title .w-inner { display: inline-block; }
.hero-title .price { color: var(--green); white-space: nowrap; }
.hero-title .hl .w-inner { background: linear-gradient(var(--lime), var(--lime)) no-repeat 0 92% / 100% .12em; }
.hero-pill {
  display: inline-block; vertical-align: top;
  width: 2.3em; height: .8em; margin-top: .1em;
  border-radius: 999px; overflow: hidden; background: var(--graphite);
  clip-path: inset(0 0% 0 0% round 999px);
}
.hero-pill video { width: 100%; height: 100%; object-fit: cover; }
.hero-foot { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 24px 48px; margin-top: clamp(26px, 4vw, 48px); }
.hero-lede { max-width: 46ch; font-size: clamp(17px, 1.35vw, 20px); color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: clamp(32px, 5vw, 60px) 0 0; border-top: 1px solid var(--line); }
.facts div { display: grid; gap: 6px; padding: 18px 16px 0 20px; border-left: 1px solid var(--line); }
.facts div:first-child { border-left: 0; padding-left: 0; }
.facts dt { font: 500 11.5px/1.2 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0; font-family: var(--f-display); font-stretch: 112%; font-size: clamp(22px, 2.3vw, 34px); font-weight: 520; letter-spacing: -0.02em; line-height: 1.1; font-variant-numeric: tabular-nums; }

html.js .hero > .container { visibility: hidden; animation: hero-show 0s linear 2.5s forwards; }
html.js.motion-ready .hero > .container { visibility: visible; animation: none; }
@keyframes hero-show { to { visibility: visible; } }

/* Cinema */
.cinema { padding-bottom: clamp(64px, 9vw, 120px); }
.cinema-frame { position: relative; aspect-ratio: 854 / 370; border-radius: 24px; overflow: hidden; background: var(--graphite); clip-path: inset(0 0% 0 0% round 24px); }
.cinema-frame video { width: 100%; height: 100%; object-fit: cover; }
.cinema-caption {
  position: absolute; inset: auto 0 0 0;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  padding: clamp(16px, 2.4vw, 28px);
  background: linear-gradient(to top, rgba(12, 15, 14, .6), rgba(12, 15, 14, 0));
  color: #fff;
}

/* Sections */
.section { padding-block: clamp(64px, 8vw, 112px); }
.dark { background: var(--graphite); color: var(--text-dark); }
.dark .lead, .dark p { color: #C2CAC5; }
.section-head { display: grid; gap: 16px; max-width: 780px; margin-bottom: clamp(32px, 4.5vw, 60px); }
.section-head > p { color: var(--muted); max-width: 56ch; }
.section-head.split { max-width: none; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); align-items: end; gap: 16px 48px; }
.section-head.split > div { display: grid; gap: 16px; }
.dark .section-head > p { color: var(--muted-dark); }

/* Location */
.loc-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.loc-copy { display: grid; gap: 22px; align-content: start; }
.loc-copy .lead { font-size: clamp(17px, 1.35vw, 19px); max-width: 48ch; }
.loc-points { list-style: none; margin: 6px 0 4px; padding: 0; border-top: 1px solid var(--line-dark); }
.loc-points li { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: var(--text-dark); font-size: 16px; }
.loc-points .mono { color: var(--muted-dark); font-size: 11px; padding-top: 4px; }
.loc-map { margin: 0; max-width: 470px; justify-self: center; width: 100%; }
.loc-map svg { width: 100%; height: auto; overflow: visible; }
.loc-city { font-family: var(--f-display); font-stretch: 112%; font-size: 22px; font-weight: 560; fill: var(--text-dark); letter-spacing: -.01em; }
.loc-label { font-family: var(--f-body); font-size: 18px; font-weight: 600; fill: var(--text-dark); }
.loc-label.muted { fill: var(--muted-dark); font-weight: 500; }
.loc-label.strong { font-family: var(--f-display); font-stretch: 112%; font-size: 24px; fill: var(--lime); letter-spacing: -.01em; }
.loc-small { font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; fill: var(--muted-dark); }
.loc-note { margin-top: 10px; text-align: center; font: 500 11px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: #7E8782; }
.car-down { animation: car-down 9s linear infinite; }
.car-up { animation: car-up 10s linear infinite; }
.car-down.d2, .car-up.d2 { animation-delay: -3.2s; }
.car-down.d3, .car-up.d3 { animation-delay: -6.4s; }
@keyframes car-down { from { transform: translateY(0); } to { transform: translateY(760px); } }
@keyframes car-up { from { transform: translateY(0); } to { transform: translateY(-760px); } }
.plane, .plane-shadow { transform-box: fill-box; transform-origin: center; }
.plane { animation: plane-takeoff 7s infinite; }
.plane-shadow { animation: plane-shadow 7s infinite; }
@keyframes plane-takeoff {
  0% { transform: translate(0, 0) scale(.85); opacity: 0; animation-timing-function: ease-in; }
  10% { opacity: 1; }
  58% { transform: translate(112px, 0) scale(.85); animation-timing-function: ease-out; }
  84% { transform: translate(160px, -1px) scale(1.35); opacity: 1; }
  100% { transform: translate(186px, -2px) scale(1.7); opacity: 0; }
}
@keyframes plane-shadow {
  0% { transform: translate(0, 0) scale(.85); opacity: 0; animation-timing-function: ease-in; }
  10% { opacity: .45; }
  58% { transform: translate(112px, 0) scale(.85); opacity: .45; animation-timing-function: ease-out; }
  84% { transform: translate(150px, 14px) scale(.9); opacity: .18; }
  100% { transform: translate(170px, 22px) scale(.95); opacity: 0; }
}
.loc-pulse { transform-box: fill-box; transform-origin: center; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.5); opacity: 1; } 80%, 100% { transform: scale(2.2); opacity: 0; } }

/* Why */
.why-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 96px); }
.why-head { display: grid; gap: 16px; align-content: start; position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.why-list { border-bottom: 1px solid var(--line); }
.why-list article { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 12px 32px; padding: 30px 0; border-top: 1px solid var(--line); }
.why-list p { color: var(--muted); }
.approval { display: flex; align-items: center; gap: 18px; }
.approval img { width: 72px; flex: none; }
.approval strong { color: var(--ink); font-weight: 600; }

/* Plots */
.tabs { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; scrollbar-width: none; padding: 2px; }
.tabs::-webkit-scrollbar { display: none; }
.tab { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--line); background: transparent; font-weight: 600; font-size: 15px; cursor: pointer; white-space: nowrap; transition: background-color .25s, color .25s, border-color .25s; }
.tab:hover { border-color: var(--ink); }
.tab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.swatch { width: 11px; height: 11px; border-radius: 3px; flex: none; display: inline-block; }
.panel { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 56px); background: var(--paper); border-radius: var(--radius); padding: clamp(10px, 1.2vw, 14px); }
.panel[hidden] { display: none; }
.panel figure { margin: 0; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; background: #DDE2DD; clip-path: inset(0 0 0 0% round 12px); }
.panel figure img { width: 100%; height: 100%; object-fit: cover; }
.panel-body { display: grid; align-content: space-between; gap: 28px; padding: clamp(10px, 2vw, 26px) clamp(8px, 1.6vw, 22px) clamp(10px, 1.6vw, 20px) 0; }
.panel.is-portrait { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.panel.is-portrait figure { aspect-ratio: 4 / 5; }
.home-figure { position: relative; }
.home-figure img { transition: opacity .3s ease; }
.home-figure img.is-swapping { opacity: 0; }
.home-figure figcaption { position: absolute; left: 12px; bottom: 12px; padding: 7px 11px; border-radius: 999px; background: rgba(18, 22, 20, .55); color: #fff; font-size: 10.5px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.cat-picker { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.cat-picker button { display: grid; gap: 3px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: transparent; text-align: left; cursor: pointer; transition: background-color .2s, border-color .2s, color .2s; }
.cat-picker button span { font-weight: 600; font-size: 15px; line-height: 1.2; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cat-picker button small { font: 500 10.5px/1.2 var(--f-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.cat-picker button:hover { border-color: var(--ink); }
.cat-picker button[aria-checked="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.cat-picker button[aria-checked="true"] small { color: rgba(255, 255, 255, .7); }
.com-list { margin: 0; display: grid; border-top: 1px solid var(--line); }
.com-list div { display: grid; grid-template-columns: 124px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.com-list dt { display: grid; gap: 3px; align-content: start; }
.com-list dt span { font-weight: 600; font-variant-numeric: tabular-nums; }
.com-list dt small { font: 500 10.5px/1.2 var(--f-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.com-list dd { margin: 0; color: var(--muted); font-size: 15px; }
.small-note { font-size: 14px; color: var(--muted); }
.panel-text { display: grid; gap: 16px; }
.panel-text p { color: var(--muted); max-width: 42ch; }
.sizes { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sizes li { font: 500 13px/1 var(--f-mono); padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-variant-numeric: tabular-nums; }
.start { display: grid; gap: 6px; }
.start .mono { color: var(--muted); }
.start-note { font: 500 12px/1.2 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.start strong { font-family: var(--f-display); font-stretch: 112%; font-size: clamp(36px, 3.6vw, 54px); font-weight: 560; letter-spacing: -.035em; line-height: 1; color: var(--green); font-variant-numeric: tabular-nums; }
.panel-cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* Masterplan */
.mp { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 16px; background: var(--paper); border-radius: var(--radius); padding: clamp(10px, 1.2vw, 14px); }
.mp-map { border-radius: 12px; background: #E8EBE7; overflow: hidden; }
.mp-svg { width: 100%; height: auto; }
.mp-site { fill: var(--road); }
.mp-m9 { fill: var(--graphite-2); }
.mp-lane { stroke: #8A938E; stroke-width: 3; stroke-dasharray: 22 18; }
.mp-road-label { font: 600 17px var(--f-mono); letter-spacing: .24em; fill: #E9EDEA; }
.mp-road-label.ink { fill: #6C7570; font-size: 14px; }
.mp-exec-fill { fill: #E2E6E1; }
.mp-exec text { font-family: var(--f-display); font-stretch: 112%; font-size: 30px; font-weight: 520; fill: #7B847F; }
.mp-exec text.sub { font-family: var(--f-mono); font-size: 16px; letter-spacing: .2em; font-weight: 500; }
.mp-gate { fill: var(--paper); stroke: var(--graphite); stroke-width: 5; }
.mp-area { cursor: pointer; outline: none; }
.mp-area > * { transition: opacity .35s; }
.mp-com .fill { stroke: transparent; stroke-width: 6; transition: stroke .2s; }
.mp-com:hover .fill, .mp-com:focus-visible .fill, .mp-com.is-active .fill { stroke: var(--graphite); }
.mp-roundabout { fill: var(--paper); stroke: var(--graphite); stroke-width: 4; pointer-events: none; }
.mp-enclave .edge { fill: none; stroke: transparent; stroke-width: 7; stroke-linejoin: round; transition: stroke .2s; }
.mp-enclave:hover .edge, .mp-enclave:focus-visible .edge, .mp-enclave.is-active .edge { stroke: var(--graphite); }
.mp-svg.has-active .mp-area:not(.is-active) > * { opacity: .38; }
.mp-num { font-family: var(--f-display); font-stretch: 112%; font-size: 48px; font-weight: 600; fill: var(--graphite); text-anchor: middle; dominant-baseline: central; pointer-events: none; paint-order: stroke; stroke: rgba(255,255,255,.6); stroke-width: 7px; stroke-linejoin: round; }
.cat-r1 { fill: var(--cat-r1); } .cat-r2 { fill: var(--cat-r2); } .cat-sb { fill: var(--cat-sb); }
.cat-r1-bg { background: var(--cat-r1); } .cat-r2-bg { background: var(--cat-r2); } .cat-sb-bg { background: var(--cat-sb); }
.cat-l { fill: var(--cat-l); } .cat-r { fill: var(--cat-r); } .cat-a { fill: var(--cat-a); } .cat-a1 { fill: var(--cat-a1); } .cat-farm { fill: var(--cat-farm); }
.cat-l-bg { background: var(--cat-l); } .cat-r-bg { background: var(--cat-r); } .cat-a-bg { background: var(--cat-a); } .cat-a1-bg { background: var(--cat-a1); } .cat-farm-bg { background: var(--cat-farm); }
.mp-panel { display: grid; grid-template-rows: 1fr auto; gap: 24px; padding: clamp(12px, 1.6vw, 22px) clamp(10px, 1.2vw, 16px); }
.mp-detail { display: grid; gap: 14px; align-content: start; }
.mp-detail[hidden] { display: none; }
.mp-detail > p:not(.mono) { color: var(--muted); }
.mp-detail .mono { color: var(--muted); }
.mp-detail h3 { font-size: clamp(24px, 2vw, 30px); }
.mp-facts { margin: 4px 0 0; display: grid; border-top: 1px solid var(--line); }
.mp-facts div { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.mp-facts dt { color: var(--muted); font-size: 15px; }
.mp-facts dd { margin: 0; font-weight: 600; font-size: 15px; min-width: 0; }
.mp-actions { display: grid; gap: 6px; margin-top: 6px; }
.mp-legend { display: grid; gap: 6px; padding-top: 16px; border-top: 1px solid var(--line); }
.mp-legend > .mono { color: var(--muted); font-size: 10.5px; margin-top: 6px; }
.mp-legend ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mp-legend button { width: 100%; display: grid; grid-template-columns: 14px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 7px 9px; border: 0; border-radius: 8px; background: transparent; font-size: 14.5px; text-align: left; cursor: pointer; transition: background-color .2s, color .2s; }
.mp-legend button:hover { background: var(--white); }
.mp-legend button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.mp-legend button .swatch { width: 14px; height: 14px; }
.mp-legend button .mono { color: var(--muted); font-size: 11px; letter-spacing: .06em; }
.mp-legend button[aria-pressed="true"] .mono { color: rgba(255, 255, 255, .7); }

/* Amenities */
.amenities { padding-block: clamp(64px, 7vw, 100px); overflow: hidden; }
.amenities .section-head { margin-bottom: clamp(24px, 3vw, 40px); }
.amen-hint { justify-self: end; }
.amen-hint .touch { display: none; }
@media (max-width: 1023px), (max-height: 699px) { .amen-hint .desk { display: none; } .amen-hint .touch { display: inline; } }
.amen-wrap { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.amen-wrap::-webkit-scrollbar { display: none; }
.amen-track { display: flex; gap: 16px; width: max-content; padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); }
.amen-card { width: clamp(270px, 28vw, 380px); flex: none; display: grid; gap: 10px; align-content: start; scroll-snap-align: start; scroll-margin-left: var(--gutter); }
.amen-card figure { margin: 0 0 6px; aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden; background: var(--graphite-2); }
.amen-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.1,1); }
.amen-card:hover figure img { transform: scale(1.04); }
.amen-card.text figure { display: grid; place-items: center; border: 1px solid var(--line-dark); }
.amen-card.text svg { width: 42%; }
.amen-card h3 { color: #fff; }
.amen-card p { font-size: 15.5px; color: var(--muted-dark); }

/* Majestic */
.mm { display: grid; grid-template-columns: minmax(200px, 300px) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.mm-logo { background: #14213D; border-radius: var(--radius); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 38px; clip-path: inset(0% round 6.7%); }
.mm-logo img { width: 100%; flex: none; }
.mm-copy { display: grid; gap: 18px; }
.mm-copy > p:not(.eyebrow) { color: var(--muted); max-width: 56ch; }
.mm-stat { display: flex; align-items: baseline; gap: 12px; }
.mm-stat strong { font-family: var(--f-display); font-stretch: 112%; font-size: clamp(44px, 4.6vw, 64px); font-weight: 560; letter-spacing: -.04em; line-height: 1; color: #14213D; }
.mm-stat span { font-weight: 600; color: var(--ink); }
.mm-projects { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.mm-projects li { font-size: 14.5px; font-weight: 500; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }

/* Visit */
.visit { padding-top: 0; }
.visit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.visit-card { background: var(--paper); border-radius: var(--radius); padding: 12px; display: grid; gap: 16px; align-content: start; }
.map-facade {
  position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  display: grid; place-items: center; align-content: center; gap: 14px;
  background-color: #E4E8E3;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.75) 2px, transparent 2px),
    linear-gradient(rgba(255,255,255,.75) 2px, transparent 2px),
    linear-gradient(35deg, transparent 48%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.9) 52%, transparent 52%);
  background-size: 46px 46px, 46px 46px, 100% 100%;
}
.map-facade .pin { width: 34px; height: 34px; color: var(--green); }
.map-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.visit-body { display: grid; gap: 10px; padding: 4px 10px 12px; }
.visit-body .mono { color: var(--muted); }
.visit-body > p:not(.mono) { color: var(--muted); }
.visit-body .hours { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; }
.visit-body .hours .mono { color: var(--green); }
.visit-cta { background: var(--green); color: #fff; padding: clamp(20px, 2.4vw, 30px); align-content: space-between; gap: 28px; }
.visit-cta .mono { color: rgba(255,255,255,.72); }
.visit-cta h3 { margin-top: 10px; }
.visit-number { display: grid; gap: 14px; justify-items: start; }
.visit-number > a:first-child { font-family: var(--f-display); font-stretch: 112%; font-size: clamp(28px, 2.6vw, 38px); font-weight: 560; letter-spacing: -.02em; text-decoration: none; font-variant-numeric: tabular-nums; }
.socials { display: flex; gap: 8px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); transition: background-color .25s; }
.socials a:hover { background: rgba(255,255,255,.14); }

/* Footer */
.footer { background: var(--graphite); color: var(--text-dark); padding-block: clamp(56px, 7vw, 88px) 28px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr) minmax(0, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: grid; gap: 18px; align-content: start; }
.footer-brand img { width: 150px; height: auto; }
.footer-brand p, .footer-contact p:not(.mono) { color: var(--muted-dark); max-width: 38ch; }
.footer .mono { color: #7E8782; margin-bottom: 6px; }
.footer-nav, .footer-contact { display: grid; gap: 8px; align-content: start; }
.footer-nav a, .footer-contact > a { text-decoration: none; width: fit-content; }
.footer-nav a:hover, .footer-contact > a:hover { color: var(--lime); }
.footer-contact .socials { margin-top: 8px; }
.footer-bottom { display: grid; gap: 8px; padding-top: 24px; font-size: 14px; color: var(--muted-dark); }
.footer-approval { display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
.footer-approval img { width: 22px; height: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-bottom .legal { font-size: 12.5px; color: #7E8782; max-width: 90ch; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  box-shadow: 0 10px 30px rgba(10, 60, 36, .35);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .35s, transform .35s cubic-bezier(.2,.7,.1,1), background-color .25s;
}
.wa-float .icon { width: 28px; height: 28px; }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--green-deep); }

/* Walkthrough dialog */
.walk { width: min(1040px, 94vw); padding: 0; border: 0; border-radius: 16px; background: #000; overflow: visible; }
.walk::backdrop { background: rgba(10, 12, 11, .82); }
.walk video { width: 100%; border-radius: 16px; aspect-ratio: 854 / 480; background: #000; }
.walk-close { position: absolute; top: -52px; right: 0; width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--paper); color: var(--ink); display: grid; place-items: center; cursor: pointer; }

/* Price format switch (preview only) */
.price-switch { position: fixed; left: 18px; bottom: 18px; z-index: 40; display: flex; align-items: center; gap: 4px; padding: 5px 5px 5px 14px; background: var(--graphite); color: #fff; border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.price-switch[hidden] { display: none; }
.price-switch .mono { font-size: 10.5px; color: var(--muted-dark); margin-right: 6px; }
.price-switch button { border: 0; background: transparent; color: #fff; padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; }
.price-switch button[aria-pressed="true"] { background: var(--lime); color: var(--graphite); }

/* Responsive */
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mp { grid-template-columns: minmax(0, 1fr); }
  .mp-panel { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto; align-items: start; column-gap: 40px; }
  .mp-legend { border-top: 0; padding-top: 0; }
}
@media (max-width: 900px) {
  .hero-foot { grid-template-columns: minmax(0, 1fr); }
  .loc-grid, .why-grid, .mm { grid-template-columns: minmax(0, 1fr); }
  .why-head { position: static; }
  .panel, .panel.is-portrait { grid-template-columns: minmax(0, 1fr); }
  .panel.is-portrait figure { aspect-ratio: 4 / 4.6; }
  .panel-body { padding: 8px 10px 14px; }
  .visit-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .visit-cta { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .mm-logo { max-width: 260px; }
  .section-head.split { grid-template-columns: minmax(0, 1fr); }
  .amen-hint { justify-self: start; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-actions .btn span { display: none; }
  .header-actions .btn { width: 44px; min-height: 44px; padding: 0; }
  .brand img { height: 40px; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts div:nth-child(3) { border-left: 0; padding-left: 0; }
  .facts div:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 18px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-top { flex-direction: column; align-items: flex-start; gap: 10px; }
  br.lg, .hero-title .hero-pill { display: none; }
  br.sm { display: inline; }
  .hero-title { font-size: clamp(32px, 9.4vw, 60px); font-stretch: 104%; }
  .hero-badges { gap: 14px; }
  .cat-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .com-list div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .cinema-frame { aspect-ratio: 4 / 3.4; border-radius: 16px; }
  .cinema-caption .mono { display: none; }
  .loc-points li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .why-list article { grid-template-columns: minmax(0, 1fr); padding: 24px 0; }
  .panel-cta .btn, .mp-actions .btn-green { width: 100%; }
  .mp-panel { grid-template-columns: minmax(0, 1fr); }
  .mp-num { font-size: 64px; }
  .visit-grid, .footer-top { grid-template-columns: minmax(0, 1fr); }
  .visit-number .btn { width: 100%; }
  .price-switch { left: 12px; bottom: 12px; }
  .wa-float { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html.js .hero > .container { visibility: visible; animation: none; }
  .plane, .plane-shadow { animation: none !important; opacity: 1; }
  .plane-shadow { opacity: .45; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
