/* ============================================================
   CONCEPT: BOLD — experimental alternate for Agendas Brunei.
   Structural ideas translated from two reference sites (a bohemian-
   industrial venue site's polaroid/torn-paper collage energy, and a
   product site's dark radial-glow hero + floating app-screenshot
   device) — but built on Agendas' own real tokens (tokens.css:
   cobalt/gold/paper, Outfit/Figtree/JetBrains Mono) and the
   design-library's motion/spacing/type system. Not a re-skin with
   someone else's colours.
   ============================================================ */

/* Concept-specific tokens, extending the shared ones in ../../css/tokens.css.
   Everything colour-like lives here so a re-theme stays a token edit. */
:root {
  /* Panel tints — brand hues lifted to near-white grounds. */
  --panel-tint-cobalt: #E4E9F6;
  --panel-tint-gold:   #F7EED4;

  /* --color-success / --color-alert now live in tokens.css: the admin surface
     needs the same semantic states, and one definition beats two that drift. */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* height:auto is load-bearing. Every <img> carries width/height attributes to
   reserve layout space, but those attributes are presentational hints: with a CSS
   width set and no height, the attribute's height wins and the image stretches
   (a 4:3 polaroid rendered 236x1280). height:auto releases it so aspect-ratio
   applies. Rules that genuinely want a fixed height override this below. */
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
svg { flex-shrink: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: var(--lh-base);
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.eyebrow {
  font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-bronze);
  margin-bottom: var(--space-s);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--color-ink); }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-m) 0; }

.concept-flag {
  background: var(--color-ink); color: var(--color-haze);
  font-size: var(--fs-xs); text-align: center; padding: var(--space-sm) var(--space-m);
}
.concept-flag a { color: var(--color-gold); text-decoration: underline; }

/* ===== Pill buttons — solid, bold (this concept's deliberate CTA register) ===== */
.pill-btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm);
  padding: 0.9em 1.7em; border-radius: var(--radius-pill);
  transition: transform var(--dur-ui) var(--ease), box-shadow var(--dur-ui) var(--ease);
  white-space: nowrap;
}
.pill-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.pill-btn--gold { background: var(--color-gold); color: var(--color-royal-deep); }
.pill-btn--royal { background: var(--color-royal); color: var(--color-white); }
.pill-btn--ink { background: var(--color-ink); color: var(--color-white); }
.pill-btn--light { background: var(--color-white); color: var(--color-royal); }
.pill-btn--lg { padding: 1.1em 2.2em; font-size: var(--fs-md); }

/* ===== Nav ===== */
.cnav {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-royal-deep);
}
.cnav__inner {
  max-width: var(--container-max); margin: 0 auto; padding: var(--space-m) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-l);
}
/* Real wordmark artwork, extracted from the client's logo PDF. Height-driven so
   it sits on the nav baseline regardless of the source raster's pixel width. */
.cnav__brand { display: flex; align-items: center; flex-shrink: 0; }
.cnav__brand img { height: 26px; width: auto; }
@media (min-width: 900px) { .cnav__brand img { height: 32px; } }
.cnav__links { display: none; gap: var(--section-s); }
.cnav__links a { color: var(--color-haze); font-weight: 600; font-size: var(--fs-sm); transition: color var(--dur-state) var(--ease); }
.cnav__links a:hover { color: var(--color-white); }
@media (min-width: 900px) { .cnav__links { display: flex; } }

/* ===== Hero — dark ground, radial gold glow, oversized headline ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,151,0,0.22), transparent 60%),
    var(--color-royal-deep);
  padding: var(--section-xl) 0 var(--section-l);
  text-align: center;
}
.hero__inner { max-width: 46rem; margin: 0 auto; padding: 0 var(--gutter); }
.hero__eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-haze);
  margin-bottom: var(--space-xl);
}
.hero__title {
  font-size: clamp(3rem, 11vw, 6.5rem); line-height: 0.9; letter-spacing: -0.03em;
  font-weight: 800; color: var(--color-white); text-transform: uppercase;
  margin-bottom: var(--space-xl);
}
.hero__title span { color: var(--color-gold); }
.hero__sub {
  font-size: var(--fs-md); color: var(--color-haze); max-width: 34rem;
  margin: 0 auto var(--section-s);
}
.hero__annotation {
  display: inline-flex; flex-direction: column; align-items: center; gap: var(--space-s);
}
.hero__annotation svg { transform: scaleX(-1); }
.hero__annotation span {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-gold); transform: rotate(-5deg) skewX(-4deg);
}

/* ===== Photo strip — full-bleed, wide + two narrow, frame broken once on purpose ===== */
.photo-strip { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--color-ink); }
.photo-strip__wide img, .photo-strip__narrow img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip__wide { aspect-ratio: 4/3; }
.photo-strip__narrow { aspect-ratio: 4/3; }
@media (min-width: 768px) {
  .photo-strip { grid-template-columns: 1.6fr 1fr 1fr; }
  .photo-strip__wide, .photo-strip__narrow { aspect-ratio: auto; height: 420px; }
}

