* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f3efe8;
  color: #1d1814;
  overflow-x: hidden;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;

  display: flex;
  align-items: center;

  padding: 0 8%;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.82),
      rgba(0,0,0,.35)
    ),
    url("room-01.jpg") center center/cover;

  transform: scale(1.08);

  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.16);
  }
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 760px;

  color: white;

  animation: fadeUp 1.3s ease forwards;
}

.eyebrow {
  color: #c8a56c;

  text-transform: uppercase;

  letter-spacing: 3px;

  font-size: 13px;

  font-weight: bold;

  margin-bottom: 18px;
}

h1 {
  font-size: clamp(52px, 8vw, 110px);

  line-height: .92;

  margin-bottom: 28px;

  font-weight: 700;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);

  line-height: 1.05;

  margin-bottom: 24px;
}

h3 {
  font-size: 42px;

  margin: 14px 0 20px;
}

p {
  line-height: 1.8;

  font-size: 18px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 18px;

  flex-wrap: wrap;

  margin-top: 40px;
}

.btn,
button {
  border: none;

  cursor: pointer;

  text-decoration: none;

  padding: 18px 34px;

  border-radius: 999px;

  font-weight: bold;

  font-size: 15px;

  transition:
    transform .35s ease,
    background .35s ease,
    box-shadow .35s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
button:hover {
  transform: translateY(-3px);
}

.btn {
  background: #b9935f;

  color: white;

  box-shadow:
    0 15px 35px rgba(185,147,95,.35);
}

.btn:hover {
  box-shadow:
    0 22px 55px rgba(185,147,95,.55);
}

.btn.ghost {
  background: rgba(255,255,255,.12);

  border: 1px solid rgba(255,255,255,.3);

  color: white;

  backdrop-filter: blur(12px);
}

/* NOTICE */

.notice {
  padding: 28px 8%;

  background: #1c1713;

  color: white;

  line-height: 1.7;

  font-size: 15px;
}

/* FACTS */

.facts {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 1px;

  background: #ddd2c5;
}

.facts div {
  background: #faf6f1;

  padding: 42px 20px;

  text-align: center;

  transition:
    transform .4s ease,
    background .4s ease;
}

.facts div:hover {
  transform: translateY(-8px);

  background: white;
}

.facts span {
  display: block;

  color: #786c61;

  margin-bottom: 10px;

  font-size: 14px;
}

.facts strong {
  font-size: 30px;
}

/* SECTIONS */

.intro,
.funding,
.legal-box,
.contact {
  padding: 120px 8%;

  max-width: 1200px;

  margin: auto;
}

/* ROOMTOUR */

.tour {
  padding: 40px 8% 120px;
}

.tour-card {
  position: relative;

  min-height: 88vh;

  display: grid;

  grid-template-columns: 1.15fr .85fr;

  gap: 80px;

  align-items: center;

  margin-bottom: 120px;
}

.tour-card.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.tour-card.reverse img {
  order: 2;
}

.tour-card-image {
  position: relative;

  overflow: hidden;

  border-radius: 36px;
}

.tour-card img {
  width: 100%;

  height: 720px;

  object-fit: cover;

  border-radius: 36px;

  box-shadow:
    0 35px 80px rgba(0,0,0,.18);

  transition:
    transform 1.2s cubic-bezier(.19,1,.22,1),
    box-shadow 1s ease,
    filter 1s ease;

  transform: scale(1);

  filter: brightness(.96);
}

.tour-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 36px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.28),
      transparent 45%
    );

  opacity: 0;

  transition: opacity .9s ease;

  pointer-events: none;
}

.tour-card:hover::after {
  opacity: 1;
}

.tour-card:hover img {
  transform: scale(1.12);

  filter: brightness(1.04);

  box-shadow:
    0 55px 120px rgba(0,0,0,.35);
}

.tour-card div {
  background:
    rgba(255,255,255,.74);

  backdrop-filter: blur(18px);

  padding: 55px;

  border-radius: 34px;

  box-shadow:
    0 25px 60px rgba(0,0,0,.08);

  position: relative;

  z-index: 2;

  transition:
    transform .6s ease,
    box-shadow .6s ease;
}

.tour-card:hover div {
  transform: translateY(-10px);

  box-shadow:
    0 35px 90px rgba(0,0,0,.12);
}

.tour-card span {
  font-size: 76px;

  color: #dcc4a1;

  font-weight: bold;

  line-height: 1;
}

/* FUNDING */

.funding {
  text-align: center;
}

/* FINANCE */

.finance {
  background:
    linear-gradient(
      135deg,
      #171310,
      #241c16
    );

  color: white;

  padding: 120px 8%;

  display: grid;

  grid-template-columns: 1fr 430px;

  gap: 80px;

  align-items: center;
}

