/* ============================================================
   Vox·Atelier — Stone palette, Fraunces + Inter
   ============================================================ */

:root {
  --bg:      #F5F4F2;
  --text:    #1A1A18;
  --muted:   #8C8A82;
  --accent:  #E97459;
  --surface: #E8E6E0;

  --border: color-mix(in srgb, var(--muted) 30%, transparent);
  --border-strong: color-mix(in srgb, var(--muted) 55%, transparent);
  --shadow: 0 1px 0 color-mix(in srgb, var(--text) 5%, transparent),
            0 30px 60px -30px color-mix(in srgb, var(--text) 18%, transparent);

  --pad-y: clamp(64px, 8vw, 120px);
  --pad-x: clamp(20px, 5vw, 64px);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--bg); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wave svg, .marquee__track, .player__viz span { animation: none !important; }
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent);
}
p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
  50%      { box-shadow: 0 0 0 9px color-mix(in srgb, var(--accent) 0%, transparent); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: color-mix(in srgb, var(--text) 4%, transparent);
}
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--block { display: flex; justify-content: center; width: 100%; margin-top: auto; }

/* ============================================================
   Brand mark — animated bars
   ============================================================ */
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: 26px; height: 22px;
}
.brand__mark .bar {
  display: block;
  width: 3px; height: 100%;
  background: var(--text);
  border-radius: 2px;
  animation: barWave 1.6s ease-in-out infinite;
}
.brand__mark .bar:nth-child(1) { animation-delay: -0.0s; }
.brand__mark .bar:nth-child(2) { animation-delay: -0.2s; }
.brand__mark .bar:nth-child(3) { animation-delay: -0.4s; background: var(--accent); }
.brand__mark .bar:nth-child(4) { animation-delay: -0.6s; }
.brand__mark .bar:nth-child(5) { animation-delay: -0.8s; }
@keyframes barWave {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad-x);
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
}
.nav__links a {
  color: var(--text);
  opacity: .78;
  transition: opacity .2s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1080px) {
  .nav__links { display: none; }
}
@media (max-width: 540px) {
  .nav__cta .btn--ghost { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--pad-y) + 60px) var(--pad-x) var(--pad-y);
  overflow: hidden;
  isolation: isolate;
}

.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 2;
}

.hero__title {
  font-size: clamp(48px, 8.5vw, 124px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0 0 28px;
  max-width: 13ch;
}
.hero__title span { display: block; }

.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 75%, var(--muted));
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* Hero player */
.player {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px 14px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: 720px;
  box-shadow: var(--shadow);
}
.player__play {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--text);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}
.player__play:hover { background: var(--accent); transform: scale(1.04); }
.player__play.is-playing { background: var(--accent); }
.player__play svg path { transition: d .2s ease; }

.player__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.player__name {
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
}
.player__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .25s ease;
}

.player__viz {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 28px;
}
.player__viz span {
  display: block;
  width: 2px;
  height: 30%;
  background: var(--text);
  border-radius: 2px;
  opacity: .55;
}
.player__viz.is-active span {
  animation: vizBar 1s ease-in-out infinite;
  background: var(--accent);
  opacity: 1;
}
.player__viz.is-active span:nth-child(5n+1) { animation-delay: -0.0s; }
.player__viz.is-active span:nth-child(5n+2) { animation-delay: -0.2s; }
.player__viz.is-active span:nth-child(5n+3) { animation-delay: -0.4s; }
.player__viz.is-active span:nth-child(5n+4) { animation-delay: -0.6s; }
.player__viz.is-active span:nth-child(5n+5) { animation-delay: -0.8s; }
@keyframes vizBar {
  0%, 100% { transform: scaleY(.3); }
  50%      { transform: scaleY(1.6); }
}

.player__time {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .player {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    border-radius: 22px;
    padding: 14px;
  }
  .player__viz, .player__time {
    grid-column: 1 / -1;
  }
  .player__viz { height: 24px; }
  .player__line { white-space: normal; }
}

/* Hero trust strip */
.hero__trust {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: .02em;
}
.hero__trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.hero__trust li {
  font-family: var(--serif);
  font-size: 17px;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  letter-spacing: -0.01em;
  position: relative;
}
.hero__trust li + li::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .6;
}

/* Hero waveform background */
.wave {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 60vh;
  pointer-events: none;
  z-index: 1;
  color: var(--accent);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}
.wave svg {
  width: 100%; height: 100%;
}

