:root {
  --color-blue: #1e5dbc;
  --color-blue-deep: #184d9d;
  --color-ink: #2b4448;
  --color-white: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f8f9fb;
  --color-bg: #f5f6f8;
  --color-border: #d5dbe0;
  --color-muted: #73838a;
  --color-dark: #324c50;
  --color-red: #c63226;
  --shadow-soft: 0 20px 48px rgba(25, 52, 74, 0.08);
  --shadow-header: 0 10px 30px rgba(27, 51, 82, 0.08);
  --container: min(1170px, calc(100vw - 32px));
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(30, 93, 188, 0.05), transparent 30%),
    linear-gradient(180deg, #fcfcfd 0%, var(--color-bg) 100%);
  color: var(--color-ink);
}

body.has-nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 94px;
}

.site-brand {
  flex: none;
}

.site-brand img {
  width: min(204px, 40vw);
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1 1 540px;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  column-gap: 14px;
  row-gap: 8px;
}

.locale-control {
  flex: none;
  position: relative;
  margin-left: 6px;
}

.locale-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 40px;
  padding: 6px 20px 6px 6px;
  border: 1px solid rgba(30, 93, 188, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
  box-shadow: 0 10px 22px rgba(25, 52, 74, 0.08);
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.locale-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition);
}

.locale-dropdown.is-open .locale-trigger::after {
  transform: translateY(-28%) rotate(-135deg);
}

.locale-trigger:hover,
.locale-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(30, 93, 188, 0.4);
  box-shadow: 0 12px 24px rgba(30, 93, 188, 0.14);
  outline: none;
}

.locale-trigger img {
  width: 30px;
  height: 22px;
  border-radius: 5px;
  object-fit: cover;
}

.locale-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: auto;
  min-width: 54px;
  padding: 12px 10px;
  border: 1px solid rgba(30, 93, 188, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(25, 52, 74, 0.14);
  backdrop-filter: blur(10px);
  z-index: 70;
}

.locale-menu[hidden] {
  display: none;
}

.locale-flag {
  display: block;
  width: 30px;
  height: 22px;
  overflow: hidden;
  border: 1px solid rgba(30, 93, 188, 0.18);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(25, 52, 74, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.locale-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locale-flag:hover,
.locale-flag:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(30, 93, 188, 0.45);
  box-shadow: 0 12px 22px rgba(30, 93, 188, 0.14);
  outline: none;
}

.locale-flag--active,
.locale-flag[aria-current="true"] {
  border-color: var(--color-blue);
  box-shadow: 0 12px 22px rgba(30, 93, 188, 0.18);
}

.site-nav__link {
  position: relative;
  padding: 10px 0;
  font-family: "Days One", sans-serif;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-ink);
  transition: color var(--transition);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link[aria-current="page"] {
  color: var(--color-blue);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(30, 93, 188, 0.18);
  border-radius: 10px;
  background: var(--color-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  transition: transform var(--transition), opacity var(--transition);
}

body.has-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.has-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.has-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 148px 0 0;
}

.section-heading {
  max-width: 620px;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading__eyebrow img {
  width: 32px;
  height: 17px;
  flex: none;
}

.section-heading__eyebrow--blue {
  color: var(--color-blue);
}

.section-heading__eyebrow--white {
  color: var(--color-white);
}

.section-heading h2,
.hero h1,
.page-hero h1,
.appointment h2,
.latest-work__card h2,
.cta-band h2 {
  margin: 0;
  font-family: "Days One", sans-serif;
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

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

.section-copy,
.page-hero__copy,
.hero__copy {
  font-size: 18px;
  line-height: 1.62;
  color: var(--color-ink);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-family: "Days One", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav__link:focus-visible,
.hero__summary:focus-visible,
.faq-item__question:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(30, 93, 188, 0.28);
  outline-offset: 3px;
}

.button--primary,
.button--full {
  background: var(--color-blue);
  color: var(--color-white);
}

.button--primary:hover,
.button--full:hover,
.button--primary:focus-visible,
.button--full:focus-visible {
  background: var(--color-blue-deep);
  box-shadow: 0 10px 24px rgba(30, 93, 188, 0.28);
}

.button--outline {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--color-blue);
  color: var(--color-white);
}

.button--dark {
  background: var(--color-dark);
  color: var(--color-white);
  border: 0;
  width: fit-content;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #253c40;
  box-shadow: 0 10px 24px rgba(43, 68, 72, 0.22);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button:disabled {
  opacity: 0.74;
  cursor: wait;
  transform: none;
}

.button--full {
  width: 100%;
}

.hero,
.page-hero {
  position: relative;
  color: var(--color-white);
  isolation: isolate;
}

.hero__backdrop,
.hero__veil,
.page-hero__backdrop,
.page-hero__veil {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0) 78%),
    url("assets/sunset_trucks.jpg") center 42% / cover no-repeat;
}

.hero__veil {
  z-index: -1;
  background: linear-gradient(102deg, rgba(0, 0, 0, 0.8) 7%, rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0) 72%);
}

