/* ==========================================================================
   Backend Solutions LLC — site stylesheet
   Palette and type taken from the brand sheet in the design source.
   ========================================================================== */

:root {
  --ink:        #07262B;  /* primary ink, dark sections */
  --ink-2:      #0E3B42;  /* secondary panels */
  --ink-3:      #041A1E;  /* footer */
  --accent:     #FF6B4A;  /* accent, CTAs, highlights */
  --accent-deep:#E8502C;  /* links on light, hover */
  --peach:      #FFD9CE;  /* badge fill */
  --bone:       #F7F4EF;  /* page background */
  --sand:       #F1EEE7;  /* icon wells */
  --line:       #E4DED3;  /* borders, dividers */
  --white:      #FFFFFF;
  --muted:      #5E7C80;  /* small print on light */
  --body:       #4A6468;  /* paragraphs on light */
  --quote:      #24474B;

  --on-dark:        rgba(247,244,239,.72);
  --on-dark-faint:  rgba(247,244,239,.60);
  --on-dark-line:   rgba(247,244,239,.16);

  --display: 'Familjen Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --text: Karla, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shell: 1240px;
  --gutter: 28px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --pill: 999px;

  --section: clamp(48px, 6vw, 88px);
  --section-lg: clamp(64px, 7vw, 112px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
[hidden] { display: none !important; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin: 0;
}
h1 { text-wrap: pretty; }

input, textarea, button, select { font: inherit; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* The header is sticky, so anchored sections must stop clear of it. */
:target, section[id], article[id], h2[id] { scroll-margin-top: 110px; }

::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bone);
  padding: 14px 20px; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--bone); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------- layout helpers */

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }

.section    { padding-top: var(--section); }
.section-lg { padding-top: var(--section-lg); }
.section-flush { margin-top: var(--section-lg); }

.grid { display: grid; gap: 22px; }
.auto-140 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr)); }
.auto-190 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.auto-210 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.auto-230 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.auto-240 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.auto-280 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.auto-300 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.auto-320 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid > * { min-width: 0; }

.split { display: grid; gap: clamp(32px, 5vw, 56px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); align-items: center; }
.split > * { min-width: 0; }
.split-top { align-items: start; }
.split-end { align-items: end; }

.row-end {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: flex-end; justify-content: space-between;
}

/* ------------------------------------------------------------- typography */

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-deep);
}
.eyebrow--dark { color: var(--accent); }
.eyebrow--rule::before { content: ""; display: block; width: 26px; height: 1px; background: currentColor; }

.h-xl { font-size: clamp(38px, 5.6vw, 72px); line-height: 1.02; letter-spacing: -.03em; }
.h-lg { font-size: clamp(34px, 5vw, 64px);   line-height: 1.03; letter-spacing: -.03em; }
.h-md { font-size: clamp(32px, 4vw, 52px);   line-height: 1.05; }
.h-sm { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.06; }
.h-xs { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.08; }

.lede { font-size: clamp(16px, 1.3vw, 18.5px); line-height: 1.68; color: var(--body); }
.lede--dark { color: var(--on-dark); }
.prose { font-size: 16px; line-height: 1.75; color: var(--body); }
.note { font-size: 15.5px; line-height: 1.6; color: var(--muted); }

.measure-16 { max-width: 16ch; } .measure-18 { max-width: 18ch; }
.measure-20 { max-width: 20ch; } .measure-22 { max-width: 22ch; }
.measure-24 { max-width: 24ch; } .measure-34 { max-width: 34ch; }
.measure-38 { max-width: 38ch; } .measure-42 { max-width: 42ch; }
.measure-44 { max-width: 44ch; } .measure-46 { max-width: 46ch; }
.measure-48 { max-width: 48ch; } .measure-50 { max-width: 50ch; }
.measure-52 { max-width: 52ch; } .measure-54 { max-width: 54ch; }
.stack-sm > * + * { margin-top: 16px; }

