/* ============================================================
   The Lïef · 301 W Osborn — consumer marketing site
   LÏEF brand tokens (BRAND-STANDARDS.md):
   Greek Villa #EFECE3 · Loggia #C2B8A7 · Succulent #636c64
   Urbane Bronze #5E5345 · Tricorn Black #303030 · Brick/terracotta #894534 (warm accent)
   Hunter #18351D (deep-green dark bands)
   Type: Japandi (editorial serif display) · Japandi (body/labels)
   ============================================================ */

@font-face{font-family:"Japandi";src:url("assets/fonts/Japandi-Regular.otf") format("opentype");font-weight:200 499;font-style:normal;font-display:swap;}
@font-face{font-family:"Japandi";src:url("assets/fonts/Japandi-Bold.otf") format("opentype");font-weight:500 900;font-style:normal;font-display:swap;}
@font-face{font-family:"Japandi";src:url("assets/fonts/Japandi-Light.otf") format("opentype");font-weight:1 199;font-style:normal;font-display:swap;}
/* Piala = the "The Lïef" wordmark lockup. Commercial license purchased 2026-06. */
@font-face{font-family:"Piala";src:url("assets/fonts/Piala-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;}

:root {
  --villa: #EFECE3;
  --villa-deep: #E7E2D5;
  --loggia: #C2B8A7;
  --succulent: #636c64;
  --bronze: #5E5345;
  --tricorn: #303030;
  --ink: #2B2925;
  --night: #26221C;
  --paper: #efece3;
  --white: #FFFFFF;
  --gray: #2C2720;
  --gold: #E8B15A;
  --brick: #894534;
  --hunter: #5E5345;
  --line: rgba(94, 83, 69, 0.22);
  --serif: "Japandi", -apple-system, "Helvetica Neue", sans-serif; /* Osborn = Japandi only, no Cormorant */
  --sans: "Japandi", -apple-system, "Helvetica Neue", sans-serif;
  --label: "Japandi", "Helvetica Neue", sans-serif;
  --wordmark: "Piala", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--tricorn);
  background: var(--villa);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 2.6vw, 40px); }
.wrap-wide { max-width: 1380px; margin: 0 auto; padding: 0 clamp(20px, 2.6vw, 40px); }

/* ---------- type ---------- */
.overline {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--tricorn);
}
h2.h-display { font-size: clamp(34px, 4.8vw, 56px); margin: 18px 0 24px; }
.lead { font-family: var(--sans); font-weight: 400; font-size: 18.5px; line-height: 1.6; color: var(--gray); max-width: 64ch; }
.muted { color: var(--gray); }

