/* ============================================================
   GTO Digital — Design Tokens
   ============================================================ */
:root {
  color-scheme: dark light;

  /* Brand (sampled from logo mark) */
  --red: #d7472c;
  --red-dark: #b23a22;
  --red-tint: #f4d9d0;
  --blue: #5d7c93;
  --blue-dark: #466174;
  --blue-tint: #dbe4ea;

  /* Neutrals */
  --ink: #0c0c0d;
  --ink-soft: #17161a;
  --ink-line: rgba(245, 242, 236, 0.14);
  --paper: #f5f2ec;
  --paper-soft: #ece5d7;
  --paper-line: rgba(12, 12, 13, 0.12);
  --white: #fdfcfa;

  /* Text */
  --text-on-dark: #f5f2ec;
  --text-on-dark-muted: rgba(245, 242, 236, 0.68);
  --text-on-light: #17161a;
  --text-on-light-muted: rgba(23, 22, 26, 0.64);

  /* Type */
  --font-display: "Syne", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --fs-h1: clamp(1.85rem, 3.6vw + 1.05rem, 4.75rem);
  --fs-h2: clamp(2rem, 2.4vw + 1.2rem, 3.25rem);
  --fs-h3: clamp(1.35rem, 0.8vw + 1.1rem, 1.75rem);
  --fs-lead: clamp(1.05rem, 0.4vw + 0.95rem, 1.3rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8125rem;

  /* Spacing (8px rhythm) */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  hyphens: auto;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--sp-5);
  }
}

.section {
  padding-block: var(--sp-7);
}

.section--tight {
  padding-block: var(--sp-6);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--red);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--text-on-light-muted);
  max-width: 46ch;
}

.lead.on-dark {
  color: var(--text-on-dark-muted);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-fg: var(--white);
  --btn-bg: var(--red);
  --btn-bg-hover: var(--red-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 1em;
  height: 1em;
  flex: none;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text-on-dark);
  border-color: var(--ink-line);
}

.btn--ghost:hover {
  --btn-bg-hover: rgba(245, 242, 236, 0.08);
  border-color: rgba(245, 242, 236, 0.4);
}

.btn--block {
  width: 100%;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 13, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 76px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65em;
  text-decoration: none;
  flex: none;
}

.nav__brand img {
  height: 34px;
  width: auto;
}

.nav__brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}

.nav__links a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s var(--ease);
}

.nav__links a:hover {
  color: var(--text-on-dark);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__phone {
  display: none;
  align-items: center;
  gap: 0.5em;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-small);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.nav__phone svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
}

.nav__phone:hover {
  color: var(--text-on-dark-muted);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--text-on-dark);
  cursor: pointer;
}

.nav__toggle svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 960px) {
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: inline-flex;
  }
  .nav__toggle {
    display: none;
  }
}

@media (min-width: 1180px) {
  .nav__phone {
    display: inline-flex;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--sp-1);
  padding-block: var(--sp-3);
  border-top: 1px solid var(--ink-line);
}

.mobile-menu[data-open="true"] {
  display: flex;
}

.mobile-menu a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 600;
  padding: var(--sp-2) 0.25rem;
  font-size: 1rem;
}

.mobile-menu .btn {
  margin-top: var(--sp-2);
  align-self: flex-start;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: var(--red);
  font-weight: 700;
}

.mobile-menu__phone svg {
  width: 20px;
  height: 20px;
  flex: none;
}

@media (min-width: 960px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: clip;
  padding-block: var(--sp-7) var(--sp-8);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 85% 0%, rgba(215, 71, 44, 0.22), transparent 70%),
    radial-gradient(45% 40% at 0% 100%, rgba(93, 124, 147, 0.22), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--sp-5);
  }
}

.hero__copy h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  margin-block: var(--sp-2) var(--sp-3);
}

/* Past 1024px the hero switches to a two-column layout, so the heading's
   available width is capped by its grid column (which itself plateaus once
   .container hits max-width) rather than by the full viewport. --fs-h1 scales
   with vw for the single-column layout below this breakpoint, so it must be
   overridden here with a flatter, capped scale to avoid outgrowing the column. */