em.accent { font-style: italic; color: var(--accent); }

/* ----------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  /* <button> defaults to the UA 'buttonface' grey; the outline variants set no
     background of their own, so without this they render as pale pills. */
  background: transparent;
  padding: 17px 28px; border-radius: var(--pill);
  font-size: 15.5px; font-weight: 700; text-align: center;
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-sm { padding: 14px 24px; font-size: 15px; font-weight: 600; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--bone); color: var(--ink); }

.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--accent); color: var(--ink); }

.btn-outline-ink { border-color: var(--ink); color: var(--ink); font-weight: 600; }
.btn-outline-ink:hover { background: var(--ink); color: var(--bone); }

.btn-outline-light { border-color: rgba(247,244,239,.28); color: var(--bone); font-weight: 600; }
.btn-outline-light:hover { border-color: var(--bone); color: var(--bone); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--end { justify-content: flex-end; }

.link-rule {
  font-size: 15px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
}
.link-rule:hover { border-color: var(--accent); }
.link-underline { color: var(--bone); border-bottom: 1px solid rgba(247,244,239,.24); padding-bottom: 6px; width: max-content; }
.link-underline:hover { color: var(--accent); border-color: var(--accent); }

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247,244,239,.97);
  box-shadow: 0 10px 30px rgba(4,26,30,.07);
}
.site-header__inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand__sub { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
/* :not(.btn) matters — without it these win on specificity over .btn-sm and
   leave the CTA with 3px of bottom padding and the wrong font weight. */
.nav a:not(.btn) { font-size: 14.5px; font-weight: 500; color: #3D5B60; border-bottom: 1px solid transparent; padding-bottom: 3px; }
.nav a:not(.btn):hover { color: var(--ink); border-color: var(--line); }
.nav a:not(.btn)[aria-current="page"] { font-weight: 700; color: var(--ink); border-color: var(--accent); }
.nav .btn { color: var(--bone); }
.nav .btn:hover { color: var(--ink); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--white);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 4px;
    margin: 0; padding: 12px var(--gutter) 22px;
    background: var(--bone); border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(4,26,30,.10);
  }
  .nav[hidden] { display: none; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav a:not(.btn)[aria-current="page"] { border-color: var(--accent); }
  .nav .btn { margin-top: 14px; }
  .site-header__inner { position: relative; gap: 16px; }
}

/* -------------------------------------------------------------- dark hero */

.hero { position: relative; background: var(--ink); color: var(--bone); overflow: hidden; }
.hero__glow, .hero__ring { position: absolute; pointer-events: none; }
.hero__glow {
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,107,74,.28), rgba(255,107,74,0) 68%);
}
.hero__glow--tr { top: -140px; right: -120px; width: 520px; height: 520px; }
.hero__glow--bl { left: -120px; bottom: -160px; width: 420px; height: 420px; }
.hero__ring { left: -90px; bottom: -110px; width: 300px; height: 300px; border: 1px solid rgba(247,244,239,.14); border-radius: 50%; }
.hero__inner {
  position: relative; max-width: var(--shell); margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) var(--gutter);
}
.hero--home .hero__inner {
  display: grid; gap: clamp(36px, 5vw, 64px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  padding: clamp(56px, 7vw, 104px) var(--gutter) clamp(56px, 6vw, 88px);
}
.hero--home .hero__inner > * { min-width: 0; }

.stat-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 46px; padding-top: 28px; border-top: 1px solid rgba(247,244,239,.14);
}
.stat__n { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -.02em; }
.stat__label { font-size: 13px; color: var(--on-dark-faint); margin-top: 3px; }

.figure-frame {
  position: relative; width: 100%; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--on-dark-line); background: var(--ink-2);
}
.figure-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ratio-43  { aspect-ratio: 4 / 3; }
.ratio-1611{ aspect-ratio: 16 / 11; }
.ratio-1610{ aspect-ratio: 16 / 10; }
.ratio-34  { aspect-ratio: 3 / 4; }
.ratio-45  { aspect-ratio: 4 / 5; }
.ratio-11  { aspect-ratio: 1 / 1; }

