/* ==========================================================================
   MEN & VAN LTD — site stylesheet
   Visual language drawn from UK road signage: motorway blue panels,
   number-plate yellow CTAs, asphalt darks, dashed road-line motifs.
   ========================================================================== */

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  /* Palette */
  --ink: #14171c;
  --asphalt: #222833;
  --navy: #12243c;          /* deep premium navy — dark sections */
  --navy-deep: #0d1a2d;     /* deepest — header & footer */
  --sign-blue: #12569b;     /* brand blue, richer & less electric */
  --sign-blue-deep: #0d3d70;
  --plate-yellow: #f6c31c;
  --plate-yellow-bright: #ffd23e;
  --wa-green: #25d366;        /* WhatsApp brand — used only for WhatsApp CTAs */
  --wa-green-bright: #48e484;
  --concrete: #f3f1ec;
  --surface: #ffffff;
  --surface-alt: #f8f5ef;   /* soft off-white — quieter light sections */
  --white: #ffffff;
  --grey: #8a93a0;
  --grey-soft: #59626f;     /* passes AA on light backgrounds */
  --grey-line: #e4e0d7;
  --border: #e7e3da;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "SF Mono", "Consolas", "Liberation Mono", monospace;

  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-2xl: clamp(1.875rem, 1.4rem + 2.4vw, 2.75rem);
  --text-display: clamp(2.375rem, 1.6rem + 4vw, 4.25rem);

  /* Spacing — 8pt scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Elevation — 3-tier soft scale */
  --shadow-sm: 0 1px 2px rgba(21, 24, 27, 0.08);
  --shadow-md: 0 4px 12px rgba(21, 24, 27, 0.12);
  --shadow-lg: 0 12px 32px rgba(21, 24, 27, 0.18);
  /* Deliberate exception: hard "pressed plate" shadow for plate CTAs only */
  --shadow-plate: 3px 3px 0 var(--ink);
  --shadow-plate-hover: 5px 5px 0 var(--ink);

  /* Layout */
  --container-max: 1400px;
  --prose-max: 700px;

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ==========================================================================
   Base / Reset
   ========================================================================== */

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/oswald-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/public-sans-latin.woff2") format("woff2");
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sign-blue);
}

ul[class] {
  list-style: none;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--sign-blue);
  outline-offset: 2px;
}

.section--dark :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible,
.call-banner :focus-visible {
  outline-color: var(--plate-yellow);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: var(--text-2xl);
  letter-spacing: -0.005em;
}

h3 {
  font-size: var(--text-lg);
}

p {
  max-width: var(--prose-max);
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sign-blue);
  margin-bottom: var(--space-3);
}

.section--dark .kicker,
.page-hero .kicker,
.hero .kicker {
  color: var(--plate-yellow);
}

.lede {
  font-size: var(--text-md);
  color: var(--asphalt);
}

.phone-mono {
  font-family: var(--font-mono);
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

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

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

.section {
  padding-block: var(--space-8);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark p {
  color: var(--concrete);
}

.section__head {
  max-width: var(--prose-max);
  margin-bottom: var(--space-6);
}

.section__head p {
  margin-top: var(--space-3);
}

.grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.prose > * + * {
  margin-top: var(--space-4);
}

.prose img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-block: var(--space-6);
  max-width: min(100%, 560px);
}

.prose h2 {
  margin-top: var(--space-7);
}

.prose h3 {
  margin-top: var(--space-6);
}

.prose ul {
  padding-left: var(--space-5);
  max-width: var(--prose-max);
}

.prose li + li {
  margin-top: var(--space-2);
}

/* ==========================================================================
   Components
   ========================================================================== */

/* --- Skip link --- */

.skip-link {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  background: var(--plate-yellow);
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

/* --- Buttons --- */

/* Primary CTA: UK number plate. Hard offset shadow is the one deliberate
   exception to the soft elevation scale — it reads as a pressed plate. */
.btn-plate {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--plate-yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-plate);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.btn-plate:hover {
  background: var(--plate-yellow-bright);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-plate-hover);
}

.btn-plate:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-plate[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-plate);
}

