/* ============================================================================
   Brown Property Management — "The Ledger" design system
   Crimson & cream (red & white). Poppins (display + body).
   One shared stylesheet for every page. Fully usable with JS off.
   ========================================================================== */

:root {
  /* Palette — crimson & white */
  --page-bg: #FBF6F4;
  --surface: #FFFFFF;
  --ink: #241417;
  --muted: #6B5757;
  --primary: #A31D2E;
  --primary-dark: #7C1523;
  --accent: #C21F30;
  --accent-hover: #9E1626;
  --accent-soft: #F8E4E4;
  --border: #EDE0DD;
  --border-strong: #DCC9C5;
  --success: #2E7D5B;
  --success-bg: #E3F1E8;
  --success-ink: #1B5E40;
  --neutral-bg: #EEE9E7;
  --neutral-ink: #574C4C;
  --neutral-dot: #9A8E8E;
  --danger: #B42318;

  /* Type */
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radii */
  --r-btn: 8px;
  --r-input: 10px;
  --r-card: 12px;
  --r-panel: 16px;
  --r-pill: 999px;
  --r-arch: 92px 92px 12px 12px;

  /* Shadow (warm crimson-tinted, never gray) */
  --shadow-sm: 0 1px 2px rgba(60, 18, 24, .07);
  --shadow-md: 0 12px 28px rgba(60, 18, 24, .11);
  --shadow-lg: 0 24px 60px rgba(60, 18, 24, .18);

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

/* --------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-underline-offset: 3px; }
button { font: inherit; color: inherit; cursor: pointer; }
:where(ul, ol) { padding-left: 1.2em; }

/* Numeric alignment for money / phones / counts */
.tnum, .price, .stat-num, .meta-row, address, .phone { font-variant-numeric: tabular-nums; }

/* Focus — every interactive element */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--primary); color: #fff; padding: 10px 16px;
  border-radius: var(--r-btn); z-index: 200; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------ typography -- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1, .display { font-size: clamp(2.4rem, 1.6rem + 3.2vw, 3.6rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); }
h3 { font-size: 1.375rem; line-height: 1.2; }
h4 { font-size: 1.125rem; }
p { max-width: 66ch; }
.lead { font-size: 1.1875rem; line-height: 1.55; color: var(--muted); }
.muted { color: var(--muted); }

/* Ledger label — tracked caps */
.ledger-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
}
.small { font-size: 0.8125rem; }

/* ---------------------------------------------------------------- layout -- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section--tint { background: var(--page-bg); }
.section--surface { background: var(--surface); }
.section--soft { background: var(--accent-soft); }
.section--navy { background: var(--primary-dark); color: #FBEDEA; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .muted { color: #EAC7C8; }

/* The Ledger Rule: a brass hairline with a label straddling it */
.ledger-rule {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--accent);
  padding-top: 14px; margin-top: 16px;
}
.ledger-rule > .ledger-label { margin-top: -22px; background: inherit; }
.ledger-rule .dateline {
  margin-left: auto; margin-top: -22px;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: inherit; padding-left: 10px;
}

