:root {
  --ink: oklch(13.5% 0.02 240);
  --ink-2: oklch(20.5% 0.028 236);
  --navy: var(--ink);
  --navy-surface: var(--ink-2);
  --paper: oklch(97.2% 0.01 78);
  --paper-dim: oklch(94.5% 0.014 76);
  --paper-warm: oklch(92.8% 0.02 74);
  --line: oklch(87% 0.014 72);
  --text: oklch(19.5% 0.02 240);
  --text-2: oklch(44.5% 0.02 236);
  --text-3: oklch(60.5% 0.018 232);
  --brand: oklch(72% 0.15 232);
  --brand-deep: oklch(56% 0.14 232);
  --brand-glow: oklch(82% 0.12 228);
  --brand-ink: oklch(42% 0.1 228);
  --error: oklch(55% 0.19 25);
  --font-display: "Fraunces", "Times New Roman", ui-serif, serif;
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

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

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

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol,
menu {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

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

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3.5vw, 2rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.stack {
  display: flex;
  flex-direction: column;
}

/* ---------- Typography ---------- */

.font-display {
  font-family: var(--font-display);
  font-weight: 500;
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.mono {
  font-family: var(--font-mono);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

.eyebrow-on-dark {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(86% 0.02 80);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow-on-dark::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

.display-l {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.9rem, 1.6rem + 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.4rem + 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.display-m {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-s {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.text-brass {
  color: var(--brand);
}

.text-brass-deep {
  color: var(--brand-deep);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--brand {
  background: var(--brand);
  color: var(--ink);
}

.btn--brand:hover {
  background: var(--brand-glow);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark:hover {
  background: var(--brand);
  color: var(--ink);
}

.btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn--ghost-light:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--ink);
}

.btn--outline-dark {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--lg {
  padding: 1rem 1.75rem;
}

.btn--sm {
  padding: 0.875rem 1.5rem;
}

/* ---------- Forms ---------- */

.label {
  display: block;
  margin-bottom: 0.375rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.label--on-dark {
  color: rgba(255, 255, 255, 0.55);
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}

.input::placeholder,
.textarea::placeholder {
  color: var(--text-3);
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--brand-deep);
}

.input--on-dark,
.select--on-dark,
.textarea--on-dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--navy);
  color: #fff;
  padding: 0.75rem;
}

.input--on-dark::placeholder,
.textarea--on-dark::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.input--on-dark:focus,
.select--on-dark:focus,
.textarea--on-dark:focus {
  border-color: var(--brand);
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
}

/* ---------- Site shell ---------- */

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

/* ---------- Top bar ---------- */

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  padding-block: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.topbar__desk {
  display: none;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.6);
}

.topbar__links {
  display: flex;
  flex: 1 1 0%;
  flex-wrap: wrap;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem 0.75rem;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.topbar__links a:hover {
  color: var(--brand);
}

.topbar__links svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--brand);
}

.topbar__divider {
  display: none;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--brand);
  flex-shrink: 0;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--brand);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

  .topbar__divider {
    display: block;
  }

  .topbar__mobile-label {
    display: none;
  }

  .topbar__inner {
    letter-spacing: 0.22em;
  }
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.navbar__inner {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.navbar__link {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.navbar__link:hover,
.navbar__link.is-active {
  color: var(--brand);
}

.rule-link {
  position: relative;
}

.rule-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.rule-link:hover::after {
  transform: scaleX(1);
}

.navbar__cta {
  display: none;
  align-items: center;
}

.navbar__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin-right: -0.5rem;
  flex-shrink: 0;
  color: #fff;
}

.navbar__menu-btn svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .navbar__nav {
    display: flex;
  }

  .navbar__cta {
    display: flex;
  }

  .navbar__menu-btn {
    display: none;
  }
}

/* Mobile nav */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav__head img {
  height: 40px;
  width: auto;
}

.mobile-nav__close {
  padding: 0.5rem;
  color: #fff;
}

.mobile-nav__close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav__link {
  display: block;
  padding-block: 0.875rem;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-nav__foot {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.mobile-nav__foot a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-nav__foot a:hover {
  color: var(--brand);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__bg .overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink), oklch(13.5% 0.02 240 / 0.85), oklch(13.5% 0.02 240 / 0.25));
}

.hero__bg .overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink), transparent, oklch(13.5% 0.02 240 / 0.4));
}

.hero__vline {
  position: absolute;
  top: 6rem;
  bottom: 6rem;
  left: 1.5rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  display: none;
  pointer-events: none;
}

.hero__side-label {
  position: absolute;
  top: 6rem;
  left: 2rem;
  transform-origin: left;
  transform: rotate(-90deg) translateX(-100%);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.4);
  display: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

@media (min-width: 1024px) {
  .hero__vline,
  .hero__side-label {
    display: block;
  }

  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    padding-left: 4rem;
  }
}

