:root {
  --purple: #5b3b85;
  --purple-deep: #3e285f;
  --purple-dark: #2f1c4a;
  --purple-soft: #d9cfe7;
  --orange: #f7901e;
  --orange-deep: #f26722;
  --orange-light: #fdb813;
  --white: #fff;
  --paper: #f7f4fa;
  --ink: #2b2331;
  --muted: #6f6875;
  --line: rgba(91, 59, 133, 0.18);
  --shadow: 0 24px 70px rgba(31, 19, 49, 0.24);
  --shadow-soft: 0 14px 34px rgba(31, 19, 49, 0.16);
  --shell: 960px;
  --radius: 8px;
  --radius-large: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: #3f285d url("../images/bg-body.jpg") center top / cover fixed no-repeat;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin-top: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 32px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--purple-deep);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #28a7c7;
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(180deg, rgba(61, 39, 92, 0.94), rgba(75, 48, 111, 0.84));
}

.masthead {
  min-height: 178px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.brand {
  flex: 0 1 401px;
  text-decoration: none;
}

.brand img {
  width: min(100%, 401px);
  height: auto;
}

.masthead__contact {
  display: grid;
  justify-items: end;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
}

.masthead__contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.masthead__contact a:hover {
  color: #ffd989;
}

.mobile-booking {
  display: none;
}

.nav-toggle {
  display: none;
}

.primary-nav {
  min-height: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, var(--orange-light), var(--orange-deep));
}

.primary-nav a {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 7px 12px;
  color: var(--white);
  border-right: 1px solid rgba(91, 59, 133, 0.7);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 150ms ease, box-shadow 150ms ease;
}

.primary-nav a:last-child {
  border-right: 0;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: var(--orange-deep);
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.3);
}

.service-strip {
  background: rgba(68, 42, 103, 0.96);
}

.service-strip__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
}

.service-strip__inner a,
.service-strip__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.service-strip__inner a:hover {
  color: #ffd989;
}

main {
  min-height: 58vh;
}

.home-shell {
  padding-block: 8px 80px;
}

.home-hero {
  min-height: 345px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 30px;
  color: var(--white);
  background: url("../images/hero-arch.jpg") center / cover no-repeat;
  border: 7px solid var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(45, 26, 68, 0.42), transparent 55%);
}

.home-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(30, 16, 45, 0.65);
}

.home-hero__copy > span,
.page-hero__inner > span,
.section-title > span,
.transport-card__head > div > span,
.transport-summary__title > span,
.eyebrow {
  display: block;
  color: #ffd166;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 500px;
  margin: 8px 0 10px;
  font-size: clamp(32px, 4.4vw, 47px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.home-hero p {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
}

.quote-builder {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  padding: 8px;
  background: rgba(63, 39, 95, 0.96);
  box-shadow: var(--shadow);
}

.quote-builder__head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.quote-builder__head span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: linear-gradient(180deg, #6a3e97, #513774);
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.quote-builder__head b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--purple-deep);
  background: #ffd166;
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quote-card {
  min-width: 0;
  min-height: 350px;
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(91, 59, 133, 0.08);
}

.quote-card > h2 {
  display: none;
}

.quote-card select,
.transport-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(91, 59, 133, 0.32);
  border-radius: 6px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.quote-card select:focus,
.transport-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 144, 30, 0.16);
}