@media (min-width: 1024px) {
  .hero__copy h1 {
    font-size: clamp(2.65rem, 4.82vw - 0.43rem, 3.1rem);
  }
}

.hero__copy h1 em {
  font-style: normal;
  color: var(--red);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--ink-line);
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-small);
  color: var(--text-on-dark-muted);
  font-weight: 600;
}

.hero__meta-item svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--red);
}

/* ---- Hero mockup graphic ---- */
.hero__visual {
  position: relative;
  isolation: isolate;
}

.mock-browser {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform: rotate(1.5deg);
  border: 1px solid var(--paper-line);
}

.mock-browser__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.1rem;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--paper-line);
}

.mock-browser__dots {
  display: flex;
  gap: 6px;
}

.mock-browser__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(23, 22, 26, 0.18);
}

.mock-browser__url {
  flex: 1;
  background: var(--white);
  border-radius: 999px;
  height: 24px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  padding-inline: 0.75rem;
  color: var(--text-on-light-muted);
  font-weight: 600;
}

.mock-browser__body {
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.mock-hero {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.mock-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.85);
}

.mock-bar--w60 {
  width: 60%;
}

.mock-bar--w40 {
  width: 40%;
  background: rgba(245, 242, 236, 0.4);
}

.mock-bar--btn {
  margin-top: 0.4rem;
  width: 34%;
  height: 26px;
  border-radius: 999px;
  background: var(--red);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.mock-card {
  background: var(--paper-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.mock-card span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(23, 22, 26, 0.16);
}

.mock-card span:first-child {
  width: 60%;
  height: 22px;
  border-radius: 6px;
  background: var(--blue);
}

.chip-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55em 1em;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-small);
  box-shadow: 0 18px 30px -14px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.chip-float--red {
  background: var(--red);
  color: var(--white);
  top: -14px;
  left: -14px;
  transform: rotate(-4deg);
}

.chip-float--dark {
  background: var(--ink);
  color: var(--text-on-dark);
  border: 1px solid var(--ink-line);
  bottom: 18px;
  left: -20px;
  transform: rotate(-2deg);
}

.chip-float--blue {
  background: var(--blue);
  color: var(--white);
  bottom: -18px;
  right: 6px;
  transform: rotate(3deg);
}

@media (max-width: 560px) {
  .chip-float {
    font-size: 0.7rem;
    padding: 0.45em 0.8em;
  }
  .chip-float--red {
    left: 4px;
  }
  .chip-float--dark {
    left: 4px;
  }
  .chip-float--blue {
    right: -4px;
  }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--ink-soft);
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid var(--ink-line);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  justify-content: center;
  padding-block: var(--sp-3);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-strip__item svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex: none;
}

/* ============================================================
   Section headers
   ============================================================ */
.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-5);
}

.section-head h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-top: var(--sp-2);
  text-transform: uppercase;
}

/* ============================================================
   Services — bento grid
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-3);
}

@media (min-width: 720px) {
  .bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(180px, auto);
  }
  .bento__card--wide {
    grid-column: span 2;
  }
  .bento__card--tall {
    grid-row: span 2;
  }
}

.bento__card {
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -24px rgba(12, 12, 13, 0.25);
  border-color: rgba(12, 12, 13, 0.2);
}

.bento__card--dark {
  background: var(--ink);
  color: var(--text-on-dark);
  border-color: var(--ink-line);
}

.bento__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-tint);
  color: var(--red-dark);
  flex: none;
}

.bento__card--dark .bento__icon {
  background: rgba(215, 71, 44, 0.18);
  color: var(--red);
}

.bento__icon svg {
  width: 22px;
  height: 22px;
}

.bento__card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: none;
}

.bento__card p {
  color: var(--text-on-light-muted);
  font-size: var(--fs-small);
}

.bento__card--dark p {
  color: var(--text-on-dark-muted);
}

.bento__card--cta {
  background: var(--blue);
  color: var(--white);
  justify-content: space-between;
}

.bento__card--cta h3 {
  font-size: var(--fs-h3);
}

.bento__card--cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
}

.bento__card--cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s var(--ease);
}

.bento__card--cta a:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   Why us
   ============================================================ */
