/* =========================================================================
   REDPOINT® PROPERTY GROUP
   Design system — Signal Red & Bone · Instrument Serif + Archivo
   Per Redpoint Style Testing 27–37 (the current brand guide)
   ========================================================================= */

/* ---------- 1. TOKENS ---------------------------------------------------- */
:root {
  /* Signal Red is the chosen accent. Distribution 70/20/8/2 —
     red is "the point" only: CTAs, key figures, the mark. */
  --signal:       #FF3B1F;
  --signal-deep:  #DE2F13;
  --ink:          #232323;   /* text — neutral near-black, matched to the logo */
  --ink-80:       #4A4744;
  --bone:         #F5F1EC;   /* background — 70% */
  --bone-hi:      #FBF9F5;
  --putty:        #E4DDD1;   /* secondary / structure */
  --slate:        #706B64;   /* muted text — 4.65:1 on bone, clears WCAG AA */

  --rule:         rgba(35, 35, 35, 0.14);
  --rule-strong:  rgba(35, 35, 35, 0.30);
  --rule-inv:     rgba(245, 241, 236, 0.16);

  /* Type — two families only */
  --display: "Instrument Serif", "Times New Roman", serif;
  --sans:    "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ui:      "Archivo", -apple-system, BlinkMacSystemFont, sans-serif; /* labels & figures */

  /* Scale — display 96–280 · H2 64 · H3 32 · body 24–30 */
  --fs-mega:  clamp(3.1rem, 10.4vw, 11.5rem);
  --fs-xl:    clamp(2.9rem,  7.4vw,  7rem);
  --fs-h2:    clamp(2.25rem, 5.2vw,  4rem);
  --fs-h3:    clamp(1.5rem,  2.4vw,  2rem);
  --fs-lead:  clamp(1.25rem, 1.9vw,  1.875rem);
  --fs-body:  clamp(1.0625rem, 1.15vw, 1.25rem);
  --fs-sm:    0.9375rem;
  --fs-label: 0.6875rem;

  /* Layout */
  --pad:      clamp(1.25rem, 4.5vw, 5rem);
  --maxw:     1680px;
  --sec-y:    clamp(5rem, 11vw, 11rem);
  --nav-h:    78px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. RESET ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;                    /* per brand guide: Archivo 400 / 1.55 */
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--signal); color: var(--bone-hi); }

/* ---------- 3. PRIMITIVES ------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 7rem); }

.rule { height: 1px; background: var(--rule); border: 0; }

/* Labels — Archivo, ALL CAPS, +240 tracking */
.label {
  font-family: var(--ui);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  line-height: 1;
}
.label--signal { color: var(--signal); }
.label--inv { color: rgba(245, 241, 236, 0.62); }

