/* ============================================================
   TINO LYONNE GROUP — global styles
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-elev: #ffffff;
  --fg: #0a0a0a;
  --fg-muted: #525252;
  --fg-faint: #a3a3a3;
  --line: #e5e5e5;
  --line-soft: #f0f0f0;
  --accent: #2B4FE0;
  --accent-hover: #1e3fc7;
  --accent-tint: rgba(43, 79, 224, 0.08);
  --danger: #b91c1c;

  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

  --maxw: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);

  --radius-sm: 6px;
  --radius: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.section--first {
  border-top: none;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.section__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

.section__num {
  color: var(--fg-faint);
  margin-left: auto;
}

.section__title {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 22ch;
  text-wrap: balance;
}

/* ============================================================
   Header
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}

.header[data-scrolled='true'] {
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg);
  white-space: nowrap;
}

.logo__sub {
  color: var(--fg-faint);
  margin-left: 6px;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.15s var(--ease);
  position: relative;
}

.nav__link:hover {
  color: var(--fg);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--fg);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}

.nav__cta:hover {
  background: #262626;
}

.nav__cta svg {
  width: 12px;
  height: 12px;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.nav__toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

@media (max-width: 720px) {
  .nav { display: none; gap: 18px; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: 16px var(--pad-x) 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__cta { justify-content: center; padding: 12px; }
  .nav__toggle { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding-top: clamp(72px, 12vw, 140px);
  padding-bottom: clamp(72px, 12vw, 140px);
  overflow: hidden;
  border-top: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.hero__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12); }
  50%      { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0.04); }
}

.hero__h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 14ch;
  text-wrap: balance;
}

.hero__h1 em {
  font-style: normal;
  color: var(--fg-muted);
  font-weight: 400;
}

.hero__lede {
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--fg-muted);
  max-width: 56ch;
  line-height: 1.5;
}

.hero__lede strong {
  color: var(--fg);
  font-weight: 500;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), transform 0.15s var(--ease), border-color 0.15s var(--ease);
  white-space: nowrap;
}

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

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--fg);
}

.btn--dark {
  background: var(--fg);
  color: #fff;
}
.btn--dark:hover {
  background: #262626;
}

.btn svg {
  width: 14px;
  height: 14px;
}

.hero__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(48px, 8vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__spec {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__spec:last-child { border-right: none; }

.hero__spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.hero__spec-value {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

@media (max-width: 720px) {
  .hero__specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__spec {
    border-bottom: 1px solid var(--line);
  }
  .hero__spec:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .hero__spec:nth-child(even) {
    border-right: none;
  }
  .hero__spec:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ============================================================
   Services
   ============================================================ */

.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.services__intro {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 48ch;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .services__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service {
  padding: 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-elev);
  transition: background 0.2s var(--ease);
  min-height: 280px;
}

.service:last-child {
  border-right: none;
}

.service:hover {
  background: var(--bg-soft);
}

.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
}

.service__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: auto;
}

.service__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.service__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.service__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

.service__item::before {
  content: '—';
  color: var(--fg-faint);
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .service:last-child { border-bottom: none; }
}

/* ============================================================
   About
   ============================================================ */

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 60ch;
}

.about__copy p strong {
  color: var(--fg);
  font-weight: 500;
}

.about__sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.about__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg);
  font-size: 13px;
}

.about__row-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-faint);
  flex-shrink: 0;
}

.about__row-value {
  color: var(--fg);
  text-align: right;
  font-weight: 500;
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
  }
  .about__sidebar {
    position: static;
  }
}

/* ============================================================
   How we work
   ============================================================ */

.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process__step {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
  position: relative;
}

.process__step:hover {
  background: var(--bg-soft);
}

.process__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.05em;
}

.process__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.process__desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 60ch;
}

@media (max-width: 720px) {
  .process__step {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 0;
  }
}

/* ============================================================
   Contact
   ============================================================ */

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__company {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
}

.contact__address {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.6;
  font-style: normal;
}

.contact__address span {
  display: block;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg);
  font-size: 14px;
  transition: background 0.15s var(--ease);
}

.contact__detail:hover {
  background: var(--bg-soft);
}

.contact__detail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-faint);
  width: 64px;
  flex-shrink: 0;
}

.contact__detail-value {
  color: var(--fg);
  font-weight: 500;
}

.contact__detail-arrow {
  margin-left: auto;
  color: var(--fg-faint);
  transition: color 0.15s var(--ease), transform 0.15s var(--ease);
}

.contact__detail:hover .contact__detail-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.contact__hours {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact__hours::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

/* Form */

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 4px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .form__row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.field__opt {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field__input,
.field__textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  color: var(--fg);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--fg-faint);
}

.field__input:hover,
.field__textarea:hover {
  border-color: #d4d4d4;
}

.field__input:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}

.field[data-error='true'] .field__input,
.field[data-error='true'] .field__textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.field__error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--danger);
  letter-spacing: 0.02em;
  display: none;
  margin-top: 2px;
}

.field[data-error='true'] .field__error {
  display: block;
}

.form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.form__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.02em;
}

.form__submit {
  background: var(--fg);
  color: #fff;
  border-radius: var(--radius-sm);
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s var(--ease), opacity 0.15s var(--ease);
}

.form__submit:hover {
  background: #262626;
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: progress;
}

.form__submit svg {
  width: 14px;
  height: 14px;
}

/* Thank-you state */
.form__thanks {
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0 16px;
}

.form__thanks-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
}

.form__thanks-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

.form__thanks-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.form__thanks-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 48ch;
  line-height: 1.55;
}

.form__thanks-reset {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 1px;
}

.form[data-state='success'] .form__inner { display: none; }
.form[data-state='success'] .form__thanks { display: flex; }

@media (max-width: 900px) {
  .contact__layout { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
  background: var(--bg-soft);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--fg);
}

.footer__brand-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer__addr {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
  line-height: 1.6;
  max-width: 36ch;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer__link {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.15s var(--ease);
}

.footer__link:hover { color: var(--fg); }

.footer__bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-faint);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   Legal pages
   ============================================================ */

.legal {
  padding: clamp(20px, 2vw, 28px) 0 clamp(64px, 10vw, 120px);
  border-top: 1px solid var(--line);
}

.legal__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.legal__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

.legal__title {
  font-size: clamp(32px, 4.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal__updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

.legal__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.legal__toc {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.legal__toc a {
  color: var(--fg-muted);
  transition: color 0.15s var(--ease);
}

.legal__toc a:hover { color: var(--fg); }

@media (max-width: 960px) {
  .legal__layout { grid-template-columns: 1fr; }
  .legal__toc { display: none; }
}

.legal__body {
  max-width: 70ch;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.65;
}

.legal__body h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 48px 0 12px;
  scroll-margin-top: 96px;
}

.legal__body h2:first-child { margin-top: 0; }

.legal__body p {
  margin: 0 0 14px;
  color: var(--fg-muted);
}

.legal__body ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--fg-muted);
}

.legal__body li {
  margin-bottom: 6px;
}

.legal__body strong {
  color: var(--fg);
  font-weight: 500;
}

.legal__body a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s var(--ease);
}

.legal__body a:hover {
  border-color: var(--accent);
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  transition: color 0.15s var(--ease);
}

.legal__back:hover { color: var(--fg); }

/* ============================================================
   Tiny utilities
   ============================================================ */

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
