/* ============================================================
   How2Switzerland — Book a Call
   Clean, modern, minimal. White + grey + Swiss red.
   ============================================================ */

:root {
  /* Color */
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-muted: #f5f5f6;
  --ink: #0a0a0b;
  --ink-2: #18181b;
  --grey-800: #27272a;
  --grey-700: #3f3f46;
  --grey-600: #52525b;
  --grey-500: #71717a;
  --grey-400: #a1a1aa;
  --grey-300: #d4d4d8;
  --grey-200: #e4e4e7;
  --grey-150: #ececef;
  --grey-100: #f4f4f5;
  --red: #DA1E28;
  --red-700: #B81620;
  --red-soft: #FEECEC;

  /* Type */
  --font-sans: "Helvetica Neue", Helvetica, "Helvetica Now Text", "Aktiv Grotesk", sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Layout */
  --max: 1120px;
  --gutter: 32px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Density (overridable by tweaks) */
  --section-pad-y: 120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

::selection { background: var(--red); color: white; }

/* ---------- LAYOUT ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--grey-150);
}

section.soft  { background: var(--bg-soft); }
section.muted { background: var(--bg-muted); }
section.no-border { border-top: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
}

h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 18px;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p { margin: 0; color: var(--grey-700); }

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--grey-600);
  max-width: 60ch;
}

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head h2 + p { margin-top: 12px; font-size: 17px; color: var(--grey-600); }

/* Accent inside headings */
em, .accent { font-style: normal; color: var(--red); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-700); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--grey-200);
}
.btn-ghost:hover { border-color: var(--grey-400); background: var(--bg-soft); }

.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: var(--grey-800); }

.btn-sm { padding: 10px 16px; font-size: 13.5px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }

.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--grey-150);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.015em;
}
.brand .plus {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 4px;
  position: relative;
}
.brand .plus::before,
.brand .plus::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 1px;
}
.brand .plus::before {
  left: 50%; top: 25%;
  width: 3px; height: 50%;
  transform: translateX(-50%);
}
.brand .plus::after {
  top: 50%; left: 25%;
  height: 3px; width: 50%;
  transform: translateY(-50%);
}
.brand small { color: var(--grey-500); font-weight: 400; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Lang toggle */
.lang-toggle {
  display: inline-flex;
  background: var(--grey-100);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey-500);
  letter-spacing: 0.02em;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lang-toggle button.is-active {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* ---------- HERO ---------- */
.hero {
  padding-top: 96px;
  padding-bottom: 96px;
  border-top: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(218,30,40,0.04), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .portrait {
  max-width: 280px;
  width: 100%;
  justify-self: end;
}
.hero h1 .accent { display: inline; }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(17px, 1.45vw, 19px);
  color: var(--grey-600);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--grey-500);
  font-size: 13.5px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 999px;
  display: inline-block;
}

/* Portrait placeholder */
.portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, #f4f4f5 0 14px, #ebebef 14px 28px);
  border: 1px solid var(--grey-200);
  position: relative;
  overflow: hidden;
}
.portrait .label {
  position: absolute;
  inset: auto 0 16px 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.portrait .frame-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11.5px;
  color: var(--grey-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.portrait .frame-tag .dot { background: #16a34a; }
.portrait.has-image {
  background: var(--grey-100);
  border-color: var(--grey-150);
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* ---------- STATS STRIP ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--grey-150);
  border-bottom: 1px solid var(--grey-150);
}
.stats .stat {
  padding: 8px 24px;
  border-left: 1px solid var(--grey-150);
}
.stats .stat:first-child { border-left: none; }
.stat-num {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.stat-num .accent { color: var(--red); }
.stat-label {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--grey-500);
  letter-spacing: 0.01em;
}

/* ---------- PAIN GRID ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-150);
  border: 1px solid var(--grey-150);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-card {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  transition: background .2s var(--ease);
}
.pain-card:hover { background: var(--bg-soft); }
.pain-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--grey-400);
  letter-spacing: 0.06em;
}
.pain-card h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.pain-card p { font-size: 14.5px; color: var(--grey-600); line-height: 1.55; }

/* ---------- WHAT YOU GET ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 56px;
}
.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--grey-150);
}
.benefit:nth-child(1), .benefit:nth-child(2) { border-top: 1px solid var(--grey-200); }
.benefit .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
}
.benefit p {
  font-size: 15.5px;
  color: var(--grey-700);
  line-height: 1.55;
}
.benefit p strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- PRICING ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.price-card {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.price-card:hover {
  border-color: var(--grey-300);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 10px 30px -16px rgba(0,0,0,0.12);
}
.price-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.price-card.featured p,
.price-card.featured .price-meta,
.price-card.featured .price-incl li { color: rgba(255,255,255,0.7); }
.price-card.featured .price-tag { color: rgba(255,255,255,0.5); }
.price-card.featured h3 { color: #fff; }
.price-card.featured .amount { color: #fff; }
.price-card.featured .currency { color: rgba(255,255,255,0.5); }
.price-card.featured .price-incl li::before {
  background: var(--red);
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.price-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.price-badge {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.price-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.amount {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.currency {
  font-size: 14px;
  color: var(--grey-500);
}
.price-meta { font-size: 14px; color: var(--grey-600); }

.price-incl {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-incl li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--grey-700);
  line-height: 1.45;
}
.price-incl li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1.5px;
  background: var(--red);
}

.price-foot {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-note {
  font-size: 12.5px;
  color: var(--grey-500);
  text-align: center;
}
.price-card.featured .price-note { color: rgba(255,255,255,0.5); }

/* ---------- FOR WHO ---------- */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-150);
  border: 1px solid var(--grey-150);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.for-col {
  background: white;
  padding: 36px;
}
.for-col.no { background: var(--bg-soft); }
.for-col h3 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.for-col.yes h3 { color: var(--red); }
.for-col.no h3 { color: var(--grey-500); }
.for-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.for-col li {
  font-size: 15.5px;
  color: var(--grey-700);
  line-height: 1.5;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.for-col li svg { flex-shrink: 0; margin-top: 4px; }
.for-col.yes li svg { color: var(--red); }
.for-col.no li { color: var(--grey-500); }
.for-col.no li svg { color: var(--grey-400); }

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 18px;
  height: 1px;
  background: var(--grey-200);
}
.step {
  padding: 0 24px 0 0;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.step:first-child .step-num { color: white; background: var(--red); border-color: var(--red); }
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--grey-600); line-height: 1.55; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.about .portrait { max-width: 360px; }
.about-text h2 { margin-bottom: 22px; }
.about-text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--grey-700);
  margin-bottom: 14px;
  max-width: 56ch;
}
.about-text p strong { color: var(--ink); font-weight: 500; }
.about-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}
.about-stats .stat-num { font-size: 24px; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
.faq-item:first-child { border-top: 1px solid var(--grey-200); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q .toggle {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--grey-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .15s var(--ease), transform .25s var(--ease);
  color: var(--grey-600);
}
.faq-item.open .faq-q .toggle {
  background: var(--red);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner {
  padding: 0 0 22px 0;
  font-size: 15.5px;
  color: var(--grey-600);
  line-height: 1.6;
  max-width: 64ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  background: var(--ink);
  color: white;
  border-top: none;
}
.final-cta h2 { color: white; max-width: 700px; margin: 0 auto 18px; }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 36px; }
.final-cta .btn-primary:hover { background: var(--red-700); }
.final-cta .meta {
  margin-top: 22px;
  color: rgba(255,255,255,0.5);
  font-size: 13.5px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 36px 0;
  background: var(--bg);
  border-top: 1px solid var(--grey-150);
  font-size: 13.5px;
  color: var(--grey-500);
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .links { display: flex; gap: 22px; }
.site-footer a:hover { color: var(--ink); }

/* ---------- MODAL ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 20px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.modal-backdrop.open {
  display: flex;
  opacity: 1;
}
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  transform: translateY(8px);
  transition: transform .25s var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--grey-150);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-head h3 { font-size: 17px; font-weight: 500; }
.modal-head p { font-size: 13px; color: var(--grey-500); margin-top: 2px; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--grey-100);
  display: grid;
  place-items: center;
  color: var(--grey-600);
  transition: background .15s var(--ease), color .15s var(--ease);
}
.modal-close:hover { background: var(--red); color: white; }
.modal-body {
  padding: 8px 28px 24px;
  max-height: 70vh;
  overflow-y: auto;
}
.modal-body iframe {
  width: 100%;
  border: none;
}

/* ---------- TWEAKS PANEL (host-style) ---------- */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.2);
  padding: 16px;
  width: 260px;
  z-index: 150;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 500;
  margin: 0 0 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h4 button {
  font-size: 14px;
  color: var(--grey-500);
}
.tweak-row { margin-bottom: 14px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label {
  display: block;
  font-size: 12.5px;
  color: var(--grey-600);
  margin-bottom: 8px;
}
.swatches { display: flex; gap: 8px; }
.swatch {
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 2px solid white;
  outline: 1px solid var(--grey-200);
  cursor: pointer;
  transition: transform .15s var(--ease);
}
.swatch:hover { transform: scale(1.1); }
.swatch.is-active { outline: 2px solid var(--ink); }
.seg {
  display: inline-flex;
  background: var(--grey-100);
  border-radius: 999px;
  padding: 3px;
}
.seg button {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey-500);
}
.seg button.is-active {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .portrait { max-width: 280px; justify-self: start; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr; gap: 0; }
  .pricing { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about .portrait { max-width: 280px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stats .stat:nth-child(3) { border-left: none; }
}

@media (max-width: 640px) {
  :root { --section-pad-y: 80px; --gutter: 20px; }
  .site-header .wrap { height: 56px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat { padding: 8px 16px; }
  .price-card { padding: 28px 24px; }
  .for-col { padding: 28px 24px; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
  .header-tools .btn-sm { display: none; }
}

/* Density tweak */
body[data-density="compact"] { --section-pad-y: 80px; }
body[data-density="airy"]    { --section-pad-y: 140px; }