/* ===== Torn-tape positioning note ===== */
.note-block { display: grid; gap: var(--section-s); align-items: start; }
.torn-note {
  position: relative; background: var(--color-white);
  padding: var(--section-s) var(--space-xl) var(--section-sm);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-soft);
  clip-path: polygon(
    0% 2%, 6% 0%, 14% 3%, 22% 0%, 31% 2%, 40% 0%, 49% 3%, 58% 0%, 67% 2%, 76% 0%,
    85% 3%, 93% 0%, 100% 2%, 100% 100%, 0% 100%
  );
}
.torn-note__tape {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 120px; height: 32px; background: rgba(201,151,0,0.55);
  border: 1px solid rgba(201,151,0,0.7);
}
.torn-note h2 {
  font-size: var(--fs-3xl); line-height: var(--lh-3xl); letter-spacing: var(--ls-3xl);
  text-transform: uppercase; color: var(--color-royal);
}
.note-block__lead { font-size: var(--fs-lg); line-height: var(--lh-lg); font-weight: 600; margin-bottom: var(--space-xl); color: var(--color-royal); }
.note-block__copy p { max-width: 52ch; color: rgba(20,22,46,0.8); }
.note-block__copy strong { color: var(--color-royal); }

@media (min-width: 900px) {
  .note-block { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
}

/* ===== Three panels — Agendas' real offerings, brand-safe tints ===== */
.panels { display: grid; grid-template-columns: 1fr; }
.panel { padding: var(--section-m) var(--gutter); }
.panel--cobalt { background: var(--panel-tint-cobalt); }
.panel--paper { background: var(--color-paper); }
.panel--gold { background: var(--panel-tint-gold); }
.panel__inner { max-width: 26rem; margin: 0 auto; text-align: center; }
.panel h3 {
  font-size: var(--fs-2xl); line-height: var(--lh-2xl); letter-spacing: var(--ls-2xl);
  text-transform: uppercase; color: var(--color-royal); margin-bottom: var(--section-s);
}
/* Width is pinned rather than driven by the caption: as an inline-block the card
   grew to fit a long caption, and the -3deg rotation then pushed it past the
   viewport edge on mobile. Fixed width => captions wrap instead of widening. */
.polaroid {
  display: inline-block; width: min(268px, 74vw);
  background: var(--color-white); padding: var(--space-m) var(--space-m) var(--space-l);
  box-shadow: var(--shadow-soft); margin-bottom: var(--section-s);
  transition: transform var(--dur-ui) var(--ease);
}
.polaroid--left { transform: rotate(-3deg); }
.polaroid--right { transform: rotate(2deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-4px); }
.polaroid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: var(--space-m); }
/* Portrait sources get a portrait frame. Forcing a 3:4 photo into a 4:3 window
   crops away most of the subject — the emcee lost his head and the run-sheet. */
.polaroid--tall img { aspect-ratio: 3/4; }
.polaroid span {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-ink); text-align: center;
}
.panel__quote { font-style: normal; color: rgba(20,22,46,0.75); margin-bottom: var(--space-l); }
.panel__price { font-weight: 600; margin-bottom: var(--space-xl); color: var(--color-royal); }
.panel__price strong { color: var(--color-bronze); }

@media (min-width: 900px) {
  .panels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .panel { display: flex; align-items: center; }
}

/* ===== Candid band — one full-bleed real, unfiltered photo ===== */
/* 2:1 rather than 21:9 — the supplied frame is a wide group shot and a 21:9 crop
   decapitates the people at each end. The band still reads as a full-bleed break. */
