/* Shermaine Foong — Bangsar Hill Park Property Specialist
   Design system: "editorial-estate". Forest / limestone / restrained brass.
   Fraunces (display) + Inter (body). Contour motif + oversized tabular price numerals. */

:root {
  --forest:    #1B2A24;
  --limestone: #F6F3EC;
  --brass:     #C9A24B;
  --brass-deep:#A9852F;
  --sage:      #3E5C4E;
  --ink:       #0F1512;
  --line:      #DED8CB;
  --paper:     #FDFCF8;
  --muted:     #6B7269;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--limestone);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; color: var(--forest); }
.display { font-size: clamp(2.6rem, 6vw, 5rem); font-optical-sizing: auto; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { max-width: 62ch; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brass); display: inline-block; }

.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--sage); line-height: 1.6; }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.divider { height: 1px; background: var(--line); border: 0; max-width: var(--maxw); margin-inline: auto; }

/* contour motif — subtle topographic lines (the "hill park" signature) */
.contour {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
  opacity: 0.5;
}
.contour svg { position: absolute; width: 140%; height: 140%; top: -20%; right: -30%; }
.contour path { fill: none; stroke: var(--sage); stroke-width: 1; opacity: 0.14; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--limestone) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--limestone) 96%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--f-display); font-size: 1.35rem; letter-spacing: -0.01em; color: var(--forest); }
.brand span { color: var(--brass-deep); }
.brand small { display: block; font-family: var(--f-body); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav-links { display: flex; gap: clamp(1rem, 2.4vw, 2.2rem); align-items: center; }
.nav-links a { font-size: 0.9rem; color: var(--sage); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest); }
.nav-links a[aria-current="page"] { position: relative; }
.nav-links a[aria-current="page"]::after { content:""; position:absolute; left:0; bottom:-6px; width:100%; height:1px; background: var(--brass); }
.lang-switch { display: inline-flex; align-items: center; gap: .1rem; border: 1px solid var(--line); border-radius: 100px; padding: .15rem; margin-left: .4rem; }
.lang-switch a { font-size: .74rem; font-weight: 600; letter-spacing: .02em; color: var(--muted); padding: .3rem .6rem; border-radius: 100px; transition: color .2s, background .2s; }
.lang-switch a:hover { color: var(--forest); }
.lang-switch a[aria-current="true"] { background: var(--forest); color: var(--paper); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest); margin: 5px 0; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-body); font-size: 0.92rem; font-weight: 500;
  padding: 0.85rem 1.6rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn-primary { background: var(--forest); color: var(--paper); }
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }
.btn-ghost { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-ghost:hover { background: var(--forest); color: var(--paper); }
.btn-wa { background: var(--brass); color: var(--ink); font-weight: 600; }
.btn-wa:hover { background: var(--brass-deep); color: var(--paper); transform: translateY(-2px); }

/* ---------- Hero (image-led, ambient motion) ---------- */
.hero {
  position: relative; overflow: hidden; min-height: min(88vh, 760px);
  display: flex; align-items: flex-end;
  color: var(--limestone);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,18,15,.82) 0%, rgba(12,18,15,.62) 34%, rgba(12,18,15,.18) 58%, rgba(12,18,15,0) 78%),
    linear-gradient(to top, rgba(12,18,15,.72) 0%, rgba(12,18,15,.2) 34%, rgba(12,18,15,0) 60%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-copy { max-width: 40rem; text-shadow: 0 2px 24px rgba(10,14,11,.55); }
.hero-copy .eyebrow { color: #F3D98C; text-shadow: 0 1px 10px rgba(10,14,11,.7); }
.hero-copy .eyebrow::before { background: #F3D98C; }
.hero-copy .display { margin: 1.2rem 0 0; color: #fff; }
.hero-copy .display em { font-style: italic; color: #E8C069; }
.hero-rule { width: 64px; height: 2px; background: var(--brass); margin: 1.6rem 0; }
.hero-copy .lede { margin-bottom: 2rem; max-width: 42ch; color: color-mix(in srgb, #fff 88%, transparent); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-agent {
  display: inline-flex; align-items: center; gap: .8rem; margin-top: 2.2rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.18);
}
.hero-agent img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top; border: 1px solid rgba(255,255,255,.3); }
.hero-agent b { font-family: var(--f-display); font-size: 1.05rem; color: #fff; display: block; line-height: 1.2; }
.hero-agent small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); }

/* ---------- Sub-page hero ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--forest); color: var(--limestone); padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero .contour path { stroke: var(--limestone); opacity: .1; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--brass); }
.page-hero .eyebrow::before { background: var(--brass); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 1rem 0 .8rem; }
.page-hero .lede { color: color-mix(in srgb, var(--limestone) 82%, transparent); max-width: 52ch; }
.breadcrumb { font-size: .8rem; color: color-mix(in srgb, var(--limestone) 60%, transparent); margin-bottom: .4rem; }
.breadcrumb a { color: var(--brass); }

/* ---------- Detail listing (rentals page) ---------- */
.unit-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(2rem, 4vw, 3rem) 0; border-top: 1px solid var(--line); }
.unit-detail:last-of-type { border-bottom: 1px solid var(--line); }
.unit-detail.flip .unit-detail-media { order: 2; }
.unit-detail-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg,#3E5C4E,#1B2A24); position: relative; }
.unit-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.unit-detail-media .badge { position: absolute; top: 12px; left: 12px; background: var(--paper); color: var(--forest); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 2px; font-weight: 600; }
.unit-detail h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.unit-price-row { display: flex; align-items: baseline; gap: .8rem; margin: .3rem 0 1rem; }
.unit-price-row .num { font-family: var(--f-display); font-size: clamp(1.8rem, 3.2vw, 2.4rem); color: var(--forest); }
.unit-price-row .note { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.unit-spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.2rem 0 1.5rem; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.unit-spec-grid div { text-align: left; }
.unit-spec-grid b { display: block; font-family: var(--f-display); font-size: 1.2rem; color: var(--forest); }
.unit-spec-grid span { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Building chips ---------- */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; transition: transform .3s var(--ease), border-color .3s; }
.chip:hover { transform: translateY(-3px); border-color: var(--brass); }
.chip b { font-family: var(--f-display); color: var(--forest); font-size: 1.1rem; display: block; margin-bottom: .3rem; }
.chip span { font-size: .85rem; color: var(--sage); }

/* ---------- Price tables ---------- */
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.price-table caption { text-align: left; font-family: var(--f-display); color: var(--forest); font-size: 1.2rem; margin-bottom: .8rem; }
.price-table th, .price-table td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
.price-table th { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.price-table td { color: var(--forest); }
.price-table td.tnum { font-variant-numeric: tabular-nums; font-family: var(--f-display); }
.price-table tr:hover td { background: var(--paper); }

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .8rem; font-weight: 600; color: var(--forest); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: .95rem; padding: .8rem .9rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .6rem; }

/* ---------- Contact methods ---------- */
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; transition: transform .3s var(--ease), border-color .3s; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.contact-card .k { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.contact-card .v { font-family: var(--f-display); font-size: 1.2rem; color: var(--forest); }

/* ---------- Credibility band ---------- */
.cred { background: var(--forest); color: var(--limestone); }
.cred .wrap { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); justify-content: space-between; align-items: center; }
.cred-item { display: flex; flex-direction: column; }
.cred-item b { font-family: var(--f-display); font-size: 1.5rem; color: #fff; }
.cred-item span { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); }

/* ---------- Estate cards (listings) ---------- */
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 60ch; }
.section-head h2 { margin-top: .8rem; }
.estate-list { display: flex; flex-direction: column; gap: 0; }
.estate {
  display: grid; grid-template-columns: 0.9fr 1.4fr auto; gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center; padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--line); position: relative;
  transition: padding-left .4s var(--ease);
}
.estate:last-child { border-bottom: 1px solid var(--line); }
.estate:hover { padding-left: .4rem; }
.estate-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg,#3E5C4E,#1B2A24); }
.estate-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.estate:hover .estate-media img { transform: scale(1.05); }
.estate-media .badge { position: absolute; top: 10px; left: 10px; background: var(--paper); color: var(--forest); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 2px; }
.estate-body h3 { margin-bottom: .5rem; }
.estate-specs { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: .6rem; }
.estate-specs div { display: flex; flex-direction: column; }
.estate-specs b { font-size: .95rem; color: var(--forest); }
.estate-specs span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.estate-price { text-align: right; }
.estate-price .num { font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--forest); line-height: 1; }
.estate-price .num small { font-size: .9rem; color: var(--muted); font-family: var(--f-body); }
.estate-price .baseline { height: 2px; width: 100%; background: var(--brass); margin: .5rem 0 .8rem; }
.estate-price a { font-size: .8rem; color: var(--brass-deep); font-weight: 600; }

