/* =========================================================
   Mark Andreas — Concept B: Metaphors of Movement / Cinematic
   Dark, immersive, filmic. Movement as the central metaphor.
   ========================================================= */

:root {
  --ink:        #0e1311;   /* near-black deep forest */
  --ink-2:      #121a17;   /* slightly lifted panel */
  --ink-3:      #18221e;   /* card surface */
  --green-deep: #0a0f0d;
  --paper:      #f1ece1;   /* off-white text */
  --paper-dim:  #c4c2b6;   /* muted text */
  --paper-faint:#8d918a;
  --gold:       #d8a55b;   /* warm amber accent */
  --gold-soft:  #e9c894;
  --line:       rgba(241,236,225,.14);

  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-serif:   "Fraunces", Georgia, serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-display);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  font-size: clamp(16px, 1.05vw, 18px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
  z-index: 3000; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- shared typographic helpers ---------- */
.eyebrow {
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; color: var(--paper-dim); margin: 0 0 1.2rem;
}
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  overflow-wrap: anywhere;
}
.section-sub {
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 56ch; margin: 0;
}

em { font-family: var(--ff-serif); font-style: italic; color: var(--gold-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em; font-family: var(--ff-display); font-weight: 600;
  font-size: .95rem; letter-spacing: .01em;
  padding: .85em 1.5em; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, box-shadow .25s ease, color .2s;
  line-height: 1.1; text-align: center;
}
.btn--lg { padding: 1.05em 1.9em; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--glow {
  background: var(--gold); color: #1a120a;
  box-shadow: 0 0 0 rgba(216,165,91,.0);
}
.btn--glow:hover {
  background: var(--gold-soft);
  box-shadow: 0 8px 32px rgba(216,165,91,.38), 0 0 0 1px rgba(216,165,91,.4);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(241,236,225,.06); color: var(--paper);
  border-color: rgba(241,236,225,.32);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--gold-soft); color: var(--gold-soft);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s ease, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background: rgba(10,15,13,.78);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(14px, 1.6vw, 22px) var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.wordmark { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; margin-right: auto; }
.wordmark__name { font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.wordmark__role { font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav__links { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav__links a {
  text-decoration: none; font-size: .92rem; font-weight: 500;
  color: var(--paper-dim); position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px;
}
.nav__toggle span { display: block; height: 2px; background: var(--paper); border-radius: 2px; transition: .25s; }
.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); }

.nav__mobile {
  display: none; flex-direction: column; gap: .25rem;
  padding: 0 var(--gutter) 1.4rem;
  background: rgba(10,15,13,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  text-decoration: none; padding: .85rem 0; color: var(--paper);
  border-bottom: 1px solid var(--line); font-weight: 500;
}
.nav__mobile a.btn { border: 1px solid transparent; margin-top: .8rem; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: clamp(90px, 14vh, 160px) var(--gutter) clamp(56px, 9vh, 110px);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-image: image-set(url("../assets/img/movement-walk.jpg") 1x);
  background-image: url("../assets/img/movement-walk.jpg");
  background-size: cover; background-position: center 35%;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(10,15,13,.96) 0%, rgba(10,15,13,.55) 38%, rgba(10,15,13,.15) 68%, rgba(10,15,13,.45) 100%),
    radial-gradient(120% 80% at 20% 100%, rgba(10,15,13,.6), transparent 60%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
}
.hero__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  line-height: .98; letter-spacing: -.03em;
  margin: 0 0 1.4rem; max-width: 16ch;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero__title em { font-weight: 500; }
.hero__lede {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--paper); max-width: 54ch; margin: 0 0 2rem;
  text-shadow: 0 1px 18px rgba(0,0,0,.5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero__signature {
  font-family: var(--ff-serif); font-style: italic;
  color: var(--paper-dim); margin: 0; font-size: 1.05rem;
}

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(40px, 7vh, 88px);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: var(--paper-dim);
}
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-soft); animation: scrolldot 2.2s ease-in-out infinite;
}
@keyframes scrolldot { 0% { top: -50%; } 60%,100% { top: 110%; } }
@media (max-width: 880px) { .hero__scroll { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__media { transform: none; }
  .hero__scroll-line::after { animation: none; }
}

/* =========================================================
   STATEMENT / APPROACH
   ========================================================= */
.statement {
  background: var(--ink);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
}
.statement::before {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 1px; height: clamp(48px, 8vw, 96px);
  background: linear-gradient(var(--gold), transparent);
}
.statement__inner { max-width: var(--maxw); margin: 0 auto; }
.statement__big {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 4.2rem); line-height: 1.05;
  letter-spacing: -.025em; margin: 0 0 2.4rem; max-width: 20ch;
  overflow-wrap: anywhere;
}
.statement__accent { display: block; color: var(--gold); }
.statement__cols {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem); max-width: 920px;
}
.statement__cols p { color: var(--paper-dim); margin: 0; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.statement__cols strong { color: var(--paper); }
@media (max-width: 720px) { .statement__cols { grid-template-columns: minmax(0, 1fr); } }

/* =========================================================
   METHODS / PATH
   ========================================================= */
.methods {
  background: var(--ink-2);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  border-top: 1px solid var(--line);
}
.methods__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 6vw, 5rem); }
.path {
  list-style: none; margin: 0 auto; padding: 0; max-width: 920px;
  counter-reset: step;
}
.path__step { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(1.4rem, 4vw, 3rem); }
.path__num {
  display: flex; flex-direction: column; align-items: center;
}
.path__num > span:first-child {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--gold);
  line-height: 1; padding-top: .1em;
}
.path__line {
  flex: 1; width: 2px; margin-top: 1rem;
  background: linear-gradient(var(--gold), rgba(216,165,91,.15));
  min-height: 60px;
}
.path__line--last { background: linear-gradient(var(--gold), transparent); }
.path__body { padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.path__step:last-child .path__body { padding-bottom: 0; }
.path__tag {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: .2rem 0 .6rem; font-weight: 600;
}
.path__title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); line-height: 1.05;
  letter-spacing: -.02em; margin: 0 0 .9rem; overflow-wrap: anywhere;
}
.path__body p { color: var(--paper-dim); margin: 0; max-width: 56ch; }

