/* ========================================
   BOOKING PAGE
======================================== */

.booking-experience {
  background: #f7f1ea;
}


/* ========================================
   VIDEO BANNER
======================================== */

.booking-video {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.booking-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(45, 28, 21, 0.66),
      rgba(45, 28, 21, 0.28)
    );
}

.booking-video-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 20px;
  color: #ffffff;
  text-align: center;
}

.booking-video-content h2 {
  max-width: 800px;
  margin: 14px 0 0;
  color: #2e1e18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.booking-light-eyebrow {
  color: #f2d7c6;
}


/* ========================================
   MAIN LAYOUT
======================================== */

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: stretch;
  gap: 34px;
}


/* ========================================
   FORM CARD
======================================== */

.booking-form-card {
  padding: 45px;
  border: 1px solid #ddcec3;
  background: #ffffff;
}

.booking-form-heading {
  max-width: 650px;
  margin-bottom: 34px;
}

.booking-form-heading h2,
.booking-side-content h2 {
  margin: 12px 0 17px;
  color: #2e1e18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.05;
}

.booking-form-heading p,
.booking-side-content p {
  margin: 0 0 16px;
  color: #746159;
  font-size: 15px;
  line-height: 1.75;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  color: #392820;
  font-size: 12px;
  font-weight: 700;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid #d9c8ba;
  border-radius: 0;
  background: #fffdfb;
  color: #392820;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-field input,
.booking-field select {
  min-height: 49px;
  padding: 0 14px;
}

.booking-field textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #b9835e;
  box-shadow: 0 0 0 3px rgba(185, 131, 94, 0.12);
}

.booking-submit {
  min-height: 52px;
  margin-top: 24px;
  padding-right: 28px;
  padding-left: 28px;
}


/* ========================================
   RIGHT SIDE
======================================== */

.booking-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #f7f1ea;
}

.booking-image {
  min-height: 400px;
  overflow: hidden;
}

.booking-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  padding-top: 60px;
  border-radius: 350px;
}