/* Display type — Instrument Serif carries the voice; Archivo never above 40px */
.d-mega, .d-xl, .d-h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}
.d-mega { font-size: var(--fs-mega); line-height: 0.88; letter-spacing: -0.005em; }
.d-xl   { font-size: var(--fs-xl); }
.d-h2   { font-size: var(--fs-h2); line-height: 0.98; }
.d-h3 {
  font-family: var(--sans);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.italic { font-style: italic; }
.point { color: var(--signal); }

.lead { font-size: var(--fs-lead); line-height: 1.38; letter-spacing: -0.01em; max-width: 24ch; }
.body-lg { font-size: clamp(1.0625rem, 1.35vw, 1.375rem); line-height: 1.55; }
.muted { color: var(--slate); }
.measure { max-width: 46ch; }
.measure-sm { max-width: 34ch; }

/* Numbers — Archivo 500, tabular */
.num { font-family: var(--ui); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* ---------- 4. LINKS & BUTTONS ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-family: var(--ui);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.25em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--signal);
  color: var(--bone-hi);
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn:hover { background: var(--signal-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--inv { background: var(--bone-hi); color: var(--ink); }
.btn--inv:hover { background: var(--signal); color: var(--bone-hi); }
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* Underline-on-hover text link */
.tlink {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.tlink::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink--on::after { transform: scaleX(1); }

/* ---------- 5. NAV ------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(245, 241, 236, 0.88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--rule);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--pad);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
}

/* Official horizontal logo artwork. */
.mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.mark__image {
  display: block;
  width: clamp(8.75rem, 12vw, 10.5rem);
  height: auto;
}
.foot .mark__image { width: clamp(9.5rem, 14vw, 11.5rem); }

.nav__menu { display: flex; justify-content: center; gap: clamp(1.5rem, 3vw, 3rem); }
.nav__menu a {
  font-family: var(--ui);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav__menu a[aria-current="page"] { color: var(--signal); }

.nav__right { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }

/* Dual live clocks — Manchester · Singapore */
.clocks { display: flex; gap: 1.5rem; }
.clock { display: flex; flex-direction: column; gap: 4px; }
.clock__city {
  font-family: var(--ui); font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); line-height: 1;
}
.clock__time {
  font-family: var(--ui); font-size: 0.8125rem; font-weight: 500;
  font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: 0.02em;
}
.clock__time::before {
  content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--signal); margin-right: 7px; vertical-align: 1.5px;
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.nav__burger {
  display: none;
  width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
}
.nav__burger span {
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s;
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink); color: var(--bone);
  padding: calc(var(--nav-h) + 2rem) var(--pad) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .7s var(--ease);
}
body.menu-open .drawer { transform: translateY(0); }
.drawer a { font-family: var(--display); font-size: clamp(2.5rem, 11vw, 4rem); font-weight: 400; line-height: 1.12; }
.drawer .btn { font-size: var(--fs-label); margin-top: 1.75rem; }
.drawer .label--inv { margin-bottom: 1.5rem; display: block; }

/* ---------- 6. HERO ------------------------------------------------------ */
.hero { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5.5rem)); padding-bottom: 0; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: baseline; }
.hero__sub {
  display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .hero__sub { grid-template-columns: 1fr minmax(320px, 34%); align-items: start; }
}

/* Marquee of project frames */
.marquee {
  margin-top: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; gap: clamp(1rem, 2vw, 2rem); width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee .frame { width: clamp(230px, 26vw, 400px); flex: 0 0 auto; }

/* ---------- 7. FRAME (image placeholder, art-direction compliant) -------- */
/* Ink duotone ground · contour annotation · the point · fig caption          */
.frame { position: relative; display: block; }
.frame__box {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  isolation: isolate;
}
.frame--wide .frame__box { aspect-ratio: 16 / 10; }
.frame--tall .frame__box { aspect-ratio: 3 / 4.4; }
.frame--sq   .frame__box { aspect-ratio: 1 / 1; }

.frame__topo {
  position: absolute; inset: -6%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
  transform: translateY(var(--py, 0)) scale(var(--ts, 1));
  transition: opacity .8s var(--ease), scale .9s var(--ease);
  will-change: transform;
}
.frame__box::after {
  /* fine grain */
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(245,241,236,.10) 1px, transparent 1px);
  background-size: 3px 3px;
}
.frame:hover .frame__topo { --ts: 1.05; opacity: 0.9; }

/* Real photography — shown in colour, with a light grade so crops sit together. */
.frame__media { position: absolute; inset: 0; overflow: hidden; }
.frame__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.94) brightness(0.94);
  transform: translateY(var(--py, 0)) scale(var(--ts, 1));
  transition: scale .9s var(--ease), filter .8s var(--ease);
  will-change: transform;
}
.frame__media::after {
  /* keeps the coordinate and caption legible over any crop */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(35, 35, 35, 0.44) 0%, rgba(35, 35, 35, 0.04) 28%,
    rgba(35, 35, 35, 0.26) 58%, rgba(35, 35, 35, 0.86) 100%);
}
.frame:hover .frame__media img { --ts: 1.05; filter: contrast(1.08) saturate(1) brightness(1); }

/* the point + crosshair ticks (Concept 07 language) */
.frame__point { position: absolute; z-index: 3; width: 74px; height: 74px; }
.frame__point::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--signal);
}
.frame__point::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, currentColor 0 22px, transparent 22px 52px, currentColor 52px 100%) center / 100% 1px no-repeat,
    linear-gradient(to bottom, currentColor 0 22px, transparent 22px 52px, currentColor 52px 100%) center / 1px 100% no-repeat;
  opacity: .5;
}