/* =========================================================
   CINEMATIC BREAK
   ========================================================= */
.break {
  position: relative; min-height: 78svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(80px, 14vh, 180px) var(--gutter); text-align: center;
  overflow: hidden;
}
.break__media {
  position: absolute; inset: 0; z-index: 0;
  background: url("../assets/img/arms-open-dramatic.jpg") center 30% / cover no-repeat;
}
.break__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,15,13,.7), rgba(10,15,13,.35) 40%, rgba(10,15,13,.78)),
    radial-gradient(80% 70% at 50% 50%, transparent, rgba(10,15,13,.55));
}
.break__quote { position: relative; z-index: 2; margin: 0; max-width: 30ch; }
.break__quote p {
  font-family: var(--ff-serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.9rem, 5.5vw, 4rem); line-height: 1.1;
  margin: 0 0 1.2rem; color: var(--paper);
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.break__quote cite {
  font-style: normal; font-family: var(--ff-display);
  font-size: clamp(.95rem, 1.3vw, 1.1rem); color: var(--gold-soft);
  letter-spacing: .01em;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--ink);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  max-width: calc(var(--maxw) + var(--gutter) * 2); margin: 0 auto;
}
.about__media img {
  width: 100%; height: auto; border-radius: 14px;
  aspect-ratio: 3 / 2; object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 1px solid var(--line);
}
.about__body p { color: var(--paper-dim); margin: 0 0 1.1rem; max-width: 58ch; }
.about__body strong { color: var(--paper); }
@media (max-width: 860px) {
  .about { grid-template-columns: minmax(0, 1fr); }
  .about__media { order: -1; }
}

/* =========================================================
   RESEARCH BAND
   ========================================================= */
.research {
  background: var(--green-deep);
  padding: clamp(64px, 8vw, 110px) var(--gutter);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.research__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem); text-align: center;
}
.stat { display: flex; flex-direction: column; gap: .6rem; }
.stat__num {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; color: var(--gold);
  letter-spacing: -.03em;
}
.stat__label { color: var(--paper-dim); font-size: .95rem; line-height: 1.45; }
@media (max-width: 680px) {
  .research__inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
}

/* =========================================================
   BOOKS
   ========================================================= */
.books {
  background: var(--ink);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}
