:root {
  --chili: #c01116;
  --chili-hot: #e3141a;
  --leaf: #4a7737;
  --leaf-bright: #466c1a;
  --ink: #ffffff;
  --ink-2: #ffffff;
  --ink-3: #f4f8f1;
  --line: rgba(74, 119, 55, 0.18);
  --cream: #111111;
  --cream-dim: #555555;
  --muted: #6b6b6b;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1240px;
  --pad: clamp(1.1rem, 3vw, 2.4rem);
  --radius: 1.25rem;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.rail {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0.7rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 40;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1100px) { .rail { display: flex; } }

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--chili);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip:focus { left: var(--pad); top: 0.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem var(--pad);
  background: color-mix(in srgb, #ffffff 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo img {
  height: 56px;
  width: auto;
}
@media (min-width: 860px) {
  .logo img { height: 72px; }
}
footer .logo img { height: 56px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem var(--pad) 1.2rem;
  flex-direction: column;
  gap: 0.2rem;
}
.nav.is-open,
.site-header.is-open .nav { display: flex; }

.nav a {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  color: var(--cream-dim);
}
.nav a[aria-current="page"],
.nav a:hover { color: var(--chili); }

.nav-cta {
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  background: var(--chili);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
    background: none;
    border: 0;
    padding: 0;
  }
  .nav a { padding: 0; }
  .nav-cta { margin-top: 0; padding: 0.55rem 1rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--chili); color: #fff; }
.btn-primary:hover { background: var(--chili-hot); }
.btn-ghost { border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream-dim); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 0.85rem;
}

h1, h2, h3 { font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; color: var(--cream); }
em, .highlight { color: var(--chili); font-style: italic; }
.lede { color: var(--cream-dim); max-width: 40rem; font-size: 1.12rem; }

/* Photo heroes */
.hero-photo,
.page-hero-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-photo {
  min-height: min(92vh, 820px);
  padding: 7rem 0 5.6rem;
}
.page-hero-photo {
  min-height: min(50vh, 480px);
  align-items: flex-end;
  padding: 6.5rem 0 1.4rem;
}
.hero-photo__img,
.page-hero-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  filter: brightness(1.12) contrast(1.14) saturate(1.18);
}
.hero-photo__shade,
.page-hero-photo__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 94%, #ffffff 100%);
}
.hero-kicker {
  font-family: var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #d8ecb8;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.hero-title {
  font-size: clamp(3.2rem, 8.2vw, 6.6rem);
  line-height: 0.94;
  font-weight: 600;
  max-width: 14ch;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}
.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 360;
  color: var(--chili-hot);
}
.hero-foot {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-lede {
  max-width: 34rem;
  color: #f4f4f4;
  font-size: 1.12rem;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-photo .btn-ghost,
.page-hero-photo .btn-ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.hero-photo--home {
  color: var(--cream);
}
.hero-photo--home .hero-photo__img {
  object-position: 82% center;
  filter: brightness(1.04) contrast(1.1) saturate(1.12);
}
.hero-photo--home .hero-kicker {
  color: var(--leaf-bright);
  text-shadow: none;
}
.hero-photo--home .hero-title {
  color: #111;
  text-shadow: none;
}
.hero-photo--home .hero-lede {
  color: #444;
  text-shadow: none;
}
.hero-photo--home .btn-ghost {
  border-color: var(--chili);
  color: #111;
  background: rgba(255, 255, 255, 0.72);
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 0.75rem 0;
  background: #f4f8f1;
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: ticker 58s linear infinite;
  font-family: var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cream-dim);
}
.marquee span::after {
  content: " · ";
  color: var(--chili);
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(1.8rem, 4.2vw, 3.4rem) 0; }
.page-hero-photo + .section,
.hero-photo + .marquee + .section { padding-top: 1.4rem; }
.section-head { margin-bottom: 1.35rem; max-width: 44rem; }
.section-head h2 { font-size: clamp(2.6rem, 6vw, 4.3rem); margin-bottom: 0.8rem; }

.split {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; }
}
.split .stats { grid-template-columns: repeat(2, 1fr); }

.come-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .come-grid { grid-template-columns: repeat(2, 1fr); } }
.come-grid article {
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
}
.come-grid h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.come-grid p { color: var(--cream-dim); font-size: 0.95rem; }

