* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid #202020;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  color: #aaa;
  font-size: 14px;
}

.nav nav a:hover {
  color: #fff;
}

.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 6%;
  border-bottom: 1px solid #202020;
}

.eyebrow,
.label {
  color: #8f8f8f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero h1 {
  margin: 8px 0 18px;
  font-size: clamp(58px, 13vw, 150px);
  line-height: 0.9;
  letter-spacing: -5px;
}

.intro {
  max-width: 540px;
  color: #bdbdbd;
  font-size: 18px;
}

.button {
  width: fit-content;
  margin-top: 25px;
  padding: 13px 20px;
  border: 1px solid #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.button:hover {
  background: #fff;
  color: #000;
}

.section {
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 6%;
  border-bottom: 1px solid #202020;
}

.section h2 {
  margin: 8px 0 18px;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1;
}

.section p:not(.label) {
  max-width: 650px;
  color: #aaa;
  font-size: 17px;
}

.text-link,
.email {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  border-bottom: 1px solid #555;
  padding-bottom: 4px;
}

.text-link:hover,
.email:hover {
  border-color: #fff;
}

.booking h2 {
  max-width: 650px;
}

.email {
  font-size: clamp(20px, 4vw, 32px);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 25px 6%;
  color: #666;
  font-size: 12px;
}

@media (max-width: 600px) {
  .nav {
    padding: 18px 5%;
  }

  .nav nav {
    gap: 14px;
  }

  .nav nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 72vh;
    padding: 70px 5%;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .section {
    padding: 75px 5%;
  }

  footer {
    padding: 22px 5%;
  }
}
