/* ============================================================
   Del Rey Residential — Visual System
   Inspired by Francison Consulting's editorial polish.
   Variables, reset, type scale, layout primitives, components.
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Color */
  --bg:           #FAFAF7;     /* page background, warm off-white */
  --bg-cream:    #F4EFE6;     /* alt section background */
  --bg-card:     #FFFFFF;
  --bg-dark:     #14171C;     /* near-black band */
  --bg-dark-2:   #1D2127;     /* slightly lighter for dark cards */

  --ink:         #181B21;
  --ink-soft:    #4A5060;
  --ink-mute:    #8A8F9B;
  --ink-inverse: #FAFAF7;

  --line:        #E4DFD3;     /* hairline on light surfaces */
  --line-soft:   rgba(24, 27, 33, 0.08);
  --line-dark:   rgba(255, 255, 255, 0.10);

  --gold:        #B98E2E;     /* Del Rey brand accent, slightly muted */
  --gold-deep:   #876721;
  --gold-glow:   rgba(185, 142, 46, 0.18);

  /* Typography */
  --font-body:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display:'Inter Tight', 'Inter', sans-serif;

  /* Spacing scale (4-base) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 40px;
  --s-9: 48px; --s-10:64px; --s-11:80px; --s-12:96px; --s-13:128px;

  /* Container */
  --container: 1280px;
  --gutter:    32px;

  /* Header */
  --header-h:  76px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
img { font-style: italic; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.25em; }
fieldset { border: none; padding: 0; margin: 0; }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: white; padding: 12px 16px; z-index: 1000;
}
.skip:focus { left: 16px; top: 16px; }

/* ---------- 3. Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
}
.display .display-accent {
  display: block;
  color: var(--gold);
}
.display .display-ink {
  display: block;
  color: var(--ink);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 var(--s-5);
  max-width: 22ch;
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--s-5);
}
.eyebrow-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- 4. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 640px) {
  :root { --gutter: 20px; --header-h: 64px; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .15s var(--ease);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-dark {
  background: var(--ink);
  color: var(--ink-inverse);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--bg-dark-2); border-color: var(--bg-dark-2); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ink-inverse); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- 6. Header ---------- */
.site-header {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header[data-state="scrolled"] {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand img {
  height: 34px;
  width: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--s-7);
}
.primary-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.primary-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:not(.btn):hover::after { transform: scaleX(1); }
.primary-nav a.btn-dark {
  padding: 12px 18px;
  color: var(--ink-inverse);
  letter-spacing: 0.10em;
}
.primary-nav a.btn-dark:hover { color: var(--ink-inverse); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 2px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 4px 0;
}
@media (max-width: 820px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-4) var(--gutter) var(--s-6);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.open a {
    padding: var(--s-4) 0;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.open a:last-child { border-bottom: none; margin-top: var(--s-2); }
  .primary-nav.open .btn-dark { justify-content: center; }
}

/* ---------- 7. Hero ---------- */
.hero {
  background: var(--bg);
  padding-top: clamp(20px, 2.6vw, 36px);
  position: relative;
}
.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  max-width: 1040px;
}
.hero-inner .eyebrow {
  justify-content: center;
  color: var(--gold-deep);
}
.hero-inner .eyebrow .eyebrow-rule { background: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}
.hero-cta { margin-top: var(--s-2); }

.hero-media {
  position: relative;
  margin: clamp(24px, 3vw, 44px) 0 0;
  height: clamp(320px, 40vw, 560px);
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: white;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.hero-caption .caption-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
}
.hero-caption .caption-divider {
  opacity: 0.5;
}
.hero-caption .caption-meta {
  font-size: 13px;
  opacity: 0.9;
}

/* Stats strip */
.stats-strip {
  background: var(--bg-dark);
  color: var(--ink-inverse);
  padding-block: clamp(28px, 4vw, 40px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-6) var(--s-5);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  border-left: 1px solid var(--line-dark);
  padding-left: var(--s-4);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: white;
}
.stat-currency {
  color: var(--gold);
  margin-right: 1px;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
  max-width: 22ch;
}
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(4) { border-left: none; padding-left: 0; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding-left: 0; }
}

