/* ============================================================
   AMBASSADOR DEVELOPMENT GROUP
   Design system — concrete / brutalist editorial
   ============================================================ */

:root {
  /* Color */
  --ink:        #0E1419;
  --ink-soft:   #1B232C;
  --bone:       #F2EDE3;
  --bone-light: #FAF6EE;
  --mist:       #E5DFD2;
  --rule:       #C9C3B5;
  --brass:      #A88752;
  --brass-deep: #8B6E3E;
  --slate:      #5A6168;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --max:    1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --rule-w: 1px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(rgba(14,20,25,0.018) 1px, transparent 1px),
    radial-gradient(rgba(14,20,25,0.012) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

/* Typography utilities */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
}

.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
  text-transform: none;
}

.display em {
  font-style: normal;
  color: var(--brass-deep);
  font-weight: 900;
}

.lede {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 42ch;
  letter-spacing: -0.01em;
}

.body-copy {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 62ch;
}

.body-copy + .body-copy { margin-top: 1.1em; }

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

.rule { height: var(--rule-w); background: var(--rule); border: 0; width: 100%; }
.rule--brass { background: var(--brass); }
.rule--short { width: 64px; height: 3px; background: var(--brass); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 237, 227, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: var(--ink);
  color: var(--bone-light);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__wordmark .top {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-transform: uppercase;
}

.brand__wordmark .sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 6px;
  font-weight: 500;
}

.nav__links { display: flex; gap: 36px; align-items: center; }

.nav__links a {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--brass);
  transition: right 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.is-current::after { right: 0; }
.nav__links a.is-current { color: var(--ink); }

.nav__cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__cta:hover { background: var(--ink); color: var(--bone-light); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--ink);
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bone-light);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
  }
  .nav.is-open .nav__links a {
    padding: 16px var(--gutter);
    border-top: 1px solid var(--rule);
    font-size: 15px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(36px, 4vw, 64px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero__meta .dot { width: 6px; height: 6px; background: var(--brass); }

.hero__headline {
  font-size: clamp(40px, 5.4vw, 84px);
  margin-bottom: 24px;
  max-width: 16ch;
  text-transform: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1.5px solid var(--rule);
}

.hero__lede { padding-right: 8%; }

.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }

.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.stat__value {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}

.stat__value .accent { color: var(--brass-deep); }

@media (max-width: 720px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__lede { padding-right: 0; }
}

/* ============================================================
   SKYLINE — animated buildings on page load
   ============================================================ */
.skyline-wrap {
  margin-top: clamp(24px, 4vw, 48px);
  width: 100%;
  position: relative;
}

.skyline-wrap::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--ink);
}

.skyline {
  display: block;
  width: 100%;
  height: clamp(100px, 14vw, 180px);
}

.skyline .building,
.skyline .detail {
  fill: var(--ink);
  transform: scaleY(0);
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: skyline-rise 0.70s cubic-bezier(0.16, 0.84, 0.30, 1) forwards;
}

.skyline .building.is-soft { fill: var(--ink-soft); }
.skyline .building.is-brass { fill: var(--brass-deep); }

