/* ╭─────────────────────────────────────────────────────────╮
   │ Millenia Commercial Real Estate · Stylesheet            │
   ╰─────────────────────────────────────────────────────────╯ */

/* ── Reset & tokens ─────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, address { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

:root {
  /* palette */
  --bg:        #0a0e1a;
  --bg-2:      #0f1424;
  --surface:   #11172a;
  --surface-2: #161c33;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.04);

  --text:      #f5f6fa;
  --muted:     #b3bbcc;
  --dim:       #7c8497;

  --gold:      #d4af37;
  --gold-light:#f5d076;
  --gold-dark: #a17e1e;
  --red:       #e63946;

  /* type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif:'Playfair Display', Georgia, 'Times New Roman', serif;

  /* spacing */
  --container: 1280px;
  --gutter:    24px;

  /* radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* shadow */
  --shadow-card: 0 30px 60px -20px rgba(0,0,0,0.55), 0 8px 24px -12px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 0 1px rgba(212,175,55,0.18), 0 12px 32px -10px rgba(212,175,55,0.25);
}

/* ── Base ───────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.section-lede {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: none;
  flex-wrap: wrap;
  gap: 24px;
}
.section-head-row h2 { margin-bottom: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 18px 30px; font-size: 14px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  color: #1a1500;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(212,175,55,0.45); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.32); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: gap .2s ease, border-color .2s ease;
}
.link-arrow:hover { gap: 14px; border-bottom-color: rgba(212,175,55,0.5); }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,26,0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-sans); font-weight: 900; font-size: 22px; letter-spacing: -0.04em; }
.nav-logo-sub  { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--dim); margin-top: 4px; font-weight: 500; }
.nav-links { display: flex; gap: 32px; justify-content: center; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .3s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  padding: clamp(80px, 10vh, 140px) 0 clamp(60px, 8vh, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  opacity: 0.55;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(212,175,55,0.15), transparent 55%),
    linear-gradient(120deg, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.85) 35%, rgba(10,14,26,0.55) 65%, rgba(10,14,26,0.85) 100%),
    linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero-inner { position: relative; }
.hero-copy { max-width: 720px; }

.hero-title {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 14px 0 28px;
  text-transform: uppercase;
}
.hero-title span { display: block; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 580px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-size: clamp(24px, 2.5vw, 32px); font-weight: 700; color: var(--gold); letter-spacing: -0.02em; line-height: 1; }
.hero-stats span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }

/* ── Brands strip ───────────────────────────────────────── */
.brands {
  padding: 56px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.brands-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 40px;
}
.brands-list li {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--muted);
  opacity: 0.75;
  transition: opacity .2s ease, color .2s ease;
}
.brands-list li:hover { opacity: 1; color: var(--text); }

/* ── Brand marquee ──────────────────────────────────────── */
.marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee + .marquee { margin-top: 14px; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  min-width: 100%;
  padding-right: 48px;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}
.marquee-track-reverse { animation: marquee-scroll-reverse 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--muted);
  opacity: 0.78;
  transition: opacity .25s ease, color .25s ease;
}
.brand-chip:hover { opacity: 1; color: var(--text); }
.brand-chip svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.brands-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;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .marquee-track-reverse { animation: none; transform: none; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* ── Affiliations ───────────────────────────────────────── */
.affiliations {
  padding: 56px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
}
.affil-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.affil {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s ease, transform .2s ease;
}
.affil:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-2px); }
.affil-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1500;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  white-space: nowrap;
}
.affil-name {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--muted);
  font-weight: 500;
}

/* ── Services ───────────────────────────────────────────── */
.services { padding: clamp(80px, 10vw, 140px) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.svc-card {
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212,175,55,0.08), transparent 50%);
  opacity: 0; transition: opacity .3s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.28); box-shadow: var(--shadow-card); }
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.22);
  color: var(--gold);
  margin-bottom: 22px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* ── About ──────────────────────────────────────────────── */