.page-hero__backdrop {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.08) 100%),
    var(--hero-image, url("assets/railway_header_section.jpg")) center / cover no-repeat;
}

.page-hero__veil {
  z-index: -1;
  background: linear-gradient(104deg, rgba(0, 0, 0, 0.76) 10%, rgba(0, 0, 0, 0.24) 64%, rgba(0, 0, 0, 0.08) 100%);
}

.hero {
  min-height: 640px;
}

.hero__inner,
.page-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.hero__inner {
  min-height: 640px;
}

.hero__content {
  max-width: 760px;
  padding: 48px 0;
}

.hero__copy,
.page-hero__copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4rem);
}

.hero__actions,
.page-hero__actions,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.hero__summary {
  display: grid;
  gap: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  min-width: 260px;
}

.hero__summary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.hero__summary strong {
  font-family: "Days One", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__summary small {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  padding: 110px 0 100px;
}

.page-hero__content {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 820px;
}

.features {
  background: var(--color-blue);
  color: var(--color-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 36px 0 32px;
}

.feature-card {
  display: flex;
  align-items: start;
  gap: 22px;
}

.feature-card img {
  width: 64px;
  height: 64px;
  flex: none;
  object-fit: contain;
}

.feature-card h2 {
  margin: 0 0 8px;
  font-family: "Days One", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.about__grid,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 574px) minmax(0, 476px);
  justify-content: space-between;
  align-items: start;
  gap: 48px;
}

.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-grid--reverse .section-grid__content {
  order: 2;
}

.section-grid--reverse .section-grid__media {
  order: 1;
}

.about__media,
.section-grid__media {
  overflow: hidden;
}

.about__media {
  background: #e5e8eb;
  box-shadow: var(--shadow-soft);
}

.about__media img,
.service-card__image img,
.latest-work__visual img,
.section-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__media--tall {
  height: 480px;
}

.about__media--wide {
  margin-top: 74px;
  height: 337px;
}

.section-grid__media {
  min-height: 420px;
  box-shadow: none;
}

.about__copy {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.56;
}

.bullet-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.bullet-list li {
  display: flex;
  align-items: start;
  gap: 11px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-muted);
}

.spec-dot {
  width: 15px;
  height: 15px;
  margin-top: 5px;
  flex: none;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--color-blue) 0 38%, transparent 42% 100%);
}

.services__grid,
.info-grid,
.testimonials__grid,
.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.services__grid,
.testimonials__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.service-card,
.info-card {
  display: block;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover,
.service-card:focus-within,
.info-card:hover,
.info-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(25, 52, 74, 0.14);
}

.service-card__image {
  height: 303px;
  margin: 0;
  overflow: hidden;
}

.service-card__image img {
  transition: transform 400ms ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 0 22px 26px;
}

.service-card h3,
.info-card h3,
.testimonial-card h3 {
  margin: 0;
  font-family: "Days One", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card h3 {
  padding-top: 20px;
  color: var(--color-blue);
}

.service-card p,
.info-card p,
.testimonial-card p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.58;
  color: var(--color-muted);
}

.service-card__action {
  display: inline-flex;
  margin-top: 18px;
  font-family: "Days One", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-blue);
}

.info-card {
  padding: 34px 30px;
}

.info-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--color-muted);
}

.info-card li + li {
  margin-top: 10px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.latest-work__inner {
  position: relative;
  min-height: 700px;
}

.latest-work__visual {
  margin-left: 198px;
  height: 700px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.latest-work__visual img {
  object-position: 68% center;
}

.latest-work__card {
  position: absolute;
  top: 100px;
  left: 0;
  width: min(420px, 100%);
  padding: 40px 42px 0;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.latest-work__card h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 2.2vw, 2.75rem);
  color: var(--color-ink);
}

.latest-work__summary {
  margin: 14px 0 26px;
  max-width: 320px;
  font-size: 18px;
  line-height: 1.56;
}

.latest-work__specs {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 50px;
  list-style: none;
}

.latest-work__specs li {
  display: flex;
  align-items: start;
  gap: 11px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-muted);
}

.latest-work__card .button {
  margin-left: -42px;
  width: calc(100% + 84px);
}

