/* ============================================================
   Vendel · Getränke-Service — Web Design System (2026)
   Modern, app-style. One sans family. Brand red & blue.
   ============================================================ */

/* --- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

/* --- Tokens (official Vendel palette) ----------------------- */
:root {
  /* Brand */
  --red:        #E30613;
  --red-deep:   #C20510;
  --blue:       #0056A6;
  --blue-deep:  #004A90;
  --blue-tint:  #E6F0FA;

  /* Ink / surfaces */
  --paper:      #FFFFFF;
  --paper-2:    #F5F7FA;
  --paper-3:    #1F2933;       /* dark surface */
  --ink:        #1F2933;       /* primary text */
  --ink-2:      #4A5568;       /* secondary text */
  --quiet:      #6B7280;       /* muted, captions */
  --rule:       #E1E6ED;       /* hairline */
  --rule-strong:#1F2933;

  /* Status */
  --success:    #16A34A;
  --warning:    #F59E0B;
  --error:      #B91C1C;

  /* Aliases (compat with existing markup) */
  --gold:       var(--red);
  --bottle:     var(--blue);
  --bordeaux:   var(--red-deep);
  --serif:      "Inter", system-ui, -apple-system, sans-serif;   /* alias to sans, no more serif */
  --sans:       "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:       "JetBrains Mono", "IBM Plex Mono", ui-monospace, "Cascadia Mono", Menlo, monospace;

  /* Layout */
  --col-max:    1240px;
  --col-narrow: 720px;
  --gutter:     24px;
  --gutter-lg:  48px;
  --section-y:  clamp(56px, 7vw, 96px);
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;

  /* Shadows (subtle, app-style) */
  --shadow-sm:  0 1px 2px rgba(31, 41, 51, 0.06);
  --shadow:     0 4px 16px rgba(31, 41, 51, 0.08);
  --shadow-lg:  0 12px 36px rgba(31, 41, 51, 0.12);
}

/* --- Base ---------------------------------------------------- */
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

/* --- Typography (one family, modern weights) ---------------- */
.serif, .sans { font-family: var(--sans); }
.mono         { font-family: var(--mono); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
}
.eyebrow--gold,
.eyebrow--red  { color: var(--red); }
.eyebrow--blue { color: var(--blue); }

h1, .h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h2, .h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h3, .h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

/* Inline emphasis: red accent, never italic */
em, .h1 em, .h2 em, h1 em, h2 em {
  font-style: normal;
  color: var(--red);
}

p { color: var(--ink-2); }
.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  max-width: 36em;
}

a.link {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  transition: color 120ms;
}
a.link:hover { color: var(--blue-deep); }

.italic { font-style: italic; }
.tnum   { font-variant-numeric: tabular-nums; }

/* --- Layout helpers ----------------------------------------- */
.wrap { max-width: var(--col-max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--col-narrow); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) {
  .wrap, .wrap-narrow { padding: 0 var(--gutter-lg); }
}

.grid12 {
  display: grid; gap: var(--gutter);
  grid-template-columns: repeat(12, 1fr);
}
@media (min-width: 768px) { .grid12 { gap: var(--gutter-lg); } }

.stack > * + * { margin-top: 1.5rem; }
.stack-sm > * + * { margin-top: 0.75rem; }
.stack-lg > * + * { margin-top: 2.5rem; }

.section { padding: var(--section-y) 0; }
.section-sm { padding: clamp(40px, 5vw, 72px) 0; }

.rule { border-top: 1px solid var(--rule); }
.rule-strong { border-top: 1.5px solid var(--ink); }
.rule-bottom { border-bottom: 1px solid var(--rule); }

/* --- Brand stripe (top accent) ------------------------------ */
.brandstripe {
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0%, var(--red) 55%,
    var(--blue) 55%, var(--blue) 100%);
}

/* --- Masthead ----------------------------------------------- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
}
.masthead__inner {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
  gap: 32px;
}
@media (min-width: 768px) { .masthead__inner { padding: 0 var(--gutter-lg); height: 96px; } }

.masthead__brand { display: flex; align-items: center; gap: 12px; }
.masthead__brand img {
  height: 64px; width: auto;
  display: block;
}
@media (min-width: 768px) { .masthead__brand img { height: 72px; } }
.masthead__brand-text { display: none; }

.masthead__nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) { .masthead__nav { display: flex; } }
.masthead__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color 120ms;
}
.masthead__nav a:hover { color: var(--red); }
.masthead__nav a.is-current { color: var(--ink); }
.masthead__nav a.is-current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red); border-radius: 2px;
}

.masthead__phone {
  display: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  padding-left: 32px;
  margin-left: 16px;
  position: relative;
  white-space: nowrap;
}
.masthead__phone::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 18px;
  background: var(--rule);
}
@media (min-width: 1024px) { .masthead__phone { display: inline-flex; align-items: center; } }

.masthead__menu-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
}
@media (min-width: 1024px) { .masthead__menu-btn { display: none; } }

/* Mobile drawer */
.menu-drawer {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.menu-drawer.is-open { display: block; }
.menu-drawer__list {
  display: flex; flex-direction: column;
  padding: 16px var(--gutter);
}
.menu-drawer__list a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.menu-drawer__list a:last-child { border-bottom: 0; }

/* --- Front (Hero) ------------------------------------------- */
.front {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  background: var(--paper);
}
.front__eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px;
}
.front__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.front__logo {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 0 12px;
}
.front__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 7.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.front__title em {
  font-style: normal;
  color: var(--red);
}
.front__claim {
  margin-top: 24px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
}
.front__sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38em;
}
.front__meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 14px;
  color: var(--quiet);
  font-family: var(--sans);
}
.front__meta span { display: inline-flex; align-items: center; gap: 8px; }
.front__meta span::before {
  content: ""; display: inline-block;
  width: 4px; height: 4px;
  background: var(--quiet); border-radius: 50%;
}
.front__meta span:first-child::before { display: none; }