.btn-plate--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-base);
}

/* Same plate geometry, WhatsApp green instead of plate yellow. Ink text keeps
   it at AA on green and keeps it reading as part of the same button family. */
.btn-plate--wa {
  background: var(--wa-green);
}

.btn-plate--wa:hover {
  background: var(--wa-green-bright);
}

.btn-plate__icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

.btn-plate .btn-plate__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-right: 1px solid rgba(21, 24, 27, 0.35);
  padding-right: var(--space-2);
}

/* Secondary CTA */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: transparent;
  color: var(--sign-blue);
  border: 2px solid var(--sign-blue);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--sign-blue);
  color: var(--white);
}

.section--dark .btn-secondary,
.hero .btn-secondary,
.call-banner .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.section--dark .btn-secondary:hover,
.hero .btn-secondary:hover,
.call-banner .btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  min-height: 72px;
  padding-block: var(--space-3);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo__plate {
  background: var(--plate-yellow);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-2);
}

.logo__ltd {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--grey);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  color: var(--concrete);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav__link:hover {
  color: var(--white);
  border-bottom-color: var(--plate-yellow);
}

.nav__link[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--plate-yellow);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--grey);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* --- Hero --- */

.hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding-block: var(--space-8);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}

.hero__content {
  position: relative;
  max-width: 620px;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-8);
  }
}

.hero h1 {
  color: var(--white);
}

.hero h1 .accent {
  color: var(--plate-yellow);
}

.hero__lede {
  margin-top: var(--space-4);
  font-size: var(--text-md);
  color: var(--concrete);
}

.hero__ctas {
  margin-top: var(--space-6);
}

.hero__note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--grey);
}

/* --- Trust strip --- */

.trust-strip {
  background: var(--surface);
  color: var(--asphalt);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-4);
}

.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-7);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
}

.trust-strip__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--sign-blue);
}

/* --- Cards --- */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card h3 {
  margin-bottom: var(--space-2);
}

.card p {
  color: var(--asphalt);
  font-size: var(--text-sm);
}

/* Service card: small blue category label above the title */
.service-card {
  position: relative;
}

.service-card__tab {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--sign-blue);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-card__more {
  display: inline-block;
  margin-top: var(--space-3);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--sign-blue);
}

/* Feature card (why book with us) */
.feature-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Beats .card p in the cascade so dark sections keep light body text */
.section--dark .feature-card p {
  color: var(--concrete);
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.feature-card h3 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--sign-blue);
}

.section--dark .feature-card h3 svg {
  color: var(--plate-yellow);
}

/* --- Sign panel (motorway-sign style page header on subpages) --- */

.page-hero {
  background: var(--navy);
  padding-block: var(--space-7);
}

.sign-panel {
  background: var(--sign-blue);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
}

.sign-panel h1 {
  color: var(--white);
  font-size: var(--text-2xl);
}

.sign-panel p {
  margin-top: var(--space-3);
  color: var(--concrete);
}

/* --- Coverage banner --- */