.testimonial-card {
  padding: 40px 40px 38px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.testimonial-card__quote {
  width: 34px;
  height: 24px;
}

.testimonial-card__meta,
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.testimonial-card__person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__person strong,
.testimonial-card__person span,
.testimonial-card__meta strong,
.testimonial-card__meta span {
  display: block;
}

.testimonial-card__person strong,
.testimonial-card__meta strong {
  font-family: "Days One", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--color-blue);
}

.testimonial-card__person span,
.testimonial-card__meta span {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-muted);
}

.appointment {
  padding-top: 150px;
}

.appointment__surface {
  position: relative;
  background: var(--color-blue);
  overflow: hidden;
}

.appointment__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 477px);
  gap: 38px;
  align-items: start;
  padding: 100px 0 96px;
}

.appointment__content {
  max-width: 520px;
  color: var(--color-white);
}

.appointment__content h2 {
  margin-top: 8px;
  max-width: 520px;
  color: var(--color-white);
}

.appointment__copy {
  margin: 18px 0 34px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.56;
}

.appointment__details {
  display: grid;
  gap: 16px;
}

.appointment__details article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.appointment__details img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.appointment__details strong,
.appointment__details span {
  display: block;
}

.appointment__details strong {
  margin-bottom: 4px;
  font-family: "Days One", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}

.appointment__details span {
  font-size: 16px;
  line-height: 1.5;
}

.appointment__form,
.contact-card {
  padding: 34px 40px 32px;
  background: var(--color-surface);
  box-shadow: 0 30px 60px rgba(17, 43, 84, 0.14);
}

.appointment__form h2,
.contact-card h2 {
  margin-bottom: 22px;
  color: var(--color-ink);
  font-size: clamp(2rem, 2.1vw, 2.5rem);
}

.appointment__form label {
  display: block;
  margin-bottom: 14px;
}

.appointment__form input,
.appointment__form textarea {
  width: 100%;
  border: 1px solid #d1d1d1;
  background: var(--color-white);
  padding: 16px 18px;
  font-family: "Days One", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.appointment__form input::placeholder,
.appointment__form textarea::placeholder {
  color: #858585;
}

.appointment__form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-dark);
}

.appointment__track {
  position: absolute;
  opacity: 0.28;
  pointer-events: none;
}

.appointment__track--one {
  right: 0;
  bottom: 0;
  width: min(54vw, 520px);
}

.appointment__track--two {
  right: 120px;
  bottom: 0;
  width: min(30vw, 290px);
}

.appointment__track--three {
  right: 180px;
  bottom: 0;
  width: min(44vw, 430px);
}

.contact-card__links {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
  color: var(--color-muted);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 20px;
}