/* ---------- topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  padding: 22px 0;
  transition: background 0.5s ease, padding 0.45s ease, box-shadow 0.5s ease;
}
.topbar .bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; display: inline-flex; align-items: baseline; text-decoration: none; }
.brand img { height: 26px; width: auto; transition: opacity 0.5s ease; }
.brand .bname {
  font-family: var(--wordmark); font-size: 14px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--tricorn);
}
.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  font-family: var(--label); font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: var(--villa);
  transition: color 0.25s ease;
}
.nav a:hover { color: var(--succulent); }
.nav .nav-cta {
  border: 1px solid rgba(94, 83, 69, 0.55);
  padding: 9px 20px;
}
.nav .nav-cta:hover { border-color: var(--succulent); }

.topbar.solid { background: rgba(239, 236, 227, 0.98); padding: 14px 0; box-shadow: 0 1px 0 var(--line); }

/* over the hero: light logo + light nav; once scrolled (.solid): dark */
.logo-dark { position: absolute; left: 0; top: 0; opacity: 0; }
.logo-dots { opacity: 1; }
.nav .nav-cta { border-color: rgba(239, 236, 227, 0.5); }
.topbar.solid .logo-dots { opacity: 0; }
.topbar.solid .logo-dark { opacity: 1; }
.topbar.solid .nav a { color: var(--tricorn); }
.topbar.solid .nav a:hover { color: var(--succulent); }
.topbar.solid .nav .nav-cta { border-color: rgba(94, 83, 69, 0.55); }
.topbar.solid .burger span { background: var(--tricorn); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 1.5px; background: var(--villa); margin: 6px 0; transition: 0.3s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; padding-top: 118px; }
.hero .bg { position: absolute; inset: 0; z-index: -2; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 96% 96% at 50% 46%, rgba(26, 23, 20, 0) 42%, rgba(26, 23, 20, 0.36) 76%, rgba(26, 23, 20, 0.64) 100%),
    linear-gradient(to top, rgba(26, 23, 20, 1) 0%, rgba(26, 23, 20, 1) 4%, rgba(26, 23, 20, 0.66) 30%, rgba(26, 23, 20, 0.30) 52%, rgba(26, 23, 20, 0.08) 68%, rgba(26, 23, 20, 0.30) 84%, rgba(26, 23, 20, 0.55) 100%),
    linear-gradient(to right, rgba(26, 23, 20, 0.5) 0%, rgba(26, 23, 20, 0.12) 42%, rgba(26, 23, 20, 0) 66%),
    linear-gradient(to left, rgba(26, 23, 20, 0.46) 0%, rgba(26, 23, 20, 0.14) 30%, rgba(26, 23, 20, 0) 54%);
}
.hero-inner { width: 100%; padding-bottom: 72px; color: var(--villa); }
.hero .overline { color: var(--loggia); }
.hero h1 {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  margin: 16px 0 18px;
}
.hero h1 .the { font-family: var(--label); font-size: clamp(12px, 1.5vw, 16px); letter-spacing: 0.32em; text-transform: uppercase; color: var(--loggia); }
.hero h1 .hero-mark { height: clamp(54px, 8.5vw, 116px); width: auto; display: block; }
.hero .tag { font-family: var(--serif); font-size: clamp(30px, 4.4vw, 52px); font-weight: 500; line-height: 1.16; max-width: 17ch; color: var(--villa); }
.hero .tag-sub { font-size: clamp(14px, 1.4vw, 16px); font-weight: 400; line-height: 1.6; max-width: 50ch; color: var(--loggia); margin-top: 18px; }
.hero .cta-row { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-facts {
  display: flex; gap: 46px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid rgba(239, 236, 227, 0.25);
}
.hero-facts div b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: 27px; color: var(--villa); line-height: 1.2;
}
.hero-facts div span {
  font-family: var(--label); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--loggia);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--label); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 34px; border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-solid { background: var(--paper); color: var(--ink); }
.btn-solid:hover { background: var(--succulent); color: var(--villa); }
.btn-ghost { border-color: rgba(248, 246, 240, 0.6); color: var(--paper); }
.btn-ghost:hover { border-color: var(--succulent); color: var(--succulent); }
.btn-dark { background: var(--bronze); color: var(--paper); }
.btn-dark:hover { background: var(--night); }
.btn-line { border-color: var(--bronze); color: var(--bronze); }
.btn-line:hover { background: var(--bronze); color: var(--paper); }
.hero .btn-line { border-color: rgba(239, 236, 227, 0.55); color: var(--villa); }
.hero .btn-line:hover { background: var(--villa); color: var(--night); }

/* ---------- sections ---------- */
section.block { padding: clamp(90px, 11vw, 160px) 0; }
.sec-head { max-width: 760px; margin-bottom: 60px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .lead { margin-top: 4px; }

/* welcome */
.welcome { background: linear-gradient(to bottom, #1A1714 0%, #1A1714 6%, #5E5345 36%, #574C3F 100%); position: relative; isolation: isolate; }
/* grain removed — CSS noise looked synthetic; real washi texture image is the right route */
.welcome-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: end; }
.welcome-grid .text .overline { color: var(--loggia); }
.welcome-grid .text .lead { color: var(--villa-deep); margin-bottom: 24px; }
.welcome-grid .text p { font-family: var(--sans); font-weight: 400; line-height: 1.6; color: var(--villa-deep); margin-bottom: 22px; }
.welcome-grid .text p:last-child { margin-bottom: 0; }
.frame { position: relative; overflow: hidden; }
.frame img { width: 100%; height: 620px; object-fit: cover; will-change: transform; }
.frame::after {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--loggia); z-index: -1;
}
.frame figcaption {
  margin-top: 34px; font-family: var(--label); font-size: 12px;
  font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
}

/* stat band */
.stat-band { background: linear-gradient(to top right, #2A241D 0%, #241F18 45%, #14100B 100%); color: var(--villa); padding: clamp(64px, 8vw, 96px) 0; }
.stat-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-band b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5vw, 52px); line-height: 1.12; letter-spacing: -0.01em; color: var(--villa); }
.stat-band span { font-family: var(--label); font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--loggia); }

