/* ==========================================================
   Burbank Web Solutions: site styles
   Mobile-first. Breakpoints: 640px, 900px, 1100px.
   ========================================================== */

:root {
  /* Color */
  --stone: #ECEAE3;
  --paper: #F7F6F2;
  --ink: #1B2420;
  --ink-2: #2E3833;
  --ink-3: #3E4944;
  --muted: #4F5A55;
  --line: #D3D0C6;
  --forest: #22423A;
  --navy: #1E2D42;
  --navy-2: #26384F;
  --copper: #A24F22;
  --copper-dark: #7F3B17;
  --peach: #E3A57C;
  --sage: #C5CCBA;
  --steel: #B9C5CC;
  --khaki: #D6CBAE;
  --clay: #D7B49B;

  /* Type */
  --font-display: "Big Shoulders Display", Impact, "Arial Narrow", sans-serif;
  --font-body: Manrope, "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat Brush", "Segoe Print", cursive;

  /* Layout */
  --gutter: clamp(16px, 5vw, 72px);
  --radius: 28px;
  --section: clamp(72px, 10vw, 120px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul[role="list"], .footer-links, .site-nav ul, .steps { list-style: none; padding: 0; }
a { color: inherit; }
a:hover { color: var(--copper); }
button, input { font: inherit; }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 6px;
}
.band-navy :focus-visible, .band-forest :focus-visible, .freebie :focus-visible, .site-footer :focus-visible {
  outline-color: var(--peach);
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px; font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}
.h2 { font-size: clamp(44px, 6vw, 80px); }
.h3 { font-size: clamp(32px, 3vw, 40px); line-height: 1; }
.script { font-family: var(--font-script); font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; color: var(--copper); }
.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.65; color: var(--ink-3); max-width: 62ch; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.accent { color: var(--copper); }
.accent-light { color: var(--peach); }
.accent-dark { color: var(--copper-dark); }
.accent-blush { color: #F6D3BA; }
.on-dark { color: #C9D1D8; }
.on-forest { color: var(--sage); }
.on-copper { color: #FBE7DA; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 58px; padding: 0 30px; font-size: 17px; }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: #1A342D; color: #fff; }
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-dark); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; color: #fff; }
.btn-peach { background: var(--peach); color: var(--ink); }
.btn-peach:hover { background: #EDB690; color: var(--ink); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.self-start { align-self: flex-start; }

/* ---------- Announcement + header ---------- */
.announce {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 12px;
  padding: 10px var(--gutter); background: var(--navy); color: var(--stone);
  font-size: 14px; font-weight: 600; text-align: center; text-decoration: none;
}
.announce:hover { color: #fff; }
.announce .script { font-size: 20px; color: var(--peach); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--stone) 92%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; background: var(--forest); color: var(--stone);
  display: grid; place-items: center; font: 900 26px/1 var(--font-display);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name, .brand-sub { text-align: justify; text-align-last: justify; white-space: nowrap; }
.brand-name { font: 900 26px/1 var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; }
.brand-sub { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.menu-toggle {
  margin-left: auto; width: 48px; height: 48px; border-radius: 12px;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: inline; }

.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  padding: 16px var(--gutter) 24px; background: var(--stone); border-bottom: 1px solid var(--line);
  flex-direction: column; gap: 16px;
}
.site-nav.is-open { display: flex; }
.site-nav ul { display: flex; flex-direction: column; }
.site-nav li a { display: block; padding: 12px 0; font-weight: 700; font-size: 18px; text-decoration: none; border-bottom: 1px solid var(--line); }

@media (min-width: 900px) {
  .header-inner { min-height: 92px; gap: 40px; }
  .menu-toggle { display: none; }
  .site-nav {
    display: flex; position: static; flex-direction: row; align-items: center; gap: 36px;
    padding: 0; background: none; border: 0; margin-left: auto;
  }
  .site-nav ul { flex-direction: row; gap: 28px; }
  .site-nav li a { padding: 8px 0; font-size: 15px; border: 0; }
}

/* ---------- Hero ---------- */
.hero { display: grid; gap: 40px; padding-top: clamp(32px, 6vw, 72px); }
.hero-copy { display: flex; flex-direction: column; gap: 22px; }
.hello { transform: rotate(-3deg); align-self: flex-start; font-size: clamp(26px, 3vw, 34px); }
.hero-title { font-size: clamp(50px, 8vw, 104px); line-height: 0.92; }
.hero-title mark {
  color: var(--forest);
  background: linear-gradient(transparent 68%, var(--clay) 68%, var(--clay) 90%, transparent 90%);
}

.hero-art { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 380px; }
.photo-placeholder {
  position: relative; overflow: hidden; display: grid; place-items: center;
  background: var(--forest); color: var(--sage);
  font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.photo-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(236,234,227,.06) 0 2px, transparent 2px 22px);
}
.photo-placeholder span { position: relative; }
.photo-placeholder.navy { background: var(--navy); color: var(--steel); }
.arch, .arch img { width: min(460px, 78vw); aspect-ratio: 460 / 620; border-radius: 999px 999px 28px 28px; }
.arch img, .arch-down img { object-fit: cover; }

.starburst {
  position: absolute; left: 0; top: 8px; width: clamp(112px, 12vw, 176px); aspect-ratio: 1;
  display: grid; place-items: center; transform: rotate(-10deg);
}
.starburst svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: var(--copper); }
.starburst span {
  position: relative; text-align: center; color: #fff;
  font: 900 clamp(14px, 1.5vw, 22px)/1 var(--font-display); text-transform: uppercase;
}
.note-card {
  position: absolute; right: 0; bottom: 4%; width: 200px; padding: 18px 20px;
  background: var(--paper); border-radius: 16px; transform: rotate(4deg);
  box-shadow: 0 18px 40px -18px rgba(27,36,32,.45);
  display: none; flex-direction: column; gap: 6px; font-size: 13px; line-height: 1.4; color: var(--ink-3);
}
.note-card strong { font-size: 34px; color: var(--navy); }

@media (min-width: 640px) { .note-card { display: flex; } }
@media (min-width: 1000px) {
  .hero { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 64px; align-items: end; }
  .hero-copy { padding-bottom: 80px; }
  .hero-art { min-height: 680px; }
}

/* ---------- Color tabs ---------- */
.tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
.tabs a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 72px; padding: 0 clamp(16px, 2.2vw, 32px);
  font-weight: 800; font-size: clamp(15px, 1.3vw, 17px); text-decoration: none; color: var(--ink);
}
.tabs a:hover { filter: brightness(0.95); color: var(--ink); }
.tab-sage { background: var(--sage); } .tab-steel { background: var(--steel); }
.tab-khaki { background: var(--khaki); } .tab-clay { background: var(--clay); }
@media (min-width: 900px) { .tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); } .tabs a { min-height: 88px; } }