.coverage {
  position: relative;
  background: var(--surface-alt);
  color: var(--ink);
  padding-block: var(--space-8);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.coverage .kicker {
  color: var(--sign-blue);
}

.coverage h2 {
  color: var(--ink);
}

.coverage p {
  margin-top: var(--space-3);
  color: var(--grey-soft);
}

.coverage__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.coverage__link {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border: 2px solid var(--sign-blue);
  border-radius: var(--radius-sm);
  color: var(--sign-blue);
  background: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.coverage__link:hover {
  background: var(--sign-blue);
  color: var(--white);
}

/* --- FAQ accordion (native details/summary) --- */

.faq {
  max-width: var(--prose-max);
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq__item + .faq__item {
  margin-top: var(--space-3);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--sign-blue);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--asphalt);
}

/* --- Call banner --- */

.call-banner {
  background: var(--navy);
  color: var(--white);
  padding-block: var(--space-8);
}

.call-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.call-banner h2 {
  color: var(--white);
}

.call-banner p {
  margin-top: var(--space-2);
  color: var(--grey);
}

/* --- Forms --- */

.form {
  max-width: var(--prose-max);
}

.form__row {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}

.form__field {
  margin-bottom: var(--space-4);
}

.form__field label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.form__field .optional {
  color: var(--grey);
  font-weight: 400;
}

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  padding: var(--space-3);
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--grey-line);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: var(--sign-blue);
  outline: none;
}

/* Native select with a custom chevron so it matches the text inputs */
.form__field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: var(--space-7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2359626f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 18px;
}

.form__field input[aria-invalid="true"],
.form__field textarea[aria-invalid="true"] {
  border-color: #b3261e;
}

.form__error {
  display: none;
  margin-top: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #b3261e;
}

.form__error.is-visible {
  display: block;
}

.form__status {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form__status.is-visible {
  display: block;
}

.form__status--success {
  background: #e3efe5;
  border: 2px solid #2e6b34;
  color: #245229;
}

.form__status--error {
  background: #f7e5e4;
  border: 2px solid #b3261e;
  color: #8c1d17;
}

/* Honeypot: hidden from humans, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Price table --- */

.price-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table caption {
  text-align: left;
  font-size: var(--text-sm);
  color: var(--grey);
  margin-bottom: var(--space-3);
}

.price-table th,
.price-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--grey-line);
}

.price-table thead th {
  background: var(--sign-blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-sm);
  border-bottom: none;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table .price {
  font-family: var(--font-mono);
  font-weight: 600;
  white-space: nowrap;
}

.table-scroll {
  overflow-x: auto;
}

/* --- Footer --- */

.site-footer {
  background: var(--navy-deep);
  color: var(--concrete);
  padding-block: var(--space-8) var(--space-5);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h2 {
  font-size: var(--text-base);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.footer-col ul li + li {
  margin-top: var(--space-2);
}

.footer-col a {
  color: var(--grey);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-col p {
  color: var(--grey);
  font-size: var(--text-sm);
}

.footer-legal {
  padding-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--grey);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  justify-content: space-between;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

/* Persistent on every page. Pinned bottom-right on desktop, bottom-left on
   phones so it never sits under a thumb reaching for the browser toolbar. */
.wa-float {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5) var(--space-3) var(--space-4);
  background: var(--wa-green);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.wa-float:hover {
  background: var(--wa-green-bright);
  transform: translateY(-2px);
}

.wa-float:active {
  transform: translateY(1px);
}

.wa-float__icon {
  width: 28px;
  height: 28px;
  flex: none;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.mt-6 {
  margin-top: var(--space-6);
}

/* ==========================================================================
   Media queries
   ========================================================================== */

@media (max-width: 799px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: var(--space-3) var(--space-2);
    border-bottom: 1px solid var(--asphalt);
  }

  .header-call {
    margin-left: auto;
    margin-right: var(--space-2);
  }

  .site-header__inner {
    position: relative;
    gap: var(--space-3);
  }
}

@media (max-width: 799px) {
  /* Icon-only bubble on phones — the label would crowd the viewport. */
  .wa-float {
    right: auto;
    left: var(--space-4);
    bottom: var(--space-4);
    padding: var(--space-3);
    gap: 0;
  }

  .wa-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  /* Room at the end of the page so the bubble never sits on the small print. */
  .site-footer {
    padding-bottom: var(--space-9);
  }
}

@media (max-width: 479px) {
  .logo__ltd {
    display: none;
  }
}

@media (min-width: 800px) {
  .container {
    padding-inline: var(--space-6);
  }

  .section {
    padding-block: var(--space-9);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