.calculator {
  background:
    rgba(255,255,255,.95);

  backdrop-filter: blur(18px);

  color: #1d1814;

  padding: 42px;

  border-radius: 34px;

  box-shadow:
    0 40px 90px rgba(0,0,0,.25);
}

.calculator label {
  display: block;

  margin-top: 18px;

  margin-bottom: 8px;

  font-weight: bold;
}

.calculator input,
.contact input,
.contact textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 16px;

  border: 1px solid #ddd;

  font-size: 16px;

  transition:
    border .3s ease,
    box-shadow .3s ease;
}

.calculator input:focus,
.contact input:focus,
.contact textarea:focus {
  outline: none;

  border-color: #b9935f;

  box-shadow:
    0 0 0 5px rgba(185,147,95,.15);
}

.calculator button,
.contact button {
  width: 100%;

  margin-top: 28px;

  background: #b9935f;

  color: white;
}

.result {
  margin-top: 30px;

  background: #f4efe8;

  border-radius: 24px;

  padding: 28px;
}

.result span {
  display: block;

  color: #7d7167;

  margin-top: 10px;
}

.result strong {
  display: block;

  font-size: 34px;

  margin-top: 6px;
}

small {
  display: block;

  margin-top: 20px;

  line-height: 1.6;

  color: #6c6259;
}

/* LEGAL */

.legal-box {
  background: white;

  border-radius: 38px;

  box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

/* CONTACT */

.contact form {
  margin-top: 40px;
}

.contact textarea {
  min-height: 160px;

  resize: vertical;
}

.check {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-top: 18px;

  font-size: 14px;

  line-height: 1.5;
}

.check input {
  width: auto;

  margin-top: 4px;
}

/* FOOTER */

footer {
  padding: 42px 8%;

  background: #14110e;

  color: rgba(255,255,255,.75);

  text-align: center;

  font-size: 14px;
}

/* REVEAL */

.reveal {
  opacity: 0;

  transform: translateY(80px);

  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */

@media (max-width: 1100px) {

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-card,
  .tour-card.reverse,
  .finance {
    grid-template-columns: 1fr;
  }

  .tour-card.reverse img {
    order: 0;
  }

  .tour-card img {
    height: 500px;
  }

  .tour-card {
    gap: 40px;
  }

  h1 {
    font-size: 58px;
  }
}

@media (max-width: 700px) {

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .tour-card div {
    padding: 34px;
  }

  .tour-card span {
    font-size: 56px;
  }

  .tour-card h3 {
    font-size: 34px;
  }

  .tour-card img {
    height: 420px;
  }

  .finance {
    padding: 90px 6%;
  }

  .intro,
  .funding,
  .legal-box,
  .contact {
    padding: 90px 6%;
  }
}

.finance {
  background:
    linear-gradient(
      135deg,
      #171310,
      #241c16
    );

  color: white;

  padding: 140px 8%;
}

.finance-content {
  max-width: 1200px;
  margin: auto;
}

.finance-intro {
  max-width: 850px;

  margin-bottom: 60px;

  opacity: .9;
}

.finance-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 24px;

  margin-bottom: 50px;
}

.finance-box {
  background:
    rgba(255,255,255,.08);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 30px;

  padding: 40px;

  transition:
    transform .5s ease,
    background .5s ease,
    box-shadow .5s ease;
}

.finance-box:hover {
  transform: translateY(-8px);

  background:
    rgba(255,255,255,.12);

  box-shadow:
    0 25px 60px rgba(0,0,0,.25);
}

.finance-box span {
  display: block;

  color: rgba(255,255,255,.65);

  margin-bottom: 14px;

  font-size: 14px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.finance-box strong {
  font-size: 36px;

  line-height: 1.2;
}

.finance-box.highlight {
  background:
    linear-gradient(
      135deg,
      #b9935f,
      #d2ae79
    );

  color: white;
}

.finance-box.highlight span {
  color: rgba(255,255,255,.82);
}

.finance-details {
  display: flex;

  gap: 22px;

  flex-wrap: wrap;

  margin-bottom: 50px;
}

.detail {
  background:
    rgba(255,255,255,.05);

  padding: 20px 26px;

  border-radius: 18px;
}

.detail span {
  display: block;

  font-size: 13px;

  opacity: .65;

  margin-bottom: 6px;
}

.detail strong {
  font-size: 18px;
}

.finance-note {
  background:
    rgba(255,255,255,.06);

  border-left: 4px solid #b9935f;

  padding: 34px;

  border-radius: 0 24px 24px 0;

  line-height: 1.8;

  color: rgba(255,255,255,.85);
}

.finance-note p + p {
  margin-top: 18px;
}

@media (max-width: 1000px) {

  .finance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .finance-grid {
    grid-template-columns: 1fr;
  }

  .finance-box strong {
    font-size: 30px;
  }

}