/* ============================================================
   Shutterbird — marketing landing
   Hand-written, dependency-free. Film-flash palette on aubergine.
   ============================================================ */

:root {
  --ink: #0e0b16;          /* deep aubergine base            */
  --ink-2: #16111f;        /* raised surface                 */
  --paper: #f5f0e6;        /* polaroid / print paper (warm)  */
  --text: #f4f1f8;
  --muted: #a89fb8;
  --grape: #b14ad6;
  --grape-dark: #8b2fb0;
  --amber: #ffcf5c;
  --coral: #ff5c8a;
  --teal: #4ad6c0;
  --border: #2a2438;
  --radius: 14px;
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.7);
  --maxw: 1120px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  /* subtle film grain + a grape glow up top */
  background-image:
    radial-gradient(1200px 600px at 78% -8%, rgba(177, 74, 214, 0.22), transparent 60%),
    radial-gradient(900px 500px at 8% 4%, rgba(255, 92, 138, 0.10), transparent 55%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 { letter-spacing: -0.02em; }

::selection { background: var(--grape); color: #fff; }

/* ─────────────── theme toggle ─────────────── */
.theme-toggle {
  position: fixed;
  right: 1rem; bottom: 1rem;
  z-index: 200;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700; font-size: 0.85rem;
  padding: 0.6rem 1rem; border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.theme-toggle:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -16px rgba(0,0,0,0.8); }
.theme-toggle .tt-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, #ffcf5c, #e8674c);
  box-shadow: 0 0 0 2px var(--ink);
}

/* ─────────────── shutter flash on load ─────────────── */
.shutter {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  animation: flash 0.7s ease-out 0.15s 1 forwards;
}
@keyframes flash {
  0%   { opacity: 0; }
  8%   { opacity: 0.92; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .shutter { display: none; }
}

/* ─────────────── nav ─────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 5vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 11, 22, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.15rem;
}
.brand-lens {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff 0 12%, var(--grape) 16% 52%, var(--grape-dark) 56% 100%);
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--grape);
  flex: none;
}

.nav nav { display: flex; gap: 1.3rem; align-items: center; }
.nav nav > a:not(.btn) { color: var(--muted); font-size: 0.95rem; }
.nav nav > a:not(.btn):hover { color: var(--text); }
@media (max-width: 720px) {
  .nav nav > a:not(.btn) { display: none; }
}

/* ─────────────── buttons ─────────────── */
.btn {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-lg { padding: 0.85rem 1.6rem; font-size: 1.02rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--grape));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(177, 74, 214, 0.9);
}
.btn-primary:hover { box-shadow: 0 14px 30px -8px rgba(255, 92, 138, 0.7); transform: translateY(-1px); }

.btn-ghost { border-color: var(--border); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--grape); }

/* ─────────────── layout shells ─────────────── */
main { display: block; }
section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
}
section > h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.6rem;
}
.section-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  margin: 0 0 2.4rem;
}
.muted-h { color: var(--muted); }

/* ─────────────── HERO ─────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: 1rem;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stage { order: -1; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--amber);
  background: rgba(255, 207, 92, 0.1);
  border: 1px solid rgba(255, 207, 92, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 1.2rem;
  font-weight: 850;
}
.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--grape);
  text-stroke: 2px var(--grape);
  background: linear-gradient(120deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 520px;
  margin: 0 0 1.8rem;
}
.lede em { color: var(--amber); font-style: normal; font-weight: 600; }

.cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.fineprint {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1.1rem 0 0;
}
.fineprint.centered { text-align: center; margin-top: 1.8rem; }

/* ── hero polaroid stage ── */
.hero-stage {
  position: relative;
  min-height: clamp(340px, 44vw, 480px);
}
.pol {
  position: absolute;
  margin: 0;
  width: clamp(140px, 20vw, 190px);
  background: var(--paper);
  padding: 0.7rem 0.7rem 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pol:hover { transform: rotate(0deg) scale(1.05); z-index: 5; box-shadow: 0 26px 50px -18px rgba(0,0,0,0.8); }
/* photo frame: real images fill the square, gradient shows while loading */
.shot {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  background: #241c30 linear-gradient(150deg, #3a2a52, #241c30);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pol figcaption {
  font-family: 'Bradley Hand', 'Segoe Script', cursive;
  color: #2a2438;
  text-align: center;
  padding: 0.55rem 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.pol-a { top: 2%;  left: 4%;  }
.pol-b { top: 0%;  right: 6%; }
.pol-c { bottom: 4%; left: 14%; }
.pol-d { bottom: 0%; right: 2%; z-index: 2; }

/* develop-in animation (blurred sepia → sharp colour) */
.develop {
  animation: develop 1.1s ease-out both;
  animation-delay: calc(var(--i, 0) * 160ms + 400ms);
}
.pol-a { --i: 0; } .pol-b { --i: 1; } .pol-c { --i: 2; } .pol-d { --i: 3; }
@keyframes develop {
  0%   { opacity: 0; filter: blur(14px) sepia(1) contrast(0.6) brightness(0.5); transform: rotate(var(--tilt)) translateY(24px) scale(0.9); }
  60%  { opacity: 1; }
  100% { opacity: 1; filter: none; transform: rotate(var(--tilt)); }
}
@media (prefers-reduced-motion: reduce) {
  .develop { animation: none; }
}

/* scroll-to-develop cue */
.develop-cue {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.develop-cue span { display: inline-block; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(4px);} }

/* ─────────────── reveal-on-scroll ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ─────────────── generic grid / cards ─────────────── */
.grid { display: grid; gap: 1.2rem; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--grape), var(--amber));
  opacity: 0.7;
}
.card-emoji { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.card h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.card em { color: var(--text); font-style: italic; }
.tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--grape);
  background: rgba(177, 74, 214, 0.12);
  border: 1px solid rgba(177, 74, 214, 0.3);
  padding: 0.25rem 0.6rem; border-radius: 999px;
  margin-bottom: 0.9rem;
}