.candid-band { position: relative; }
.candid-band img { width: 100%; aspect-ratio: 2/1; object-fit: cover; object-position: 50% 40%; }
@media (max-width: 600px) { .candid-band img { aspect-ratio: 4/3; } }
.candid-band__label {
  position: absolute; left: var(--gutter); bottom: var(--space-xl);
  background: var(--color-ink); color: var(--color-white);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.6em 1.1em; border-radius: var(--radius-pill);
}

/* ===== Availability — calendar as a floating app-preview device ===== */
.app-preview {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  margin: 0 var(--gutter);
}
.app-preview__bg { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.app-preview__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,74,0.75), rgba(7,26,74,0.9)); }
.app-preview__frame {
  position: relative; max-width: 640px; margin: 0 auto; padding: var(--section-m) var(--space-xl) var(--section-l);
}
.app-preview__chrome {
  display: flex; align-items: center; gap: var(--space-m);
  background: var(--color-ink); border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: var(--space-m) var(--space-xl);
}
.app-preview__chrome i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); display: block; }
.app-preview__chrome span { font-family: var(--font-mono); font-size: var(--fs-xs); color: rgba(255,255,255,0.4); margin-left: var(--space-m); }
.app-preview__body { background: var(--color-white); border-radius: 0 0 var(--radius-sm) var(--radius-sm); padding: var(--section-s) var(--space-xl) var(--space-xl); }
.app-preview__body h2 { font-size: var(--fs-2xl); line-height: var(--lh-2xl); color: var(--color-royal); margin-bottom: var(--space-m); }
.app-preview__body > p { color: rgba(20,22,46,0.75); max-width: 46ch; margin-bottom: var(--space-xl); }

/* ===== Calendar (shared component with the main site, restyled to sit inside the frame) ===== */
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-m); }
.calendar__month { display: flex; align-items: center; gap: 0.5em; font-size: var(--fs-md); color: var(--color-royal); }
.calendar__month svg { color: var(--color-bronze); }
.calendar__nav {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-pill); color: var(--color-royal);
  transition: background var(--dur-state) var(--ease);
}
.calendar__nav:hover:not(:disabled) { background: rgba(12,56,155,0.08); }
.calendar__nav:disabled { opacity: 0.25; cursor: not-allowed; }
.calendar__table { transition: opacity var(--dur-ui) var(--ease), transform var(--dur-ui) var(--ease); }
.calendar__table th { padding: 0.4em 0.2em; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; color: rgba(20,22,46,0.5); text-transform: uppercase; text-align: center; }
.calendar__table th.is-weekend { color: var(--color-bronze); }
.calendar__jumaat { display: block; font-size: 0.6rem; font-weight: 400; text-transform: none; color: var(--color-bronze); }
.calendar__table td { text-align: center; padding: 2px; }
.calendar__table td.is-weekend { background: rgba(154,93,4,0.05); border-radius: var(--radius-sm); }
.calendar__table td.is-weekend button { color: var(--color-bronze); }
.calendar__table td.is-today button { box-shadow: inset 0 0 0 1.5px var(--color-gold); }
.calendar__table button {
  width: 100%; aspect-ratio: 1/1; min-height: 34px; font-family: var(--font-mono);
  border-radius: var(--radius-sm); font-size: var(--fs-sm); color: var(--color-ink);
  transition: background var(--dur-state) var(--ease), color var(--dur-state) var(--ease), transform var(--dur-state) var(--ease);
}
.calendar__table button:hover, .calendar__table button:focus-visible { background: var(--color-royal); color: var(--color-white); outline: none; transform: scale(1.06); }
.calendar__legend { display: flex; flex-wrap: wrap; gap: var(--space-xl); margin-top: var(--space-m); padding-top: var(--space-m); border-top: 1px solid rgba(20,22,46,0.1); }
.calendar__legend span { display: flex; align-items: center; gap: 0.4em; font-size: var(--fs-xs); color: rgba(20,22,46,0.65); }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--weekend { background: var(--color-bronze); }