/* ---------- residences ---------- */
.residences { background: var(--paper); }
.level-block { margin-bottom: 84px; }
.level-block:last-child { margin-bottom: 0; }
.level-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.level-head h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 34px); letter-spacing: -0.01em; color: var(--tricorn); }
.level-head .lvl-sub { font-family: var(--label); font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-top: 8px; }
.level-plan-link {
  font-family: var(--label); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--succulent);
  text-decoration: none; border-bottom: 1px solid var(--loggia);
  padding-bottom: 3px; cursor: pointer; background: none; border-top: 0; border-left: 0; border-right: 0;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.level-plan-link:hover { color: var(--succulent); border-color: var(--succulent); }

.level-img { position: relative; overflow: hidden; aspect-ratio: 21 / 9; margin: 0 0 28px; background: var(--loggia); }
.level-img img { position: absolute; top: -7%; left: 0; width: 100%; height: 114%; object-fit: cover; object-position: center 55%; will-change: transform; }
.unit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-bottom: 1px solid var(--line); }
.unit-card {
  background: transparent; text-decoration: none;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.3s ease;
}
.unit-grid .unit-card:nth-child(3n) { border-right: 0; }
.unit-card .u-no { font-family: var(--label); font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); min-height: 16px; transition: color 0.3s ease; }
.unit-card .u-name { font-family: var(--sans); font-weight: 500; font-size: 40px; line-height: 1.02; letter-spacing: -0.015em; color: var(--tricorn); margin: 10px 0 16px; transition: color 0.3s ease; }
.unit-card .u-meta { font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.55; letter-spacing: 0.01em; color: var(--gray); transition: color 0.3s ease; }
.unit-card .u-sub { font-family: var(--sans); font-weight: 400; font-size: 14px; line-height: 1.55; letter-spacing: 0.01em; color: var(--gray); margin-top: 4px; transition: color 0.3s ease; }
.unit-card .u-price { margin-top: 14px; font-family: var(--label); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brick); transition: color 0.3s ease; }
.unit-card .u-go { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--label); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--succulent); transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
/* strong Urbane Bronze hover: the whole tile fills, type goes cream, price goes Golden Rod */
.unit-card:hover { background: var(--bronze); }
.unit-card:hover .u-name { color: var(--villa); }
.unit-card:hover .u-no { color: rgba(239, 236, 227, 0.72); }
.unit-card:hover .u-meta, .unit-card:hover .u-sub { color: rgba(239, 236, 227, 0.93); }
.unit-card:hover .u-price { color: var(--villa); }
.unit-card:hover .u-go { color: var(--villa); border-top-color: rgba(239, 236, 227, 0.28); transform: translateX(4px); }
/* mori is a default tile now (keeps its copy) */

/* ---------- finishes / lookbook ---------- */
.finishes { background: var(--paper); }
.lookbook { display: flex; flex-direction: column; gap: clamp(72px, 9vw, 110px); }
.look-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.look-row.flip .look-media { order: 2; }
.look-media { overflow: hidden; }
.look-media img { width: 100%; height: 520px; object-fit: cover; will-change: transform; }
.look-media figcaption { margin-top: 12px; font-family: var(--label); font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.look-body .overline { color: var(--bronze); }
.look-body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.2vw, 34px); line-height: 1.1; letter-spacing: -0.01em; color: var(--tricorn); margin: 12px 0 18px; }
.look-body p { font-family: var(--sans); font-weight: 400; line-height: 1.6; color: var(--gray); margin-bottom: 20px; }
.finish-list { list-style: none; }
.finish-list li {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: baseline;
  font-family: var(--sans); font-weight: 400; font-size: 15px; line-height: 1.6; color: var(--tricorn);
}
.finish-list li::before { content: ""; flex: none; width: 14px; height: 1px; background: var(--brick); transform: translateY(-5px); }
.finish-note { margin-top: 44px; font-family: var(--sans); font-weight: 400; font-size: 12.5px; line-height: 1.6; color: var(--gray); max-width: 70ch; }

/* ---------- gallery ---------- */
.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid figure { position: relative; overflow: hidden; cursor: zoom-in; aspect-ratio: 4 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(38, 34, 28, 0.72), transparent);
  color: var(--paper); font-family: var(--label); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* before / after — the canvas & the vision */
.ba-grid { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-side { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--loggia); }
.ba-side img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.ba-side:hover img { transform: scale(1.03); }
.ba-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--label); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--villa);
  background: rgba(38, 34, 28, 0.55); padding: 6px 12px;
}
.ba-cap {
  grid-column: 1 / -1; margin-top: 6px; text-align: center;
  font-family: var(--label); font-size: 12px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
}
@media (max-width: 760px){ .ba-pair { grid-template-columns: 1fr; } }