.hero__eyebrow {
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.9rem, 1.6rem + 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero__desc {
  margin-top: 2rem;
  max-width: 46ch;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.75);
}

.hero__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.hero__meta .stars {
  color: var(--brand);
  letter-spacing: 0.05em;
}

.hero__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.25);
  display: none;
}

@media (min-width: 640px) {
  .hero__meta .dot {
    display: block;
  }
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__actions__primary {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__actions .btn--phone {
  padding: 1rem 0.5rem;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.hero__actions .btn--phone svg {
  width: 16px;
  height: 16px;
}

.hero__actions .btn--phone:hover {
  color: var(--brand);
}

.hero__actions .btn--phone .hint {
  color: rgba(255, 255, 255, 0.4);
}

.hero__stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 32rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}

.hero__stats dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

.hero__stats dd {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Quote card (hero aside) */

.quote-card {
  position: relative;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 25px 50px -12px rgba(4, 18, 26, 0.4);
  scroll-margin-top: 120px;
}

.quote-card__accent {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 64px;
  height: 64px;
  background: var(--brand);
  display: none;
}

@media (min-width: 1024px) {
  .quote-card__accent {
    display: block;
  }
}

.quote-card__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.quote-tab {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.2s ease;
}

.quote-tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}

.quote-tab[aria-selected="false"] {
  background: var(--paper-dim);
  color: var(--text-2);
}

.quote-tab[aria-selected="false"]:hover {
  color: var(--text);
}

.quote-card__body {
  padding: 1.75rem;
}

.quote-card__heading {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.quote-card__sub {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

.quote-card__anchor {
  position: absolute;
  top: 0;
  scroll-margin-top: 130px;
}

.quote-card__note {
  margin-top: 0.875rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-form .submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
}

.quote-form .submit:hover {
  background: var(--ink-2);
}

.quote-form__note {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  display: none;
}

.form-success.is-visible {
  display: block;
}

.form-success .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--brand);
  color: var(--ink);
  margin-bottom: 1rem;
}

.form-success .tick svg {
  width: 24px;
  height: 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.875rem;
  color: var(--text-2);
}

/* ---------- SweetAlert2 theme ---------- */

.swal2-container {
  --swal2-backdrop: rgba(7, 10, 15, 0.6);
}

.swal2-container .swal2-popup {
  --swal2-background: var(--paper);
  --swal2-color: var(--text);
  --swal2-border-radius: 16px;
  --swal2-outer-border-radius: 16px;
  --swal2-confirm-button-background-color: var(--brand);
  --swal2-confirm-button-color: var(--ink);
  --swal2-confirm-button-border-radius: 999px;
  font-family: var(--font-sans);
}

.swal2-container .swal2-title {
  font-family: var(--font-display);
  font-weight: 600;
}

.swal2-container .swal2-actions .swal2-confirm {
  padding: 0.7em 1.8em;
  font-weight: 600;
}

.bot-check .bot-check__hint {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  background: #F2ECE3;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-block: 1.25rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 60s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 1.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(19, 30, 38, 0.78);
  white-space: nowrap;
}

.marquee__item .sep {
  color: var(--brand);
  font-size: 14px;
  line-height: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

.section-head {
  max-width: 42rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow,
.section-head .eyebrow-on-dark {
  margin-bottom: 1rem;
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-head__desc {
  margin-top: 1.25rem;
  color: var(--text-2);
  font-size: 1rem;
}

.section-head__desc--on-dark {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--paper);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stats-grid .stat {
  background: var(--paper);
  padding: 1.75rem;
}

.stats-grid .stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stats-grid .stat__label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-2);
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Home stats band — matches compiled index/index.html */

.stats-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stats-band .stats-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1320px;
  margin-inline: auto;
  background: var(--line);
}

.stats-band .stat {
  padding: 2rem;
  text-align: center;
}

.stats-band .stat__num {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
}

.stats-band .stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

@media (min-width: 768px) {
  .stats-band .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-band .stat {
    padding: 3rem;
  }
}

.stats-band--tri .stats-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: none;
}

.stats-band--tri .stat__num {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ---------- Services grid (home) ---------- */

.services-section {
  background: var(--paper);
}

.services-head {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.services-head .eyebrow {
  margin-bottom: 1rem;
}

.services-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.services-head__desc {
  color: var(--text-2);
  align-self: end;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .services-head {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy), oklch(13.5% 0.02 240 / 0.55) 50%, transparent);
  pointer-events: none;
}

.service-card__code {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.25rem 0.625rem;
}

.service-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
  color: #fff;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
}

.service-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.75);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__link {
  color: var(--brand-deep);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ---------- UK Used Products ---------- */

.products-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.products-head {
  display: grid;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .products-head {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.products-head__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.products-head__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 36rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(13.5% 0.02 240 / 0.55) 0%,
    oklch(13.5% 0.02 240 / 0.18) 45%,
    transparent 75%
  );
  pointer-events: none;
}

.product-card__code {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.25rem 0.625rem;
}

.product-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem;
  padding-top: 3rem;
  color: #fff;
  background: linear-gradient(
    to top,
    oklch(13.5% 0.02 240 / 0.95) 0%,
    oklch(13.5% 0.02 240 / 0.6) 50%,
    transparent 100%
  );
}

.product-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #F2ECE3;
  text-shadow: 0 1px 14px oklch(13.5% 0.02 240 / 0.65);
}