/* ---------- Bands + layout helpers ---------- */
.section { padding-block: var(--section); }
.band { padding-block: var(--section); }
.band-navy { background: var(--navy); color: var(--stone); }
.band-forest { background: var(--forest); color: var(--stone); }
.band-khaki { background: var(--khaki); }
.stack { display: flex; flex-direction: column; gap: 20px; }
.stack-lg { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 56px); }
.split { display: grid; gap: 48px; }
@media (min-width: 1000px) {
  .split { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
  .split-process { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 72px; }
  .split-about { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); align-items: center; }
}
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.centered { align-items: center; text-align: center; margin-bottom: 0; }
.section-head.centered .lead { max-width: 640px; }
.row-head .side-note { transform: rotate(-3deg); max-width: 280px; }
@media (min-width: 900px) {
  .row-head { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px; }
  .row-head .h2 { max-width: 820px; }
  .row-head .side-note { text-align: right; }
}

/* ---------- Quiz ---------- */
.result-card {
  margin-top: 8px; padding: 28px; border-radius: 24px; background: var(--navy-2);
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.result-title { font-size: clamp(32px, 3.4vw, 40px); color: var(--sage); }
.result-card .btn { margin-top: 8px; }

.quiz { display: flex; flex-direction: column; gap: 14px; }
/* The legend is floated so it lays out like a normal block inside the fieldset. */
.q {
  margin: 0; border: 0; min-width: 0; padding: 20px 22px; border-radius: 20px; background: var(--paper); color: var(--ink);
}
.q::after { content: ""; display: block; clear: both; }
.q legend {
  float: left; width: 100%; padding: 0; margin-bottom: 14px;
  display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 16px; align-items: center;
  font-size: 17px; font-weight: 600; line-height: 1.4;
}
.q-opts { clear: both; }
.q-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--stone);
  display: grid; place-items: center; font: 900 22px/1 var(--font-display);
}
.q-opts { display: flex; gap: 8px; padding-left: 60px; }
.q-opts input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.q-opts label {
  min-width: 72px; min-height: 44px; padding: 0 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #8A948F; font-weight: 800; font-size: 15px; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.q-opts label:hover { border-color: var(--navy); }
.q-opts input:checked + label { background: var(--navy); border-color: var(--navy); color: #fff; }
.q-opts input:focus-visible + label { outline: 3px solid var(--copper); outline-offset: 3px; }
@media (min-width: 640px) {
  .q { padding: 22px 26px; display: flex; align-items: center; gap: 18px; }
  .q legend { width: auto; flex: 1; margin-bottom: 0; }
  .q-opts { clear: none; padding-left: 0; margin-left: auto; flex: none; }
}

/* ---------- Pillars ---------- */
.grid-3 { display: grid; gap: 24px; }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; } }
.pillar { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius); display: flex; flex-direction: column; gap: 18px; }
.pillar p { font-size: 16.5px; color: var(--ink-2); }
.bg-sage { background: var(--sage); } .bg-steel { background: var(--steel); }
.bg-khaki { background: var(--khaki); } .bg-clay { background: var(--clay); }

