/* ============================================================
   E.F.G. House — white product site (livinghouse.nz-inspired)
   Giant black type, clean grid, product-brochure feel.
   ============================================================ */

:root {
  --white: #ffffff;
  --ink: #0e0e0e;
  --gray: #6d6d6d;
  --line: #e4e4e2;
  --off: #f6f6f4;

  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(1.1rem, 3.5vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
h2 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }

section { padding: clamp(4rem, 10vh, 7.5rem) var(--pad); max-width: 90rem; margin: 0 auto; }

.label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  margin-bottom: 1.6rem;
}

.pill {
  display: inline-block;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
  cursor: pointer;
}
.pill:hover { transform: scale(1.03); }
.pill--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill--dark:hover { background: #333; }

.link-arrow {
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.15rem;
}
.link-arrow::after { content: " →"; }
.fineprint { font-size: 0.75rem; color: var(--gray); margin-top: 1rem; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem var(--pad);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { height: 2.1rem; width: auto; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(1.5rem, 4vh, 3rem); position: relative; background: transparent; }

/* Fixed one-line wordmark pinned under the nav; content scrolls over it,
   and it reappears through the transparent .gap strips */
.hero__wordmark {
  position: fixed;
  top: clamp(5rem, 8.5vh, 6.5rem);
  left: 0;
  z-index: 0;
  font-size: 11.2vw; /* fallback — JS fits it exactly edge-to-edge */
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.hero__wordmark-space { height: clamp(3rem, 13.5vw, 14rem); }

main > section, main > footer { position: relative; z-index: 1; background: transparent; }
/* full-bleed white backdrop — sections are max-width-capped, but their cover
   must span the whole viewport so the fixed wordmark hides completely */
main > section::before, main > footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: var(--white);
  z-index: -1;
}
main > .hero::before { content: none; }
.gap { height: 55vh; position: relative; z-index: 0; }
.hero__row { display: flex; margin: clamp(1.5rem, 4vh, 3rem) 0; }
.hero__spacer { flex: 1; }
.hero__intro { max-width: 24rem; display: flex; flex-direction: column; gap: 1.4rem; }
.hero__intro p { font-size: 1.25rem; font-weight: 600; line-height: 1.35; }
.hero__intro .pill { align-self: flex-start; }

.hero__media {
  position: relative;
  z-index: 2; /* photo slides over the fixed wordmark */
}
.hero__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 92vh;
  margin: 0 auto;
}

/* Floating mini player */
.miniplayer {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  width: min(14rem, 40vw);
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.miniplayer:hover { transform: scale(1.03); }
.miniplayer.is-hidden { opacity: 0; pointer-events: none; transform: translateY(1rem); }
.miniplayer__screen {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(80% 60% at 30% 30%, #4a4a48 0%, transparent 60%),
    linear-gradient(150deg, #3a3a38, #191918);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.miniplayer__close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

/* ============================================================
   Scroll assembly
   ============================================================ */
.assembly { padding: 0; max-width: none; position: relative; }
.assembly__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 4rem);
  overflow: hidden;
  background: var(--white);
}
#houseSvg {
  width: min(58vw, 56rem);
  height: auto;
  max-height: 88vh;
  overflow: visible;
  color: var(--ink);
  flex-shrink: 0;
}
.assembly__plans {
  perspective: 1500px;
  width: clamp(9rem, 24vw, 20rem);
  flex-shrink: 0;
}
#houseSvg polygon, #houseSvg line {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
#houseSvg line { fill: none; }
#houseSvg .grey polygon { fill: #e4e4e2; }
#houseSvg .dark polygon { fill: #3a3a38; stroke: #222; }
#houseSvg polygon.glass { fill: #eef3f5; stroke: #86929a; stroke-width: 1.1; }
#houseSvg polygon.win { fill: #dfe7ea; stroke: #5c666c; stroke-width: 1.1; }
#houseSvg .gold polygon { fill: #dcb97e; stroke: #a8823f; }
#houseSvg .gold line { stroke: #a8823f; }
#houseSvg polygon.pool { fill: #bcd9e6; stroke: #7fa9bd; stroke-width: 1.1; }
.assembly__caption {
  position: absolute;
  left: var(--pad);
  bottom: 2rem;
  max-width: 30rem;
  font-size: 1rem;
  font-weight: 500;
}
.assembly__hint {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  transition: opacity 0.4s;
}

/* ============================================================
   Floor plans stack (scroll-driven)
   ============================================================ */
.plans-stack { padding: 0; max-width: none; position: relative; }
.plans-stack__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.plans-stack__label {
  position: absolute;
  top: clamp(4.5rem, 9vh, 6.5rem);
  left: var(--pad);
}
.plans-stack__scene {
  perspective: 1600px;
  width: min(58vw, 34rem);
}
.plans-stack__pile {
  position: relative;
  transform: rotateX(56deg) rotateZ(-38deg);
  transform-style: preserve-3d;
  width: 100%;
  aspect-ratio: 1197 / 1494;
  margin-top: -6vh;
}
.plan-card {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  opacity: 0;
}
.plan-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: -18px 24px 40px rgba(14, 14, 14, 0.14);
}
.plan-card figcaption {
  position: absolute;
  left: -0.6rem;
  bottom: -0.4rem;
  transform: translateX(-100%);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  color: var(--gray);
}
@media (max-width: 820px) {
  .plans-stack__scene { width: min(78vw, 24rem); }
  .plan-card figcaption { left: 0.4rem; bottom: 100%; transform: none; }
}

/* ============================================================
   Statement
   ============================================================ */
.statement {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  border-top: 1px solid var(--line);
}
.statement h2 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); }
.statement__side { display: flex; flex-direction: column; gap: 1.5rem; max-width: 26rem; }
.statement__side p { color: var(--gray); font-size: 1.05rem; }
.statement__side .pill { align-self: flex-start; }