.hero__card {
  position: absolute; left: -14px; bottom: -26px;
  background: var(--bone); color: var(--ink);
  border-radius: var(--radius-sm); padding: 18px 22px;
  box-shadow: 0 24px 48px rgba(4,26,30,.32);
  animation: float 6s ease-in-out infinite;
}
.hero__card-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hero__card-value { font-family: var(--display); font-size: 17px; font-weight: 700; margin-top: 5px; }
.hero__media { position: relative; }

@media (max-width: 700px) { .hero__card { position: static; margin-top: 22px; animation: none; } }

/* ---------------------------------------------------------------- marquee */

.marquee { overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee__group { display: flex; gap: 56px; padding-right: 56px; align-items: center; }
.marquee__group span { white-space: nowrap; font-family: var(--display); }

.marquee--clients { background: var(--ink); border-top: 1px solid rgba(247,244,239,.12); padding: 26px 0; }
.marquee--clients span { font-size: 17px; font-weight: 600; color: rgba(247,244,239,.5); }

.marquee--services {
  background: var(--accent); color: var(--ink); padding: 20px 0;
  border-top: 1px solid var(--accent-deep); border-bottom: 1px solid var(--accent-deep);
}
.marquee--services .marquee__track { animation-duration: 30s; }
.marquee--services .marquee__group { gap: 44px; padding-right: 44px; }
.marquee--services span { font-size: clamp(20px, 2.4vw, 30px); font-weight: 700; letter-spacing: -.02em; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ------------------------------------------------------------ trust badges */

.badges { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.badge {
  min-width: 0; display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius-sm); padding: 18px;
  transition: border-color .18s ease;
}
.badge:hover { border-color: var(--accent); }
.badge svg { flex: none; }
.badge__label { font-family: var(--display); font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.badge__sub { font-size: 13px; line-height: 1.45; color: var(--muted); margin-top: 3px; }

/* ------------------------------------------------------------ service cards */

.track { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); align-items: start; }
.track > * { min-width: 0; }
.track__head { position: sticky; top: 110px; }
.track__title { display: flex; align-items: baseline; gap: 12px; }
.track__num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--accent-deep); letter-spacing: .08em; }
.track__title h3 { font-size: clamp(26px, 3vw, 34px); letter-spacing: -.02em; }
.track__items { grid-column: span 2; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.track-list { display: flex; flex-direction: column; gap: 56px; margin-top: 56px; }
@media (max-width: 860px) { .track__head { position: static; } .track__items { grid-column: auto; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 12px; min-width: 0;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: var(--ink); transform: translateY(-3px); }
.card__top { display: flex; align-items: center; gap: 10px; }
.card__icon {
  width: 40px; height: 40px; flex: none; border-radius: 11px; background: var(--sand);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.card h4 { font-size: 19px; letter-spacing: -.01em; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

.pill-tag {
  font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
  color: var(--body); background: var(--bone); border: 1px solid var(--line);
  border-radius: var(--pill); padding: 5px 10px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }

.flag {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: var(--ink); background: var(--peach); border-radius: var(--pill); padding: 5px 10px;
}
.flag--accent { background: var(--accent); }
.card__top .flag { margin-left: auto; }

/* ---------------------------------------------------------------- carousel */

.carousel {
  position: relative;
  --per-view: 2;
  --carousel-gap: 18px;
}
.carousel--3 { --per-view: 3; --carousel-gap: 22px; }

.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* room for the cards' hover lift, so it isn't clipped */
  padding: 4px 4px 8px;
  margin: -4px -4px -8px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__track { display: flex; gap: var(--carousel-gap); align-items: stretch; }

.carousel__slide {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--carousel-gap)) / var(--per-view));
  scroll-snap-align: start;
  display: flex;
}
.carousel__slide > * { width: 100%; }

.carousel__controls {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
}

.carousel__btn {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.carousel__btn svg { display: block; }
.carousel__btn:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.carousel__dots { display: flex; gap: 8px; margin-right: auto; }
.carousel__dot {
  width: 8px; height: 8px; padding: 0;
  border-radius: 50%; border: 0; cursor: pointer;
  background: var(--line);
  transition: background .18s ease, width .18s ease;
}
.carousel__dot[aria-selected="true"] { background: var(--accent); width: 22px; border-radius: 4px; }

.carousel__status { font-size: 13px; color: var(--muted); }

@media (max-width: 1000px) { .carousel--3 { --per-view: 2; } }
@media (max-width: 700px)  { .carousel, .carousel--3 { --per-view: 1; } }

/* ------------------------------------------------------------- dark panels */

.panel {
  position: relative; overflow: hidden;
  background: var(--ink-2); color: var(--bone);
  border-radius: var(--radius-lg); padding: clamp(32px, 4.5vw, 56px);
}
.panel--ink { background: var(--ink); }
.panel--lg { padding: clamp(36px, 5vw, 64px); }
.panel__glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, rgba(255,107,74,.22), rgba(255,107,74,0) 70%);
}
.panel__glow--tr { right: -80px; top: -80px; width: 340px; height: 340px; }
.panel__glow--bl { left: -100px; bottom: -140px; width: 380px; height: 380px; }
.panel > *:not(.panel__glow) { position: relative; }