/* ---------- connect ---------- */
.connect { background: var(--paper); }
.connect-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; }
.iform label {
  display: block; font-family: var(--label); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze);
  margin: 26px 0 6px;
}
.iform input[type="text"], .iform input[type="email"], .iform input[type="tel"], .iform textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--loggia);
  font-family: var(--sans); font-weight: 400; font-size: 17px; color: var(--tricorn);
  padding: 10px 2px; outline: none; border-radius: 0;
  transition: border-color 0.25s ease;
}
.iform input:focus, .iform textarea:focus { border-bottom-color: var(--succulent); }
.iform textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 14px; align-items: flex-start; margin: 30px 0 8px; cursor: pointer; }
.consent input { margin-top: 5px; accent-color: var(--succulent); width: 17px; height: 17px; flex: none; cursor: pointer; }
.consent span { font-family: var(--sans); font-weight: 400; font-size: 13px; line-height: 1.6; color: var(--gray); }
.iform .btn { margin-top: 26px; }
.form-note { margin-top: 18px; font-family: var(--sans); font-weight: 400; font-size: 12.5px; color: var(--gray); }
.form-success { padding: 46px 0; }
.form-success h3 { font-family: var(--serif); font-weight: 500; font-size: 32px; letter-spacing: -0.01em; color: var(--tricorn); margin-bottom: 12px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.connect-aside { border-left: 1px solid var(--line); padding-left: 56px; }
.connect-aside .overline { color: var(--bronze); }
.connect-aside h4 { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: -0.01em; color: var(--tricorn); margin: 6px 0 8px; }
.connect-aside p { font-family: var(--sans); font-weight: 400; line-height: 1.6; font-size: 15px; color: var(--gray); margin-bottom: 26px; }
.connect-aside a { color: var(--succulent); text-decoration: none; border-bottom: 1px solid var(--loggia); transition: border-color 0.25s ease, color 0.25s ease; }
.connect-aside a:hover { border-bottom-color: var(--succulent); }

/* ---------- footer ---------- */
.footer { background: var(--night); color: rgba(248, 246, 240, 0.85); padding: 76px 0 44px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 56px; }
.footer img.flogo { height: 34px; width: auto; margin-bottom: 18px; }
.footer h5 { font-family: var(--label); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--loggia); margin-bottom: 14px; }
.footer p, .footer a { font-family: var(--sans); font-size: 14px; font-weight: 400; line-height: 1.9; color: rgba(248, 246, 240, 0.82); text-decoration: none; }
.footer a { position: relative; display: inline-block; transition: color 0.25s ease; }
.footer a:hover { color: #fff; }
.footer a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: #fff; transition: width 0.45s cubic-bezier(.16,1,.3,1); }
.footer a:hover::after { width: 100%; }
.footer .legal {
  border-top: 1px solid rgba(248, 246, 240, 0.16); padding-top: 30px;
  font-size: 11.5px; line-height: 1.8; color: rgba(248, 246, 240, 0.55);
}
.footer .legal p { font-size: 11.5px; color: rgba(248, 246, 240, 0.55); }
.footer .eho { margin-top: 14px; font-family: var(--label); letter-spacing: 0.18em; text-transform: uppercase; font-size: 10.5px; color: rgba(248, 246, 240, 0.65); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(26, 23, 20, 0.94);
  align-items: center; justify-content: center; flex-direction: column; gap: 18px;
  padding: 48px 20px 28px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1280px, 94vw); max-height: 84vh; object-fit: contain; background: var(--paper); }
.lightbox .lb-cap { color: var(--loggia); font-family: var(--label); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; }
.lightbox button {
  position: absolute; background: none; border: 0; color: var(--paper);
  font-size: 30px; cursor: pointer; opacity: 0.75; transition: opacity 0.2s; line-height: 1;
  font-family: var(--sans); font-weight: 200;
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 22px; right: 30px; font-size: 36px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- unit pages ---------- */
.unit-hero { padding: 168px 0 64px; background: var(--villa); }
.unit-hero .crumbs { font-family: var(--label); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 26px; }
.unit-hero .crumbs a { color: var(--gray); text-decoration: none; }
.unit-hero .crumbs a:hover { color: var(--succulent); }
.unit-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(54px, 7vw, 92px); line-height: 1; color: var(--ink); margin: 10px 0 6px; }
.unit-hero .u-tagline { font-size: 18px; color: #45413a; max-width: 62ch; margin-top: 14px; }
.unit-stats { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.unit-stats div b { display: block; font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--ink); line-height: 1.25; }
.unit-stats div span { font-family: var(--label); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); }