/* Visually hidden, available to screen readers */
.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;
}

/* --- Numbers band (KPI tiles) ------------------------------- */
.numbers {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.numbers__grid {
  max-width: var(--col-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .numbers__grid { grid-template-columns: repeat(4, 1fr); }
}
.numbers__cell {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.numbers__grid .numbers__cell:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .numbers__grid .numbers__cell:nth-child(2n) { border-right: 1px solid var(--rule); }
  .numbers__grid .numbers__cell:nth-child(4n) { border-right: 0; }
  .numbers__grid .numbers__cell:nth-child(n+1) { border-bottom: 0; }
}
.numbers__big {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.numbers__big .accent { color: var(--red); }
.numbers__big sup {
  font-size: 0.42em; vertical-align: top; line-height: 1.6;
  margin-left: 2px; color: var(--quiet);
  font-weight: 600;
}
.numbers__label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--quiet);
  letter-spacing: 0.02em;
}

/* --- Article (text + media block) --------------------------- */
.article { padding: var(--section-y) 0; }
.article__inner { display: grid; gap: var(--gutter-lg); }
@media (min-width: 900px) {
  .article__inner {
    grid-template-columns: 5fr 6fr;
    gap: 64px;
    align-items: start;
  }
  .article--reverse .article__media { order: 2; }
}
.article__media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article__media figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--quiet);
  line-height: 1.5;
}
.article__copy { padding-top: 8px; }
.article__copy h2 {
  margin-top: 16px;
  max-width: 22ch;
}
.article__copy .eyebrow { display: block; margin-bottom: 0; }
.article__copy .lede { margin-top: 24px; }
.article__copy p { margin-top: 16px; }

/* --- Highlight card (former pull-quote, now light) ---------- */
.pullquote {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pullquote blockquote {
  font-family: var(--sans);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 24ch;
  color: var(--ink);
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--red);
}
.pullquote blockquote::before { content: none; }
.pullquote cite {
  display: block;
  margin-top: 24px;
  margin-left: 28px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--quiet);
}

/* --- Full-bleed image -------------------------------------- */
.bleed {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: var(--paper-3);
}
.bleed img { width: 100%; height: auto; display: block; }

.bleed--hero {
  border-bottom: 4px solid var(--red);
}
.bleed--hero img {
  max-height: 70vh;
  object-fit: cover;
  width: 100%;
}
.bleed__caption {
  background: var(--paper);
  padding: 22px 0 26px;
  font-family: var(--sans);
}
.bleed__caption-inner {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}
.bleed__caption .eyebrow {
  flex-shrink: 0;
  margin: 0;
}
.bleed__caption p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1 1 320px;
}
@media (max-width: 640px) {
  .bleed__caption { padding: 18px 0 22px; }
  .bleed__caption p { font-size: 14px; }
}

/* --- Services list ------------------------------------------ */
.services { padding: var(--section-y) 0; background: var(--paper); }
.services__head { display: grid; gap: 12px; margin-bottom: 48px; }
.services__list { display: grid; gap: 16px; }
@media (min-width: 900px) { .services__list { gap: 20px; } }

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 24px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 150ms, box-shadow 150ms, transform 150ms;
}
.service-row:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 64px 220px 1fr;
    gap: 24px 32px;
    align-items: start;
    padding: 32px;
  }
}
.service-row__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.05em;
  background: var(--blue-tint);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
}
.service-row__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-row__desc {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42em;
}

/* --- Buttons / CTA links ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--red);
  color: #FFFFFF;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  transition: background 150ms, border-color 150ms, transform 80ms, box-shadow 150ms;
}
.btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.25);
}
.btn:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--ghost:hover {
  background: var(--blue-tint);
  color: var(--blue-deep);
  border-color: var(--blue);
  box-shadow: none;
}
.btn .arrow { width: 14px; height: 14px; }

.linkmore {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  padding-bottom: 2px;
  border-bottom: 2px solid var(--red);
  transition: color 120ms, border-color 120ms;
}
.linkmore:hover { color: var(--red-deep); border-color: var(--red-deep); }
.linkmore::after { content: "→"; }

/* --- Page head (subpages) ---------------------------------- */
.pagehead {
  padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--rule);
}
.pagehead__eyebrow { margin-bottom: 20px; }
.pagehead h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 22ch;
}
.pagehead__lede {
  margin-top: 24px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 32em;
}