.pillars { display: grid; gap: 1rem; }
@media (min-width: 700px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--ink-3);
  border: 1px solid var(--line);
  min-height: 10rem;
}
.pillar h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--cream-dim); font-size: 0.95rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 1.3rem 0.4rem 1.3rem 0;
  border-top: 2px solid var(--leaf);
}
.stat b {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.stat span { color: var(--muted); font-size: 0.88rem; }

.service-grid,
.work-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(74, 119, 55, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: color-mix(in srgb, var(--chili) 55%, var(--line)); transform: translateY(-3px); }
.card-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.card-body h3 { font-size: 1.45rem; }
.card-body p { color: var(--cream-dim); font-size: 0.92rem; }
.card-index {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--chili);
}
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; filter: saturate(1.05); }
.chip {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  border: 1px solid color-mix(in srgb, var(--leaf) 50%, transparent);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}

.logo-groups { display: grid; gap: 2.4rem; }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
@media (min-width: 700px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1020px) { .logo-wall { grid-template-columns: repeat(6, 1fr); } }
.logo-groups .logo-wall.partners { grid-template-columns: repeat(3, 1fr); max-width: 36rem; }
.logo-wall figure {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 1rem 1.1rem;
}
.logo-wall img {
  max-height: 52px;
  width: auto;
  max-width: 92%;
}
.logo-wall figure:has(img[alt="Lovingle"]),
.logo-wall figure:has(img[alt="Xpert"]),
.logo-wall figure:has(img[alt="Yash Raj Films"]) {
  min-height: 118px;
  padding: 0.45rem 0.5rem;
}
.logo-wall img[alt="Lovingle"],
.logo-wall img[alt="Xpert"],
.logo-wall img[alt="Yash Raj Films"] {
  max-height: 96px;
  max-width: 100%;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin: 0 var(--pad) 2rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(70, 108, 26, 0.18), transparent 42%),
    linear-gradient(160deg, #c01116, #e3141a);
  border: 0;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); max-width: 16ch; color: #fff; }