/* Section header with editorial numeral */
.section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.section-head .numeral {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.25rem, 6vw, 4rem); color: var(--accent);
  line-height: 1; font-variant-numeric: tabular-nums; display: block;
  margin-bottom: 6px;
}
.section-head .rule-line {
  border-top: 1px solid var(--accent); padding-top: 12px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.section-head .rule-line .dateline { margin-left: auto; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.section-head :is(h1, h2) { margin-top: 14px; max-width: 20ch; }
.section-head h1 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); line-height: 1.12; letter-spacing: -0.015em; }
.section-head .lead { margin-top: 12px; }
.section--navy .section-head .numeral,
.section--navy .section-head .rule-line { border-color: var(--accent); }
.section--navy .ledger-label { color: #fff; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 13px 22px; border-radius: var(--r-btn);
  border: 1.5px solid transparent; text-decoration: none;
  min-height: 44px; white-space: nowrap;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-ghost:hover { background: rgba(163, 29, 46, .06); }
.btn-accent { background: var(--accent); color: #fff; } /* white text on red — AA */
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.section--navy .btn-ghost { border-color: #fff; color: #fff; }
.section--navy .btn-ghost:hover { background: rgba(255,255,255,.10); }
.section--navy .btn-accent { background: #fff; color: var(--primary); }
.section--navy .btn-accent:hover { background: #F6E7E7; color: var(--primary); }
@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover, .btn-accent:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
  .btn:active { transform: translateY(0); }
}
.link-arrow {
  font-weight: 600; color: var(--primary); text-decoration: none;
  border-bottom: 2px solid var(--accent); padding-top: 8px; padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.link-arrow .arw { transition: transform .16s ease; }
@media (prefers-reduced-motion: no-preference) { .link-arrow:hover .arw { transform: translateX(3px); } }

/* ------------------------------------------------------------ nav / head -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--page-bg) 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  height: var(--nav-h); display: flex; align-items: center; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .seal { height: 50px; width: auto; flex: none; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; }
.brand-word span { font-weight: 600; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8A6A2A; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  position: relative; text-decoration: none; color: var(--ink);
  font-weight: 500; font-size: 0.95rem; padding: 8px 12px; border-radius: 6px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-toggle { display: none; }

/* Mobile nav sheet */
.nav-sheet { display: none; }
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
    width: 44px; height: 44px; border-radius: var(--r-btn);
    border: 1.5px solid var(--border-strong); background: var(--surface);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-sheet {
    display: block; position: fixed; inset: 0; z-index: 150;
    background: var(--page-bg); padding: 20px clamp(20px, 6vw, 40px) 32px;
    transform: translateY(-100%); transition: transform .28s ease; visibility: hidden;
    overflow-y: auto;
  }
  .nav-sheet.open { transform: translateY(0); visibility: visible; }
  .nav-sheet-top { display: flex; align-items: center; height: var(--nav-h); }
  .nav-sheet-close { margin-left: auto; width: 44px; height: 44px; border-radius: var(--r-btn); border: 1.5px solid var(--border-strong); background: var(--surface); display: inline-flex; align-items: center; justify-content: center; }
  .nav-sheet-links { list-style: none; padding: 0; margin: 12px 0 0; }
  .nav-sheet-links li { border-top: 1px solid var(--border); }
  .nav-sheet-links a {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
    text-decoration: none; color: var(--ink); padding: 18px 4px;
  }
  .nav-sheet-links a[aria-current="page"] { color: var(--primary); }
  .nav-sheet-cta { margin-top: 24px; display: grid; gap: 10px; }
  .nav-sheet-cta .btn { width: 100%; }
}

/* ----------------------------------------------------------------- hero -- */
.hero { padding-block: clamp(40px, 7vw, 84px); border-bottom: 1px solid var(--accent); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.hero h1 { max-width: 15ch; }
.hero .lead { margin-top: 18px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 36px; border: 1px solid var(--border); border-radius: var(--r-panel);
  overflow: hidden; background: var(--surface);
}
.stat-strip .cell { padding: 18px 16px; border-left: 1px solid var(--accent); }
.stat-strip .cell:first-child { border-left: 0; }
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; line-height: 1; color: var(--primary); }
.stat-lbl { display: block; margin-top: 7px; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* Map panel (schematic neighborhood) */
.map-panel {
  position: relative; background: var(--accent-soft); border: 1px solid var(--border);
  border-radius: var(--r-panel); padding: 18px; box-shadow: var(--shadow-sm);
}
.map-panel svg.map { width: 100%; height: auto; border-radius: 10px; background: #FBF7EF; }
.map-pill {
  position: absolute; top: 30px; right: 30px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 0.78rem;
  padding: 6px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: 7px;
}
.map-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.map-caption { margin-top: 12px; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); text-align: center; }
.map-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.map-thumbs .doorway { flex: 1; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .cell:nth-child(3) { border-left: 0; }
  .stat-strip .cell:nth-child(n+3) { border-top: 1px solid var(--accent); }
}

/* --------------------------------------------------- doorway photo frame -- */
.doorway {
  position: relative; overflow: hidden; border-radius: var(--r-arch);
  background: var(--primary); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5);
  aspect-ratio: 16 / 11;
}
.doorway img { width: 100%; height: 100%; object-fit: cover; }
.doorway::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: var(--primary); opacity: .10; mix-blend-mode: multiply;
}
.doorway .placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,.85); font-family: var(--font-display); font-size: 1.5rem;
}

/* ------------------------------------------------------------ property UI -- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-pill {
  border: 1.5px solid var(--border-strong); background: transparent; color: var(--muted);
  padding: 11px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: 0.85rem;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.filter-pill[aria-pressed="true"] { background: var(--primary); border-color: var(--primary); color: #fff; }

.prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.prop-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .prop-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
}
.prop-media { position: relative; padding: 16px 16px 0; }
.prop-media .doorway { aspect-ratio: 16 / 10; }
/* Anchor the status badge to the bottom-left of the arched photo (top corners
   use the 92px arch radius, so a top badge would float off the clipped corner). */
.prop-media .badge { top: auto; bottom: 14px; left: 28px; }
.badge {
  position: absolute; top: 26px; left: 26px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 11px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.badge-available { background: var(--success-bg); color: var(--success-ink); }
.badge-available .dot { background: var(--success); }
.badge-leased { background: var(--neutral-bg); color: var(--neutral-ink); }
.badge-leased .dot { background: var(--neutral-dot); }
.badge-soon { background: var(--accent-soft); color: #9E1626; }
.badge-soon .dot { background: var(--accent); }

.prop-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.prop-title { font-size: 1.25rem; }
.prop-addr { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.prop-addr svg { width: 15px; height: 15px; flex: none; color: var(--primary); }
.prop-body .ledger-rule { margin: 16px 0 14px; background: var(--surface); }
.meta-row { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: baseline; font-size: 0.95rem; }
.meta-row .price { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.meta-row .sep { color: var(--border-strong); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip { font-size: 0.75rem; font-weight: 500; color: var(--muted); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px 10px; }
.prop-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

details.prop-details { margin-top: 12px; border-top: 1px solid var(--border); }
details.prop-details summary { list-style: none; cursor: pointer; padding: 14px 0 6px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
details.prop-details summary::-webkit-details-marker { display: none; }
details.prop-details summary .chev { transition: transform .15s ease; }
details.prop-details[open] summary .chev { transform: rotate(180deg); }
details.prop-details ul { margin: 8px 0 4px; color: var(--muted); font-size: 0.92rem; }
details.prop-details li { margin: 4px 0; }

/* -------------------------------------------------------------- feature -- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.feature .ico {
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft);
  display: grid; place-items: center; color: var(--accent-hover); margin-bottom: 16px;
}
.feature .ico svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.2rem; }
.feature p { color: var(--muted); font-size: 0.95rem; margin-top: 8px; }

/* Action cards (tenant portal) */
.action-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.action-card {
  display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 24px; box-shadow: var(--shadow-sm); min-height: 150px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .action-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
}
.action-card .ico { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-hover); }
.action-card .ico svg { width: 23px; height: 23px; }
.action-card h3 { font-size: 1.2rem; }
.action-card p { color: var(--muted); font-size: 0.92rem; }
.action-card .go { margin-top: auto; color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* Document rows (PDF downloads) */
.doc-list { display: grid; gap: 12px; max-width: 720px; }
.doc-row {
  display: flex; align-items: center; gap: 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-card); padding: 16px 18px;
}
.doc-row .glyph { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; flex: none; }
.doc-row .glyph svg { width: 22px; height: 22px; }
.doc-row .doc-meta { min-width: 0; }
.doc-row .doc-meta b { font-weight: 600; }
.doc-row .doc-meta span { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.doc-row .btn { margin-left: auto; flex: none; }

/* -------------------------------------------------------------- gallery -- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.gallery a { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); display: block; aspect-ratio: 4/3; background: var(--primary); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
@media (prefers-reduced-motion: no-preference) { .gallery a:hover img { transform: scale(1.04); } }

/* Split feature (listing hero) */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: start; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.spec-list { list-style: none; padding: 0; display: grid; gap: 2px; }
.spec-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--ink); }
.spec-list li svg { width: 20px; height: 20px; color: var(--success); flex: none; margin-top: 2px; }

/* ---------------------------------------------------------------- forms -- */
.form { max-width: 560px; display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-input);
  padding: 13px 14px; min-height: 48px; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }

/* -------------------------------------------------------------- callout -- */
.callout {
  background: var(--accent-soft); border: 1px solid var(--border); border-radius: var(--r-panel);
  padding: clamp(24px, 4vw, 40px); display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.callout .callout-body { flex: 1; min-width: 260px; }
.callout h2 { margin-bottom: 8px; }

.note {
  border-left: 3px solid var(--accent); background: var(--surface);
  padding: 14px 18px; border-radius: 0 var(--r-card) var(--r-card) 0; color: var(--muted);
  font-size: 0.92rem; max-width: 640px;
}

/* -------------------------------------------------------------- footer --- */
.site-footer { background: var(--primary-dark); color: #EDCFCF; }
.site-footer .container { padding-block: clamp(48px, 7vw, 72px); }
.footer-top { border-top: 1px solid rgba(255,255,255,.28); padding-top: 36px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand .seal { height: 48px; width: auto; margin-bottom: 14px; }
.footer-brand b { font-family: var(--font-display); color: #fff; font-size: 1.2rem; display: block; }
.footer-brand p { color: #E4C5C5; font-size: 0.9rem; margin-top: 10px; max-width: 34ch; }
.footer-col h3 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 10px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 2px; }
.footer-col a { color: #EDCFCF; text-decoration: none; font-size: 0.92rem; display: inline-block; padding-block: 7px; }
.footer-col a:hover { color: #fff; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; padding-block: 7px; }
.footer-contact svg { width: 16px; height: 16px; color: #F4D3D2; flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; font-size: 0.82rem; }
.footer-bottom .eho { display: inline-flex; align-items: center; gap: 9px; color: #E4C5C5; }
.footer-bottom .eho svg { width: 22px; height: 22px; color: #EDCFCF; flex: none; }
.footer-bottom .fine a { color: #E4C5C5; text-decoration: none; margin-left: 16px; }
.footer-bottom .fine a:hover { color: #fff; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- utils --- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 36px; }
.stack > * + * { margin-top: 16px; }
.hidden { display: none !important; }
.wrap-narrow { max-width: 760px; }
.eyebrow-row { display: flex; align-items: center; gap: 10px; color: var(--muted); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,32,45,.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--r-card); box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; border: 0; font-size: 1.4rem; }