/* ===== Booking calendar + form ===== */
.bk-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-m); }
.bk-cal__table td { text-align: center; padding: 2px; }
.bk-cal__table td.is-weekend { background: rgba(154,93,4,0.05); border-radius: var(--radius-sm); }
.bk-cal__table td.is-today button { box-shadow: inset 0 0 0 1.5px var(--color-gold); }
.bk-cal__table button {
  position: relative; width: 100%; min-height: 40px; padding: 0.3em 0;
  font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--color-ink);
  border-radius: var(--radius-sm);
  transition: background var(--dur-state) var(--ease), color var(--dur-state) var(--ease), transform var(--dur-state) var(--ease);
}
.bk-cal__table button:hover:not(:disabled),
.bk-cal__table button:focus-visible:not(:disabled) {
  background: var(--color-royal); color: var(--color-white); outline: none; transform: scale(1.05);
}
.bk-cal__table button:disabled { cursor: not-allowed; }
.bk-cal__table td.is-past button { opacity: 0.25; }
.bk-cal__table td.is-full { background: rgba(20,22,46,0.07); border-radius: var(--radius-sm); }
.bk-cal__table td.is-full button { color: rgba(20,22,46,0.35); text-decoration: line-through; }
.bk-cal__table td.is-blocked { background: rgba(20,22,46,0.07); border-radius: var(--radius-sm); }
.bk-cal__table td.is-blocked button { color: rgba(20,22,46,0.35); }
.bk-cal__table td.is-selected button { background: var(--color-royal); color: var(--color-white); }
.bk-cal__num { display: block; line-height: 1.1; }
.bk-cal__dots { display: flex; justify-content: center; gap: 2px; margin-top: 2px; }
.bk-cal__dots i { width: 4px; height: 4px; border-radius: 50%; background: rgba(20,22,46,0.18); }
.bk-cal__dots i.is-taken { background: var(--color-bronze); }
.bk-cal__table button:hover .bk-cal__dots i,
.bk-cal__table td.is-selected .bk-cal__dots i { background: rgba(255,255,255,0.35); }
.bk-cal__table button:hover .bk-cal__dots i.is-taken,
.bk-cal__table td.is-selected .bk-cal__dots i.is-taken { background: var(--color-gold); }
.bk-cal__note { display: block; font-size: 0.6rem; font-weight: 400; text-transform: none; color: var(--color-bronze); }
.bk-cal__status { font-size: var(--fs-xs); color: rgba(20,22,46,0.6); margin-top: var(--space-m); }
.bk-cal__status.is-demo { color: var(--color-bronze); font-weight: 600; }
.bk-cal__legend { display: flex; flex-wrap: wrap; gap: var(--space-l); margin-top: var(--space-m); padding-top: var(--space-m); border-top: 1px solid rgba(20,22,46,0.1); }
.bk-cal__legend span { display: flex; align-items: center; gap: 0.4em; font-size: var(--fs-xs); color: rgba(20,22,46,0.65); }
.dot--full { background: rgba(20,22,46,0.3); }

.bk-form { margin-top: var(--section-s); border-top: 1px solid rgba(20,22,46,0.12); padding-top: var(--section-s); }
.bk-form__chosen {
  font-family: var(--font-mono); font-size: var(--fs-md); color: rgba(20,22,46,0.45);
  margin-bottom: var(--space-xl);
}
.bk-form__chosen.is-set { color: var(--color-royal); font-weight: 500; }
.bk-form__chosen.is-set::before { content: "Event date: "; font-family: var(--font-body); color: rgba(20,22,46,0.6); }

/* Off-screen rather than display:none — some bots skip hidden fields. */
.bk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.bk-grid { display: grid; gap: var(--space-l); }
@media (min-width: 560px) { .bk-grid { grid-template-columns: 1fr 1fr; } }

.bk-field { display: flex; flex-direction: column; gap: 0.35em; margin-bottom: var(--space-l); }
.bk-field label { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--color-ink); }
.bk-field abbr { color: var(--color-bronze); text-decoration: none; }
.bk-hint { font-family: var(--font-body); font-weight: 400; font-size: var(--fs-xs); color: rgba(20,22,46,0.55); }
.bk-field input[type="text"], .bk-field input[type="tel"], .bk-field input[type="email"],
.bk-field input[type="number"], .bk-field input[type="date"], .bk-field select, .bk-field textarea {
  font-family: var(--font-body); font-size: var(--fs-base); color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(20,22,46,0.22); border-radius: var(--radius-sm);
  padding: 0.65em 0.8em; width: 100%;
  transition: border-color var(--dur-state) var(--ease), box-shadow var(--dur-state) var(--ease);
}
.bk-field :is(input, select, textarea):focus-visible {
  outline: none; border-color: var(--color-royal);
  box-shadow: 0 0 0 3px rgba(12,56,155,0.15);
}
.bk-field textarea { resize: vertical; min-height: 4.5em; }
.bk-field--check { flex-direction: row; }
.bk-field--check label {
  display: flex; align-items: flex-start; gap: 0.6em;
  font-weight: 400; font-family: var(--font-body); font-size: var(--fs-sm);
  color: rgba(20,22,46,0.8);
}
.bk-field--check input { margin-top: 0.2em; flex-shrink: 0; width: 1.05em; height: 1.05em; accent-color: var(--color-royal); }
.bk-rule { border: none; border-top: 1px solid rgba(20,22,46,0.12); margin: var(--space-l) 0 var(--space-xl); }