.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: 80px;
  align-items: start;
}
.about-portrait { position: sticky; top: 100px; }
.portrait-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,26,0.6) 100%);
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.portrait-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1500;
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px -10px rgba(212,175,55,0.5);
  z-index: 2;
}
.portrait-badge strong { font-size: 28px; font-weight: 800; line-height: 1; }
.portrait-badge span { font-size: 11px; line-height: 1.3; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.portrait-badge-text {
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 180px;
}

.prop-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  padding: 60px 20px;
  font-style: italic;
}
.prop-loading a { color: var(--gold); border-bottom: 1px solid rgba(212,175,55,0.4); }

.about-copy h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 24px; }
.about-copy p { color: var(--muted); margin-bottom: 18px; max-width: 64ch; }
.about-copy p.lede { font-size: 19px; color: var(--text); line-height: 1.65; }
.about-copy strong { color: var(--text); font-weight: 600; }

.signature {
  margin-top: 32px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.signature-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
}
.signature-title { font-size: 13px; color: var(--dim); letter-spacing: 0.04em; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; }
.about-stats strong { font-size: 28px; font-weight: 800; color: var(--gold); letter-spacing: -0.02em; line-height: 1; }
.about-stats span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); line-height: 1.4; }

/* ── Properties ─────────────────────────────────────────── */
.properties { padding: clamp(80px, 10vw, 140px) 0; }
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.prop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.prop-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.28); box-shadow: var(--shadow-card); }

.prop-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.prop-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.prop-card:hover .prop-image img { transform: scale(1.05); }
.prop-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,26,0.7) 100%);
}

.prop-status {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.status-available {
  background: rgba(34,197,94,0.18);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.4);
}
.status-sold {
  background: rgba(212,175,55,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.4);
}

.prop-body { padding: 22px 24px 26px; }
.prop-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.prop-body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.prop-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
}
.prop-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prop-meta > div { display: flex; flex-direction: column; gap: 2px; }
.prop-meta span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }
.prop-meta strong { font-size: 16px; font-weight: 700; color: var(--text); }

.prop-footer {
  margin-top: 48px;
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
  font-style: italic;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--line-2);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.quote {
  padding: 36px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote::before {
  content: """;
  position: absolute;
  top: 14px; left: 24px;
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  pointer-events: none;
}
.quote blockquote { flex: 1; }
.quote blockquote p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.quote figcaption {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quote figcaption strong { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: 0.01em; }
.quote figcaption span { font-size: 12px; color: var(--dim); }

/* ── CTA ────────────────────────────────────────────────── */
.cta {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(212,175,55,0.12), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  border-top: 1px solid var(--line-2);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-copy h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px; }
.cta-copy p { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 600px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.cta-note { font-size: 13px; color: var(--dim); margin-top: 6px; }
.cta-note a { color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.15); }
.cta-note a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #06090f;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 14px; line-height: 1.2; color: var(--text); }
.footer-logo svg { flex-shrink: 0; }
.footer-logo span { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.footer-logo em { font-style: normal; color: var(--dim); font-weight: 400; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-tag { margin-top: 16px; font-size: 13px; color: var(--dim); max-width: 280px; }
.footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer address, .footer p { font-style: normal; font-size: 14px; line-height: 1.7; color: var(--muted); }
.footer a:hover { color: var(--gold); }
.footer-links li + li { margin-top: 8px; }
.footer-links a { font-size: 14px; color: var(--muted); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap;
  font-size: 12px; color: var(--dim);
}
.footer-disclaimer { max-width: 540px; text-align: right; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,14,26,0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px var(--gutter); border-top: 1px solid var(--line-2); }
  .nav-links a::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { position: static; max-width: 460px; margin: 0 auto; }
  .portrait-badge { right: 16px; bottom: -18px; }

  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .cta-note { text-align: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .hero-stats { gap: 28px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 48px; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .quote::before { font-size: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