.panel-light {
  border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius-lg); padding: clamp(32px, 4.5vw, 56px);
}

.step { padding-top: 22px; border-top: 1px solid rgba(247,244,239,.2); }
.step__num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; }
.step h3 { font-size: 21px; letter-spacing: -.015em; margin-top: 12px; }
.step p { font-size: 14.5px; line-height: 1.65; color: rgba(247,244,239,.68); margin: 10px 0 0; }

/* ----------------------------------------------------------- about collage */

.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage > * { min-width: 0; border-radius: 18px; overflow: hidden; }
.collage__tall { grid-row: span 2; }
.collage__frame { position: relative; border: 1px solid var(--line); background: var(--ink-2); }
.collage__frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.collage__stat {
  background: var(--ink); color: var(--bone); padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.collage__stat-n { font-family: var(--display); font-size: clamp(32px, 4vw, 44px); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.collage__stat-label { font-size: 13.5px; color: rgba(247,244,239,.66); margin-top: 6px; line-height: 1.45; }

.stat-block__n { font-family: var(--display); font-size: 32px; font-weight: 700; letter-spacing: -.025em; }
.stat-block__label { font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* ------------------------------------------------------------- case studies */

.case { display: flex; flex-direction: column; gap: 16px; color: var(--ink); }
.case:hover { color: var(--accent-deep); }
.case__frame {
  position: relative; width: 100%; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-2);
}
.case__frame img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .6, .2, 1);
}
.case:hover .case__frame img,
.case-card:hover .case-card__media img { transform: scale(1.035); }
.case__kind { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.case h3 { font-size: 20px; letter-spacing: -.015em; margin-top: 8px; }
.case p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 8px 0 0; }

