:root {
  --black: #000;
  --white: #fff;
  --ink: #111;
  --soft-ink: #3c3c3c;
  --line: #636363;
  --panel: rgba(255, 255, 255, 0.86);
  --overlay: #eee;
  --accent: #9b9b9b;
  --font: "Lato", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 64px;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  width: min(1140px, calc(100% - 36px));
  min-height: 64px;
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #444;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a,
.contact-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 300;
}

.nav-menu a[aria-current="page"] {
  color: var(--accent);
}

.contact-trigger {
  padding: 0 0 0 4px;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 104px 24px 96px;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.home-center {
  margin-top: -28px;
}

.home-mark {
  width: 112px;
  margin: 0 auto 8px;
}

.home-title {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
}

.country-row {
  position: fixed;
  right: 0;
  bottom: 30px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.country-row span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 700;
}

.plain-page,
.photo-page {
  min-height: 100vh;
  padding: 94px 24px 48px;
}

.plain-page {
  background: var(--black);
}

.photo-page {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.photo-page::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--page-image);
  background-position: center;
  background-size: cover;
  opacity: 0.7;
  content: "";
}

.photo-page::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.08);
  content: "";
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.inner-logo-link {
  display: flex;
  justify-content: flex-end;
  min-height: 126px;
  margin-bottom: 16px;
}

.inner-logo-link img {
  width: 110px;
  height: max-content;
}

.lease-grid {
  display: grid;
  grid-template-columns: minmax(280px, 560px);
  gap: 28px;
}

.lease-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: #151515;
}

.lease-card img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.lease-card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 32px;
  background: rgba(204, 204, 204, 0.84);
  color: var(--ink);
  opacity: 0;
  text-align: center;
  transition: opacity 180ms ease;
}

.lease-card:focus-within .lease-card-overlay,
.lease-card:hover .lease-card-overlay {
  opacity: 1;
}

.lease-card-overlay h1 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
}

.button-dark,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 300;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-dark {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #2b2b2b;
}

.button-outline {
  border: 1px solid #333;
  background: transparent;
  color: #333;
  font-size: 14px;
  letter-spacing: 3px;
}

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

.detail-panel {
  width: min(540px, 100%);
  margin-left: auto;
  padding: 18px 24px 22px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
}

.detail-panel h1 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
}

.detail-panel p,
.detail-panel li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.detail-panel ul {
  margin: 8px 0 0;
  padding: 0 0 0 20px;
}

.omaio-caption {
  width: min(980px, 100%);
  margin-left: auto;
  text-align: right;
}

.omaio-caption h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5.1vw, 3.5rem);
  font-weight: 300;
  line-height: 1.18;
}

.omaio-caption strong {
  font-weight: 700;
}

.enquiry-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
}

.contact-overlay {
  position: fixed;
  inset: 64px 0 auto;
  z-index: 120;
  height: 0;
  overflow: hidden;
  background: var(--overlay);
  color: var(--ink);
  transition: height 180ms ease;
}

.contact-overlay.is-open {
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.contact-panel {
  width: min(760px, calc(100% - 36px));
  margin: 54px auto;
  text-align: center;
}

.overlay-close {
  position: absolute;
  top: 18px;
  right: 34px;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  color: #818181;
  cursor: pointer;
  font-size: 52px;
  line-height: 1;
}

.contact-title {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 12px 12px;
  border-bottom: 2px solid #666;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 400;
}

.phone-line {
  margin: 0 0 28px;
  color: var(--soft-ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.form-row label {
  padding-top: 9px;
  text-align: right;
  font-size: 17px;
  font-weight: 300;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #9a9a9a;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
}

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

.form-actions {
  display: flex;
  justify-content: flex-start;
  padding-left: 174px;
}

.enquiry-card .form-actions {
  justify-content: flex-end;
  padding-left: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 700;
}

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

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

@media (max-width: 767px) {
  .site-nav {
    min-height: 58px;
  }

  .nav-inner {
    justify-content: space-between;
    min-height: 58px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 18px;
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a,
  .contact-trigger {
    width: 100%;
    justify-content: flex-start;
  }

  .home-hero {
    padding-top: 92px;
  }

  .home-title {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .country-row {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
    align-self: end;
    margin-top: 72px;
  }

  .plain-page,
  .photo-page {
    padding-top: 82px;
  }

  .inner-logo-link {
    min-height: auto;
    margin-bottom: 28px;
  }

  .inner-logo-link img {
    width: 92px;
  }

  .lease-card,
  .lease-card img {
    min-height: 330px;
  }

  .lease-card-overlay {
    opacity: 1;
  }

  .detail-panel {
    margin: 0;
  }

  .omaio-caption {
    text-align: right;
  }

  .enquiry-card {
    padding: 22px 18px;
  }

  .contact-overlay {
    top: 58px;
  }

  .contact-overlay.is-open {
    height: calc(100vh - 58px);
  }

  .overlay-close {
    top: 10px;
    right: 14px;
  }

  .contact-panel {
    margin-top: 62px;
  }

  .phone-line {
    font-size: 1rem;
    letter-spacing: 1px;
  }

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

  .form-row label {
    padding-top: 0;
    text-align: left;
  }

  .form-actions {
    padding-left: 0;
  }
}