.pillar-art { height: 180px; border-radius: 18px; background: var(--paper); }
.pillar-art:first-child:not(.pillar-list):not(.pillar-score) { display: flex; align-items: flex-end; justify-content: center; gap: 14px; padding-top: 22px; }
.dev { border: 3px solid var(--ink); border-bottom: 0; display: flex; flex-direction: column; gap: 8px; padding: 12px; }
.dev i { display: block; border-radius: 4px; }
.dev .l1 { height: 10px; width: 60%; background: var(--forest); border-radius: 3px; }
.dev .blk { height: 36px; background: var(--sage); }
.dev .blk2 { height: 18px; background: var(--khaki); }
.dev .pair { display: flex; gap: 6px; } .dev .pair b { flex: 1; height: 30px; background: var(--khaki); border-radius: 4px; }
.dev-desktop { width: 150px; height: 150px; border-radius: 10px 10px 0 0; }
.dev-phone { width: 66px; height: 120px; border-radius: 12px 12px 0 0; padding: 10px 8px; gap: 6px; }
.dev-phone .blk { height: 28px; }

.pillar-list { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 0 22px; }
.pillar-list > div { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.pillar-list small { font-size: 12px; font-weight: 700; color: var(--muted); }
.chip { padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 800; }
.chip-focus { padding: 8px 14px; border-radius: 8px; background: var(--navy); color: #fff; font-size: 13px; outline: 3px solid var(--copper); outline-offset: 3px; }
.chip-dark { background: var(--ink); color: var(--paper); }
.chip-dashed { border: 2px dashed var(--navy); }

.pillar-score { display: flex; align-items: center; justify-content: center; gap: 22px; }
.pillar-score > div:last-child { display: flex; flex-direction: column; gap: 6px; }
.pillar-score small { font-size: 12px; font-weight: 700; color: var(--muted); }
.ring {
  width: 96px; height: 96px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(closest-side, var(--paper) 76%, transparent 78%), conic-gradient(var(--forest) 0 96%, var(--line) 0);
}
.ring span { font-size: 34px; color: var(--forest); }

/* ---------- Before / after ---------- */
.compare { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .compare { grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr); } }
.shot { display: flex; flex-direction: column; gap: 14px; }
.pill { align-self: flex-start; padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.pill-dim { background: #3A5A51; }
.pill-peach { background: var(--peach); color: var(--ink); }
.compare-arrow {
  width: 72px; height: 72px; border-radius: 50%; background: var(--copper);
  display: grid; place-items: center; justify-self: center; transform: rotate(90deg);
}
@media (min-width: 900px) { .compare-arrow { transform: none; } }

.browser { border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.browser-bar { height: 34px; background: var(--stone); display: flex; align-items: center; gap: 6px; padding: 0 14px; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #C8C4B8; }
.browser-bar.old { background: var(--line); } .browser-bar.old i { background: #A9A596; }

.mock-old {
  aspect-ratio: 16 / 10; padding: 4%; background: #F1F1F1; color: #6B6B6B;
  font-family: "Times New Roman", serif; display: flex; flex-direction: column; gap: 10px;
}
.old-banner { padding: 3% 0; background: #5A7FA8; color: #E8E8E8; text-align: center; font-size: clamp(14px, 1.6vw, 22px); font-style: italic; }
.old-links { display: flex; flex-wrap: wrap; gap: 6px; font-size: 11px; color: #0000CC; }
.old-links span { text-decoration: underline; }
.old-body { display: flex; gap: 10px; flex: 1; font-size: 10px; line-height: 1.35; color: #8A8A8A; }
.old-img { width: 34%; background: #CFCFCF; flex: none; }
.old-counter { height: 18px; width: 120px; background: #DADADA; align-self: center; }

.mock-new { aspect-ratio: 16 / 10; padding: 4% 5%; background: var(--paper); display: flex; flex-direction: column; gap: 14px; }
.mock-new b { display: block; border-radius: 4px; }
.new-nav { display: flex; justify-content: space-between; align-items: center; }
.new-nav .logo { width: 90px; height: 14px; background: var(--ink); }
.new-nav span { display: flex; gap: 10px; align-items: center; }
.new-nav span b { width: 34px; height: 8px; background: #8A948F; }
.new-nav span .cta { width: 70px; height: 24px; background: var(--copper); border-radius: 999px; }
.new-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; flex: 1; }
.new-copy { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.new-copy .h { height: 18px; width: 92%; background: var(--ink); }
.new-copy .h.short { width: 70%; }
.new-copy .t { height: 7px; width: 90%; background: #B7BDB9; margin-top: 4px; }
.new-copy .t.short { width: 76%; margin-top: 0; }
.new-copy .btnb { width: 110px; height: 28px; background: var(--forest); border-radius: 999px; margin-top: 6px; }
.new-arch { border-radius: 90px 90px 14px 14px; background: var(--sage); }
.new-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.new-cards b { height: 38px; border-radius: 10px; background: var(--steel); }
.new-cards b:nth-child(2) { background: var(--khaki); } .new-cards b:nth-child(3) { background: var(--clay); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.stats li { padding: 24px; border-radius: 20px; border: 1.5px solid #4C6B62; display: flex; flex-direction: column; gap: 6px; }
.stats strong { font-size: clamp(36px, 3.6vw, 48px); line-height: 1; color: var(--peach); }
.stats span { color: var(--sage); }

/* ---------- Services ---------- */
.grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.service { border-radius: var(--radius); background: var(--paper); border: 1.5px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.service-top { min-height: 150px; display: flex; align-items: flex-end; padding: 22px; }
.service-top h3 { font-size: clamp(32px, 2.6vw, 42px); overflow-wrap: anywhere; }
.service-body { padding: 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.service-body p { color: var(--ink-2); }
.service-body .price { font-size: 14px; font-weight: 700; color: var(--muted); }
.service-body .btn { margin-top: auto; }

/* ---------- Process ---------- */
.steps { display: flex; flex-direction: column; gap: 18px; }
.steps li { padding: 24px 26px; border-radius: 22px; background: var(--paper); display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 18px; align-items: start; }
.step-n { font-size: clamp(52px, 5vw, 64px); line-height: 0.85; color: var(--copper); }
.steps h3 { font-size: 21px; font-weight: 800; }
.steps p { margin-top: 6px; color: var(--ink-3); }

/* ---------- About ---------- */
.about-art { position: relative; display: flex; justify-content: center; }
.arch-down, .arch-down img { width: min(420px, 80vw); aspect-ratio: 420 / 540; border-radius: 28px 28px 999px 999px; }
.asterisk { position: absolute; right: 4%; top: -24px; font-size: clamp(84px, 9vw, 120px); line-height: 1; color: var(--copper); }

/* ---------- Freebie / form ---------- */
.freebie {
  display: grid; gap: 40px; padding: clamp(28px, 5vw, 72px); border-radius: 36px;
  background: var(--copper); color: #fff;
}
@media (min-width: 1000px) { .freebie { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.freebie .h2 { font-size: clamp(40px, 5vw, 68px); }
.signup { display: flex; flex-direction: column; gap: 14px; padding: clamp(22px, 3vw, 32px); border-radius: 24px; background: var(--paper); color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 700; }
.optional { font-weight: 500; color: var(--muted); }
.field input {
  min-height: 52px; padding: 0 16px; border-radius: 12px; border: 1.5px solid #8A948F;
  background: #fff; color: var(--ink); font-size: 16px; font-weight: 500;
}
.field input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,45,66,.25); }
.field input[aria-invalid="true"] { border-color: #B42318; }
.field-error { font-size: 13px; font-weight: 600; color: #B42318; }
.form-status { font-size: 14px; font-weight: 700; color: var(--forest); min-height: 1.2em; }
.fine { font-size: 13px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { margin-top: var(--section); background: var(--ink); color: var(--sage); padding-block: 64px 48px; }
.site-footer a { color: var(--stone); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--peach); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.footer-brand .display { font-size: clamp(24px, 4vw, 44px); color: var(--stone); white-space: nowrap; }
.footer-links { display: flex; flex-wrap: nowrap; gap: 14px 32px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 48px; padding-top: 24px; border-top: 1px solid #34403B; font-size: 14px; }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .btn:hover { transform: none; }
}