.product-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #F2ECE3;
  text-shadow: 0 1px 10px oklch(13.5% 0.02 240 / 0.55);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  transition: color 0.25s ease;
}

.product-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__link {
  color: var(--brand-deep);
}

.product-card:hover .product-card__link svg {
  transform: translateX(4px);
}

.products-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .products-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.products-cta__title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}

.products-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Lanes ---------- */

.lanes-section {
  background: var(--paper);
}

.lanes-head {
  display: grid;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .lanes-head {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.lanes-head__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lanes-head__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 36rem;
}

.lanes-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .lanes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lane-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
  transition: background 0.25s ease;
}

.lane-card:hover {
  background: #fff;
}

.lane-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lane-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lane-card:hover .lane-card__media img {
  transform: scale(1.05);
}

.lane-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(13.5% 0.02 240 / 0.45), transparent 55%);
}

.lane-card__code {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #fff;
}

.lane-card__tags {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.lane-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.lane-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--text);
}

.lane-card__desc {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-2);
  flex: 1;
}

.lane-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.lane-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.lane-card:hover .lane-card__link {
  color: var(--brand-deep);
}

.lane-card:hover .lane-card__link svg {
  transform: translateX(4px);
}

/* ---------- Courier section ---------- */

.courier-section {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.courier-section__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.courier-section__desc {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.courier-section__label {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}

.courier-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .courier-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.courier-photo {
  position: relative;
}

.courier-photo__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-2);
}

.courier-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courier-photo__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(13.5% 0.02 240 / 0.6), transparent 55%);
}

.courier-photo__badge {
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 1;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.375rem 0.75rem;
}

.courier-job {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  z-index: 2;
  background: var(--paper);
  color: var(--text);
  padding: 1rem 1.25rem;
  max-width: 240px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: none;
}

@media (min-width: 768px) {
  .courier-job {
    display: block;
  }
}

.courier-job .label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
}

.courier-job .route {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.courier-job .status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: oklch(50% 0.12 150);
}

.courier-job .status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: oklch(55% 0.12 150);
}