/* --- Long-form prose --------------------------------------- */
.prose {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: var(--col-narrow);
}
.prose p { color: var(--ink-2); margin-top: 1.4em; }
.prose p:first-child { margin-top: 0; }
.prose h2 {
  margin-top: 2em;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--ink);
}
.prose h3 {
  margin-top: 1.6em;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.prose ul { margin-top: 1.4em; }
.prose ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 8px; height: 2px; background: var(--red);
}
.prose ul li:last-child { border-bottom: 0; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
}
.prose a:hover { color: var(--blue-deep); }
.prose figure { margin: 2.4em 0; }
.prose figure img { width: 100%; border-radius: var(--radius); }
.prose figcaption {
  margin-top: 8px; font-size: 13px;
  color: var(--quiet); font-style: normal;
}

/* --- Team grid --------------------------------------------- */
.team { padding: var(--section-y) 0; }
.team__head { margin-bottom: 48px; }
.team__group { margin-top: 56px; }
.team__group h2 {
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.team__group .eyebrow { display: block; margin-bottom: 8px; }
.team__grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.team__card { display: block; }
.team__photo {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team__name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.team__role {
  margin-top: 4px;
  font-size: 13px;
  color: var(--quiet);
}
.team__email { margin-top: 6px; font-size: 13px; }
.team__email a {
  color: var(--blue);
  border-bottom: 1px solid var(--rule);
}
.team__email a:hover {
  color: var(--blue-deep); border-color: var(--blue);
}

/* --- Reference list ---------------------------------------- */
.reflist { display: grid; gap: 0; }
.reflist__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.reflist__item .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--quiet);
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.reflist__item .text {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

/* --- Partners --------------------------------------------- */
.partners {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .partners { grid-template-columns: 1fr 1fr; column-gap: 48px; } }
.partner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  gap: 16px;
}
.partner-row .name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.partner-row a {
  font-size: 13px;
  color: var(--blue);
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.partner-row a:hover { color: var(--blue-deep); border-color: var(--blue); }

/* --- Contact card ------------------------------------------ */
.contact-card {
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.contact-card .eyebrow { display: block; margin-bottom: 12px; }
.contact-card h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.contact-card dl {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
  font-size: 14px;
}
.contact-card dt {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 12px;
  padding-top: 2px;
}
.contact-card dd { margin: 0; color: var(--ink); }
.contact-card dd a {
  color: var(--blue);
  border-bottom: 1px solid var(--rule);
}
.contact-card dd a:hover { color: var(--blue-deep); border-color: var(--blue); }

/* --- CTA band (light, modern) ------------------------------ */
.cta-band {
  padding: clamp(48px, 7vw, 80px) 0;
  background: linear-gradient(135deg, var(--blue-tint) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-band__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .cta-band__grid { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.cta-band__title {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 12px;
  max-width: 18ch;
  color: var(--ink);
}
.cta-band__sub {
  margin-top: 16px;
  color: var(--ink-2);
  max-width: 36em;
  font-size: 16px;
  line-height: 1.55;
}
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}

/* --- Footer / colophon ------------------------------------- */
.colophon {
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 6vw, 72px) 0 32px;
  background: var(--paper-2);
}
.colophon__grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .colophon__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.colophon__brand img {
  height: 56px; width: auto; max-width: 220px;
  margin-bottom: 12px;
}
.colophon__brand p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.colophon__brand .small {
  font-size: 13px;
  color: var(--quiet);
  font-family: var(--sans);
  margin-top: 8px;
  max-width: 28em;
  line-height: 1.55;
  font-weight: 400;
}
.colophon h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 16px;
  font-weight: 600;
}
.colophon ul li { padding: 4px 0; }
.colophon ul li a, .colophon address a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 120ms;
}
.colophon ul li a:hover, .colophon address a:hover { color: var(--red); }
.colophon address {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}
.colophon__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 16px 32px;
  font-size: 12px;
  color: var(--quiet);
  align-items: center;
  justify-content: space-between;
}
.colophon__legal { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.colophon__legal a { color: var(--quiet); }
.colophon__legal a:hover { color: var(--ink); }
.colophon__social { display: flex; gap: 14px; }
.colophon__social a { display: inline-flex; }
.colophon__social img {
  width: 18px; height: 18px;
  opacity: 0.5;
  transition: opacity 150ms;
}
.colophon__social a:hover img { opacity: 1; }

/* --- Utilities --------------------------------------------- */
.center { text-align: center; }
.muted  { color: var(--quiet); }
.gold   { color: var(--red); }
.bottle { color: var(--blue); }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