/* ---------- Developments grid ---------- */
.dev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.dev-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.dev-card.active:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(27,42,36,.5); }
.dev-media { aspect-ratio: 16/11; overflow: hidden; background: linear-gradient(135deg,#3E5C4E,#1B2A24); }
.dev-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dev-card.active:hover .dev-media img { transform: scale(1.06); }
.dev-placeholder { display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; position: relative; }
.dev-placeholder::before { content: ""; position: absolute; inset: 0; background:
  repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.04) 14px 15px); }
.dev-placeholder span { font-family: var(--f-display); font-size: 1.2rem; color: color-mix(in srgb, var(--limestone) 82%, transparent); position: relative; }
.dev-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dev-tag { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }
.dev-tag.muted { color: var(--muted); }
.dev-body h3 { margin: .1rem 0; }
.dev-body p { font-size: .92rem; color: var(--sage); max-width: none; flex: 1; }
.dev-link { font-size: .82rem; font-weight: 600; color: var(--brass-deep); margin-top: .4rem; }
.dev-card.soon { opacity: .92; }
.dev-card.soon .dev-body h3 { color: var(--sage); }

/* ---------- Feature / prose blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: 0 24px 50px -30px rgba(27,42,36,.4); }
.feature-list { list-style: none; margin-top: 1.5rem; }
.feature-list li { padding: .9rem 0 .9rem 1.8rem; border-top: 1px solid var(--line); position: relative; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 1.35rem; width: 8px; height: 8px; background: var(--brass); border-radius: 50%; }
.feature-list b { color: var(--forest); font-family: var(--f-display); font-weight: 500; }

/* ---------- FAQ (AEO) ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); padding: 1.2rem 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { font-family: var(--f-display); font-size: 1.15rem; color: var(--forest); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brass-deep); font-family: var(--f-body); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: .9rem; color: var(--sage); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: var(--limestone); position: relative; overflow: hidden; text-align: center; }
.cta-band h2 { color: var(--paper); }
.cta-band .lede { color: color-mix(in srgb, var(--limestone) 80%, transparent); margin: 1rem auto 2rem; }
.cta-band .btn-wa { margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--limestone) 70%, transparent); padding-block: 3.5rem 2rem; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-grid h4 { font-family: var(--f-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.footer-grid a { display: block; padding: .3rem 0; color: color-mix(in srgb, var(--limestone) 70%, transparent); transition: color .2s; }
.footer-grid a:hover { color: var(--limestone); }
.footer-brand .brand { color: var(--limestone); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .78rem; color: color-mix(in srgb, var(--limestone) 50%, transparent); }
.footer-legal strong { color: var(--brass); font-weight: 600; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--brass); color: var(--ink); font-weight: 600; font-size: .9rem;
  padding: .8rem 1.2rem; border-radius: 100px;
  box-shadow: 0 14px 34px -12px rgba(201,162,75,.7);
  transition: transform .25s var(--ease);
}
.wa-fab:hover { transform: translateY(-3px) scale(1.02); background: var(--brass-deep); color: var(--paper); }
.wa-fab svg { width: 20px; height: 20px; }

/* ---------- Reveal (progressive enhancement: only hides when JS is active) ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { min-height: 86vh; }
  .hero-inner { padding-bottom: 5.5rem; }
  .hero-agent { flex-wrap: wrap; }
  .dev-grid { grid-template-columns: 1fr; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .estate { grid-template-columns: 1fr; gap: 1rem; }
  .estate-media { aspect-ratio: 16/9; }
  .estate-price { text-align: left; }
  .estate-price .baseline { max-width: 120px; }
  .unit-detail, .unit-detail.flip .unit-detail-media { grid-template-columns: 1fr; order: 0; }
  .unit-detail-media { aspect-ratio: 16/10; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; background: var(--limestone);
    padding: 1.5rem var(--gutter) 2rem; gap: 1.2rem; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .35s var(--ease); align-items: flex-start;
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; }
  .lang-switch { margin-left: 0; margin-top: .4rem; }
}
/* CJK: use Noto Sans SC for body on Chinese pages, keep Fraunces for display headings where it renders latin brand */
html[lang="zh"] body, html[lang="zh-CN"] body { font-family: "Noto Sans SC", var(--f-body); }
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3,
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3 { font-family: "Noto Serif SC", var(--f-display); letter-spacing: 0; line-height: 1.25; }
html[lang="zh"] .display, html[lang="zh-CN"] .display { line-height: 1.2; }
html[lang="zh"] .brand, html[lang="zh-CN"] .brand { font-family: var(--f-display); }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cred .wrap { gap: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 3px; }