.case-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; min-width: 0;
  transition: border-color .18s ease, transform .18s ease;
}
.case-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.case-card__media { position: relative; width: 100%; background: var(--ink-2); }
.case-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.case-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.case-card__year { font-size: 13px; color: var(--muted); }
.case-card h2 { font-size: 21px; letter-spacing: -.02em; }
.case-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.metrics { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 20px; }
.metric__n { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.metric__label { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.metrics--dark { border-color: var(--on-dark-line); gap: 28px; margin-top: 28px; padding-top: 24px; }
.metrics--dark .metric__n { font-size: 28px; letter-spacing: -.025em; }
.metrics--dark .metric__label { font-size: 13px; color: var(--on-dark-faint); margin-top: 3px; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter {
  border-radius: var(--pill); padding: 11px 18px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.filter span { opacity: .55; }

.pull-quote {
  margin: 28px 0 0; font-size: 15.5px; line-height: 1.7; color: var(--bone);
  border-left: 2px solid var(--accent); padding-left: 18px; max-width: 46ch;
}
.pull-quote cite { display: block; font-style: normal; font-size: 13.5px; color: var(--on-dark-faint); margin-top: 10px; }

/* ------------------------------------------------------------- testimonials */

.quote-card {
  margin: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 20px; min-width: 0;
}
.quote-card__mark { font-family: var(--display); font-size: 34px; line-height: .6; color: var(--accent); }
.quote-card blockquote { margin: 0; font-size: 16px; line-height: 1.68; color: var(--quote); }
.quote-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: var(--ink); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 14px;
}
.quote-card__who { display: flex; flex-direction: column; }
.quote-card__name { font-weight: 700; font-size: 14.5px; }
.quote-card__role { font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------------ pricing */

.plan {
  display: flex; flex-direction: column; min-width: 0;
  border-radius: 22px; padding: 32px 28px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
}
.plan--featured { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.plan__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.plan h3 { font-size: 20px; letter-spacing: -.01em; }
.plan__price { margin-top: 20px; display: flex; align-items: baseline; gap: 7px; }
.plan__from { font-size: 13px; color: var(--muted); }
.plan__amount { font-family: var(--display); font-size: 42px; font-weight: 700; letter-spacing: -.03em; }
.plan__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 14px 0 0; }
.plan__rule { height: 1px; background: var(--line); margin: 24px 0; }
.plan--featured .plan__from, .plan--featured .plan__desc { color: rgba(247,244,239,.68); }
.plan--featured .plan__rule { background: rgba(247,244,239,.18); }
.plan .btn { margin-top: 28px; }

.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ticks li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; }
.ticks li::before { content: "/"; color: var(--accent); font-weight: 700; flex: none; }
.ticks--deep li::before { color: var(--accent-deep); }

/* ---------------------------------------------------------------- services */

.svc {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: clamp(24px, 3vw, 34px);
  display: grid; gap: 28px; min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.svc > * { min-width: 0; }
.svc__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.svc__head h3 { font-size: clamp(20px, 2.2vw, 26px); letter-spacing: -.02em; }
.svc p { font-size: 15.5px; line-height: 1.7; color: var(--body); margin: 14px 0 0; }
.svc__facts { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; }
.fact__label { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.fact__value { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-top: 4px; }
.svc__deliverables { background: var(--bone); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; }
.svc__deliverables .ticks { margin-top: 16px; }

.track-band {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: baseline;
  border-bottom: 1px solid var(--line); padding-bottom: 22px;
}
.track-band h2 { font-size: clamp(28px, 3.6vw, 44px); }
.track-band p { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0 0 0 auto; max-width: 44ch; }

.chip-link {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(247,244,239,.24); color: var(--bone);
  border-radius: var(--pill); padding: 11px 18px; font-size: 14px; font-weight: 600;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.chip-link:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* ---------------------------------------------------------------------- faq */

/* A heading column that follows the reader down its own section. */
.sticky-col { position: sticky; top: 110px; align-self: start; }
@media (max-width: 860px) { .sticky-col { position: static; } }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: none; border: 0; padding: 22px 24px; cursor: pointer; color: var(--ink);
}
.faq__q span:first-child { font-family: var(--display); font-size: 17.5px; font-weight: 700; letter-spacing: -.01em; flex: 1; }
.faq__sign {
  width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; color: var(--accent-deep);
}
.faq__q[aria-expanded="true"] .faq__sign { background: var(--peach); }
.faq__a { margin: 0; padding: 0 24px 24px; font-size: 15px; line-height: 1.7; color: var(--body); max-width: 62ch; }

/* -------------------------------------------------------------------- forms */

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }
.form__row > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field textarea {
  background: var(--bone); border: 1px solid var(--line); border-radius: 11px;
  padding: 14px; color: var(--ink); font-size: 15px; outline: none;
  transition: border-color .18s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--accent-deep); }
.field input::placeholder, .field textarea::placeholder { color: #93a7a9; }

.form--dark .field__label { color: var(--on-dark-faint); }
.form--dark .field input, .form--dark .field textarea {
  background: rgba(4,26,30,.5); border-color: rgba(247,244,239,.18); color: var(--bone);
}
.form--dark .field input::placeholder, .form--dark .field textarea::placeholder { color: rgba(247,244,239,.42); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; font-weight: 600; border-radius: var(--pill);
  padding: 10px 15px; cursor: pointer;
  background: var(--bone); color: var(--ink); border: 1px solid var(--line);
  transition: background .18s ease, border-color .18s ease;
}
.chip:hover { border-color: var(--accent); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); }
.form--dark .chip { background: rgba(4,26,30,.5); color: var(--bone); border-color: rgba(247,244,239,.18); }
.form--dark .chip[aria-pressed="true"] { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* The NDA checkbox row on the contact form. Named distinctly so it cannot
   collide with the cookie banner's .consent block further down. */
.consent-check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.55; color: var(--body); }
.consent-check input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--accent-deep); }

.form__note { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }
.form__hp { position: absolute; left: -9999px; }

.form-status {
  border-radius: 12px; padding: 14px 16px; font-size: 14.5px; line-height: 1.55;
  border: 1px solid var(--line); background: var(--white);
}
.form-status--ok   { border-color: #9FD9C2; background: #EAF7F1; color: #14503C; }
.form-status--err  { border-color: #F0B5A4; background: #FDEEE9; color: #8C2E14; }
.form--dark .form-status { background: rgba(4,26,30,.5); color: var(--bone); border-color: rgba(247,244,239,.18); }
.form--dark .form-status--ok  { border-color: rgba(77,224,176,.5); }
.form--dark .form-status--err { border-color: rgba(255,107,74,.6); }

.card-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; padding: clamp(26px, 3.4vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
}
.card-form h2 { font-size: 22px; letter-spacing: -.02em; }

.form-panel {
  position: relative; background: rgba(247,244,239,.06);
  border: 1px solid rgba(247,244,239,.14); border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px); display: flex; flex-direction: column; gap: 16px;
}

.contact-cards { display: flex; flex-direction: column; gap: 22px; }
.contact-card { border-radius: 24px; padding: clamp(26px, 3.4vw, 36px); }
.contact-card--dark { background: var(--ink-2); color: var(--bone); }
.contact-card--light { background: var(--white); border: 1px solid var(--line); }
.contact-card h2 { font-size: 20px; letter-spacing: -.02em; margin-bottom: 20px; }
.channel__label { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,239,.55); font-weight: 600; }
.channel__value { display: inline-block; font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--bone); margin-top: 6px; }
.channel__value:hover { color: var(--accent); }
.channel__note { font-size: 13.5px; color: var(--on-dark-faint); margin-top: 4px; }
.channels { display: flex; flex-direction: column; gap: 20px; }