.step-label,
.step-group legend {
  width: 100%;
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.step-label span,
.step-group legend span {
  width: max-content;
  margin-bottom: 1px;
  padding: 4px 9px;
  color: var(--purple-deep);
  background: #eee8f4;
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-group {
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 0;
}

.step-group legend {
  grid-column: 1 / -1;
}

.step-group label {
  color: var(--muted);
  font-size: 12px;
}

.step-group--service {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.step-group--service legend {
  flex-basis: 100%;
}

.step-group--service label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.amount-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.amount-row strong,
.amount-row b {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: var(--white);
  background: linear-gradient(180deg, var(--orange-light), var(--orange-deep));
  border-radius: 6px;
  font-size: 13px;
}

.amount-row b {
  font-size: 16px;
}

.quote-summary {
  margin: 0;
  display: grid;
  gap: 7px;
}

.quote-summary > div {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6px;
}

.quote-summary dt,
.quote-summary dd {
  min-width: 0;
  min-height: 36px;
  margin: 0;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  background: #eee8f4;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.quote-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.quote-summary dd {
  color: var(--purple-deep);
  font-weight: 700;
}

.quote-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.quote-card--confirm {
  min-height: 350px;
  text-align: center;
  overflow: visible;
}

.quote-card--confirm .action-button {
  width: 82%;
  margin-inline: auto;
}

.quote-card--confirm > strong {
  display: block;
  margin-top: 22px;
  color: var(--purple-deep);
  font-size: 19px;
}

.quote-card--confirm > p {
  max-width: 230px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.confirm-vehicle {
  width: 500px;
  min-height: 390px;
  position: absolute;
  top: 184px;
  right: -200px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.confirm-vehicle::before {
  content: "";
  width: 72%;
  height: 38px;
  position: absolute;
  right: 8%;
  bottom: 52px;
  background: radial-gradient(ellipse, rgba(36, 24, 48, 0.3), transparent 68%);
  filter: blur(5px);
}

.confirm-vehicle > span {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 2;
  padding: 8px 10px;
  display: grid;
  color: var(--white);
  background: rgba(62, 40, 95, 0.92);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.confirm-vehicle > span b {
  font-size: 11px;
}

.confirm-vehicle > span small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.confirm-vehicle img {
  width: 100%;
  height: auto;
  max-width: none;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 12px rgba(25, 14, 35, 0.28));
}

.home-vehicle-original {
  min-height: 300px;
  position: relative;
  pointer-events: none;
}

.home-vehicle-original .confirm-vehicle {
  top: -32px;
  right: -200px;
}

.home-vehicle-original + .home-confidence {
  margin-top: 0;
}

.action-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: var(--white);
  background: linear-gradient(180deg, var(--orange-light), var(--orange-deep));
  border: 0;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(242, 103, 34, 0.2);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 150ms ease, filter 150ms ease;
}

.action-button:hover {
  filter: saturate(1.12) brightness(1.03);
  transform: translateY(-2px);
}

.home-confidence {
  margin-top: 96px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  color: var(--white);
  background: rgba(63, 39, 95, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-confidence > div {
  min-height: 138px;
  position: relative;
  padding: 25px 22px 22px;
  background: linear-gradient(145deg, rgba(103, 63, 145, 0.96), rgba(78, 50, 113, 0.96));
  border-radius: 6px;
}

.home-confidence span {
  width: 31px;
  height: 31px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  color: var(--purple-deep);
  background: #ffd166;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-confidence strong {
  display: block;
  font-size: 18px;
}

.home-confidence p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12px;
  line-height: 1.5;
}

.home-services {
  margin-top: 48px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.home-section__head {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 45px;
}

.home-section__head span,
.home-local__copy > span {
  display: block;
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-section__head h2,
.home-local__copy h2 {
  margin: 0;
  color: var(--purple-deep);
  font-size: clamp(28px, 4vw, 39px);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.home-section__head > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-cards article {
  background: #f6f2f8;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(91, 59, 133, 0.1);
}

.service-cards img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.service-cards article > div {
  padding: 20px;
}

.service-cards span {
  color: var(--orange-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-cards h3 {
  margin: 5px 0 8px;
  color: var(--purple-deep);
  font-size: 18px;
  line-height: 1.2;
}

.service-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.home-local {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-local__visual {
  min-height: 390px;
  padding: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5d3a85, #382451);
}

.home-local__visual img {
  width: 100%;
  max-height: 335px;
  object-fit: contain;
  border: 6px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 35px rgba(24, 13, 36, 0.35);
}

.home-local__copy {
  padding: 46px 42px;
  align-self: center;
}

.home-local__copy > p {
  margin: 16px 0;
  color: var(--muted);
  font-size: 13px;
}

.home-local__copy ul {
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.home-local__copy li {
  position: relative;
  padding-left: 27px;
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 700;
}

.home-local__copy li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
}

.home-local__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-hero {
  color: var(--white);
  background: linear-gradient(90deg, rgba(45, 27, 68, 0.91), rgba(75, 45, 111, 0.45)), url("../images/hero-arch.jpg") center 55% / cover no-repeat;
  border-bottom: 8px solid var(--orange);
}

.page-hero__inner {
  min-height: 300px;
  padding-block: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 680px;
  margin: 10px 0 15px;
  font-size: clamp(38px, 5.8vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.page-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.transport-layout {
  padding-block: 48px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: 20px;
}

.transport-card,
.transport-summary,
.about-card,
.contact-form,
.contact-aside,
.gallery-section {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.transport-card {
  padding: 26px;
}

.transport-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.transport-card__head h2,
.transport-summary__title h2,
.section-title h2 {
  margin: 4px 0 0;
  color: var(--purple-deep);
  font-size: 30px;
  line-height: 1.1;
}

.transport-card__head > b {
  padding: 7px 10px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 11px;
}

.vehicle-stage {
  min-height: 240px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #f0ebf5;
  overflow: hidden;
}

.vehicle-stage::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(91, 59, 133, 0.11));
}

.vehicle-stage img {
  width: min(100%, 390px);
  max-height: 245px;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.vehicle-stage > div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 10px;
  display: grid;
  color: var(--white);
  background: rgba(62, 40, 95, 0.91);
  font-size: 9px;
}

.transport-fields {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.transport-fields label,
.contact-fields label {
  display: grid;
  gap: 6px;
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 800;
}

.transport-service {
  margin: 20px 0 0;
  padding: 16px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--line);
}

.transport-service legend {
  padding-inline: 7px;
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 800;
}

.transport-service label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.extras {
  margin-top: 30px;
}

.section-title {
  margin-bottom: 14px;
}

.extra-row {
  min-height: 68px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.extra-row:last-child {
  border-bottom: 1px solid var(--line);
}

.extra-row > span {
  display: grid;
}

.extra-row strong {
  color: var(--purple-deep);
}

.extra-row small {
  color: var(--muted);
}

.transport-summary {
  position: sticky;
  top: 16px;
  padding: 22px;
}

.transport-summary__title {
  margin-bottom: 18px;
}

.transport-summary dl {
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
}

.transport-summary dl > div {
  padding: 10px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  background: #f8f5fa;
  font-size: 11px;
}

.transport-summary dt {
  color: var(--muted);
}

.transport-summary dd {
  margin: 0;
  color: var(--purple-deep);
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.transport-total {
  margin: 18px -22px 18px;
  padding: 16px 22px;
  display: grid;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
}

.transport-total span,
.transport-total small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.transport-total strong {
  font-size: 29px;
}

.transport-summary .action-button {
  width: 100%;
}

.transport-summary > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.about-card {
  margin-block: 48px 84px;
  padding: 26px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, var(--orange-light), var(--orange-deep));
}

.tabs button {
  min-height: 52px;
  padding: 9px 12px;
  color: var(--white);
  background: transparent;
  border-right: 1px solid rgba(91, 59, 133, 0.5);
  font-weight: 800;
}

.tabs button:last-child {
  border-right: 0;
}

.tabs button:hover,
.tabs button[aria-selected="true"] {
  background: var(--purple);
}

.tab-panel {
  min-height: 420px;
  padding: 40px 22px 20px;
}

.tab-panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 54px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel h2,
.contact-aside h2 {
  margin: 7px 0 18px;
  color: var(--purple-deep);
  font-size: 34px;
  line-height: 1.08;
}

.tab-panel p {
  color: var(--muted);
}

.tab-panel > img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.text-link {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

#weather-panel.is-active {
  grid-template-columns: 0.7fr 1.3fr;
}

#sun-panel.is-active,
#info-panel.is-active {
  display: block;
}

.sun-table-wrap {
  overflow-x: auto;
}

.sun-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.sun-table-wrap caption {
  margin-bottom: 16px;
  color: var(--purple-deep);
  font-size: 25px;
  font-weight: 800;
  text-align: left;
}

.sun-table-wrap th,
.sun-table-wrap td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.sun-table-wrap thead th,
.sun-table-wrap tbody th {
  color: var(--white);
  background: var(--purple);
}

.useful-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.useful-grid > div {
  min-height: 150px;
  padding: 24px;
  background: #f4eff7;
  border-left: 4px solid var(--orange);
}

.useful-grid strong {
  color: var(--purple-deep);
  font-size: 18px;
}

.useful-grid p {
  margin: 8px 0 0;
  font-size: 13px;
}

.gallery-section {
  margin-block: 48px 84px;
  padding: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-item {
  grid-column: span 4;
  min-width: 0;
  margin: 0;
}

.gallery-item--1,
.gallery-item--5 {
  grid-column: span 8;
}

.gallery-item button {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  background: var(--purple-dark);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item button:hover img {
  opacity: 0.78;
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 16px 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(42, 24, 63, 0.88));
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  padding: 70px 24px 24px;
  display: grid;
  place-items: center;
  background: rgba(31, 18, 48, 0.93);
}

.lightbox[hidden] {
  display: none;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: transparent;
  font-size: 40px;
}

.lightbox img {
  max-width: min(1100px, 95vw);
  max-height: calc(100vh - 100px);
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.contact-layout {
  padding-block: 48px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 20px;
}

.contact-form,
.contact-aside {
  padding: 28px;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-fields .field-wide {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .action-button {
  min-width: 210px;
  margin-top: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.contact-aside {
  display: grid;
  gap: 15px;
}

.contact-aside > a,
.contact-aside > div {
  padding-bottom: 13px;
  display: grid;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-aside small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-aside strong {
  color: var(--purple-deep);
  overflow-wrap: anywhere;
}

.contact-aside img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.not-found {
  margin-block: 70px 100px;
  padding: 60px;
  color: var(--purple-deep);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.not-found h1 {
  margin: 8px 0 12px;
  font-size: 45px;
}

.not-found > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.site-footer {
  color: var(--white);
  background: radial-gradient(circle at 20% 0, #674293, #382451 72%);
  border-top: 8px solid var(--orange);
}

.footer__inner {
  min-height: 240px;
  padding-block: 42px;
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 1fr;
  align-items: start;
  gap: 54px;
}

.footer__brand img {
  width: 245px;
}

.footer__brand,
.footer__nav,
.footer__contact {
  display: grid;
  align-content: start;
}

.footer__brand p {
  max-width: 290px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.footer__nav,
.footer__contact {
  gap: 7px;
}

.footer__nav strong,
.footer__contact strong {
  margin-bottom: 5px;
  color: #ffd166;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__contact a,
.footer__contact span {
  color: rgba(255, 255, 255, 0.73);
  font-size: 12px;
  text-decoration: none;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__button {
  width: max-content;
  margin-top: 8px;
  padding: 9px 13px;
  color: var(--white) !important;
  background: linear-gradient(180deg, var(--orange-light), var(--orange-deep));
  border-radius: 5px;
  font-weight: 800;
}

.footer__bottom {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

@media (max-width: 820px) {
  .masthead {
    min-height: 145px;
  }

  .brand {
    flex-basis: 330px;
  }

  .masthead__contact {
    font-size: 12px;
  }

  .service-strip__inner {
    justify-content: center;
  }

  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-builder__head {
    display: none;
  }

  .quote-card > h2 {
    margin: -20px -20px 18px;
    min-height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(180deg, #6a3e97, #513774);
    border-radius: 6px 6px 0 0;
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .quote-card--confirm {
    grid-column: 1 / -1;
    min-height: 535px;
  }

  .confirm-vehicle {
    width: 460px;
    min-height: 350px;
    top: 190px;
    right: 18px;
  }

  .home-vehicle-original {
    min-height: 310px;
  }

  .home-vehicle-original .confirm-vehicle {
    width: 460px;
    min-height: 350px;
    top: -28px;
    right: -32px;
  }

  .home-confidence {
    margin-top: 18px;
  }

  .home-section__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-local {
    grid-template-columns: 1fr;
  }

  .home-local__visual {
    min-height: 320px;
  }

  .transport-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .transport-summary {
    position: static;
  }

  .tab-panel.is-active,
  #weather-panel.is-active {
    grid-template-columns: 1fr;
  }

  .tab-panel > img {
    max-width: 480px;
    justify-self: center;
  }

  .gallery-item,
  .gallery-item--1,
  .gallery-item--5 {
    grid-column: span 6;
  }

  .footer__inner {
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }

  .shell {
    width: min(100% - 24px, var(--shell));
  }

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

  .masthead {
    min-height: 86px;
    gap: 6px;
  }

  .brand {
    flex: 1 1 210px;
    min-width: 0;
  }

  .brand img {
    width: min(100%, 218px);
  }

  .masthead__contact {
    display: none;
  }

  .mobile-booking {
    min-height: 36px;
    padding: 7px 10px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(180deg, var(--orange-light), var(--orange-deep));
    border-radius: 5px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    position: relative;
    flex: 0 0 auto;
    display: block;
    background: transparent;
  }

  .nav-toggle > span {
    width: 24px;
    height: 2px;
    position: absolute;
    left: 12px;
    background: var(--white);
    transition: transform 150ms ease, opacity 150ms ease, top 150ms ease;
  }

  .nav-toggle > span:nth-child(1) { top: 16px; }
  .nav-toggle > span:nth-child(2) { top: 23px; }
  .nav-toggle > span:nth-child(3) { top: 30px; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { top: 23px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

  .primary-nav {
    width: 100%;
    position: fixed;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 18px 20px;
    background: rgba(63, 39, 95, 0.99);
    overflow-y: auto;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    min-height: 58px;
    place-items: center start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 16px;
  }

  .primary-nav a.is-active {
    padding-left: 16px;
    border-left: 4px solid var(--orange);
  }

  .service-strip__inner {
    width: 100%;
    min-height: 34px;
    padding-inline: 12px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-strip__inner::-webkit-scrollbar {
    display: none;
  }

  .service-strip__inner a,
  .service-strip__inner > span {
    flex: 0 0 auto;
    font-size: 11px;
  }

  .service-strip__inner a:nth-child(2) {
    display: none;
  }

  .home-shell {
    padding-top: 0;
    width: 100%;
  }

  .home-hero {
    min-height: 370px;
    padding: 26px 20px;
    align-items: flex-end;
    border: 0;
    box-shadow: none;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(45, 26, 68, 0.12), rgba(45, 26, 68, 0.88));
  }

  .home-hero h1 {
    font-size: 36px;
  }

  .home-hero p {
    font-size: 15px;
  }

  .quote-builder {
    margin: 0 12px;
    padding: 7px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    min-height: 0;
    padding: 18px;
  }

  .quote-card > h2 {
    margin: -18px -18px 16px;
  }

  .quote-card--confirm {
    grid-column: auto;
    min-height: 490px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .confirm-vehicle {
    width: 350px;
    min-height: 270px;
    top: 205px;
    right: -8px;
  }

  .confirm-vehicle > span {
    top: 2px;
    left: 12px;
  }

  .home-vehicle-original {
    min-height: 280px;
    overflow: hidden;
  }

  .home-vehicle-original .confirm-vehicle {
    width: 350px;
    min-height: 270px;
    top: -4px;
    right: -8px;
  }

  .quote-card--confirm .action-button {
    width: 100%;
  }

  .home-confidence {
    margin: 18px 12px 0;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .home-confidence > div {
    min-height: 0;
    padding: 20px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0 10px;
  }

  .home-confidence span {
    grid-row: 1 / span 2;
  }

  .home-confidence p {
    grid-column: 2;
  }

  .home-services {
    margin: 24px 12px 0;
    padding: 24px 18px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-cards img {
    height: 190px;
  }

  .home-local {
    margin: 18px 12px 0;
  }

  .home-local__visual {
    min-height: 260px;
    padding: 18px;
  }

  .home-local__copy {
    padding: 30px 22px;
  }

  .home-local__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .home-local__actions .text-link {
    text-align: center;
  }

  .page-hero__inner {
    min-height: 240px;
    padding-block: 42px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .transport-layout,
  .contact-layout {
    padding-block: 24px 56px;
  }

  .transport-card,
  .transport-summary,
  .contact-form,
  .contact-aside {
    padding: 20px 16px;
  }

  .transport-card__head {
    flex-direction: column;
    gap: 10px;
  }

  .vehicle-stage {
    min-height: 210px;
  }

  .transport-fields,
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .contact-fields .field-wide {
    grid-column: auto;
  }

  .extra-row {
    grid-template-columns: 1fr 118px;
    gap: 10px;
  }

  .transport-total {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .about-card,
  .gallery-section {
    width: min(100% - 24px, var(--shell));
    margin-block: 24px 56px;
    padding: 12px;
  }

  .tabs {
    grid-template-columns: 1fr 1fr;
  }

  .tabs button:nth-child(2) {
    border-right: 0;
  }

  .tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(91, 59, 133, 0.5);
  }

  .tab-panel {
    min-height: 0;
    padding: 28px 8px 16px;
  }

  .tab-panel h2,
  .contact-aside h2 {
    font-size: 30px;
  }

  .useful-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item,
  .gallery-item--1,
  .gallery-item--5 {
    grid-column: auto;
  }

  .contact-form .action-button {
    width: 100%;
  }

  .not-found {
    margin-block: 24px 56px;
    padding: 40px 20px;
  }

  .not-found h1 {
    font-size: 36px;
  }

  .not-found > div {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer__brand img {
    width: 220px;
  }

  .footer__contact {
    grid-column: auto;
  }

  .footer__bottom {
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 360px) {
  .brand,
  .brand img {
    width: 184px;
    flex-basis: 184px;
  }

  .mobile-booking {
    padding-inline: 8px;
    font-size: 10px;
  }

  .step-group {
    grid-template-columns: 1fr;
  }

  .step-group legend {
    grid-column: auto;
  }

  .amount-row,
  .quote-summary > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .extra-row {
    grid-template-columns: 1fr;
  }
}

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