.booking-contact-links {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.booking-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 15px 18px;
  border: 1px solid #d6c0af;
  background: rgba(255, 255, 255, 0.44);
  color: inherit;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.booking-contact-card:hover {
  background: #ffffff;
  transform: translateX(5px);
}

.booking-contact-icon {
  display: flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5d4c6;
  color: #a66f4b;
  font-size: 21px;
}

.booking-contact-card strong,
.booking-contact-card small {
  display: block;
}

.booking-contact-card strong {
  margin-bottom: 4px;
  color: #3a2922;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.booking-contact-card small {
  color: #756159;
  font-size: 12px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .booking-image,
  .booking-image img {
    min-height: 470px;
  }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {
  .booking-video,
  .booking-video-content {
    min-height: 260px;
  }

  .booking-video-content h2 {
    font-size: 42px;
  }

  .booking-layout {
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 65px;
  }

  .booking-form-card {
    padding: 28px 20px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-field-full {
    grid-column: auto;
  }

  .booking-submit {
    width: 100%;
  }

  .booking-side {
    display: flex;
  }

  .booking-image,
  .booking-image img {
    min-height: 430px;
  }

  .booking-side-content {
    padding: 30px 21px 33px;
  }
}

.booking-main-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
}

/* ========================================
   WHAT HAPPENS NEXT — HORIZONTAL ROW
======================================== */

.booking-side-content {
  padding: 34px;
  background: #f7efe8;
}

.booking-next-text {
  min-width: 0;
  padding-right: 28px;
  border-right: 1px solid #dbc3b2;
}

.booking-next-text .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.booking-next-text h2 {
  max-width: none;
  margin: 0;
  color: #302019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1px;
}
.booking-next-info p {
  margin: 0 0 15px;
  color: #725f56;
  font-size: 14px;
  line-height: 1.7;
}

.booking-next-info .booking-note {
  margin-bottom: 0;
}

.booking-contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.booking-contact-card {
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid #d9bca8;
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
  text-decoration: none;
}

.booking-contact-icon {
  display: flex;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eadbce;
  color: #a76f4b;
}

.booking-contact-card strong,
.booking-contact-card small {
  display: block;
}

.booking-contact-card strong {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.8px;
}

.booking-contact-card small {
  font-size: 11px;
}

.booking-experience .container {
  width: min(1380px, calc(100% - 48px));
  max-width: 1380px;
}



.booking-next-text .eyebrow{

    margin-bottom:18px;

}

.booking-next-text h2{

    font-size:58px;

    line-height:1;

    margin:0;

    max-width:340px;

}

.booking-next-info p{

    color:#725f56;

    line-height:1.8;

    margin-bottom:22px;

    font-size:16px;

}

.booking-note{

    font-weight:500;

    color:#5b473f;

}
.booking-contact-links{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-top:28px;

}

@media (max-width: 1100px) {
  .booking-main-layout {
    grid-template-columns: 1fr;
  }

  .booking-next-text {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid #dbc3b2;
    text-align: center;
  }

  .booking-next-text h2 {
    max-width: 620px;
    margin-inline: auto;
  }
}


@media(max-width:900px){

.booking-next-text h2{

max-width:100%;

font-size:44px;

}

}

@media (max-width: 1100px) {
  .booking-main-layout {
    grid-template-columns: 1fr;
  }

  .booking-next-text h2 {
    max-width: 620px;
    margin-inline: auto;
  }
}

@media (max-width: 650px) {
  .booking-experience .container {
    width: min(100% - 32px, 1380px);
  }

  .booking-side-content {
    padding: 26px 20px;
  }


  .booking-next-text {
    grid-column: auto;
  }

  .booking-next-text h2 {
    font-size: 39px;
  }
}
/* ========================================
   FULL-WIDTH NEXT STEPS
======================================== */

.booking-next-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.booking-next-layout {
  display: grid;
  grid-template-columns:
    minmax(250px, 0.85fr)
    minmax(320px, 1.2fr)
    minmax(250px, 0.95fr);
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 38px 42px;
  border: 1px solid #dfc8b7;
  border-radius: 16px;
  background:
    linear-gradient(
      110deg,
      #f5e9df 0%,
      #fffaf6 100%
    );
}

.booking-next-text {
  min-width: 0;
  padding-right: 35px;
  border-right: 1px solid #dbc3b2;
}

.booking-next-text .eyebrow {
  display: block;
  margin-bottom: 13px;
}

.booking-next-text h2 {
  margin: 0;
  color: #302019;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1.2px;
}

.booking-next-info {
  min-width: 0;
}

.booking-next-info p {
  margin: 0 0 16px;
  color: #715e55;
  font-size: 15px;
  line-height: 1.75;
}

.booking-next-info p:last-child {
  margin-bottom: 0;
}

.booking-note {
  color: #915f43 !important;
}

.booking-contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin: 0;
}

.booking-contact-card {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  padding: 14px 17px;
  border: 1px solid #d8baa6;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.booking-contact-card:hover {
  border-color: #b87c53;
  background: #ffffff;
  transform: translateY(-3px);
}

.booking-contact-icon {
  display: flex;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eadbce;
  color: #a86f49;
  font-size: 18px;
}

.booking-contact-card strong,
.booking-contact-card small {
  display: block;
}

.booking-contact-card strong {
  margin-bottom: 4px;
  color: #34231c;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.booking-contact-card small {
  color: #79655c;
  font-size: 11px;
}

@media (max-width: 1000px) {
  .booking-next-layout {
    grid-template-columns: 1fr 1fr;
  }

  .booking-next-text {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 23px;
    border-right: 0;
    border-bottom: 1px solid #dbc3b2;
    text-align: center;
  }

  .booking-next-text h2 {
    max-width: 650px;
    margin-inline: auto;
  }
}

@media (max-width: 650px) {
  .booking-next-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 21px;
  }

  .booking-next-text {
    grid-column: auto;
  }

  .booking-next-text h2 {
    font-size: 40px;
  }

  .booking-next-info {
    text-align: center;
  }
}

/* Booking Hero */

.booking-banner{
    background:
        linear-gradient(rgba(24,20,18,.52), rgba(24,20,18,.52)),
        image-set(url("../assets/images/hero/booking-hero-2560.webp") type("image/webp"), url("../assets/images/hero/booking-hero.jpeg") type("image/jpeg"))
        center 20% / cover no-repeat;
}


.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.form-status--sending {
  color: #8f674c;
}

.form-status--success {
  color: #287a44;
}

.form-status--error {
  color: #b42318;
}

.booking-submit:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
