/* ---------- Design tokens ---------- */
:root {
  --bg: #FAFAF7;
  --ink: #0A0A0A;
  --muted: #6B6B6B;
  --border: #E5E5E0;
  --accent: #E85D2F;
  --accent-hover: #D14A1F;
  --accent-soft: #FEF3EC;
  --yellow: #FFD166;
  --pink: #FFB4A2;
  --green: #22c55e;
  --white: #ffffff;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
  --gutter: 20px;
}

@media (min-width: 640px) {
  :root { --gutter: 40px; }
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; }

@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(3deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Shared ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin: 0 0 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 6vw, 48px);
  text-align: center;
  line-height: 1.1;
  margin: 0 0 24px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.italic { font-style: italic; }

.link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s, border-color .2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-sm { padding: 10px 24px; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #333; color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: scale(1.03); color: var(--ink); }
.btn-block { width: 100%; padding: 16px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(250, 250, 247, 0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 3px;
  margin-bottom: -2px;
  display: inline-block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.nav-link:hover { color: var(--accent); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .25s, opacity .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); }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s, opacity .2s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 12px; }

@media (min-width: 900px) {
  .nav { height: 72px; }
  .nav-links { display: flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 120px var(--gutter) 64px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 9vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 40px;
}

.hero-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: left;
  position: relative;
}
.hero-card-content { width: 100%; }
.hero-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.hero-heading { font-weight: 600; font-size: 20px; margin: 0 0 8px; }
.hero-desc { font-size: 15px; color: var(--muted); margin: 0 0 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-fineprint { font-size: 13px; color: var(--muted); margin: 16px 0 0; }

.hero-visual { position: relative; }
.ticket-card {
  width: 160px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ticket-status { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-orange { background: var(--accent); }
.dot-green { background: var(--green); }
.status-label { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.status-green { color: var(--green); }
.ticket-title { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.ticket-title-sm { font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.ticket-sub { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.ticket-time { font-size: 9px; color: var(--muted); margin-left: auto; }
.ticket-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
}
.tag-sm { font-size: 8px; padding: 2px 6px; }

.float-smiley {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  animation: float 3s ease-in-out infinite;
  flex-shrink: 0;
}
.float-smiley::before, .float-smiley::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink);
  top: 40%;
}
.float-smiley::before { left: 30%; }
.float-smiley::after { right: 30%; }
.float-smiley[data-smiley="orange"] { background: var(--accent); }
.float-smiley[data-smiley="orange"]::before,
.float-smiley[data-smiley="orange"]::after { background: #fff; }
.float-smiley[data-smiley="pink"] { background: var(--pink); }

.hero-smiley { top: -16px; right: -16px; }

.sparkle {
  width: 20px; height: 20px;
  position: absolute;
  animation: float 3s ease-in-out infinite 1s;
}
.sparkle::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  opacity: .7;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
}

@media (min-width: 720px) {
  .hero-card { flex-direction: row; padding: 48px 56px; align-items: center; }
  .hero-visual { flex: 0 0 180px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
}

/* ---------- How it works ---------- */
.how { padding: 64px var(--gutter) 80px; max-width: var(--container); margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 900px) {
  .how-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.how-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--border); }
.how-visual { height: 240px; position: relative; padding: 24px; overflow: hidden; }
.how-visual-1 { background: linear-gradient(135deg, var(--yellow) 0%, var(--accent) 60%, var(--pink) 100%); }
.how-visual-2 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 50%, var(--yellow) 100%);
  display: flex; align-items: center; justify-content: center;
}
.how-visual-3 { background: linear-gradient(135deg, var(--pink) 0%, var(--accent) 50%, var(--yellow) 100%); }
.how-body { padding: 24px 24px 28px; }
.how-body h3 { font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.how-body p { font-size: 15px; color: var(--muted); line-height: 1.5; }

.mini-pricing-card {
  position: absolute; top: 24px; right: -10px;
  width: 200px;
  background: var(--ink);
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.mini-label { font-size: 11px; font-weight: 600; color: var(--yellow); margin-bottom: 8px; }
.mini-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.mini-price-amt { font-family: var(--font-serif); font-size: 32px; line-height: 1; }
.mini-price-period { font-size: 12px; color: rgba(255,255,255,.6); }
.mini-pill {
  display: inline-flex; padding: 3px 10px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.mini-list { display: flex; flex-direction: column; gap: 6px; font-size: 11px; color: rgba(255,255,255,.8); }
.mini-cta { margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.mini-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.mini-cta span:last-child { font-size: 13px; font-weight: 600; }

.how-center-icon {
  width: 64px; height: 64px;
  background: var(--ink);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  position: relative; z-index: 2;
}
.pill {
  position: absolute;
  padding: 6px 12px;
  background: rgba(255,255,255,.85);
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  backdrop-filter: blur(4px);
}
.pill-1 { top: 20px; left: 12px; }
.pill-2 { top: 20px; left: 100px; }
.pill-3 { top: 56px; right: 90px; }
.pill-4 { top: 56px; right: 10px; }
.pill-5 { bottom: 52px; left: 16px; }
.pill-6 { bottom: 16px; right: 90px; }
.pill-7 { bottom: 16px; right: 10px; }

.mini-ticket {
  position: absolute;
  width: 170px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.mini-ticket-1 { top: 16px; left: 16px; transform: rotate(-3deg); }
.mini-ticket-2 { top: 100px; right: 8px; transform: rotate(2deg); }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; position: relative; padding: 6px 0; }
.marquee { display: flex; gap: 12px; width: max-content; }
.marquee-left { animation: marquee-left 40s linear infinite; }
.marquee-right { animation: marquee-right 45s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-tag {
  display: inline-flex;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- Solo section ---------- */
.solo {
  padding: 64px var(--gutter);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.solo-deco-1 { top: 60px; left: -10px; opacity: .6; animation-delay: .3s; }
.solo-deco-2 { top: 80px; right: 0; }
.solo-icon-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.solo-text { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ---------- Benefits ---------- */
.benefits { padding: 64px var(--gutter) 80px; max-width: var(--container); margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-card h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.benefit-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--accent-soft); padding: 72px var(--gutter); }
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.3;
  margin: 0 auto 32px;
  max-width: 720px;
  text-align: center;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.author-info { text-align: left; }
.author-name { font-size: 15px; font-weight: 600; }
.author-role { font-size: 13px; color: var(--muted); }

/* ---------- Recent work ---------- */
.recent { padding: 64px var(--gutter) 80px; max-width: var(--container); margin: 0 auto; }

.recent-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }

.recent-card-tags { padding: 28px; position: relative; }
.recent-card-solo { max-width: 720px; margin: 0 auto; }
.huge-smiley {
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
}
.huge-smiley-tl { width: 120px; height: 120px; top: -20px; left: -20px; opacity: .15; }
.huge-smiley-br { width: 70px; height: 70px; bottom: -14px; right: -14px; }
.recent-tags-wrap { position: relative; z-index: 1; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; padding-top: 32px; }
.cloud-tag {
  display: inline-flex; padding: 9px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
}
.cloud-tag-more { color: var(--muted); }
.recent-tags-text { text-align: center; }
.recent-tags-text h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(22px, 4vw, 32px); margin: 0 0 8px; }
.recent-tags-text p { font-size: 15px; color: var(--muted); }

/* ---------- Pricing ---------- */
.pricing { padding: 64px var(--gutter) 80px; max-width: var(--container); margin: 0 auto; text-align: center; }

.pricing-card {
  max-width: 480px;
  margin: 0 auto 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media (min-width: 540px) { .pricing-card { padding: 48px; } }
.pricing-badge {
  display: inline-flex; padding: 6px 14px;
  background: var(--bg);
  border-radius: 100px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.founding-badge {
  display: inline-flex; padding: 5px 12px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: #fff;
  margin-bottom: 24px;
}
.price-old { font-size: 18px; color: var(--muted); text-decoration: line-through; margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px; }
.price-amt { font-family: var(--font-serif); font-size: clamp(48px, 10vw, 72px); line-height: 1; letter-spacing: -0.02em; }
.price-period { font-size: 17px; color: var(--muted); }
.pricing-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.included-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin: 0 0 20px; }

.trial-band {
  max-width: 960px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--accent) 70%);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
@media (min-width: 720px) {
  .trial-band { flex-direction: row; align-items: center; justify-content: space-between; padding: 48px; }
}
.huge-smiley-band { width: 160px; height: 160px; top: -40px; right: -20px; opacity: .15; }
.trial-copy { position: relative; z-index: 1; }
.trial-copy h3 { font-family: var(--font-serif); font-weight: 400; font-size: 28px; color: #fff; margin: 0 0 8px; }
.trial-copy p { font-size: 16px; color: rgba(255,255,255,.85); }
.trial-band .btn { flex-shrink: 0; position: relative; z-index: 1; }

.callouts { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
@media (min-width: 640px) { .callouts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .callouts { grid-template-columns: repeat(4, 1fr); } }
.callout {
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
}
.callout-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.callout h4 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.callout p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { padding: 64px var(--gutter) 80px; max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 500; color: var(--ink);
  text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  font-size: 15px; color: var(--muted); line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }
.faq-answer-inner { padding-top: 2px; }

/* ---------- Book a call ---------- */
.book { padding: 64px var(--gutter); text-align: center; }
.book-heading-wrap { position: relative; display: inline-block; margin-bottom: 24px; }
.book-sparkle { top: -16px; right: -28px; }
.book-widget {
  max-width: 900px;
  margin: 0 auto 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
}
.book-email { font-size: 15px; color: var(--muted); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--accent-soft);
  padding: 72px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 6vw, 48px);
  margin: 0 0 16px;
  line-height: 1.15;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.final-smiley { bottom: 24px; right: 24px; animation-delay: 1s; display: none; }
@media (min-width: 720px) { .final-smiley { display: block; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  padding: 48px var(--gutter) 32px;
  border-top: 1px solid var(--border);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-loc { font-size: 14px; color: var(--muted); order: 2; }
.footer-logo { order: 1; }
.footer-links { display: flex; align-items: center; gap: 24px; order: 3; }
.footer-link { font-size: 14px; color: var(--muted); }
.footer-link:hover { color: var(--ink); }

@media (min-width: 720px) {
  .footer { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-loc, .footer-logo, .footer-links { order: initial; }
}

.footer-copyright {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 32px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
