/* ==========================================================================
   Magnastrategy Design System
   Concept: editorial financial consulting, a serif voice, real photography,
   and teal as the single connective color across advice, cover and trust.
   ========================================================================== */

:root {
  --ink: #142221;
  --ink-soft: #37423f;
  --paper: #faf9f6;
  --card: #ffffff;
  --mist: #eef1ef;
  --line: #dde3e0;
  --teal-deep: #0e3b39;
  --teal: #1c8c78;
  --teal-dim: #156d5d;
  --teal-soft: #e4f1ee;
  --slate: #5c6663;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1240px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

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

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

/* ---------- type scale ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dim);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 1.4em;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
}
.mark {
  background: linear-gradient(to bottom, transparent 62%, var(--teal-soft) 62%);
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.body-max { max-width: 62ch; }
small, .fine {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.9em 1.6em;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dim); border-color: var(--teal-dim); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-inverse {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost-inverse:hover { background: var(--paper); color: var(--ink); }
.btn-arrow::after { content: "→"; }

/* ---------- site header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 2rem;
  height: 2rem;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav ul {
  display: flex;
  gap: 1.85rem;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--teal);
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--line);
}
.lang-switch a {
  padding: 0.4em 0.65em;
  text-decoration: none;
  color: var(--slate);
}
.lang-switch a[aria-current="true"] {
  background: var(--ink);
  color: var(--paper);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-book-mobile { display: none; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 61px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; gap: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-actions > .btn { display: none; }
  .nav-book-mobile {
    display: block;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }
  .nav-book-mobile a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: var(--teal-dim);
  }
}

/* ---------- hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero .wrap {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: 0;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 46rem;
}
.hero-copy h1 { margin-top: 0.4rem; }
.hero-copy .lede { margin-top: 0.4rem; }
.hero-cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.hero-cta .text-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* hero photo + floating insight cards (signature) */
.hero-photo {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.hero-photo .frame {
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  overflow: hidden;
  background: var(--mist);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-card {
  position: absolute;
  background: var(--card);
  padding: 1.5rem 1.75rem;
  max-width: 260px;
  box-shadow: 0 24px 48px -12px rgba(14, 59, 57, 0.28);
  border-top: 3px solid var(--teal);
}
.float-card .rule {
  width: 2rem;
  height: 2px;
  background: var(--teal);
  margin-bottom: 0.9rem;
}
.float-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}
.float-card.top-left { top: -1.75rem; left: clamp(1rem, 4vw, 3rem); }
.float-card.bottom-right { bottom: -1.75rem; right: clamp(1rem, 4vw, 3rem); }
@media (max-width: 720px) {
  .float-card { position: static; max-width: none; margin-top: 1rem; box-shadow: none; border: 1px solid var(--line); border-top: 3px solid var(--teal); }
  .hero-photo { margin-top: 2rem; }
}

/* ---------- sections ---------- */
section { border-bottom: 1px solid var(--line); }
.section-pad { padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-head { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; max-width: 60ch; }
.section-tight .section-head { margin-bottom: 1.75rem; }
.mist { background: var(--mist); }
.ink { background: var(--teal-deep); color: var(--paper); }
.ink .eyebrow { color: #8fd8c8; }
.ink .eyebrow::before { background: #8fd8c8; }
.ink h2, .ink h3 { color: var(--paper); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

.two-col-photo {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col-photo .photo { height: 100%; min-height: 320px; overflow: hidden; }
.two-col-photo .photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .two-col-photo { grid-template-columns: 1fr; }
  .two-col-photo .photo { min-height: 260px; order: -1; }
}

/* feature rows (why work with a broker / what makes us different) */
.feature-rows { border-top: 1px solid var(--line); }
.feature-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-row h3 { color: var(--ink); font-size: 1.1rem; }
.feature-row p { color: var(--slate); max-width: 52ch; }
@media (max-width: 700px) {
  .feature-row { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* category / service tiles grid */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tile {
  background: var(--card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tile .idx { font-family: var(--font-body); font-weight: 700; color: var(--teal); font-size: 0.8rem; }
.tile h3 { font-size: 1.1rem; }
.tile p { color: var(--slate); font-size: 0.92rem; }
@media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tile-grid { grid-template-columns: 1fr; } }

/* numbered steps, legitimately sequential */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step { display: flex; flex-direction: column; gap: 0.6rem; }
.step .num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--teal-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.step h3 { font-size: 1.15rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--ink);
}
.stat .cap {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.4rem;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
}

/* final CTA band */
.cta-band .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 1;
}
.cta-band .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-band.photo { position: relative; overflow: hidden; }
.cta-band.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
}
.cta-band.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--teal-deep) 30%, rgba(14,59,57,0.55));
  z-index: 0;
}

/* team roster */
.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.roster-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.roster-photo { height: 15rem; overflow: hidden; background: var(--mist); }
.roster-photo img { width: 100%; height: 100%; object-fit: cover; }
.roster-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.roster-card h3 { font-size: 1.05rem; }
.roster-card .role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dim);
}
.roster-card p { color: var(--slate); font-size: 0.9rem; }
.placeholder-flag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--card);
  background: var(--ink-soft);
  padding: 0.3em 0.6em;
  align-self: flex-start;
  position: absolute;
  margin: 0.75rem;
}
.roster-photo { position: relative; }
@media (max-width: 900px) { .roster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .roster { grid-template-columns: 1fr; } }