.vehicle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.vehicle-chip {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.375rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Steps (removals) ---------- */

.steps-section {
  background: var(--paper);
}

.steps-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--paper);
  padding: 2rem;
  transition: background 0.25s ease;
}

.step-card:hover {
  background: #fff;
}

.step-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-card__num::after {
  content: "";
  flex: 0 0 2.5rem;
  height: 1px;
  background: var(--brand);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.step-card__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* ---------- Removals ---------- */

.removals-section {
  background: var(--paper-warm);
}

.removals-head {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .removals-head {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.removals-head__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.removals-head__desc {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-2);
}

.removals-head .btn {
  margin-top: 1.75rem;
}

.removals-photo {
  position: relative;
  overflow: hidden;
}

.removals-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.removals-photo:hover img {
  transform: scale(1.03);
}

.removals-photo__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.375rem 0.75rem;
}

.removals-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(13.5% 0.02 240 / 0.35), transparent 50%);
}

/* ---------- Values (why acme) ---------- */

.why-acme-section {
  background: #FAF5EE;
  color: var(--text);
}

.why-acme-section .section-head {
  max-width: none;
}

.why-acme-section .section-head__title {
  font-weight: 800;
}

.values-section {
  background: var(--ink);
  color: #fff;
}

.values-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--paper);
  padding: 2rem;
  transition: background 0.25s ease;
}

.value-card:hover {
  background: var(--paper-dim);
}

.value-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
  margin-bottom: 1.25rem;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.value-card__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* ---------- Reviews ---------- */

.reviews-section {
  background: var(--paper-dim);
}

.reviews-section .section-head {
  max-width: none;
}

.reviews-section .section-head__title {
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: var(--paper);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card__stars {
  color: var(--brand);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.review-card__text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
}

.review-card__src {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-3);
}

/* ---------- FAQ ---------- */

.faq-section {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 1.25rem;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.faq-item__icon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand-ink);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__body {
  margin-top: 0.75rem;
  max-width: 48rem;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.dg-notice {
  margin-top: 3.5rem;
  border-left: 2px solid var(--brand);
  background: var(--paper-dim);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .dg-notice {
    padding: 2rem;
  }
}

.dg-notice .eyebrow {
  margin-bottom: 0.75rem;
}

.dg-notice p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

.dg-notice strong {
  color: var(--text);
}

/* ---------- Contact ---------- */

.contact-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-section__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.contact-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: oklch(13.5% 0.02 240 / 0.8);
}

.contact-grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-section__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.contact-list {
  margin-top: 2.5rem;
  display: grid;
}

.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease;
}

.contact-row:hover,
.contact-row:hover .contact-row__label,
.contact-row:hover .contact-row__value {
  color: var(--brand);
}

.contact-row__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.contact-row__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  word-break: break-word;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .contact-row__value {
    font-size: 1.125rem;
  }
}

.contact-address {
  margin-top: 2rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
}

.contact-form-card {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: oklch(20.5% 0.028 236 / 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-details {
  display: grid;
  gap: 1.75rem;
}

.contact-details__group {
  display: grid;
  gap: 0.75rem;
}

.contact-details__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

.contact-details a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
  display: block;
}

.contact-details a:hover {
  color: var(--brand);
}

.contact-details__addr {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form-card .submit {
  width: 100%;
  justify-content: center;
  background: var(--brand);
  color: var(--ink);
}

.contact-form-card .submit:hover {
  background: var(--brand-deep);
}

/* ---------- Application form ---------- */

.apply-card {
  display: grid;
  gap: 1.25rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .apply-card {
    padding: 2.25rem;
  }
}

.apply-grid {
  display: grid;
  gap: 1.25rem;
}

.apply-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .apply-grid--2 {
    grid-template-columns: 1fr;
  }
}

.apply-card .submit {
  justify-content: center;
}

.apply-card__hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-3);
}

.file-input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  cursor: pointer;
}

.file-input::file-selector-button {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0.55rem 0.9rem;
  margin-right: 1rem;
  cursor: pointer;
}

.file-input:focus {
  border-color: var(--brand-deep);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.site-footer__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  opacity: 0.4;
}