.bk-result { margin-top: var(--space-l); padding: var(--space-m) var(--space-l); border-radius: var(--radius-sm); font-size: var(--fs-sm); }
.bk-result.is-ok {
  background: color-mix(in srgb, var(--color-success) 10%, transparent);
  border: 1px solid var(--color-success); color: var(--color-success-ink);
}
.bk-result.is-error { background: rgba(154,93,4,0.1); border: 1px solid var(--color-bronze); color: var(--color-bronze); }
.bk-result.is-demo { background: rgba(12,56,155,0.08); border: 1px solid var(--color-royal); color: var(--color-royal); }
.bk-smallprint { margin-top: var(--space-l); font-size: var(--fs-xs); color: rgba(20,22,46,0.6); }

/* Very small phones (320px, e.g. SE-class and older Androids): the 7-column
   calendar plus the app-preview frame's insets exceeds the viewport. Drop the
   frame's side insets and shrink the day cells rather than letting the page
   scroll sideways. */
@media (max-width: 380px) {
  .app-preview { margin: 0; border-radius: 0; }
  .app-preview__frame { padding-left: var(--space-m); padding-right: var(--space-m); }
  .app-preview__body { padding-left: var(--space-m); padding-right: var(--space-m); }
  .app-preview__chrome { padding-left: var(--space-m); padding-right: var(--space-m); }
  .calendar__table button { min-height: 30px; font-size: var(--fs-xs); }
  /* nowrap pills are wider than a 320px container — let them wrap and shrink. */
  .pill-btn { white-space: normal; text-align: center; }
  .pill-btn--lg { padding: 0.9em 1.4em; font-size: var(--fs-sm); }
  .admin-teaser__inner > * { min-width: 0; }
}

/* ===== Admin teaser ===== */
.admin-teaser { background: var(--color-royal-deep); color: var(--color-white); }
.admin-teaser__inner { display: grid; gap: var(--section-s); align-items: center; }
.admin-teaser h2 { color: var(--color-white); font-size: var(--fs-2xl); line-height: var(--lh-2xl); margin-bottom: var(--space-m); max-width: 20ch; }
.admin-teaser p { color: var(--color-haze); max-width: 46ch; }
.admin-teaser__inner .pill-btn { justify-self: start; }
@media (min-width: 900px) { .admin-teaser__inner { grid-template-columns: 1.4fr 1fr; } .admin-teaser__inner .pill-btn { justify-self: end; } }

/* ===== Footer ===== */
.cfooter { background: var(--color-ink); color: rgba(255,255,255,0.75); padding: var(--section-m) var(--gutter) var(--space-xl); }
.cfooter__chips {
  max-width: var(--container-max); margin: 0 auto var(--section-s);
  display: grid; gap: var(--space-xl);
}
.cfooter__chip { display: flex; gap: var(--space-m); align-items: flex-start; }
.cfooter__chip svg { color: var(--color-gold); margin-top: 0.2em; }
.cfooter__chip strong { display: block; font-size: var(--fs-sm); }
.cfooter__chip span { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); }
.cfooter__mark { max-width: var(--container-max); margin: 0 auto var(--section-s); text-align: center; }
.cfooter__mark img { height: 44px; width: auto; margin: 0 auto var(--space-m); }
.cfooter__strapline { font-family: var(--font-script); font-size: var(--fs-lg); color: var(--color-haze); line-height: 1; }
.cfooter__bottom { max-width: var(--container-max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-m); font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
@media (min-width: 768px) { .cfooter__chips { grid-template-columns: repeat(3, minmax(0,1fr)); } }