/* ─────────────── SWITCH section ─────────────── */
.switch h2 { text-align: center; margin-bottom: 2.6rem; }
.switch-punch {
  text-align: center;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  margin: 2.6rem auto 0;
  max-width: 640px;
}
.switch-punch strong { color: var(--amber); }

/* ─────────────── HOW ─────────────── */
.how h2 { text-align: center; margin-bottom: 2.8rem; }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
}
.step-num {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--grape));
  box-shadow: 0 8px 18px -8px var(--grape);
}
.step-face {
  width: 84px; height: 84px; margin: 0.8rem auto 1rem;
  border-radius: 20px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(177,74,214,0.35), rgba(14,11,22,0.2));
  border: 1px solid var(--border);
  font-size: 2rem;
}
.step h3 { margin: 0 0 0.4rem; font-size: 1.3rem; }
.step p { margin: 0; color: var(--muted); }
.qr {
  width: 46px; height: 46px;
  background:
    linear-gradient(#fff 0 0) 0 0/16px 16px no-repeat,
    linear-gradient(#fff 0 0) 100% 0/16px 16px no-repeat,
    linear-gradient(#fff 0 0) 0 100%/16px 16px no-repeat,
    conic-gradient(from 0deg, #fff 0 25%, transparent 0 50%, #fff 0 75%, transparent 0) 50% 50%/12px 12px;
  border-radius: 3px;
}
.roll { font-weight: 850; font-size: 1.9rem; color: var(--amber); }
.cloud { font-size: 2.2rem; }

/* ─────────────── LOOKS / film strip ─────────────── */
.looks-head { text-align: center; }
.looks-head .section-sub { margin-inline: auto; }
.film-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  scroll-snap-type: x mandatory;
  /* film sprocket edges */
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,0.06) 26px 40px) top / 100% 12px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255,255,255,0.06) 26px 40px) bottom / 100% 12px no-repeat,
    var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.film-strip::-webkit-scrollbar { height: 8px; }