.site-footer__logo {
  display: none;
  justify-content: center;
  padding-block: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__logo img {
  height: 32px;
  width: auto;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .site-footer__logo {
    display: flex;
  }
}

.site-footer__top {
  display: grid;
  gap: 3rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.site-footer__brand {
  max-width: 22rem;
}

.site-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__contact {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.site-footer__contact .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.site-footer__contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  display: block;
}

.site-footer__contact a:hover {
  color: var(--brand);
}

.site-footer__contact a[href^="tel:"] {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  font-size: 1.25rem;
}

@media (min-width: 640px) {
  .site-footer__contact a[href^="tel:"] {
    font-size: 1.5rem;
  }
}

.site-footer__contact .sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.site-footer__links {
  display: grid;
  gap: 0.625rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--brand);
}

.site-footer__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.site-footer__facts-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__facts-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer__fact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.site-footer__facts-row p:not(.site-footer__fact-label) {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__facts-row address {
  font-style: normal;
}

.footer-mail {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-mail:hover {
  color: var(--brand);
}

.site-footer__facts .fact .k {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__facts .fact .v {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}

/* ---------- Service page hero ---------- */

.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.service-hero__bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--ink), oklch(13.5% 0.02 240 / 0.9), oklch(13.5% 0.02 240 / 0.4));
}

.service-hero__bg .overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink), transparent);
}

.service-hero__vline {
  position: absolute;
  top: 6rem;
  bottom: 6rem;
  left: 1.5rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  display: none;
  pointer-events: none;
}

.service-hero__inner {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

@media (min-width: 1024px) {
  .service-hero__vline {
    display: block;
  }

  .service-hero__inner {
    padding-left: 4rem;
  }
}

.service-hero__eyebrow {
  margin-bottom: 1.5rem;
}

.service-hero__code {
  display: inline-block;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.25rem;
}

.service-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.4rem + 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 64rem;
}

.service-hero__subtitle {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-glow);
  max-width: 36rem;
}

.service-hero__desc {
  margin-top: 2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.75);
}

.feature-chips {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.375rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
}

.feature-chip::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--brand);
  flex-shrink: 0;
}

.service-hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-hero__phone-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .service-hero__phone-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-hero__stat {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.875rem 1rem;
}

.service-hero__stat .num {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
}

.service-hero__stat .label {
  margin-top: 0.375rem;
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

/* Departures / status board */

.status-board {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-board__inner {
  padding-block: 2rem;
}

.status-board__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.status-board__head .live {
  color: oklch(65% 0.12 150);
}

.status-board__head .live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: oklch(65% 0.12 150);
  margin-right: 0.5rem;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-list {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .status-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .status-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.status-row {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.875rem 1rem;
  display: grid;
  gap: 0.25rem;
}

.status-row .flight {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--brand);
}

.status-row .route {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.status-row .state {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Service page body sections ---------- */

.overview-grid {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.overview-note {
  margin-top: 2rem;
  border-left: 2px solid var(--brand);
  background: var(--paper-dim);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

.overview-note a {
  text-decoration: underline;
}

.overview-note a:hover {
  color: var(--text);
}

.overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.air-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .air-banner {
    height: 420px;
  }
}

.air-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.air-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(13.5% 0.02 240 / 0.8), oklch(13.5% 0.02 240 / 0.2) 55%, transparent);
}

.air-banner__inner {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem clamp(1.25rem, 3.5vw, 2rem) 3rem;
  z-index: 1;
}

.air-banner__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 42rem;
}

.checklist {
  border-top: 1px solid var(--line);
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
}

.checklist li .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--brand);
  color: var(--ink);
}

.checklist li .check svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.checklist li span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-2);
}

.detail-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail-card {
  background: var(--paper);
  padding: 2rem;
  transition: background 0.25s ease;
}

.detail-card:hover {
  background: #fff;
}

.in-detail-warm {
  background: #EFE6D9;
}

.in-detail-warm .detail-grid {
  background: #EFE6D9;
}

.in-detail-warm .detail-card {
  background: #FAF5EE;
}

.detail-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
  margin-bottom: 0.75rem;
}

.detail-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

.detail-card__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

/* Why choose (service) */