.frame__tag {
  position: absolute; z-index: 3; left: 1.25rem; bottom: 1.1rem; right: 1.25rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.frame__coord {
  position: absolute; z-index: 3; right: 1.25rem; top: 1.1rem;
  font-family: var(--ui); font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,236,.55);
}
.frame__cap {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: 0.85rem; margin-top: 0.85rem;
  border-top: 1px solid var(--rule);
}
.frame__cap .t { font-weight: 500; letter-spacing: -0.01em; font-size: var(--fs-sm); }

/* ---------- 8. EDITORIAL GRIDS ------------------------------------------ */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Section head: label left, big statement right (Tandem-style) */
.sechead { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (min-width: 900px) { .sechead { grid-template-columns: 240px 1fr; gap: clamp(2rem, 5vw, 5rem); } }
/* Detail entries — a heavier image column so the frame carries real weight */
@media (min-width: 900px) { .sechead--wide { grid-template-columns: minmax(300px, 32%) 1fr; } }
.sechead__label { padding-top: 0.7em; }

/* Five-column value stack ("Built together" analogue) */
.values { border-top: 1px solid var(--rule); margin-top: clamp(2.5rem, 5vw, 4rem); }
.value {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 0.75rem 2rem;
  padding-block: clamp(1.75rem, 3.2vw, 2.6rem);
  border-bottom: 1px solid var(--rule);
  transition: background .5s var(--ease), padding-inline .5s var(--ease);
}
@media (min-width: 1100px) {
  .value { grid-template-columns: 90px minmax(220px, 1fr) minmax(0, 1.55fr); align-items: baseline; }
}
.value:hover { background: rgba(228, 221, 209, 0.42); padding-inline: 1.25rem; }
.value__num {
  font-family: var(--ui);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  color: var(--signal);
}
.value--principle .value__num { grid-row: 1 / span 2; }
.value__ttl { font-family: var(--display); font-size: clamp(1.75rem, 3.1vw, 2.6rem); font-weight: 400; line-height: 1.04; letter-spacing: 0; }
.value__txt { color: var(--ink-80); max-width: 60ch; }
@media (min-width: 1100px) {
  .value--principle .value__num { grid-row: auto; }
}

/* Numbered pillar cards ("How we differ" analogue) */
.pillar { border-top: 1px solid var(--rule-strong); padding-top: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar__top { display: flex; align-items: center; }
.pillar__n { font-family: var(--ui); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; color: var(--signal); }
.pillar h3 { font-family: var(--display); font-size: clamp(1.6rem, 2.6vw, 2.15rem); line-height: 1.06; letter-spacing: 0; font-weight: 400; }
.pillar p { color: var(--ink-80); font-size: var(--fs-sm); line-height: 1.62; }

/* ---------- 9. INK SECTION (dark) ---------------------------------------- */
.ink-sec { background: var(--ink); color: var(--bone); }
.ink-sec .muted { color: rgba(245, 241, 236, 0.6); }
.ink-sec .label { color: rgba(245, 241, 236, 0.5); }
.ink-sec .rule, .ink-sec .value, .ink-sec .values, .ink-sec .pillar { border-color: var(--rule-inv); }
.ink-sec .frame__cap { border-color: var(--rule-inv); }
.ink-sec .value:hover { background: rgba(245, 241, 236, 0.05); }
.ink-sec .value__txt, .ink-sec .pillar p { color: rgba(245, 241, 236, 0.72); }

/* ---------- 10. STAT BAND ------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 3rem); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border-top: 1px solid var(--rule-strong); padding-top: 1.1rem; }
.ink-sec .stat { border-color: var(--rule-inv); }
.stat__fig {
  font-family: var(--ui); font-weight: 500;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.92; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 0.04em;
}
.stat__unit { color: var(--signal); font-size: 0.42em; letter-spacing: -0.02em; }
.stat__txt { margin-top: 0.9rem; font-size: var(--fs-sm); color: var(--slate); max-width: 22ch; line-height: 1.5; }
.ink-sec .stat__txt { color: rgba(245, 241, 236, 0.62); }

/* ---------- 11. TIMELINE ------------------------------------------------- */
.tl { display: grid; gap: 0; margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--rule); }
.tl__row {
  display: grid; grid-template-columns: 1fr; gap: 1rem 2rem;
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
@media (min-width: 900px) {
  .tl__row { grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr) 200px; align-items: start; gap: clamp(1.5rem, 3vw, 3rem); }
}
.tl__yr { font-family: var(--ui); font-weight: 500; font-size: 1.05rem; letter-spacing: 0.02em; }
.tl__yr::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal); margin-right: 10px; vertical-align: 2px;
}
.tl__ttl { font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 400; line-height: 1.08; letter-spacing: 0; }
.tl__txt { color: var(--ink-80); font-size: var(--fs-sm); line-height: 1.62; }
.ink-sec .tl, .ink-sec .tl__row { border-color: var(--rule-inv); }
.ink-sec .tl__txt { color: rgba(245, 241, 236, 0.7); }