.steps-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.steps-list li { display: flex; gap: 14px; }
.steps-list b {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--peach); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: var(--display);
}
.steps-list span { font-size: 14.5px; line-height: 1.6; color: var(--body); }

.lift { position: relative; z-index: 1; }
.lift__inner { margin-top: clamp(-96px, -6vw, -56px); display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); align-items: start; }
.lift__inner > * { min-width: 0; }

/* --------------------------------------------------------------- team cards */

.person__frame {
  position: relative; width: 100%; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-2);
}
.person__frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.person h3 { font-size: 18px; letter-spacing: -.015em; margin-top: 16px; }
.person__role { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.person .pill-row { margin-top: 12px; }
.person .pill-tag { background: var(--white); font-size: 11px; }

/* ----------------------------------------------------------- consent */

.consent {
  position: fixed;
  left: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 60;                      /* above the back-to-top button */
  width: min(460px, calc(100vw - 48px));

  background: var(--ink);
  color: var(--bone);
  border: 1px solid rgba(247,244,239,.16);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: 0 24px 60px rgba(4, 26, 30, .38);
  display: block;

  animation: consent-in .32s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes consent-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.consent__title {
  font-family: var(--display); font-size: 18px; font-weight: 700;
  letter-spacing: -.015em; margin: 0;
}
.consent__text {
  font-size: 14px; line-height: 1.65;
  color: rgba(247,244,239,.68); margin: 10px 0 0;
}
.consent__text a { color: var(--bone); text-decoration: underline; text-underline-offset: 2px; }
.consent__text a:hover { color: var(--accent); }

/* Both choices carry equal weight — refusing is as easy as accepting. */
.consent__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.consent__actions .btn { flex: 1 1 auto; }

/* The banner and the back-to-top button share the bottom of the screen. */
body.consent-open .to-top { opacity: 0; visibility: hidden; pointer-events: none; }

/* A button that reads as a link, for the footer's "Cookie settings". */
.linkish {
  background: none; border: 0; padding: 0;
  font: inherit; color: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.linkish:hover { color: var(--accent); }

@media (max-width: 560px) {
  .consent { left: 16px; right: 16px; width: auto; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); padding: 22px; }
  .consent__actions .btn { flex: 1 1 100%; }
}

/* --------------------------------------------------------- back-to-top */

.to-top {
  position: fixed;
  right: 24px;
  /* clear the home indicator on phones */
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 40;

  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(4, 26, 30, .22);

  /* hidden until the reader has scrolled; visibility keeps it out of the
     tab order while it is not offered */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease,
              background .18s ease, color .18s ease, border-color .18s ease;
}

.to-top svg { display: block; }

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-3px);
}