.elev-band { background: var(--villa); padding: 0 0 84px; }
.elev-card { cursor: zoom-in; }
.elev-card img { width: 100%; }

.insp-band { background: var(--paper); padding: 96px 0; }
.insp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.insp-grid figure { cursor: zoom-in; overflow: hidden; }
.insp-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.6s ease; }
.insp-grid figure:hover img { transform: scale(1.04); }
.insp-grid figcaption {
  margin-top: 10px; font-family: var(--label); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
}

.plan-sec { background: var(--paper); padding: 88px 0; }
.plan-card { background: var(--white); border: 1px solid var(--line); padding: 26px; cursor: zoom-in; }
.plan-card img { width: 100%; }
.plan-cap { margin-top: 20px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--label); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }

.unit-body { background: var(--villa); padding: 96px 0; }
.unit-body .grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; }
.unit-body .copy p { margin-bottom: 20px; color: #3c3933; }
.specs { list-style: none; border-top: 1px solid var(--line); }
.specs li { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.specs li b { font-weight: 400; font-family: var(--label); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); padding-top: 3px; }
.specs li span { text-align: right; color: var(--ink); }
.unit-cta-row { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.unitnav { background: var(--paper); border-top: 1px solid var(--line); }
.unitnav .row { display: flex; justify-content: space-between; align-items: center; padding: 34px 0; gap: 20px; }
.unitnav a { text-decoration: none; font-family: var(--label); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); }
.unitnav a:hover { color: var(--succulent); }
.unitnav .all { color: var(--gray); }

/* ---------- selections & materials packet ---------- */
.sel-hero { padding-bottom: 84px; }
.sel-hero h1 { font-size: clamp(48px, 6.4vw, 84px); }

.mood { background: var(--paper); }
.mood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mood-grid figure { cursor: zoom-in; overflow: hidden; }
.mood-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.6s ease; }
.mood-grid figure:hover img { transform: scale(1.045); }
.mood-grid figcaption {
  margin-top: 9px; font-family: var(--label); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
}

.palette { background: var(--villa); }
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.chip { background: var(--white); border: 1px solid var(--line); padding: 18px 18px 22px; }
.chip-swatch { width: 100%; height: 120px; border: 1px solid rgba(48, 48, 48, 0.08); }
.chip-name { font-family: var(--serif); font-weight: 500; font-size: 23px; color: var(--ink); margin-top: 16px; }
.chip-sw { font-family: var(--label); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin: 3px 0 10px; }
.chip-use { font-size: 13.5px; line-height: 1.65; color: #4a463f; }

.sel-rooms { background: var(--paper); }
.upg-note { margin-top: 18px; font-size: 13px; font-style: italic; color: var(--succulent); }
.sel-room .look-media img { height: 420px; }
.sched { margin-top: 36px; border-top: 1px solid var(--bronze); }
.sched-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 22px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.sched-row b {
  font-family: var(--label); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--succulent);
  padding-top: 3px;
}
.sched-row .std { font-size: 14.5px; line-height: 1.7; color: #3c3933; }
.sched-row .opt { font-size: 12.5px; line-height: 1.65; color: var(--gray); margin-top: 5px; }

.upgrades { background: var(--villa-deep); }
.upg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.upg-card { background: var(--white); border: 1px solid var(--line); padding: 30px 28px 28px; transition: border-color 0.25s ease, transform 0.25s ease; }
.upg-card:hover { border-color: var(--succulent); transform: translateY(-2px); }
.upg-card .u-no { font-family: var(--label); font-size: 10.5px; letter-spacing: 0.24em; color: var(--loggia); margin-bottom: 10px; }
.upg-card h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.upg-card p { font-size: 14px; line-height: 1.7; color: #4a463f; }

.common { background: var(--villa); }
.cs-block {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px;
  border-top: 1px solid var(--line); padding: 52px 0;
}
.cs-head h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--ink); margin: 8px 0 12px; }
.cs-head p { font-size: 15px; color: #45413a; margin-bottom: 22px; }
.mini-chips { display: flex; gap: 18px; flex-wrap: wrap; }
.mini-chip { display: flex; align-items: center; gap: 9px; }
.mini-chip i { display: block; width: 34px; height: 34px; border: 1px solid rgba(48, 48, 48, 0.12); }
.mini-chip span { font-family: var(--label); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); }
.cs-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.cs-lists .overline { margin-bottom: 6px; }