/* ============================================================
   Sizes
   ============================================================ */
.sizes { border-top: 1px solid var(--line); }
.sizes__toggle {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 0.25rem;
  margin-bottom: 2.5rem;
}
.sizes__toggle button {
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  cursor: pointer;
  color: var(--gray);
  transition: background 0.25s, color 0.25s;
}
.sizes__toggle button.is-active { background: var(--ink); color: #fff; }

.sizes__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.sizes__big {
  display: block;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.sizes__facts p { color: var(--gray); font-size: 0.85rem; margin-top: 0.3rem; }
.sizes__copy { max-width: 52ch; font-size: 1.05rem; margin-bottom: 1.6rem; }

/* ============================================================
   Available
   ============================================================ */
.available {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--ink);
  color: #fff;
  max-width: none;
}
.available__title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.available__body { max-width: 34rem; display: flex; flex-direction: column; gap: 1.6rem; }
.available__body p { font-size: 1.1rem; line-height: 1.6; color: rgba(255, 255, 255, 0.85); }
.available__body strong { color: #fff; }
.available .pill--dark { background: #fff; color: var(--ink); border-color: #fff; align-self: flex-start; }
.available .pill--dark:hover { background: #e8e8e8; }

/* ============================================================
   Colours
   ============================================================ */
.colours { text-align: center; }
.colours h2 { font-size: clamp(1.5rem, 3.4vw, 2.6rem); margin-bottom: 2rem; }
.colours__preview {
  height: clamp(14rem, 40vh, 24rem);
  border-radius: 14px;
  background: #e9e6df;
  transition: background 0.6s var(--ease);
  margin-bottom: 2rem;
  background-image: linear-gradient(160deg, rgba(255,255,255,0.25), transparent 45%),
                    linear-gradient(20deg, rgba(0,0,0,0.18), transparent 50%);
}
.colours__swatches { display: flex; justify-content: center; gap: 1rem; }
.colours__swatches button {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  background: var(--c);
  cursor: pointer;
  transition: transform 0.25s var(--ease), outline-color 0.25s;
}
.colours__swatches button:hover { transform: scale(1.12); }
.colours__swatches button.is-active { outline-color: var(--ink); outline-offset: 3px; }
.colours__note { margin-top: 2rem; font-size: 1.15rem; font-weight: 600; }

/* ============================================================
   Benefits
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.benefit h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.7rem; }
.benefit p { font-size: 0.9rem; color: var(--gray); }

/* ============================================================
   Floorplan
   ============================================================ */
.floorplan { border-top: 1px solid var(--line); }
.floorplan__tabs { display: flex; gap: 0.8rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.floorplan__tabs button {
  border: 1.5px solid var(--line);
  background: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  cursor: pointer;
  color: var(--gray);
  transition: border-color 0.25s, color 0.25s;
}
.floorplan__tabs button.is-active { border-color: var(--ink); color: var(--ink); }

.floorplan__wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
#planSvg { width: 100%; height: auto; color: var(--ink); }
.plan-label { font-family: var(--font); font-size: 22px; font-weight: 600; fill: var(--ink); }
.plan-sub { font-family: var(--font); font-size: 17px; fill: var(--gray); }
.floorplan__copy { color: var(--gray); font-size: 1rem; max-width: 40ch; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.gallery figure img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.gallery figcaption { font-size: 0.85rem; color: var(--gray); margin-top: 0.8rem; max-width: 46ch; }

/* ============================================================
   Media list
   ============================================================ */
.media { border-top: 1px solid var(--line); }
.media__list li { border-bottom: 1px solid var(--line); }
.media__list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.2rem 0.2rem;
  transition: padding-left 0.3s var(--ease);
}
.media__list a:hover { padding-left: 0.8rem; }
.media__list span { font-weight: 600; font-size: clamp(1rem, 2vw, 1.3rem); }
.media__list em { font-style: normal; color: var(--gray); font-size: 0.85rem; white-space: nowrap; }

/* ============================================================
   Process + accordions
   ============================================================ */
.process h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.process__lede { color: var(--gray); max-width: 52ch; margin-bottom: 3rem; }

.steps li, .included li { border-top: 1px solid var(--line); }
.steps li:last-child, .included li:last-child { border-bottom: 1px solid var(--line); }

.step__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  padding: 1.3rem 0.2rem;
  cursor: pointer;
}
.step__head span { color: var(--gray); font-size: 0.85rem; font-weight: 600; min-width: 2rem; }
.step__head h3 { font-size: clamp(1.05rem, 2.2vw, 1.4rem); font-weight: 700; flex: 1; }
.step__head i {
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray);
  transition: transform 0.35s var(--ease);
}
li.is-open .step__head i { transform: rotate(45deg); }

.step__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.step__body p {
  padding: 0 0.2rem 1.6rem 3.6rem;
  color: var(--gray);
  max-width: 62ch;
}
.included .step__body p { padding-left: 0.2rem; }

/* ============================================================
   Plans
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}
.plans__info h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); margin-bottom: 1rem; }
.plans__info h2 span { font-size: 0.4em; font-weight: 600; color: var(--gray); }
.plans__lede { color: var(--gray); max-width: 44ch; margin-bottom: 2.5rem; }

.plans__form {
  background: var(--off);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-self: start;
  position: sticky;
  top: 5rem;
}
.plans__row { display: flex; gap: 0.9rem; }
.plans__form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: 0;
  transition: border-color 0.25s;
}
.plans__form input:focus { border-color: var(--ink); }
.plans__form .pill { border: 0; margin-top: 0.4rem; }

/* ============================================================
   Costs
   ============================================================ */
.costs { border-top: 1px solid var(--line); }
.costs__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.costs__summary div { display: flex; flex-direction: column; gap: 0.2rem; }
.costs__summary span { color: var(--gray); font-size: 0.82rem; }
.costs__summary strong { font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 700; }

.costs__table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.costs__table td { padding: 0.95rem 0.2rem; border-top: 1px solid var(--line); font-size: 0.95rem; }
.costs__table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.costs__table tr:last-child td { border-bottom: 1px solid var(--line); }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: clamp(3rem, 8vh, 5rem) var(--pad); border-top: 1px solid var(--line); max-width: 90rem; margin: 0 auto; }
.footer__sub { display: flex; gap: 0.8rem; max-width: 26rem; margin-bottom: 3rem; }
.footer__sub input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.7rem 1.2rem;
  outline: 0;
}
.footer__sub input:focus { border-color: var(--ink); }
.footer__sub .pill { border: 0; }
.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray);
}
.footer__row nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__row a:hover { color: var(--ink); }