/* ---------- 8. Section heads ---------- */
.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-9);
  align-items: end;
  max-width: none;
}
.section-head-split .section-lede {
  margin-top: 0;
  max-width: 50ch;
}
.section-lede {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 55ch;
  margin-top: var(--s-4);
}
@media (max-width: 768px) {
  .section-head-split { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ---------- 9. Services ---------- */
.services {
  background: var(--bg-cream);
  padding-block: clamp(80px, 9vw, 128px);
}
.service-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -22px rgba(20,23,28,0.18);
}
.service-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-photo {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.04); }
.service-body {
  padding: var(--s-6) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.service-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.service-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.service-link {
  margin-top: auto;
  padding-top: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}
.service-link svg { transition: transform .25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(3px); }

@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- 10. Value Proposition ---------- */
.value {
  background: var(--bg);
  padding-block: clamp(80px, 9vw, 128px);
}
.value-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.value-media {
  margin: 0;
  position: relative;
}
.value-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.value-media figcaption {
  margin-top: var(--s-3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.value-copy p {
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.7;
}
.value-pull {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-7);
  padding-left: var(--s-4);
  border-left: 2px solid var(--gold);
}
@media (max-width: 880px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-media img { aspect-ratio: 3 / 2; }
}

/* ---------- 11. Projects ---------- */
.projects {
  background: var(--bg);
  padding-block: clamp(80px, 9vw, 128px);
  border-top: 1px solid var(--line);
}
.projects-feature {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
  align-items: start;
}
.projects-stack {
  display: grid;
  gap: var(--s-6);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.project {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.project:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 14px 32px -22px rgba(20,23,28,0.18);
}
.project a { display: flex; flex-direction: column; height: 100%; }
.project-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
/* Featured card: tall portrait photo so it has natural visual weight */
.project-large .project-photo { aspect-ratio: 4 / 5; }
.projects-stack .project-photo { aspect-ratio: 16 / 10; }
.project-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.project:hover .project-photo img { transform: scale(1.04); }
.project-tag {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}
.project-meta {
  padding: var(--s-5) var(--s-5) var(--s-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.project-meta.compact { padding: var(--s-4) var(--s-4); gap: var(--s-2); }
.project-meta h3 {
  font-size: 18px;
  line-height: 1.3;
}
.project-meta.compact h3 { font-size: 15px; }
.project-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.project-meta.compact dl { grid-template-columns: 1fr; }
.project-meta dl > div { display: flex; flex-direction: column; gap: 2px; }
.project-meta dt {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.project-meta dd {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.project-meta.compact dd { font-size: 12px; }

@media (max-width: 1040px) {
  .projects-feature { grid-template-columns: 1fr; }
  .projects-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .projects-stack { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}

/* ---------- 12. Contact ---------- */
.contact {
  background: var(--bg-dark);
  color: var(--ink-inverse);
  padding-block: clamp(80px, 9vw, 128px);
}
.contact .eyebrow { color: var(--gold); }
.contact .eyebrow .eyebrow-rule { background: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-copy .h-display {
  color: white;
  max-width: 16ch;
}
.contact-lede {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  margin-bottom: var(--s-7);
}
.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.contact-points li {
  display: flex;
  gap: var(--s-3);
  align-items: baseline;
  font-size: 14px;
  color: rgba(255,255,255,0.76);
  padding-block: var(--s-3);
  border-top: 1px solid var(--line-dark);
}
.contact-points li:last-child { border-bottom: 1px solid var(--line-dark); }
.contact-points strong { color: white; font-weight: 600; }

/* Form */
.contact-form {
  background: var(--bg-dark-2);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  display: grid;
  gap: var(--s-5);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field-full { grid-column: 1 / -1; }
.field label,
.field legend {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}
.field .req { color: var(--gold); }
.field input,
.field textarea,
.field select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  color: white;
  padding: 14px 14px;
  font: inherit;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.34); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}
.field textarea { resize: vertical; min-height: 96px; }
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-3);
}
.checkbox {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 14px;
  color: rgba(255,255,255,0.86);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checkbox:hover { border-color: rgba(255,255,255,0.25); }
.checkbox input {
  accent-color: var(--gold);
  width: 16px; height: 16px;
}
.field-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-top: var(--s-2);
}
.field-actions .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.field-actions .btn-dark:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: white; }
.field-fineprint {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* ---------- 13. Footer ---------- */
.site-footer {
  background: #0F1216;
  color: rgba(255,255,255,0.7);
  padding-block: clamp(56px, 7vw, 96px) var(--s-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.6fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: var(--s-9);
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .footer-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.95);
  margin-bottom: var(--s-4);
}
.footer-tag {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.55;
  max-width: 32ch;
  margin-bottom: var(--s-3);
}
.footer-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.footer-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  padding-block: 4px;
  transition: color .2s var(--ease);
}
.footer-nav a:hover { color: white; }
.footer-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-3);
}
.footer-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark);
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.78);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.footer-social .footer-eyebrow + a { margin-left: 0; }
.footer-social { flex-direction: column; align-items: flex-start; gap: var(--s-2); }
.footer-social > a:hover { color: white; border-color: rgba(255,255,255,0.4); }
.footer-base {
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer-fineprint { margin: 0; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 14. Misc utilities ---------- */
::selection { background: var(--gold-glow); color: var(--ink); }

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