:root {
  --red: #d90b18;
  --red-dark: #b50813;
  --black: #101111;
  --ink: #171818;
  --muted: #636666;
  --soft: #f2f3f2;
  --line: #dedfdd;
  --white: #ffffff;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 62px);
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.topbar nav {
  display: flex;
  gap: 28px;
  font-size: .92rem;
}

.topbar nav a,
.topbar-phone {
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}

.topbar-phone {
  justify-self: end;
  display: grid;
  text-align: right;
  font-weight: 800;
}

.topbar-phone span {
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 38%, rgba(0, 0, 0, .08) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88vh;
  max-width: 760px;
  padding: 120px clamp(18px, 7vw, 108px) 110px;
}

.overline {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: .91;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  line-height: .98;
}

.hero-copy > p:not(.overline) {
  max-width: 580px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

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

.hero-meta {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  bottom: 74px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
  max-width: 520px;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  max-width: var(--max);
  margin: -38px auto 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.booking-bar div {
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.booking-bar span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-bar strong {
  font-size: .95rem;
}

.booking-bar > a {
  display: grid;
  place-items: center;
  padding: 18px 26px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

.services {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(42px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 24px;
}

.section-intro {
  position: sticky;
  top: 34px;
  align-self: start;
}

.section-intro > p:not(.overline) {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-list article {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article > span {
  color: var(--red);
  font-size: .8rem;
  font-weight: 800;
}

.service-list h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-list article > strong {
  padding-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.image-statement {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.image-statement > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-statement::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 25%, rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .88) 100%);
}

.image-statement > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  min-height: 720px;
  margin-left: auto;
  padding: 70px clamp(24px, 7vw, 110px);
}

.image-statement p:not(.overline) {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
}

.journeys {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 24px;
}

.journeys-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  margin-bottom: 34px;
}

.journeys-heading h2 {
  margin-bottom: 0;
}

.journeys-heading > p {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.journey-options article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.journey-options article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .12) 65%);
}

.journey-options img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-options article > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(22px, 4vw, 38px);
}

.journey-options span,
.journeys-action span {
  color: rgba(255, 255, 255, .66);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-options h3 {
  max-width: 440px;
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.journey-options p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.journeys-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 0;
}

.journeys-action span {
  color: var(--muted);
}

.journeys-action a {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(80px, 11vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.contact-details > p:not(.overline) {
  max-width: 500px;
  color: rgba(255, 255, 255, .68);
}

.contact-phone {
  display: inline-block;
  margin: 20px 0 34px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
}

.availability {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.availability span {
  color: rgba(255, 255, 255, .52);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact form {
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  color: var(--ink);
}

.contact label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-size: .82rem;
  font-weight: 800;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
}

.contact textarea {
  resize: vertical;
}

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

#previewFormNote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 62px);
  border-top: 1px solid #2b2d2d;
  background: var(--black);
  color: rgba(255, 255, 255, .7);
}

footer a {
  justify-self: end;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
    margin-right: 14px;
    margin-left: 14px;
  }

  .booking-bar div:nth-child(2) {
    border-right: 0;
  }

  .booking-bar > a {
    grid-column: span 2;
  }

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

  .section-intro {
    position: static;
  }

  .journeys-heading,
  .journey-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 14px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .hero-copy {
    min-height: 760px;
  }

  .hero > img {
    object-position: 65% center;
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 110px 18px 128px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    bottom: 58px;
    justify-content: flex-start;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-bar div,
  .booking-bar div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-bar > a {
    grid-column: auto;
  }

  .services {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-list article {
    grid-template-columns: 28px 1fr;
  }

  .service-list article > strong {
    display: none;
  }

  .image-statement,
  .image-statement > div {
    min-height: 680px;
  }

  .image-statement > img {
    object-position: 42% center;
  }

  .image-statement::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .18) 70%);
  }

  .image-statement > div {
    justify-content: flex-end;
    margin: 0;
    padding: 44px 18px;
  }

  .journeys {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-options article {
    min-height: 400px;
  }

  .journeys-action {
    display: grid;
  }

  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > span {
    display: none;
  }
}