.film-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.frame {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 150px;
  margin: 0;
  background: var(--paper);
  padding: 0.6rem 0.6rem 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.frame:hover { transform: translateY(-8px) rotate(-2deg); }
.frame figcaption {
  text-align: center; padding: 0.5rem 0 0.6rem;
  color: #2a2438; font-weight: 700; font-size: 0.9rem;
}
/* look treatments — filters cascade to the child <img> */
.shot.retro img { filter: sepia(0.55) saturate(1.35) contrast(0.95) hue-rotate(-8deg); }
.shot.bw    img { filter: grayscale(1) contrast(1.12); }
.shot.pola  img { filter: saturate(1.25) brightness(1.06) contrast(0.94); }
.shot.cine  img { filter: contrast(1.2) saturate(1.15) brightness(0.9) hue-rotate(6deg); }
.shot.flash img { filter: brightness(1.22) contrast(1.25) saturate(0.9); }

/* ─────────────── THE EVENT BOOK ─────────────── */
.book-head { text-align: center; }
.book-head .section-sub { margin-inline: auto; }
.book-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (max-width: 860px) { .book-layout { grid-template-columns: 1fr; } }

.book-visual { display: flex; justify-content: center; }
.book {
  display: flex;
  gap: 4px;
  padding: 1rem;
  border-radius: 8px;
  background: linear-gradient(160deg, #201a2c, #14101d);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  position: relative;
}
.book::after { /* centre crease */
  content: ""; position: absolute; top: 1rem; bottom: 1rem; left: 50%;
  width: 10px; transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0,0,0,0.4), transparent 40%, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.book-page {
  background: var(--paper);
  padding: 0.6rem;
  width: clamp(120px, 20vw, 165px);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.book-page .shot { border-radius: 2px; }
.book-page .shot.tall { aspect-ratio: 3 / 4; }
.book-caption {
  font-family: 'Bradley Hand', 'Segoe Script', cursive;
  color: #2a2438; text-align: center; font-weight: 600;
  font-size: 0.95rem; padding-top: 0.1rem;
}

.book-formats { display: grid; gap: 1rem; }
.format {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.format-icon {
  flex: none; font-size: 1.5rem;
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 25%, rgba(177,74,214,0.4), rgba(14,11,22,0.2));
  border: 1px solid var(--border);
}
.format h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.format p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ─────────────── LIVE GALLERY ─────────────── */
.gallery-head { text-align: center; }
.gallery-head .section-sub { margin-inline: auto; }
.live-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  min-height: 220px;
}
.g-pol {
  background: var(--paper);
  padding: 0.55rem 0.55rem 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: rotate(var(--r, 0deg));
  opacity: 0;
  animation: drop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes drop {
  0%   { opacity: 0; transform: rotate(var(--r,0deg)) translateY(-28px) scale(0.9); filter: blur(8px) sepia(0.6); }
  100% { opacity: 1; transform: rotate(var(--r,0deg)) translateY(0) scale(1); filter: none; }
}
.g-pol .shot { position: relative; }
.g-pol .seal {
  position: absolute; top: 7px; right: 7px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; line-height: 1;
  background: #1fa053; color: #fff; font-size: 0.72rem; font-weight: 900;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.g-pol .meta {
  display: flex; justify-content: center;
  padding: 0.5rem 0.35rem 0.6rem;
  color: #2a2438; font-size: 0.85rem;
}
.g-pol .meta .who { white-space: nowrap; font-weight: 700; }
.gallery-note {
  text-align: center; color: var(--muted); margin-top: 1.6rem; font-size: 0.95rem;
}
.gallery-note .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 0 rgba(74,214,192,0.6);
  animation: pulse 1.6s infinite; margin-right: 0.4rem; vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,214,192,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74,214,192,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,214,192,0); }
}

/* ─────────────── TRUST stats ─────────────── */
.trust h2 { text-align: center; margin-bottom: 2.6rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.stat {
  text-align: center;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1rem;
}
.stat b {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 850; line-height: 1;
  background: linear-gradient(120deg, var(--coral), var(--amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat b span { font-size: 0.55em; }
.stat-label { display: block; color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* ─────────────── TWO SIDES ─────────────── */
.two-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 760px) { .two-sides { grid-template-columns: 1fr; } }
.side {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.side-kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--teal); margin-bottom: 0.6rem;
}
.side h3 { margin: 0 0 1.1rem; font-size: 1.5rem; }
.side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.side li {
  position: relative; padding-left: 1.7rem; color: var(--muted);
}
.side li::before {
  content: "📸"; position: absolute; left: 0; top: 0; font-size: 0.95rem;
}

/* ─────────────── PRICING ─────────────── */
.pricing { text-align: center; }
.pricing .section-sub { margin-inline: auto; }
.bands {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 0.6rem;
}
.band {
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  position: relative;
}
.band.featured {
  border-color: var(--grape);
  background: linear-gradient(160deg, rgba(177,74,214,0.16), var(--ink-2));
  box-shadow: 0 16px 36px -18px var(--grape);
}
.band-tag {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--coral), var(--grape)); color: #fff;
  padding: 0.25rem 0.7rem; border-radius: 999px; white-space: nowrap;
}
.band-size { display: block; font-size: 1.6rem; font-weight: 850; }
.band-name { display: block; color: var(--muted); margin-top: 0.3rem; font-size: 0.95rem; }

/* ─────────────── FINAL CTA ─────────────── */
.final-cta { padding-inline: clamp(1rem, 5vw, 3rem); }
.final-inner {
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255,92,138,0.25), transparent 70%),
    linear-gradient(160deg, rgba(177,74,214,0.22), var(--ink-2));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
}
.final-inner h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 0.8rem; }
.final-inner p { color: var(--muted); max-width: 480px; margin: 0 auto 1.8rem; font-size: 1.1rem; }

/* ─────────────── footer ─────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1rem, 5vw, 3rem) 2rem;
  max-width: var(--maxw); margin: 0 auto;
}
.foot-grid {
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.foot-brand p { color: var(--muted); max-width: 320px; margin: 0.6rem 0 0; font-size: 0.95rem; }
.foot-links { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.foot-links a { color: var(--muted); font-size: 0.95rem; }
.foot-links a:hover { color: var(--text); }
.copyright { color: var(--muted); font-size: 0.85rem; margin: 0; }