/* quote */
.pull-quote {
  border-left: 3px solid var(--teal);
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--slate);
}

/* comparison list, teal tag rows (services / values) */
.compare-list { border: 1px solid var(--line); background: var(--card); }
.compare-list .list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.compare-row {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row .idx {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--teal);
  font-size: 0.85rem;
}
.compare-row .label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.compare-row .label span {
  display: block;
  font-weight: 400;
  color: var(--slate);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}
.compare-row .tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dim);
  background: var(--teal-soft);
  padding: 0.3em 0.6em;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 640px) {
  .compare-row { grid-template-columns: 2rem 1fr; }
  .compare-row .tag { grid-column: 2; justify-self: start; margin-top: 0.5rem; }
}

/* contact / forms */
.info-list { border-top: 1px solid var(--line); }
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.info-row .k { color: var(--slate); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; font-weight: 600; align-self: start; padding-top: 0.2em; }
.info-row .v { color: var(--ink); }
.info-row a { text-decoration: none; border-bottom: 1px solid var(--line); }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.form-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85em 0.9em;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.75rem;
}
.form-status {
  font-family: var(--font-body);
  font-size: 0.86rem;
  margin-top: 1rem;
  display: none;
  color: var(--teal-dim);
  font-weight: 600;
}
.form-status.is-visible { display: block; }

/* appointment calendar */
.calendar {
  border: 1px solid var(--line);
  background: var(--card);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 420px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.calendar-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.calendar-nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.calendar-nav:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
.calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}
.calendar-weekdays span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  padding: 0;
}
.calendar-day:hover:not(.is-disabled):not(.is-selected) { border-color: var(--teal); background: var(--teal-soft); }
.calendar-day.is-today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--teal);
}
.calendar-day.is-selected { background: var(--teal); border-color: var(--teal); color: #fff; }
.calendar-day.is-selected:hover { background: var(--teal-dim); border-color: var(--teal-dim); }
.calendar-day.is-selected.is-today::after { background: #fff; }
.calendar-day.is-disabled {
  background: repeating-linear-gradient(135deg, var(--mist), var(--mist) 4px, var(--card) 4px, var(--card) 8px);
  color: var(--slate);
  cursor: not-allowed;
}
.calendar-day.is-empty { visibility: hidden; border: none; cursor: default; }

.calendar-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--slate);
}
.calendar-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.5em;
  vertical-align: middle;
}
.calendar-legend .dot-open { background: var(--teal); }
.calendar-legend .dot-closed { background: var(--line); border: 1px solid var(--slate); }

.calendar-selected {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

/* legal pages */
.legal-body h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 0.85rem; max-width: 68ch; }
.legal-body li { list-style: disc; margin-left: 1.2rem; }
.draft-banner {
  border: 1px solid var(--teal);
  color: var(--teal-dim);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.1rem;
  margin-bottom: 2.5rem;
  background: var(--teal-soft);
}

/* footer */
.site-footer {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { color: var(--slate); font-size: 0.9rem; margin-top: 1rem; max-width: 32ch; }
.footer-col h3 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.05em; color: var(--slate); margin-bottom: 1rem; text-transform: uppercase; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { text-decoration: none; font-size: 0.9rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--teal-dim); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}