@keyframes skyline-rise {
  0%   { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

/* Stagger left-to-right — each building 40ms after the previous */
.skyline .building:nth-of-type(1)  { animation-delay: 0.00s; }
.skyline .building:nth-of-type(2)  { animation-delay: 0.04s; }
.skyline .building:nth-of-type(3)  { animation-delay: 0.08s; }
.skyline .building:nth-of-type(4)  { animation-delay: 0.12s; }
.skyline .building:nth-of-type(5)  { animation-delay: 0.16s; }
.skyline .building:nth-of-type(6)  { animation-delay: 0.20s; }
.skyline .building:nth-of-type(7)  { animation-delay: 0.24s; }
.skyline .building:nth-of-type(8)  { animation-delay: 0.28s; }
.skyline .building:nth-of-type(9)  { animation-delay: 0.32s; }
.skyline .building:nth-of-type(10) { animation-delay: 0.36s; }
.skyline .building:nth-of-type(11) { animation-delay: 0.40s; }
.skyline .building:nth-of-type(12) { animation-delay: 0.44s; }
.skyline .building:nth-of-type(13) { animation-delay: 0.48s; }
.skyline .building:nth-of-type(14) { animation-delay: 0.52s; }
.skyline .building:nth-of-type(15) { animation-delay: 0.56s; }
.skyline .building:nth-of-type(16) { animation-delay: 0.60s; }
.skyline .building:nth-of-type(17) { animation-delay: 0.64s; }
.skyline .building:nth-of-type(18) { animation-delay: 0.68s; }
.skyline .building:nth-of-type(19) { animation-delay: 0.72s; }
.skyline .building:nth-of-type(20) { animation-delay: 0.76s; }
.skyline .building:nth-of-type(21) { animation-delay: 0.80s; }
.skyline .building:nth-of-type(22) { animation-delay: 0.84s; }

.skyline .detail {
  animation-delay: 1.55s;
  animation-duration: 0.4s;
}

/* Hero text rises AFTER skyline finishes building */
.hero .rise-1 { animation-delay: 1.65s; }
.hero .rise-2 { animation-delay: 1.80s; }
.hero .rise-3 { animation-delay: 2.00s; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.section--bone-light {
  background: var(--bone-light);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section--ink {
  background: var(--ink);
  color: var(--bone-light);
}

.section--ink .eyebrow { color: var(--brass); }
.section--ink .display { color: var(--bone-light); }
.section--ink .body-copy { color: rgba(244, 239, 230, 0.78); }
.section--ink .rule { background: rgba(244, 239, 230, 0.16); }

.section__header {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: start;
}

.section__header .eyebrow { padding-top: 8px; }

.section__title {
  font-size: clamp(28px, 3.8vw, 56px);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .section__header { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   CAPABILITIES (Home — 5-vertical grid)
   ============================================================ */
.capabilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  margin-top: 24px;
}

.capability {
  background: var(--bone-light);
  padding: clamp(22px, 2.4vw, 32px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s ease;
}

.capability:hover { background: var(--bone); }

.capability__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brass-deep);
}

.capability__title {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}

.capability__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate);
  margin-top: auto;
}

@media (max-width: 1040px) {
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .capability { min-height: 200px; }
}

@media (max-width: 560px) {
  .capabilities { grid-template-columns: 1fr; }
}

/* ============================================================
   PROJECTS PREVIEW (Home)
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  margin-top: 24px;
}

.project-card {
  aspect-ratio: 4 / 5;
  background: var(--bone-light);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}

.project-card:hover { background: var(--bone); }

.project-card::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1.5px solid var(--rule);
  z-index: 0;
}

.project-card__status {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  position: relative;
  z-index: 1;
}

.project-card__meta { position: relative; z-index: 1; }

.project-card__name {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.project-card__loc {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
}

.projects-footnote {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: right;
}

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

/* ============================================================
   PRINCIPLES (About page)
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 1.5px solid var(--ink);
}

.principle {
  background: var(--bone-light);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.25s ease;
}

.principle:hover { background: var(--bone); }

.principle__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brass-deep);
}

.principle__title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}

.principle__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate);
}

@media (max-width: 720px) {
  .principles { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.service {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1.5px solid var(--ink);
  align-items: start;
}

.service:last-child { border-bottom: 1.5px solid var(--ink); }

.service__num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brass-deep);
  padding-top: 14px;
}

.service__title {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service__body p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1em;
}

.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 13px;
  border: 1px solid var(--ink-soft);
  color: var(--ink-soft);
  background: transparent;
}

@media (max-width: 880px) {
  .service { grid-template-columns: 1fr; gap: 16px; }
  .service__num { padding-top: 0; }
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.statement__quote {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 52px);
  line-height: 1.05;
  color: var(--bone-light);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.statement__quote em { color: var(--brass); font-style: normal; }

.statement__attribution {
  margin-top: 36px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1.5px solid var(--ink);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.cta-band__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.cta-band__title em { color: var(--brass-deep); font-style: normal; }

.cta-band__actions { display: flex; flex-direction: column; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--bone-light);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  transform: translateY(-2px);
}

.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bone-light); }

.btn .arrow { width: 16px; height: 1.5px; background: currentColor; position: relative; }

.btn .arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -4px;
  width: 8px; height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .cta-band__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.form { display: grid; gap: 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--rule);
  padding: 10px 0 12px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}

.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--brass); }

.field textarea { resize: vertical; min-height: 140px; }
.form__submit { justify-self: start; margin-top: 8px; }
.contact-aside { border-top: 1.5px solid var(--ink); padding-top: 28px; }

.contact-aside .info-block + .info-block {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}

.info-block__label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 12px;
}

.info-block__value {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  text-transform: uppercase;
}

.info-block__sub {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--slate);
}

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(50px, 7vw, 90px);
  border-bottom: 1.5px solid var(--ink);
}

.page-header__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.page-header__title {
  font-size: clamp(40px, 5.6vw, 88px);
  text-transform: uppercase;
}

.page-header__lede { padding-bottom: 12px; }

@media (max-width: 720px) {
  .page-header__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.7);
  padding-top: 80px;
  padding-bottom: 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.14);
}

.footer__brand .brand__mark {
  background: var(--bone-light);
  color: var(--ink);
}

.footer__brand .brand__wordmark .top { color: var(--bone-light); }
.footer__brand .brand__wordmark .sub { color: rgba(244, 239, 230, 0.5); }

.footer__brand p {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  max-width: 32ch;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.footer__col ul li + li { margin-top: 12px; }
.footer__col a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(244, 239, 230, 0.78);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--bone-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rise {
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.18s; }
.rise-3 { animation-delay: 0.32s; }
.rise-4 { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .skyline .building,
  .skyline .detail { transform: scaleY(1) !important; }
}
