:root {
  --ink: #101820;
  --paper: #f7f7f4;
  --blue: #1557ff;
  --coral: #ff6a55;
  --line: #c8cbd0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.demo-notice {
  min-height: 34px;
  padding: 7px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.demo-notice p {
  margin: 0 auto 0 0;
  color: #b9bec3;
}

.demo-notice a {
  text-decoration: none;
}

.demo-header {
  height: 72px;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
  background: rgba(247, 247, 244, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
}

.demo-brand {
  width: max-content;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
}

.demo-brand span,
.demo-footer strong span {
  color: var(--blue);
}

.demo-header nav {
  display: flex;
  gap: 30px;
}

.demo-header nav a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.demo-book {
  justify-self: end;
  padding: 13px 22px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.demo-hero {
  min-height: min(760px, calc(100svh - 70px));
  margin: 0 3vw 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--blue);
}

.demo-hero > img {
  width: 100%;
  height: 100%;
  min-height: min(760px, calc(100svh - 70px));
  display: block;
  object-fit: cover;
}

.demo-hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 49%;
  background: rgba(247, 247, 244, 0.9);
  pointer-events: none;
}

.demo-hero__copy {
  width: min(660px, 48vw);
  position: absolute;
  left: 5vw;
  top: 50%;
  z-index: 1;
  transform: translateY(-54%);
}

.demo-hero__copy > p,
.demo-label {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-hero h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 74px;
  font-weight: 400;
  line-height: 0.98;
}

.demo-hero__copy > span {
  display: block;
  margin-bottom: 36px;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
}

.demo-hero__copy > a {
  min-width: 220px;
  padding: 17px 20px;
  display: inline-flex;
  justify-content: space-between;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.demo-hero__facts {
  margin: 0;
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  color: #fff;
  background: var(--ink);
}

.demo-hero__facts div {
  padding: 15px 18px;
  border-right: 1px solid #3d444a;
}

.demo-hero__facts div:last-child {
  border-right: 0;
}

.demo-hero__facts dt {
  margin-bottom: 5px;
  color: #8e969c;
  font-size: 10px;
  text-transform: uppercase;
}

.demo-hero__facts dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 18px;
}

.demo-intro,
.demo-booking,
.demo-access {
  width: min(1240px, 92vw);
  margin: 0 auto;
  padding: 130px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  border-bottom: 1px solid var(--line);
}

.demo-intro h2,
.demo-booking h2,
.demo-access h2 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1.05;
}

.demo-intro > div {
  padding-top: 54px;
  font-size: 17px;
  line-height: 2;
}

.demo-menu {
  padding: 120px 4vw;
  color: #fff;
  background: var(--ink);
}

.demo-section-head {
  width: min(1240px, 100%);
  margin: 0 auto 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.demo-section-head h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 400;
}

.demo-menu__list {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #444b51;
}

.demo-menu article {
  min-height: 320px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #444b51;
}

.demo-menu article:last-child {
  border-right: 0;
}

.demo-menu article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
}

.demo-menu h3 {
  margin: 48px 0 16px;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
}

.demo-menu p {
  color: #b8bec3;
}

.demo-menu strong {
  margin-top: auto;
  color: #fff;
  font-size: 15px;
}

.demo-booking {
  align-items: start;
}

.demo-booking > div > p:last-child {
  max-width: 430px;
  line-height: 1.8;
}

.demo-booking__form {
  padding-top: 8px;
}

.demo-booking__form > label {
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.demo-booking select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.demo-booking fieldset {
  margin: 28px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0;
  gap: 8px;
}

.demo-booking legend {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.demo-booking fieldset label {
  position: relative;
}

.demo-booking input {
  position: absolute;
  opacity: 0;
}

.demo-booking fieldset span {
  padding: 14px;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  cursor: pointer;
}

.demo-booking input:checked + span {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.demo-booking button {
  width: 100%;
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  border: 0;
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.demo-form-status {
  margin-top: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--coral);
  font-size: 13px;
}

.demo-access dl {
  margin: 0;
}

.demo-access dl div {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  border-top: 1px solid var(--line);
}

.demo-access dt {
  color: #6b7379;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.demo-access dd {
  margin: 0;
  font-size: 14px;
}

.demo-footer {
  padding: 70px 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  color: #fff;
  background: var(--ink);
}

.demo-footer strong {
  font-family: Georgia, serif;
  font-size: 54px;
}

.demo-footer p,
.demo-footer a {
  margin: 0;
  color: #aab1b7;
  font-size: 12px;
}

@media (max-width: 760px) {
  .demo-notice {
    padding: 7px 14px;
    gap: 10px;
  }

  .demo-notice p {
    display: none;
  }

  .demo-notice a {
    margin-left: auto;
  }

  .demo-header {
    height: 62px;
    grid-template-columns: 1fr auto;
  }

  .demo-header nav {
    display: none;
  }

  .demo-book {
    padding: 11px 14px;
  }

  .demo-hero {
    min-height: 690px;
    margin: 0 0 38px;
  }

  .demo-hero > img {
    min-height: 690px;
    object-position: 62% center;
  }

  .demo-hero::after {
    width: 100%;
    height: 61%;
    background: rgba(247, 247, 244, 0.9);
  }

  .demo-hero__copy {
    width: auto;
    left: 22px;
    right: 22px;
    top: 82px;
    transform: none;
  }

  .demo-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .demo-hero__facts {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-hero__facts div {
    padding: 12px 10px;
  }

  .demo-hero__facts dd {
    font-size: 14px;
  }

  .demo-intro,
  .demo-booking,
  .demo-access {
    padding: 82px 0;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .demo-intro h2,
  .demo-booking h2,
  .demo-access h2 {
    font-size: 46px;
  }

  .demo-intro > div {
    padding-top: 0;
    font-size: 15px;
  }

  .demo-menu {
    padding: 78px 4vw;
  }

  .demo-section-head {
    display: block;
  }

  .demo-section-head h2 {
    font-size: 48px;
  }

  .demo-menu__list {
    grid-template-columns: 1fr;
  }

  .demo-menu article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid #444b51;
  }

  .demo-footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