/* ---------- motion: scroll reveals + parallax ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.rv.in { opacity: 1; transform: none; }
.rv-group > .rv:nth-child(1) { transition-delay: 0s; }
.rv-group > .rv:nth-child(2) { transition-delay: 0.08s; }
.rv-group > .rv:nth-child(3) { transition-delay: 0.16s; }
.rv-group > .rv:nth-child(4) { transition-delay: 0.24s; }
.rv-group > .rv:nth-child(5) { transition-delay: 0.32s; }
.rv-group > .rv:nth-child(6) { transition-delay: 0.40s; }
.rv-group > .rv:nth-child(n+7) { transition-delay: 0.48s; }
[data-parallax] { will-change: transform; }
.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-slides .slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 2.4s ease; }
.hero-slides .slide.on { opacity: 1; }
.hero-slides .slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 16s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.07) translateY(-1.5%); } }
.nav a { position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--succulent); transition: width 0.3s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }

.quote-band {
  position: relative; padding: clamp(120px, 16vw, 190px) 0; background-size: cover; background-position: center 35%;
  isolation: isolate; text-align: center; overflow: hidden;
}
.quote-band .qb-bg {
  position: absolute; inset: -12% 0; z-index: -2;
  background-size: cover; background-position: center 35%; will-change: transform;
}
.quote-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(38, 34, 28, 0.55), rgba(38, 34, 28, 0.72)),
    rgba(38, 34, 28, 0.2);
}
.quote-band blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.35; letter-spacing: -0.01em; color: var(--villa);
  max-width: 22ch; margin: 0 auto 22px;
}
.quote-band .overline { color: var(--loggia); }
@media (max-width: 1080px) { .quote-band { padding: clamp(100px, 14vw, 130px) 0; } }

/* motion is intentionally ALWAYS ON (Jimmy 2026-06-25) — no prefers-reduced-motion override */

/* ---------- commons media ---------- */
.cs-left { display: flex; flex-direction: column; gap: 22px; }
.cs-media { overflow: hidden; }
.cs-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s ease; }
.cs-media:hover img { transform: scale(1.04); }