/* ---------- 12. PROJECT LIST / CARDS ------------------------------------- */
.proj { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 780px)  { .proj { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1240px) { .proj { grid-template-columns: repeat(3, 1fr); } }

.pcard { display: flex; flex-direction: column; gap: 1.1rem; }
.pcard__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }
.pcard h3 { font-family: var(--display); font-weight: 400; font-size: clamp(1.75rem, 2.8vw, 2.4rem); line-height: 1.04; letter-spacing: 0; }
.pcard p { font-size: var(--fs-sm); color: var(--ink-80); line-height: 1.6; }
.ink-sec .pcard p { color: rgba(245, 241, 236, 0.7); }

/* Spec table inside project entries */
.spec { border-top: 1px solid var(--rule); margin-top: 0.5rem; }
.spec div {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding-block: 0.6rem; border-bottom: 1px solid var(--rule);
  font-size: 0.875rem;
}
.spec dt, .spec .k { font-family: var(--ui); font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); padding-top: 3px; }
.spec .v { text-align: right; font-weight: 500; }
.ink-sec .spec, .ink-sec .spec div { border-color: var(--rule-inv); }
.ink-sec .spec .k { color: rgba(245,241,236,.5); }

/* ---------- 13. PEOPLE --------------------------------------------------- */
.people { display: grid; gap: clamp(1.75rem, 3vw, 2.5rem); }
@media (min-width: 640px)  { .people { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .people { grid-template-columns: repeat(4, 1fr); } }
.person__portrait {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--bone-hi);
}
.person__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}
.person:hover .person__portrait img { transform: scale(1.025); }
.person__name { font-family: var(--display); font-size: clamp(1.4rem, 2.1vw, 1.85rem); font-weight: 400; line-height: 1.08; letter-spacing: 0; margin-top: 1rem; }
.person__role { font-size: var(--fs-sm); color: var(--slate); margin-top: 0.25rem; }
.person__mail { font-family: var(--ui); font-size: 0.6875rem; letter-spacing: 0.1em; margin-top: 0.75rem; display: inline-block; color: var(--signal); }

/* ---------- 14. STATEMENT / QUOTE ---------------------------------------- */
.quote { font-family: var(--display); font-style: italic; font-size: clamp(1.75rem, 4.4vw, 3.4rem); font-weight: 400; line-height: 1.14; letter-spacing: 0; text-wrap: balance; }
.quote__by { margin-top: clamp(1.5rem, 3vw, 2.25rem); display: flex; gap: 1rem; align-items: center; }