.why {
  background: var(--ink);
  color: var(--text-on-dark);
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-5);
}

@media (min-width: 960px) {
  .why__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

.why__statement h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: var(--sp-2);
}

/* Same fix as .hero__copy h1: past 960px this heading sits in a fixed,
   narrower grid column (capped once .container hits max-width), so the
   viewport-driven --fs-h2 scale must be replaced with one that matches. */
@media (min-width: 960px) {
  .why__statement h2 {
    font-size: clamp(1.95rem, 3.9vw - 0.2rem, 2.6rem);
  }
}

.why__list {
  display: grid;
  gap: var(--sp-3);
}

.why__list li {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
}

.why__list svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex: none;
  margin-top: 2px;
}

.why__list h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35em;
}

.why__list p {
  color: var(--text-on-dark-muted);
  font-size: var(--fs-small);
}

/* ============================================================
   Process
   ============================================================ */
.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-4);
  counter-reset: step;
}

@media (min-width: 720px) {
  .process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.process__step {
  position: relative;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--paper-line);
}

.process__step .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  margin-bottom: var(--sp-2);
}

.process__step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.process__step p {
  color: var(--text-on-light-muted);
  font-size: var(--fs-small);
}

/* ============================================================
   Contact / quote
   ============================================================ */
.contact {
  background: var(--ink-soft);
  color: var(--text-on-dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-5);
}

@media (min-width: 960px) {
  .contact__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

.contact__copy h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  text-transform: uppercase;
  margin-top: var(--sp-2);
}

/* Same fix as .hero__copy h1 — this column is narrower than .why__statement's
   (0.85fr vs 0.9fr), so it needs a slightly smaller capped scale. */
@media (min-width: 960px) {
  .contact__copy h2 {
    font-size: clamp(1.85rem, 3.65vw - 0.2rem, 2.4rem);
  }
}

.contact__points {
  margin-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}

.contact__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65em;
  font-size: var(--fs-small);
  color: var(--text-on-dark-muted);
}

.contact__points svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
  margin-top: 2px;
}

.form-card {
  background: var(--paper);
  color: var(--text-on-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}

@media (min-width: 640px) {
  .form-card {
    padding: var(--sp-5);
  }
}

.form-row {
  display: grid;
  gap: var(--sp-3);
}

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  margin-bottom: var(--sp-3);
}

.field label {
  font-size: var(--fs-small);
  font-weight: 700;
}

.field .hint {
  font-weight: 500;
  color: var(--text-on-light-muted);
  text-transform: none;
  letter-spacing: normal;
}

.field input,
.field textarea {
  border: 1.5px solid var(--paper-line);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.85em 1em;
  font: inherit;
  font-size: 1rem;
  min-height: 44px;
  color: var(--text-on-light);
  transition: border-color 0.2s var(--ease);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
}

.field-required::after {
  content: " *";
  color: var(--red);
}

.form-note {
  margin-top: var(--sp-2);
  font-size: 0.8rem;
  color: var(--text-on-light-muted);
}

.form-status {
  margin-top: var(--sp-2);
  font-size: var(--fs-small);
  font-weight: 700;
  display: none;
}

.form-status[data-state="success"] {
  display: block;
  color: var(--blue-dark);
}

.form-status[data-state="error"] {
  display: block;
  color: var(--red-dark);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  padding-block: var(--sp-6) var(--sp-4);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--ink-line);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65em;
  margin-bottom: var(--sp-2);
}

.footer__brand img {
  height: 30px;
}

.footer__brand span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-on-dark);
  font-size: 1.05rem;
}

.footer__col h5 {
  font-family: var(--font-body);
  color: var(--text-on-dark);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}

.footer__col ul {
  display: grid;
  gap: 0.6rem;
}

.footer__col a {
  text-decoration: none;
  font-size: var(--fs-small);
  color: var(--text-on-dark-muted);
  transition: color 0.2s var(--ease);
}

.footer__col a:hover {
  color: var(--text-on-dark);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  font-size: 0.8rem;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