/* ---------- the look book ---------- */
.lb-chapter { background: var(--paper); padding: 64px 0; border-top: 1px solid var(--line); }
.lb-chapter:nth-of-type(even) { background: var(--villa); }
.lb-head { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 38px; }
.lb-num { font-family: var(--serif); font-weight: 500; font-size: 54px; line-height: 1; color: var(--loggia); }
.lb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lb-card { background: var(--white); border: 1px solid var(--line); padding: 16px 16px 20px; }
.lb-card figure { cursor: zoom-in; background: var(--white); }
.lb-card img { width: 100%; height: 190px; object-fit: contain; }
.lb-spec {
  height: 190px; display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--label); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--loggia); border: 1px dashed var(--loggia);
}
.lb-mono {
  height: 190px; display: flex; align-items: center; justify-content: center;
  background: var(--villa); border: 1px solid var(--line);
}
.lb-mono span { font-family: var(--serif); font-weight: 500; font-size: 64px; color: var(--loggia); }
.lb-why { font-size: 11.5px; font-style: italic; line-height: 1.6; color: var(--succulent); margin-top: 7px; }
.lb-chipstack { height: 190px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 8px; background: var(--white); border: 1px solid var(--line); }
.lb-chiprow { display: flex; align-items: center; gap: 9px; }
.lb-chiprow i { display: block; width: 40px; height: 26px; flex: none; border: 1px solid rgba(48,48,48,0.1); }
.lb-chiprow span { font-family: var(--label); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); line-height: 1.3; }
.lb-brand { margin-top: 14px; font-family: var(--label); font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--succulent); }
.lb-name { font-family: var(--serif); font-weight: 500; font-size: 19px; line-height: 1.25; color: var(--ink); margin: 4px 0 6px; }
.lb-model { font-size: 12.5px; color: var(--bronze); letter-spacing: 0.04em; }
.lb-fin { font-size: 12.5px; color: #4a463f; margin-top: 5px; }
.lb-note { font-size: 11.5px; font-style: italic; color: var(--gray); margin-top: 5px; }

@media print {
  .topbar, .footer, .cta-row, .burger, .nav { display: none !important; }
  .unit-hero { padding-top: 30px; }
  .lb-chapter { page-break-before: always; background: #fff !important; border: 0; padding: 24px 0; }
  .lb-chapter:first-of-type { page-break-before: avoid; }
  .lb-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .lb-card { break-inside: avoid; border: 1px solid var(--line); }
  body { background: #fff; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .unit-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-grid { grid-template-columns: repeat(3, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .upg-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-block { grid-template-columns: 1fr; gap: 34px; }
  .lb-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid, .look-row, .connect-grid, .unit-body .grid { grid-template-columns: 1fr; gap: 48px; }
  .look-row.flip .look-media { order: 0; }
  .frame img { height: 460px; }
  .stat-band .grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
  .connect-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 44px; }
}
@media (max-width: 760px) {
  body { font-size: 15.5px; }
  section.block { padding: 76px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex; position: fixed; inset: 0; flex-direction: column;
    justify-content: center; align-items: center; gap: 30px;
    background: rgba(38, 34, 28, 0.97); z-index: 70;
  }
  .nav.open a { color: var(--paper) !important; font-size: 15px; }
  .burger { display: block; z-index: 80; position: relative; }
  .unit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .insp-grid { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: 1fr; }
  .upg-grid { grid-template-columns: 1fr; }
  .cs-lists { grid-template-columns: 1fr; }
  .sched-row { grid-template-columns: 1fr; gap: 6px; }
  .lb-grid { grid-template-columns: 1fr; }
  .lb-head { flex-direction: column; gap: 8px; }
  .hero-facts { gap: 26px; }
  .unit-stats { gap: 26px; }
  .footer .cols { grid-template-columns: 1fr; }
  .unitnav .row { flex-wrap: wrap; }
}


/* ---------- hero split (Ardène benchmark) ---------- */
.hero-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; padding-bottom: 104px; }
.hero-left { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(70px, 11vh, 140px); }
.hero-split .tag { font-family: var(--sans); font-size: clamp(20px, 2.5vw, 34px); font-weight: 400; line-height: 1.3; color: var(--villa); max-width: none; margin: 0; letter-spacing: 0.005em; }
.hero-brand { display: flex; align-items: flex-end; gap: 16px; }
.hero-brand .hero-mark { height: clamp(72px, 11vw, 150px); width: auto; display: block; }
.hero-lf { font-family: var(--serif); font-weight: 600; font-size: clamp(96px, 14vw, 200px); line-height: 0.8; color: var(--villa); }
.hero-mid { font-family: var(--sans); font-weight: 400; font-size: clamp(28px, 3.8vw, 56px); line-height: 0.78; color: var(--loggia); letter-spacing: -0.03em; text-transform: lowercase; }
.hero-right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 16px; max-width: 400px; align-self: center; }
.hero-right .overline { color: var(--loggia); }
.hero-right .tag-sub { font-size: clamp(14px, 1.5vw, 16.5px); font-weight: 400; line-height: 1.6; color: var(--loggia); max-width: none; margin: 0; text-wrap: pretty; }
.hero-right .cta-row { margin-top: 6px; justify-content: flex-end; flex-wrap: nowrap; }
@media (max-width: 860px) {
  .hero-split { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-right { align-items: flex-start; text-align: left; }
  .hero-right .cta-row { justify-content: flex-start; }
}


/* ---------- hero: Korda composition ---------- */
.hero { align-items: stretch; padding-top: 0; }
.hero-inner.hero-korda { min-height: 100svh; display: flex; flex-direction: column; padding-top: 120px; padding-bottom: 100px; box-sizing: border-box; }
.hero-mid-row { flex: 1; display: flex; justify-content: space-between; align-items: center; gap: 56px; }
.hero-korda .hero-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.hero-korda .hero-brand .hero-mark { height: clamp(78px, 10vw, 140px); width: auto; display: block; }
.hero-korda .hero-mid { font-family: var(--sans); font-weight: 100; font-size: clamp(26px, 3.4vw, 48px); line-height: 0.95; color: var(--loggia); letter-spacing: -0.02em; text-transform: lowercase; }
.hero-korda .hero-right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 16px; max-width: 380px; align-self: center; }
.hero-korda .tag { flex: none; font-family: var(--sans); font-size: clamp(15px, 1.45vw, 18px); font-weight: 400; line-height: 1.45; color: var(--villa); letter-spacing: -0.01em; margin: 0; max-width: 64ch; }