/* ---------- 15. LEDGER (statement sample) -------------------------------- */
.ledger { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.ledger th {
  text-align: left; font-family: var(--ui); font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate);
  padding-bottom: 0.9rem; border-bottom: 1px solid var(--rule-strong);
}
.ledger td { padding-block: 0.95rem; border-bottom: 1px solid var(--rule); }
.ledger .r { text-align: right; font-family: var(--ui); font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ledger tr:last-child td { border-bottom: 0; font-weight: 600; }
.ledger tr:last-child .r { color: var(--signal); }
.ink-sec .ledger th { border-color: var(--rule-inv); color: rgba(245,241,236,.5); }
.ink-sec .ledger td { border-color: var(--rule-inv); }

/* ---------- 16. FOOTER --------------------------------------------------- */
.foot { background: var(--ink); color: var(--bone); padding-top: clamp(4rem, 8vw, 8rem); }
.foot a:hover { color: var(--bone-hi); }
.foot__cta { display: grid; gap: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid var(--rule-inv); }
@media (min-width: 980px) { .foot__cta { grid-template-columns: 1.25fr 1fr; align-items: end; } }

.foot__cols { display: grid; gap: clamp(2.5rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 5rem); }
@media (min-width: 760px)  { .foot__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .foot__cols { grid-template-columns: repeat(4, 1fr); } }
.foot__col h4 { margin-bottom: 1.5rem; }
.foot__col li + li { margin-top: 0.7rem; }
.foot__col a, .foot__col p { font-size: var(--fs-sm); color: rgba(245, 241, 236, 0.72); }

.foot__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center;
  padding-block: 2rem; border-top: 1px solid var(--rule-inv);
}
.creds { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; }
.creds li { font-family: var(--ui); font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245, 241, 236, 0.45); }

/* Contact form */
.form { display: grid; gap: 1.25rem; }
@media (min-width: 620px) { .form { grid-template-columns: repeat(2, 1fr); } .form .full { grid-column: 1 / -1; } }
.field { position: relative; display: block; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--rule-inv);
  padding: 1.5rem 0 0.75rem; font-size: var(--fs-sm); color: var(--bone);
  border-radius: 0; transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--signal); }
.field span {
  position: absolute; left: 0; top: 0.9rem;
  font-family: var(--ui); font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245, 241, 236, 0.45); pointer-events: none;
}
.field select option { background: var(--ink); }
.form__note { font-size: 0.75rem; color: rgba(245, 241, 236, 0.45); line-height: 1.6; }

/* ---------- 17. PAGE HEADER (inner pages) -------------------------------- */
.phead { padding-top: calc(var(--nav-h) + clamp(3.5rem, 8vw, 7rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.phead__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: baseline; border-bottom: 1px solid var(--rule); padding-bottom: 1.25rem; margin-bottom: clamp(2rem, 5vw, 4rem); }

/* ---------- 18. SCROLL REVEAL -------------------------------------------- */
[data-rise] { opacity: 0; transform: translateY(26px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
[data-rise].is-in { opacity: 1; transform: none; }
[data-rise-d="1"] { transition-delay: .08s; }
[data-rise-d="2"] { transition-delay: .16s; }
[data-rise-d="3"] { transition-delay: .24s; }
[data-rise-d="4"] { transition-delay: .32s; }
[data-rise-d="5"] { transition-delay: .40s; }

/* Line-by-line display reveal — extra room so descenders aren't clipped */
.rvl { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }
.rvl > i {
  display: block; font-style: inherit;
  transform: translateY(105%);
  transition: transform 1.05s var(--ease);
}
.is-in .rvl > i, .rvl.is-in > i { transform: none; }
.rvl:nth-child(2) > i { transition-delay: .1s; }
.rvl:nth-child(3) > i { transition-delay: .2s; }

/* ---------- 19. MISC ----------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.tick { color: var(--signal); }

@media (max-width: 1080px) {
  .nav__menu, .clocks { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__right { justify-content: flex-end; }
}
@media (min-width: 1081px) { .drawer { display: none; } }

/* Below ~560px the Owner-portal pill and the burger no longer both fit.
   Drop the pill — the drawer carries the same route. */
@media (max-width: 560px) {
  .nav__right > .btn { display: none; }
  .mark__image { width: 8.25rem; }
  .value { grid-template-columns: 48px minmax(0, 1fr); gap-x: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-rise] { opacity: 1; transform: none; }
  .rvl > i { transform: none; }
}