/* ============================================================
   Language toggle
   ============================================================ */
body.en .l.el { display: none; }
body.el .l.en { display: none; }
.nav__right { display: flex; align-items: center; gap: 1.2rem; }
.nav__lang {
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  color: var(--gray);
  transition: border-color 0.25s, color 0.25s;
}
.nav__lang:hover { border-color: var(--ink); color: var(--ink); }

/* ============================================================
   About / project sections
   ============================================================ */
.about { border-top: 1px solid var(--line); }
.about h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin-bottom: 2.2rem; }
.about__text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 68rem;
}
.about__text p { color: var(--gray); font-size: 1.02rem; line-height: 1.7; }

.project-s { border-top: 1px solid var(--line); }
.project-s h2 { font-size: clamp(2.4rem, 6.5vw, 5.2rem); letter-spacing: -0.03em; margin-bottom: 1.4rem; }
.project-s__lede { max-width: 60ch; font-size: 1.08rem; line-height: 1.65; color: var(--gray); }
.project-s__media { margin: clamp(2.5rem, 6vh, 4rem) 0; }
.project-s__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 88vh;
  margin: 0 auto;
}
.project-s__note { max-width: 62ch; color: var(--gray); margin-top: 2rem; line-height: 1.7; }

.location {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.location h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.9rem; }
.location p { color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }

.units-label { margin-top: 1rem; }
.unit__meta {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 600;
  min-width: 10.5rem;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .step__head { flex-wrap: wrap; gap: 0.4rem 1rem; }
  .unit__meta { order: 3; width: 100%; }
}

.interiors { margin-top: clamp(3.5rem, 8vh, 5.5rem); }
.interiors__group {
  font-size: 1.15rem;
  font-weight: 700;
  margin: clamp(1.8rem, 4vh, 2.6rem) 0 1.2rem;
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.2rem;
}
.int-grid figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--off);
  transition: opacity 0.35s;
}
.int-grid figure:hover img { opacity: 0.9; }
.int-grid figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.specs { margin-top: clamp(3.5rem, 8vh, 5.5rem); }
.specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.specs__grid h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.specs__grid p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

.unit-table { margin-top: clamp(2rem, 5vh, 3rem); max-width: 56rem; }
.unit-table li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.05rem 0.2rem;
  border-top: 1px solid var(--line);
}
.unit-table li:last-child { border-bottom: 1px solid var(--line); }
.unit-table span { font-weight: 600; }
.unit-table em { font-style: normal; color: var(--gray); font-size: 0.9rem; white-space: nowrap; }

/* ============================================================
   Reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 820px) {
  .nav__links { display: none; }
  .statement, .available, .plans, .floorplan__wrap { grid-template-columns: 1fr; }
  .hero__row .hero__spacer { display: none; }
  .plans__form { position: static; }
  .miniplayer { width: min(11rem, 44vw); }
}