.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card .rule {
  width: 2.5rem;
  height: 1px;
  background: var(--brand);
  margin-bottom: 1.25rem;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.why-card__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Other services (service page) */

.other-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 640px) {
  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .other-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.other-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 1.5rem;
  transition: background 0.25s ease;
}

.other-card:hover {
  background: #fff;
}

.other-card__code {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
}

.other-card__title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

.other-card__desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-2);
}

.other-card__arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 16px;
  height: 16px;
  color: var(--text-2);
  opacity: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.other-card:hover .other-card__arrow {
  opacity: 1;
  color: var(--brand-deep);
}

/* ---------- Legal pages ---------- */

.legal-hero {
  background: var(--ink);
  color: #fff;
}

.legal-hero__inner {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.legal-body {
  background: var(--paper);
}

.legal-body__inner {
  max-width: 46rem;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-body h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-3);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.legal-body li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-2);
}

.legal-body li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 0.55em;
}

.legal-body a {
  text-decoration: underline;
  color: var(--text);
}

.legal-body a:hover {
  color: var(--brand-deep);
}

.legal-body strong {
  color: var(--text);
}

/* ---------- About page ---------- */

.about-stats {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}

.about-stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.about-stat .label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  max-width: 560px;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(16px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 640px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 560px;
  }
}

.cookie-banner p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-banner p a {
  text-decoration: underline;
  color: var(--brand);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.cookie-banner__actions .accept {
  background: var(--brand);
  color: var(--ink);
}

.cookie-banner__actions .accept:hover {
  background: var(--brand-glow);
}

.cookie-banner__actions .reject {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cookie-banner__actions .reject:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ---------- WhatsApp float ---------- */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 65;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: oklch(60% 0.18 160);
  color: #fff;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: oklch(55% 0.18 160);
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.7s ease-out both;
}

.animate-scale-in {
  animation: scale-in 0.7s ease-out both;
}

/* ---------- Utilities ---------- */

.u-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.u-list-reset {
  list-style: none;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.bg-ink {
  background: var(--ink);
}

.bg-paper {
  background: var(--paper);
}

.bg-paper-dim {
  background: var(--paper-dim);
}

.bg-paper-warm {
  background: var(--paper-warm);
}

.bg-cream {
  background: #FAF5EE;
}

.text-white {
  color: #fff;
}

/* CTA band (service pages) */

.cta-band {
  background: var(--paper-dim);
  border-top: 1px solid var(--line);
}

.cta-band__inner {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.cta-band__row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-band__row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ---------- Careers ---------- */

/* Department cards */
.dept-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: 2rem;
  transition: background 0.25s ease;
}

.dept-card:hover {
  background: #fff;
}

.in-detail-warm .dept-card {
  background: #FAF5EE;
}

.in-detail-warm .dept-card:hover {
  background: #fff;
}

.dept-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
  margin-bottom: 0.75rem;
}

.dept-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

.dept-card__meta {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-3);
}

.dept-card__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

.dept-card__btn {
  margin-top: auto;
  padding-top: 1.5rem;
  align-self: flex-start;
}

/* Careers modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4, 18, 26, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  overflow-y: auto;
  background: #FAF5EE;
  border: 1px solid #E4D8C4;
  box-shadow: 0 24px 64px rgba(4, 18, 26, 0.3);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #DCCDB4;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal__close:hover {
  background: var(--ink);
  color: var(--paper);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__head {
  padding: 2rem 4.5rem 1.5rem 2rem;
  border-bottom: 1px solid #E4D8C4;
}

.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-top: 0.5rem;
}

.modal__head-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

.modal__body {
  padding: 1.5rem 2rem 2rem;
}

.modal__job {
  padding: 1.5rem 0;
  border-bottom: 1px solid #E4D8C4;
}

.modal__job:last-child {
  border-bottom: 0;
}

.modal__job-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.modal__job-sub {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
}

.modal__label {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-deep);
}

.modal__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

.modal__list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.modal__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-2);
}

.modal__list li + li {
  margin-top: 0.5rem;
}

.modal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--brand);
}

.modal__group-head {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text);
}

.modal__foot {
  padding: 1.5rem 2rem;
  border-top: 1px solid #E4D8C4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