/* Hero grain */
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background:
    radial-gradient(60% 50% at 80% 20%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%),
    radial-gradient(40% 40% at 10% 30%, color-mix(in srgb, var(--surface) 80%, transparent), transparent 70%);
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 24px;
  color: color-mix(in srgb, var(--text) 75%, var(--muted));
}
.marquee__track i {
  font-style: normal;
  color: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Section heads
   ============================================================ */
.section-head {
  max-width: 1180px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left {
  text-align: left;
}
.section-head h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 18ch;
  margin: 0 auto;
}
.section-head--left h2 { margin: 0; }
.section-head__lede {
  margin: 22px auto 0;
  max-width: 60ch;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  font-size: 17px;
}
.section-head--left .section-head__lede { margin-left: 0; }

/* ============================================================
   Features
   ============================================================ */
.features {
  padding: var(--pad-y) var(--pad-x);
}
.feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.feature {
  position: relative;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background .3s ease;
}
.feature:hover {
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.feature__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0;
}
.feature h3 {
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.feature p {
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  font-size: 15.5px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature { padding: 28px 24px 32px; }
}

/* ============================================================
   Steps
   ============================================================ */
.steps {
  padding: var(--pad-y) var(--pad-x);
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.steps__list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 24px;
}
.step h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.step p {
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .steps__list { grid-template-columns: 1fr; }
}

/* ============================================================
   Proof / Testimonial
   ============================================================ */
.proof {
  padding: var(--pad-y) var(--pad-x);
}
.proof__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.proof__quote {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 auto 36px;
  max-width: 24ch;
}
.proof__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  margin-bottom: 80px;
}
.proof__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.proof__author strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
}
.proof__author span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  text-align: left;
}
.metrics li {
  padding: 32px 24px 28px;
  border-right: 1px solid var(--border);
}
.metrics li:last-child { border-right: 0; }
.metric__value {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.metric__suffix {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--accent);
  margin-left: 4px;
}
.metrics p {
  margin-top: 12px;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 22ch;
}
@media (max-width: 900px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metrics li:nth-child(2) { border-right: 0; }
  .metrics li:nth-child(1), .metrics li:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 540px) {
  .metrics { grid-template-columns: 1fr; }
  .metrics li { border-right: 0; border-bottom: 1px solid var(--border); }
  .metrics li:last-child { border-bottom: 0; }
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  padding: var(--pad-y) var(--pad-x);
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.plans {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.plan header { margin-bottom: 24px; }
.plan h3 {
  font-size: 28px;
  margin-bottom: 6px;
}
.plan header p {
  color: var(--muted);
  font-size: 14.5px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.plan__price span {
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan__price i {
  font-style: normal;
  color: var(--muted);
  font-size: 14.5px;
}
.plan__sub {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
}
.plan ul {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14.5px;
}
.plan ul li {
  position: relative;
  padding-left: 22px;
  color: color-mix(in srgb, var(--text) 80%, var(--muted));
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.plan--featured {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.plan--featured h3,
.plan--featured .plan__price span { color: var(--bg); }
.plan--featured header p,
.plan--featured .plan__price i,
.plan--featured .plan__sub { color: color-mix(in srgb, var(--bg) 70%, transparent); }
.plan--featured ul li { color: color-mix(in srgb, var(--bg) 88%, transparent); }
.plan--featured ul li::before { border-color: var(--accent); }
.plan--featured .btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.plan--featured .btn--primary:hover {
  background: var(--bg);
  color: var(--text);
}
.plan__badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--pad-y) var(--pad-x);
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item__plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-item__plus::before,
.faq-item__plus::after {
  content: "";
  position: absolute;
  inset: 0; margin: auto;
  background: var(--text);
  transition: transform .25s ease, background .25s ease;
}
.faq-item__plus::before { width: 14px; height: 1.5px; }
.faq-item__plus::after  { width: 1.5px; height: 14px; }
.faq-item[open] .faq-item__plus::after { transform: rotate(90deg); }
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] .faq-item__plus::before,
.faq-item[open] .faq-item__plus::after { background: var(--accent); }
.faq-item p {
  padding: 0 4px 24px;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.6;
  animation: faqIn .35s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: var(--pad-y) var(--pad-x);
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 26%, transparent), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.cta h2 em { color: var(--accent); }
.cta p {
  color: color-mix(in srgb, var(--bg) 75%, transparent);
  max-width: 52ch;
  margin: 0 auto 32px;
  font-size: 17px;
}
.cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta .btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.cta .btn--primary:hover {
  background: var(--bg);
  color: var(--text);
}
.cta .btn--ghost {
  color: var(--bg);
  border-color: color-mix(in srgb, var(--bg) 35%, transparent);
}
.cta .btn--ghost:hover {
  border-color: var(--bg);
  background: color-mix(in srgb, var(--bg) 8%, transparent);
}

/* ============================================================
   Footer
   ============================================================ */
.foot {
  padding: 48px var(--pad-x) 36px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.foot__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
}
.foot nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14.5px;
}
.foot nav a {
  color: var(--muted);
  transition: color .2s ease;
}
.foot nav a:hover { color: var(--text); }
.foot__small {
  width: 100%;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
