/* ===== HERO ===== */
.hero{
  position: relative;
  background: var(--bg);
  margin-bottom: 100px; /* Space below hero for the overlap */
}

.hero__media{
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero__slide{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide--active{
  opacity: 1;
}

.hero__caption{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(980px, calc(100% - 140px));
  background: var(--gold);
  padding: 28px 24px;
  text-align: center;
}

.hero__caption h1{
  margin: 0;
  font-size: 44px;
  font-weight: 500;
  color: #21342b;
  letter-spacing: .4px;
  line-height: 1.15;
}

.hero__book-btn{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  color: #21342b;
  letter-spacing: .4px;
  line-height: 1.15;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero__book-btn:hover{
  color: var(--white);
}

/* ===== DESKTOP HERO BOOKING BOX ===== */
.hero-booking{
  position: absolute;
  top: 90px;
  right: 70px;
  z-index: 4;
}

.hero-booking__inner{
  background: #ffffff;
  width: 360px;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.hero-booking__top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-booking__col{
  text-align: center;
}

.hero-booking__label{
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 12px;
}

.hero-booking__dayname{
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(0,0,0,.45);
  margin-bottom: 8px;
}

.hero-booking__day{
  display: block;
  font-size: 78px;
  line-height: .95;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.hero-booking__month{
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #111;
}

.hero-booking__divider{
  font-size: 24px;
  color: rgba(0,0,0,.5);
}

.hero-booking__button{
  display: block;
  background: #c49c44;
  color: #111;
  text-decoration: none;
  text-align: center;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hide header book button on desktop */
.cta-book{
  display: none;
}

/* IMPORTANT: hide on mobile so mobile stays exactly the same */
@media (max-width: 900px){
  .hero-booking{
    display: none;
  }
}

@media (max-width: 760px){
  .hero__media{ height: 420px; }

  .hero__caption{
    width: calc(100% - 24px);
    padding: 18px 14px;
    transform: translate(-50%, 40%);
  }

  .hero__caption h1{ font-size: 26px; }

  .hero{ margin-bottom: 70px; }

  .cta-book{
    display: inline-flex;
  }
}

.contact-hero{
  background:#2f3f36;
  padding:120px 20px 80px;
  text-align:center;
  color:white;
}

.contact-hero h1{
  font-size:52px;
  margin:0 0 15px;
  font-weight:500;
}

.contact-hero p{
  font-size:18px;
  color:#d6b98a;
}

.contact-section{
  background:#f3f1ec;
  padding:80px 20px;
}

.contact-inner{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
}

.contact-info h2{
  font-size:38px;
  color:#b89456;
}

.contact-info p{
  font-size:17px;
  line-height:1.7;
  color:#6d6d6d;
}

.contact-info a{
  color:#b89456;
  text-decoration:none;
}

.contact-form{
  background:white;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form label{
  display:block;
  margin-bottom:8px;
  color:#2f3f36;
  font-weight:600;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:20px;
  border:1px solid #ddd;
  font-family:Georgia, serif;
  font-size:16px;
}

.contact-form button{
  background:#b89456;
  color:#111;
  border:0;
  padding:16px 28px;
  font-weight:700;
  letter-spacing:2px;
  cursor:pointer;
}

@media(max-width:900px){
  .contact-inner{
    grid-template-columns:1fr;
    gap:30px;
    width:100%;
  }

  .contact-info,
  .contact-form{
    width:100%;
    box-sizing:border-box;
  }

  .contact-hero h1{
    font-size:36px;
  }

  .contact-form{
    padding:28px 22px;
  }
}

.contact-map{
  margin-top:25px;
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.date-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media(max-width:600px){
  .date-fields{
    grid-template-columns:1fr;
  }
}

.form-consent{
  margin-bottom:18px;
}

.form-consent label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.5;
  color:#6d6d6d;
  font-weight:400;
}

.form-consent input{
  width:auto;
  margin-top:4px;
}

.captcha-box{
  margin-bottom:22px;
}

.captcha-placeholder{
  background:#f3f1ec;
  border:1px solid #ddd;
  padding:18px;
  color:#6d6d6d;
  font-size:14px;
}

.success-message{
  display:none;
  background:#edf7ed;
  border:1px solid #b89456;
  color:#2f3f36;
  padding:16px;
  margin-bottom:20px;
  line-height:1.6;
}

.contact-faqs{
  grid-column:1 / -1;
  margin-top:30px;
}

.contact-faqs h2{
  font-size:42px;
  font-weight:500;
  color:#0b3f4a;
  margin:0 0 28px;
}

.faq-item{
  background:#e9e6df;
  margin-bottom:14px;
  border:1px solid rgba(0,0,0,.08);
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:24px 28px;
  font-size:18px;
  font-weight:700;
  color:#003b4a;
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"⌃";
  font-size:22px;
  line-height:1;
}

.faq-item:not([open]) summary::after{
  content:"⌄";
}

.faq-item p{
  padding:0 28px 24px;
  margin:0;
  font-size:17px;
  line-height:1.8;
  color:#003b4a;
}

.faq-item p + p{
  padding-top:10px;
}

@media(max-width:900px){
  .contact-faqs{
    margin-top:20px;
  }

  .contact-faqs h2{
    font-size:34px;
  }

  .faq-item summary{
    padding:20px;
    font-size:16px;
  }

  .faq-item p{
    padding:0 20px 22px;
    font-size:16px;
  }
}