.cta-band .eyebrow { color: #d8ecb8; }
.cta-band .btn-primary { background: #fff; color: var(--chili); }
.cta-band .btn-primary:hover { background: #f4f8f1; }

.quote-block {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) { .quote-block { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }
.quote-block img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.4rem;
  filter: contrast(1.05);
}
blockquote {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  font-weight: 360;
  line-height: 1.25;
  color: var(--cream);
}
.cite { margin-top: 1.1rem; font-family: var(--sans); font-size: 0.95rem; color: var(--muted); }
.cite b { display: block; color: var(--cream); font-weight: 600; }

.why { display: grid; gap: 1rem; }
@media (min-width: 800px) { .why { grid-template-columns: repeat(3, 1fr); } }
.why article {
  padding: 1.4rem;
  border-top: 3px solid var(--chili);
  background: var(--ink-3);
}

.process { display: grid; gap: 0; }
@media (min-width: 900px) { .process { grid-template-columns: repeat(5, 1fr); } }
.process article {
  padding: 1.2rem 1rem 1.4rem 0;
  border-top: 1px solid var(--line);
}
.process .n {
  font-family: var(--mono);
  color: var(--leaf-bright);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}
.process h3 { margin: 0.4rem 0 0.5rem; font-size: 1.55rem; }
.process p { color: var(--cream-dim); font-size: 0.92rem; }

.page-hero { padding: 3.2rem 0 1.2rem; }
.page-hero h1 { font-size: clamp(2.8rem, 6.6vw, 4.7rem); max-width: 16ch; }
.page-hero-photo {
  color: var(--cream);
}
.page-hero-photo__img {
  object-position: center 18%;
}
.page-hero-photo__copy {
  width: max-content;
  max-width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-left: max(var(--pad), calc((100% - var(--max)) / 2));
  margin-right: auto;
  padding: 0.75rem 2.6rem 0.95rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 62%, rgba(255, 255, 255, 0) 100%);
}
.page-hero-photo--case {
  align-items: flex-end;
  padding: 6.5rem 0 4.4rem;
}
.page-hero-photo--case .page-hero-photo__img {
  object-position: center;
}
.page-hero-photo--case .page-hero-photo__copy {
  max-width: none;
  padding: 0;
  background: none;
}
.page-hero-photo--case .page-hero-photo__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 46%, transparent 74%),
    linear-gradient(180deg, transparent 86%, #ffffff 100%);
}
.page-hero-photo--case .chip {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.28);
}
.page-hero-photo h1 {
  font-size: clamp(1.45rem, 2.5vw, 2.7rem);
  max-width: none;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: #111;
  text-shadow: none;
}
@media (min-width: 900px) {
  .page-hero-photo h1 {
    white-space: nowrap;
  }
}
.page-hero-photo .lede {
  color: #444;
  max-width: 34rem;
  font-weight: 500;
  text-shadow: none;
}
.page-hero-photo .eyebrow,
.page-hero-photo .eyebrow a {
  color: var(--leaf-bright);
  text-shadow: none;
}
.page-hero-photo .btn-ghost {
  border-color: var(--chili);
  color: #111;
  background: rgba(255, 255, 255, 0.72);
}
.page-hero-photo--case {
  color: #fff;
}
.page-hero-photo--case h1 {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}
.page-hero-photo--case .lede {
  color: #f4f4f4;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.page-hero-photo--case .eyebrow,
.page-hero-photo--case .eyebrow a {
  color: #d8ecb8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.page-hero-photo--contact .page-hero-photo__img {
  object-position: 28% 42%;
  filter: brightness(1.05) contrast(1.08) saturate(1.06);
}
.page-hero-photo--case .btn-ghost {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.detail-pillars { display: grid; gap: 1rem; }
@media (min-width: 800px) { .detail-pillars { grid-template-columns: repeat(3, 1fr); } }
.detail-pillars article {
  padding: 1.3rem;
  background: var(--ink-3);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.detail-pillars h2 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.detail-pillars li {
  color: var(--cream-dim);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}
.punch {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--chili);
}

.case-hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 1.4rem;
  margin: 1.2rem 0 2rem;
}
.case-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .case-grid { grid-template-columns: 1fr 1fr; } }
.case-grid article {
  padding: 1.2rem;
  background: var(--ink-3);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.case-grid h2 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--leaf-bright); margin-bottom: 0.5rem; }
.case-back { margin-top: 1.6rem; }

.filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.4rem; }
.filters button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  color: var(--cream-dim);
}
.filters button.is-on,
.filters button:hover { border-color: var(--chili); color: #fff; background: var(--chili); }

/* Contact */
.contact-layout {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 0.72fr 1.28fr; } }

.form {
  display: grid;
  gap: 0.85rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: #ffffff;
}
.form--compact {
  gap: 0.65rem;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1.1rem;
}
.form label { display: grid; gap: 0.35rem; font-size: 0.85rem; color: var(--cream-dim); }
.form--compact label { gap: 0.25rem; font-size: 0.78rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  outline: none;
}
.form--compact input,
.form--compact select,
.form--compact textarea {
  border-radius: 0.55rem;
  padding: 0.55rem 0.7rem;
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--chili); }
.form textarea { min-height: 8rem; resize: vertical; }
.form--compact textarea { min-height: 5.2rem; }
.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.hp { position: absolute; left: -9999px; }
.form-status { min-height: 1.3rem; font-size: 0.9rem; }
.form-status.ok { color: var(--leaf-bright); }
.form-status.err { color: #b42318; }
.row-2 { display: grid; gap: 0.85rem; }
.form--compact .row-2 { gap: 0.65rem; }
@media (min-width: 600px) { .row-2 { grid-template-columns: 1fr 1fr; } }

.contact-meta { padding-top: 0.2rem; }
.contact-meta a { color: var(--chili); border-bottom: 1px solid var(--chili); }
.contact-meta p { margin: 0.35rem 0; color: var(--cream-dim); }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.contact-icon {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--chili);
  background: #f4f8f1;
}
.contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
footer a:hover { color: var(--chili); }
footer li { margin: 0.28rem 0; }
.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: space-between;
}

.legal { max-width: 46rem; }
.legal h2 { font-size: 1.5rem; margin: 1.4rem 0 0.4rem; }
.legal p { color: var(--cream-dim); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .card:hover { transform: none; }
}