.faq-item {
  border-left: 5px solid var(--color-blue);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 93px;
  padding: 24px 22px 24px 34px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-family: "Days One", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-item__question img {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}

.faq-item__question[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 34px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
}

.cta-band {
  padding-top: 148px;
}

.cta-band__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 40px 48px;
  background:
    linear-gradient(120deg, var(--color-blue) 0%, var(--color-blue-deep) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.cta-band__panel h2 {
  color: var(--color-white);
}

.cta-band__panel p {
  margin: 14px 0 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  margin-top: 150px;
  background: var(--color-blue);
  color: var(--color-white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr 0.95fr;
  gap: 36px;
  padding: 54px 0 40px;
}

.footer__brand img {
  width: min(210px, 60vw);
  border-radius: 10px;
  background: var(--color-white);
  padding: 10px 14px;
}

.footer__brand p,
.footer__contact p,
.footer__contact a,
.footer__cta p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer__heading {
  margin: 0;
  font-family: "Days One", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer__nav-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer__nav-list a {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.footer__nav-list a:hover,
.footer__nav-list a:focus-visible,
.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: var(--color-white);
  text-decoration: underline;
}

.footer__cta .button {
  margin-top: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__bottom p {
  margin: 0;
  padding: 22px 0 26px;
  font-size: 15px;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1360px) {
  .site-header__inner {
    gap: 10px;
  }

  .site-brand img {
    width: min(186px, 24vw);
  }

  .site-nav {
    column-gap: 11px;
    row-gap: 7px;
  }

  .site-nav__link {
    font-size: 11px;
    letter-spacing: 0;
  }

  .locale-control {
    margin-left: 4px;
  }
}

@media (max-width: 1199px) {
  .site-header__inner {
    gap: 12px;
  }

  .site-brand img {
    width: min(186px, 28vw);
  }

  .site-nav {
    column-gap: 10px;
    row-gap: 7px;
  }

  .site-nav__link {
    font-size: 11px;
  }

  .features__grid,
  .services__grid,
  .info-grid,
  .testimonials__grid,
  .faq-grid {
    gap: 18px;
  }

  .about__grid,
  .section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .about__content {
    max-width: 780px;
  }

  .about__media--wide {
    max-width: 476px;
  }

  .latest-work__visual {
    margin-left: 120px;
  }

  .latest-work__card {
    width: min(430px, calc(100% - 120px));
  }

  .appointment__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  }

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

@media (max-width: 991px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(27, 51, 82, 0.12);
  }

  body.has-nav-open .site-nav {
    display: flex;
  }

  .site-nav__link {
    font-size: 15px;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .locale-control {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    order: 3;
  }

  .locale-trigger {
    width: 54px;
    height: 38px;
    padding-right: 18px;
  }

  .locale-trigger img,
  .locale-flag {
    width: 28px;
    height: 20px;
  }

  .locale-menu {
    right: 0;
    min-width: 50px;
  }

  .section,
  .cta-band,
  .appointment {
    padding-top: 110px;
  }

  .hero,
  .hero__inner {
    min-height: 560px;
  }

  .page-hero {
    padding: 92px 0 84px;
  }

  .hero__veil,
  .page-hero__veil {
    background: linear-gradient(104deg, rgba(0, 0, 0, 0.84) 8%, rgba(0, 0, 0, 0.25) 64%, rgba(0, 0, 0, 0.06) 100%);
  }

  .features__grid,
  .services__grid,
  .info-grid,
  .testimonials__grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    align-items: center;
  }

  .about__media--tall,
  .section-grid__media {
    height: 420px;
  }

  .latest-work__inner {
    display: grid;
    gap: 28px;
    min-height: auto;
  }

  .latest-work__visual {
    order: 2;
    margin-left: 0;
    height: 520px;
  }

  .latest-work__card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    order: 1;
    padding-bottom: 0;
  }

  .latest-work__summary {
    max-width: none;
  }

  .latest-work__card .button {
    margin-bottom: 0;
  }

  .appointment__grid {
    grid-template-columns: 1fr;
    padding: 84px 0;
  }

  .cta-band__panel {
    grid-template-columns: 1fr;
  }

  .appointment__content,
  .appointment__form,
  .contact-card {
    max-width: 100%;
  }

  .appointment__track--one {
    width: min(80vw, 520px);
  }

  .appointment__track--two,
  .appointment__track--three {
    display: none;
  }

  .footer {
    margin-top: 110px;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(calc(100vw - 24px), 540px);
  }

  .site-header__inner {
    min-height: 82px;
  }

  .section,
  .cta-band,
  .appointment {
    padding-top: 88px;
  }

  .section-heading__eyebrow {
    font-size: 14px;
  }

  .section-heading h2,
  .hero h1,
  .page-hero h1,
  .appointment h2,
  .latest-work__card h2,
  .cta-band h2 {
    font-size: 2rem;
  }

  .hero,
  .hero__inner {
    min-height: 520px;
  }

  .hero__content {
    padding: 72px 0 48px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .hero__copy,
  .page-hero__copy,
  .about__copy,
  .appointment__copy,
  .cta-band__panel p {
    font-size: 1rem;
  }

  .hero__actions,
  .page-hero__actions {
    gap: 14px;
  }

  .hero__summary {
    min-width: 0;
    width: 100%;
  }

  .features__grid {
    padding: 28px 0;
  }

  .feature-card {
    align-items: start;
  }

  .about__media--tall,
  .about__media--wide,
  .service-card__image,
  .latest-work__visual,
  .section-grid__media {
    height: 300px;
  }

  .about__media--wide {
    margin-top: 34px;
  }

  .latest-work__card,
  .testimonial-card,
  .info-card,
  .appointment__form,
  .contact-card {
    padding: 28px 22px;
  }

  .latest-work__card .button {
    margin-left: -22px;
    width: calc(100% + 44px);
  }

  .latest-work__card .button {
    margin-bottom: 0;
  }

  .latest-work__card {
    padding-bottom: 0;
  }

  .appointment__details article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .appointment__details img {
    width: 56px;
    height: 56px;
  }

  .faq-item__question {
    min-height: 82px;
    padding: 18px 18px 18px 22px;
    font-size: 16px;
  }

  .faq-item__answer {
    padding: 0 22px 22px;
  }

  .cta-band__panel {
    padding: 30px 22px;
  }

  .footer {
    margin-top: 88px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding: 40px 0 28px;
  }

  .site-header__inner {
    min-height: 84px;
  }

  .locale-menu {
    right: -6px;
    min-width: 48px;
  }

  .footer__bottom p {
    padding: 20px 0 24px;
    font-size: 14px;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}