/* ---------- menu toggle + full-screen overlay ---------- */
.menu-toggle { display:inline-flex; align-items:center; gap:9px; background:none; border:none; cursor:pointer; color:var(--villa); font-family:var(--label); font-size:13px; font-weight:500; letter-spacing:.18em; text-transform:uppercase; padding:6px 0; }
.menu-toggle .menu-plus { font-size:17px; line-height:0; transform:translateY(1px); }
.menu-toggle:hover { color:var(--loggia); }
.topbar.solid .menu-toggle { color:var(--tricorn); }
.topbar.solid .menu-toggle:hover { color:var(--succulent); }

.menu-overlay { position:fixed; inset:0; z-index:200; background:linear-gradient(to top right, #5E5345 0%, #5E5345 38%, #2A241D 100%); display:flex; flex-direction:column; justify-content:center; align-items:center; padding:0 clamp(20px,2.6vw,40px); opacity:0; visibility:hidden; transition:opacity .45s ease, visibility .45s ease; }
.menu-overlay.open { opacity:1; visibility:visible; }
.menu-close { position:absolute; top:24px; right:clamp(20px,2.6vw,40px); width:46px; height:46px; background:none; border:none; color:var(--loggia); font-size:42px; line-height:1; cursor:pointer; transition:color .2s ease, transform .3s ease; }
.menu-close:hover { color:var(--villa); transform:rotate(90deg); }
.menu-nav { display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; }
.menu-nav a { font-family:var(--sans); font-weight:400; font-size:clamp(30px,4.6vw,62px); letter-spacing:-0.02em; color:var(--loggia); text-decoration:none; line-height:1.18; transition:color .2s ease, transform .3s ease; }
.menu-nav a:hover { color:var(--villa); }
.menu-nav .menu-inquire { color:var(--loggia); }
.menu-foot { position:absolute; bottom:30px; left:0; right:0; text-align:center; font-family:var(--label); font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--loggia); }


/* hero meta line (Korda "based in // since" mirror) */
.hero-meta { display:flex; align-items:center; gap:18px; font-family:var(--label); font-size:13px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; color:var(--villa); white-space:nowrap; align-self:center; }
.hero-meta .meta-sep { color:var(--loggia); font-size:15px; }
.hero-meta a { color:inherit; text-decoration:none; transition:color .2s ease; }
.hero-meta a:hover { color:var(--loggia); }


/* ===== motion v2 — visible parallax + dramatic clip-reveals ===== */
.frame { position: relative; overflow: hidden; height: clamp(480px, 66vh, 720px); }
.frame img, .look-media img { position: absolute; top: -15%; left: 0; width: 100%; height: 130%; object-fit: cover; will-change: transform; }
.look-media { position: relative; overflow: hidden; height: clamp(480px, 62vh, 700px); }
.quote-band { overflow: hidden; }
.quote-band .qb-bg { position: absolute; top: -15%; left: 0; width: 100%; height: 130%; background-size: cover; background-position: center; will-change: transform; }
/* text/blocks: bigger travel + slower ease */
.rv { opacity: 0; transform: translateY(64px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
.rv.in { opacity: 1; transform: none; }
/* image frames: clip-wipe reveal (the inner img keeps its parallax transform) */
.rv.frame, .rv.look-media, .gallery-grid .rv { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.15s cubic-bezier(.16,1,.3,1); }
.rv.frame.in, .rv.look-media.in, .gallery-grid .rv.in { clip-path: inset(0 0 0 0); }
/* motion always on — no reduced-motion override (Jimmy 2026-06-25) */
@media (max-width: 760px){ .frame { height: 360px; } .look-media { height: 420px; } }

/* Welcome on Urbane Bronze: light type */
.welcome-grid .text .h-display { color: var(--villa); }
.welcome .frame figcaption { color: var(--loggia); }


/* fail-safe: image frames must never stay hidden if the reveal observer misses */
.frame.rv, .look-media.rv, .gallery-grid .rv, .ba-grid .rv { opacity: 1 !important; transform: none !important; clip-path: none !important; }


/* Welcome image: zoom out (remove the 130% over-scale) so more of the room shows; frame stays bottom-aligned */
.welcome .frame img { top: -9%; height: 118%; object-position: center 55%; }


/* The Vision link — white underline sweeps left-to-right on hover */
.hero-meta a { position: relative; }
.hero-meta a:hover { color: var(--villa); }
.hero-meta a::after { content:''; position:absolute; left:0; bottom:-5px; height:1px; width:0; background:#fff; transition:width .45s cubic-bezier(.16,1,.3,1); }
.hero-meta a:hover::after { width:100%; }

/* Equal Housing Opportunity logo in footer */
.footer .eho img { height: 30px; width: auto; display: block; }