.books__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.books__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.book {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s;
}
.book::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--gold), transparent);
}
.book:hover { transform: translateY(-4px); border-color: rgba(216,165,91,.4); }
@media (prefers-reduced-motion: reduce) { .book:hover { transform: none; } }
.book__kicker { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 1rem; }
.book__title {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.1;
  margin: 0 0 .7rem; overflow-wrap: anywhere;
}
.book__sub { font-weight: 500; color: var(--paper); margin: 0 0 1rem; }
.book__desc { color: var(--paper-dim); margin: 0 0 1.4rem; }
.book__endorse { font-size: .9rem; color: var(--paper-faint); margin: 0; }
.book__endorse strong { color: var(--gold-soft); }
@media (max-width: 720px) { .books__grid { grid-template-columns: minmax(0, 1fr); } }

/* =========================================================
   WORK WITH MARK
   ========================================================= */
.work {
  background: var(--ink-2);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  border-top: 1px solid var(--line);
}
.work__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.work__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.wcard {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex; flex-direction: column; gap: .9rem;
  position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s, background .25s;
}
.wcard:hover { transform: translateY(-4px); border-color: rgba(216,165,91,.45); background: #1d2925; }
@media (prefers-reduced-motion: reduce) { .wcard:hover { transform: none; } }
.wcard__num {
  font-family: var(--ff-serif); font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem); color: rgba(216,165,91,.5); line-height: 1;
}
.wcard h3 {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin: 0; letter-spacing: -.01em;
  overflow-wrap: anywhere;
}
.wcard p { color: var(--paper-dim); margin: 0; flex: 1; }
.wcard__link {
  text-decoration: none; color: var(--gold); font-weight: 600; font-size: .95rem;
  display: inline-flex; gap: .5em; align-items: center; transition: gap .2s, color .2s;
}
.wcard__link:hover { color: var(--gold-soft); gap: .85em; }
@media (max-width: 720px) { .work__grid { grid-template-columns: minmax(0, 1fr); } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--ink);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}
.testimonials__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.testimonials__head .section-sub { margin-inline: auto; }
.testimonials__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.tcard {
  margin: 0; background: var(--ink-3); border: 1px solid var(--line);
  border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
.tcard p {
  font-family: var(--ff-serif); font-style: italic; font-size: 1.15rem;
  line-height: 1.5; margin: 0; color: var(--paper); overflow-wrap: anywhere;
}
.tcard p::before { content: "“"; color: var(--gold); font-size: 1.4em; line-height: 0; }
.tcard cite {
  font-style: normal; font-family: var(--ff-display); font-size: .85rem;
  color: var(--paper-faint); margin-top: auto; letter-spacing: .02em;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; } }

/* =========================================================
   CONTACT + FINAL CTA
   ========================================================= */
.contact {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
}
.contact__media {
  position: absolute; inset: 0; z-index: 0;
  background: url("../assets/img/movement-stride.jpg") center 30% / cover no-repeat;
}
.contact__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(10,15,13,.94) 0%, rgba(10,15,13,.82) 45%, rgba(10,15,13,.55) 100%),
    linear-gradient(to top, rgba(10,15,13,.7), transparent 60%);
}
.contact__inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.contact__title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem); line-height: 1.02;
  letter-spacing: -.03em; margin: 0 0 1rem; overflow-wrap: anywhere;
}
.contact__intro p { color: var(--paper-dim); max-width: 46ch; margin: 0 0 2rem; }
.contact__details { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact__details li { font-size: .98rem; color: var(--paper); }
.contact__details span {
  display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .25rem; font-weight: 600;
}
.contact__details a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact__details a:hover { color: var(--gold-soft); }

.contact__form {
  background: rgba(18,26,23,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  display: grid; gap: 1.1rem;
}
.field { display: grid; gap: .4rem; }
.field label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper-dim); font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-display); font-size: 1rem; color: var(--paper);
  background: rgba(10,15,13,.6); border: 1px solid var(--line); border-radius: 10px;
  padding: .8em .9em; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,165,91,.18);
}
.field select option { background: var(--ink); color: var(--paper); }
.contact__note { font-size: .8rem; color: var(--paper-faint); text-align: center; margin: 0; }
@media (max-width: 820px) {
  .contact__inner { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--green-deep); border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) var(--gutter);
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center;
}
.footer__brand { display: flex; flex-direction: column; margin-right: auto; }
.footer__name { font-weight: 700; font-size: 1.15rem; }
.footer__tag { font-size: .8rem; color: var(--gold); letter-spacing: .06em; margin-top: 4px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.footer__nav a { text-decoration: none; color: var(--paper-dim); font-size: .9rem; transition: color .2s; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__legal { width: 100%; font-size: .8rem; color: var(--paper-faint); margin: .5rem 0 0; }