.to-top:active { transform: translateY(0); }

@media (max-width: 600px) {
  .to-top { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); width: 44px; height: 44px; }
}

/* ------------------------------------------------------------------- footer */

.site-footer {
  background: var(--ink-3); color: var(--bone);
  padding: clamp(48px, 6vw, 80px) 0 0;
  margin-top: var(--section-lg);
}
.site-footer__top {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; gap: 40px;
  /* Explicit tracks: the brand block plus the four link columns. */
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  align-items: start;
}
.site-footer__top > * { min-width: 0; }

/* The brand block is the tall one, so let it run down both rows and put the
   call to action in the space that used to sit empty beside it. */
.site-footer__brand { grid-row: 1 / 3; }

.footer-cta {
  grid-column: 2 / -1;
  grid-row: 2;
  align-self: end;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  background: rgba(247,244,239,.04);
  border: 1px solid rgba(247,244,239,.14);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}
.footer-cta > * { min-width: 0; }
.footer-cta h3 {
  font-family: var(--display); font-size: 20px; font-weight: 700;
  letter-spacing: -.015em; color: var(--bone); margin: 0;
}
.footer-cta p {
  font-size: 14.5px; line-height: 1.6; color: rgba(247,244,239,.62);
  margin: 8px 0 0; max-width: 46ch;
}
.footer-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-cta__actions .btn { white-space: nowrap; }
.footer-cta__mail { font-size: 13.5px; color: rgba(247,244,239,.55); }
.footer-cta__mail:hover { color: var(--accent); }

.footer-pay { display: flex; align-items: center; gap: 12px; }
.footer-pay__label {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: rgba(247,244,239,.45); white-space: nowrap;
}
.footer-pay img { display: block; height: 26px; width: auto; }
.site-footer__brand p { font-size: 15px; line-height: 1.7; color: rgba(247,244,239,.6); margin: 20px 0 0; max-width: 34ch; }
.footer-brand { display: flex; align-items: center; gap: 11px; color: var(--bone); }
.footer-brand:hover { color: var(--bone); }
.footer-brand span { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }

.mini-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.mini-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(247,244,239,.72); border: 1px solid rgba(247,244,239,.2);
  border-radius: var(--pill); padding: 7px 12px;
}
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(247,244,239,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.socials a svg { display: block; }
.socials a:hover { transform: translateY(-2px); }
.socials a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* The address block's phone link. Without an explicit rule it falls through to
   the global a:hover and turns near-black on the dark footer. */
.site-footer address a {
  color: rgba(247,244,239,.72);
  border-bottom: 1px solid rgba(247,244,239,.24);
  padding-bottom: 2px;
}
.site-footer address a:hover { color: var(--accent); border-color: var(--accent); }

.site-footer h4 {
  font-family: var(--display); font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 18px; color: var(--accent);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.site-footer ul a { font-size: 14.5px; color: rgba(247,244,239,.72); }
.site-footer ul a:hover { color: var(--accent); }

.site-footer__base {
  max-width: var(--shell); margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 24px var(--gutter);
  border-top: 1px solid rgba(247,244,239,.12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13.5px; color: rgba(247,244,239,.55);
}
.site-footer__base a { color: rgba(247,244,239,.55); }
.site-footer__base a:hover { color: var(--accent); }

@media (max-width: 1040px) {
  .site-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .site-footer__brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-cta { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 700px) {
  .footer-cta { padding: 24px; }
  .footer-cta__actions { width: 100%; }
  .footer-cta__actions .btn { width: 100%; }
}
@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: minmax(0, 1fr); }
  .site-footer__base { justify-content: flex-start; gap: 18px; }
  .footer-pay { order: 3; }
}

/* --------------------------------------------------------------- utilities */

.mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-22 { margin-top: 22px; }
.mt-26 { margin-top: 26px; } .mt-32 { margin-top: 32px; } .mt-34 { margin-top: 34px; }
.mt-36 { margin-top: 36px; } .mt-40 { margin-top: 40px; } .mt-44 { margin-top: 44px; }
.mt-48 { margin-top: 48px; } .mt-56 { margin-top: 56px; }
.center-cta { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }

/* -------------------------------------------------------- legal pages */
  .legal { max-width: 78ch; }
  .legal h2 { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.02em; margin-top: 44px; scroll-margin-top: 110px; }
  .legal h2:first-of-type { margin-top: 0; }
  .legal p, .legal li { font-size: 15.5px; line-height: 1.75; color: var(--body); }
  .legal p { margin: 14px 0 0; }
  .legal ul { margin: 14px 0 0; padding-left: 22px; }
  .legal li { margin-top: 8px; }
  .legal a { text-decoration: underline; text-underline-offset: 2px; }
  .legal-toc {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
    padding: 24px; margin-bottom: 8px;
  }
  .legal-toc h2 { font-family: var(--text); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; font-weight: 600; }
  .legal-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
  .legal-toc a { font-size: 14.5px; color: var(--ink); text-decoration: none; }
  .legal-toc a:hover { color: var(--accent-deep); text-decoration: underline; }
  .legal-updated { font-size: 13.5px; color: var(--muted); }

/* 404 */
.page-404 { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; padding: clamp(64px, 10vw, 140px) 0; }
.page-404 .code { font-family: var(--display); font-size: clamp(72px, 14vw, 150px); font-weight: 700; letter-spacing: -.05em; line-height: .9; color: var(--accent); }

@media (max-width: 700px) {
  .field input, .field textarea { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .btn:hover, .card:hover, .socials a:hover, .case-card:hover { transform: none; }
  .to-top, .to-top.is-visible, .to-top:hover { transform: none; }
  .consent { animation: none; }
  .case:hover .case__frame img, .case-card:hover .case-card__media img { transform: none; }
}

@media print {
  .site-header, .site-footer, .marquee, .btn, .nav-toggle, .to-top, .consent { display: none !important; }
  body { background: #fff; }
}
