:root {
  --bg: #0b0a0b;
  --panel: #151215;
  --panel2: #1b171b;
  --text: #f4efe9;
  --muted: #b8ada7;
  --accent: #8f3145;
  --accent2: #c47a8c;
  --line: rgba(244, 239, 233, .13);
  --max: 1180px;
}

/* =========================
   RESET
   ========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--muted);
  margin: 0 0 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* =========================
   CONTAINER
   ========================= */

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

/* =========================
   NAVIGATION
   ========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;

  background: rgba(11, 10, 11, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: Georgia, serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;

  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--accent2);
}

.menu {
  display: none;

  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 11px;
  cursor: pointer;
}

/* =========================
   HERO
   ========================= */

.hero {
  min-height: 92vh;

  display: grid;
  place-items: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 35%,
      rgba(143, 49, 69, .26),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #0b0a0b 25%,
      #171116 100%
    );
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(11, 10, 11, .9),
      rgba(11, 10, 11, .28),
      rgba(11, 10, 11, .65)
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;

  padding: 150px 0 90px;

  width: min(100%, var(--max));
}

.eyebrow {
  color: var(--accent2);

  letter-spacing: .22em;
  text-transform: uppercase;

  font-size: .76rem;

  margin-bottom: 20px;
}

.hero h1 {
  max-width: 850px;
}

.hero .lead {
  font-size: 1.15rem;
  max-width: 620px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border: 1px solid var(--accent2);

  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;

  cursor: pointer;

  transition:
    transform .2s ease,
    filter .2s ease,
    background .2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* =========================
   SECTIONS
   ========================= */

section {
  padding: 105px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 45px;
}

/* =========================
   CARDS
   ========================= */

.grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.card {
  background:
    linear-gradient(
      145deg,
      var(--panel),
      var(--panel2)
    );

  border: 1px solid var(--line);

  padding: 30px;
}

.price {
  font-family: Georgia, serif;

  font-size: 1.5rem;

  margin: 18px 0;

  color: var(--text);
}

.card ul {
  padding-left: 18px;
  color: var(--muted);
}

/* =========================
   ABOUT / SPLIT
   ========================= */

.split {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.visual {
  min-height: 520px;

  border: 1px solid var(--line);

  background:
    radial-gradient(
      circle at 60% 25%,
      rgba(196, 122, 140, .22),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      #251b20,
      #0d0b0d
    );

  display: grid;

  place-items: center;

  padding: 40px;

  overflow: hidden;
}

.visual span {
  font-family: Georgia, serif;

  font-size: clamp(2rem, 5vw, 4rem);

  opacity: .82;
}

.visual.has-profile-image {
  padding: 0;
}

.visual.has-profile-image img {
  width: 100%;
  height: 100%;

  min-height: 520px;

  object-fit: cover;

  display: block;
}

/* =========================
   GALLERY
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4 / 5;

  border: 1px solid var(--line);

  background:
    linear-gradient(
      145deg,
      #20171b,
      #0f0d0f
    );

  display: grid;

  place-items: end start;

  padding: 18px;

  overflow: hidden;

  margin: 0;
}

.gallery-item.has-media {
  padding: 0;

  place-items: stretch;
}


/* =========================
   IMAGES
   ========================= */

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}


/* =========================
   VIDEOS
   ========================= */

/*
   Videos keep the same width as image cards,
   but receive a taller vertical cell.
*/

.gallery-item.video-item {
  aspect-ratio: 9 / 16;
}


/*
   Video wrapper fills the entire card.
*/

.gallery-video {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  cursor: pointer;

  background: #080708;
}


/*
   The video fills the width completely.

   object-fit: cover prevents black bars.
*/

.gallery-video video {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  background: #080708;
}


/* =========================
   PLAY / PAUSE BUTTON
   ========================= */

.video-control {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 64px;
  height: 64px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, .65);

  background: rgba(11, 10, 11, .65);

  backdrop-filter: blur(8px);

  color: white;

  font-size: 1.25rem;

  display: flex;

  align-items: center;
  justify-content: center;

  cursor: pointer;

  z-index: 2;

  opacity: 1;

  transition:
    opacity .6s ease,
    transform .2s ease,
    background .2s ease;
}

.video-control:hover {
  background: rgba(143, 49, 69, .85);

  transform:
    translate(-50%, -50%)
    scale(1.06);
}


/*
   Playing:
   control disappears after inactivity.
*/

.gallery-video.playing:not(:hover) .video-control {
  opacity: 0;
}


/*
   Hovering over a playing video:
   show pause button again.
*/

.gallery-video.playing:hover .video-control {
  opacity: 1;
}


/*
   Paused:
   play button stays visible.
*/

.gallery-video.paused .video-control {
  opacity: 1;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 820px) {

  .gallery {
    grid-template-columns: 1fr;
  }

  .video-control {
    width: 58px;
    height: 58px;
  }

}

/* =========================
   BOOKING
   ========================= */

.booking {
  background:
    linear-gradient(
      145deg,
      #1b1217,
      #0e0c0e
    );
}

.form {
  display: grid;

  gap: 15px;

  max-width: 760px;
}

input,
select,
textarea {
  width: 100%;

  background: #0d0b0d;

  border: 1px solid var(--line);

  color: var(--text);

  padding: 14px;

  font: inherit;
}

textarea {
  min-height: 150px;

  resize: vertical;
}

label {
  display: block;

  font-size: .8rem;

  letter-spacing: .08em;

  text-transform: uppercase;

  color: var(--muted);

  margin-bottom: 7px;
}

.notice {
  font-size: .78rem;

  color: #968c88;

  margin-top: 12px;
}

/* Form success message */

.form-success {
  padding: 30px;

  border: 1px solid var(--line);

  background: var(--panel);
}

.form-success h3 {
  margin-bottom: 12px;
}

.form-error {
  color: #d88;

  font-size: .9rem;

  margin-top: 10px;
}

button:disabled {
  opacity: .6;

  cursor: wait;
}

/* =========================
   FAQ
   ========================= */

.faq {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);

  padding: 22px 0;
}

summary {
  cursor: pointer;

  font-family: Georgia, serif;

  font-size: 1.2rem;
}

/* =========================
   FOOTER
   ========================= */

footer {
  padding: 35px 0;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: .85rem;
}

footer .container {
  display: flex;

  justify-content: space-between;

  gap: 20px;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 820px) {

  .nav-links {
    display: none;

    position: absolute;

    top: 76px;

    left: 0;
    right: 0;

    background: #0b0a0b;

    padding: 20px;

    flex-direction: column;

    align-items: flex-start;

    border-bottom: 1px solid var(--line);

    gap: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu {
    display: block;
  }

  .grid,
  .gallery,
  .split {
    grid-template-columns: 1fr;
  }

  section {
    padding: 75px 0;
  }

  .visual,
  .visual.has-profile-image img {
    min-height: 360px;
  }

  footer .container {
    flex-direction: column;
  }

  .video-control {
    width: 58px;
    height: 58px;
  }

  /*
     Keep videos tall on phones too.
  */

  .gallery-video {
    aspect-ratio: 9 / 16;
  }
}

/* =========================
   SMALL PHONES
   ========================= */

@media (max-width: 480px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--max)
    );
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .actions {
    flex-direction: column;

    align-items: stretch;
  }

  .actions .btn {
    width: 100%;
  }

  .video-control {
    width: 56px;
    height: 56px;
  }
}