:root {

    --paper:#F6F2EB;

    --text:#1C1C1C;

    --accent:#8B6E4E;

    --white:#ffffff;

    --radius:30px;

}

/* ================= GLOBAL WHITE PAPER BACKGROUND ================= */

body {
    background:
        linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
        url("../images/textures/paper-texture.webp");
    background-size: 520px auto;
    background-repeat: repeat;
    background-attachment: fixed;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background-color:#F6F2EB;
    background-image:url('../images/textures/paper-texture.webp');
    background-repeat:repeat;
    background-size:700px;
    color:#1C1C1C;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

h1,h2,h3,h4{

    font-family:'Cormorant Garamond',serif;

}

img{

    width:100%;

    display:block;

}

section{

    position:relative;

}
/* ==========================
   CONTAINER
========================== */

.container{
    width:min(1400px,90%);
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:all .4s ease;
}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu-btn{
    display:none;
    width:42px;
    height:42px;
    border:0;
    background:rgba(255,255,255,.14);
    border-radius:50%;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:10001;
}

.mobile-menu-btn span{
    width:18px;
    height:2px;
    background:#fff;
    display:block;
    transition:.3s ease;
}

.site-header.active .mobile-menu-btn span{
    background:#1c1c1c;
}

.mobile-menu-btn.active span:nth-child(1){
    transform:translateY(4px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2){
    transform:translateY(-4px) rotate(-45deg);
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:82%;
    max-width:360px;
    height:100vh;
    z-index:9998;
    background:#F6F2EB;
    box-shadow:-20px 0 60px rgba(0,0,0,.15);
    padding:110px 34px 40px;
    display:flex;
    flex-direction:column;
    gap:24px;
    transition:.45s ease;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    text-decoration:none;
    color:#1c1c1c;
    font-size:22px;
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
}

.mobile-book-btn{
    margin-top:20px;
    background:#8B6E4E;
    color:#fff !important;
    width:max-content;
    padding:14px 28px;
    border-radius:999px;
    font-family:'Inter',sans-serif !important;
    font-size:14px !important;
}
/* ==========================
   HERO
========================== */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.45));

}

.hero-content{

    position:relative;

    z-index:2;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    width:min(900px,90%);

    margin:auto;

}
.hero-tag{

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

    margin-bottom:20px;

}

.hero-title{

    font-size:clamp(4rem,4vw,7rem);

    line-height:0.95;

    margin-bottom:20px;

}

.hero-description{

    font-size:1.1rem;

    max-width:600px;

    line-height:1.7;

    margin-bottom:35px;

}
.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero {
  padding-bottom: 120px; /* space for floating strip */
}

.primary-btn{

    background:#8B6E4E;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:999px;

}

.secondary-btn{

    border:1px solid white;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:999px;

}
.scroll-indicator{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:30px;

    z-index:2;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,100%{

        transform:
        translateX(-50%)
        translateY(0);

    }

    50%{

        transform:
        translateX(-50%)
        translateY(10px);

    }

}

/* Header after scroll */

.site-header.active{
    background:rgba(246,242,235,.88);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Navigation */

.nav{
    min-height:92px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
}

/* Left + Right Menu */

.nav-left,
.nav-right{
    display:flex;
    align-items:center;
    gap:32px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-left{
    justify-self:start;
}

.nav-right{
    justify-self:end;
}

.nav-left a,
.nav-right a{
    text-decoration:none;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
    transition:.3s ease;
}

.nav-left a:hover,
.nav-right a:hover{
    opacity:.7;
}

/* Center Logo */

.logo{
    justify-self:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.logo img{
    width:95px;
    height:auto;
    display:block;
}

/* Scroll State */

.site-header.active .nav-left a,
.site-header.active .nav-right a{
    color:#1c1c1c;
}

.site-header.active .logo img{
    filter:none;
}

/* Right Side */

.nav-right{

    display:flex;

    align-items:center;

}

/* Button */

.book-btn{

    background:#8B6E4E;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.book-btn:hover{

    transform:translateY(-2px);

}

/* Scroll State Text Colors */

.site-header.active .nav-left a{

    color:#1c1c1c;

}

.site-header.active .logo{

    color:#1c1c1c;

}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* KEY TRICK */
  align-items: center;
  padding: 15px 40px;
}

/* LEFT + RIGHT NAV */
.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: white; /* adjust based on hero */
  font-weight: 500;
}

/* CENTER LOGO */
.logo {
  justify-self: center;
}

.logo img {
  height: 60px;
  width: auto;
}
.booking-strip{
    position:relative;
    z-index:20;
    margin-top:-65px;
    padding-bottom:0;
    margin-bottom:0;
}

.booking-container {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 20px 25px;
  border-radius: 16px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  width: 85%;
  max-width: 1100px;
  align-items: end;
   position:relative;
    z-index:50;
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.field label {
  font-size: 12px;
  margin-bottom: 6px;
  color: #333;
}

.field input,
.field select {
  border: none;
  background: #f5f5f5;
}

/* Button */
.book-btn {
  background: #8B6E4E;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
}

.book-btn:hover {
  background: #333;
}
.booking-container {
  transition: transform 0.3s ease;
}

.booking-container:hover {
  transform: translateY(-5px);
}


@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
    gap: 12px;
    width: 92%;
  }

  .booking-strip {
    margin-top: -40px;
  }
}

/* ==========================
   LOCATIONS SECTION
========================== */

.locations-section{

    padding:180px 0 120px;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto;

}

.section-heading span{

    letter-spacing:3px;

    font-size:12px;

}

.section-heading h2{

    font-size:clamp(3rem,5vw,5rem);

    margin:20px 0;

}

.section-heading p{

    font-size:18px;

    line-height:1.7;

}

/* CARD */

.location-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:80px;

    padding:40px;

    background:white;

    border-radius:40px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

}

.location-video video{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:30px;

}

.location-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.location-content h3{

    font-size:3rem;

    margin-bottom:20px;

}

.location-content p{

    line-height:1.8;

    margin-bottom:30px;

}

.location-btn{

    display:inline-block;

    width:max-content;

    padding:14px 30px;

    border-radius:999px;

    background:#8B6E4E;

    color:white;

    text-decoration:none;

}
/* ==========================
   BOOKING STRIP
========================== */

.booking-strip{
    position:relative;
    z-index:40;
    margin-top:-65px;
    margin-bottom:-35px;
}

.booking-container{
    width:min(1080px,86%);
    margin:0 auto;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    align-items:end;
    gap:18px;
    box-shadow:0 24px 70px rgba(0,0,0,.14);
}

.field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.field label{
    font-size:12px;
    font-weight:600;
    color:#444;
}

.field input,
.field select{
    width:100%;
    height:46px;
    border:1px solid rgba(0,0,0,.12);
    border-radius:12px;
    padding:0 14px;
    font-family:'Inter',sans-serif;
    font-size:14px;
    background:#fff;
    color:#1c1c1c;
}

.booking-submit{
    width:100%;
    height:46px;
    border:0;
    border-radius:14px;
    background:#8B6E4E;
    color:#fff;
    font-family:'Inter',sans-serif;
    font-weight:600;
    cursor:pointer;
    transition:.3s ease;
}

.booking-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(139,110,78,.28);
}

/* ==========================
   TORN PAPER DIVIDER
========================== */

.torn-paper-divider{
    position:relative;
    width:100%;
    height:55px;
    margin-top:-35px;
    z-index:6;
    background:#F6F2EB;
    overflow:hidden;
}

.torn-paper-divider::before{
    content:"";
    position:absolute;
    left:0;
    top:-25px;
    width:200%;
    height:80px;
    background:
        radial-gradient(circle at 20px 40px, transparent 0, transparent 20px, #F6F2EB 21px),
        radial-gradient(circle at 60px 35px, transparent 0, transparent 18px, #F6F2EB 19px),
        radial-gradient(circle at 100px 45px, transparent 0, transparent 22px, #F6F2EB 23px),
        radial-gradient(circle at 145px 38px, transparent 0, transparent 19px, #F6F2EB 20px);
    background-size:160px 80px;
    background-repeat:repeat-x;
}

/* ==========================
   LOCATIONS SECTION
========================== */

.locations-section{
    position:relative;
    padding:90px 0 120px;
    background:#F6F2EB;
}

.section-heading{
    text-align:center;
    max-width:720px;
    margin:0 auto;
}

.section-heading span{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:4px;
    color:#8B6E4E;
    margin-bottom:16px;
}

.section-heading h2{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#1c1c1c;
    margin-bottom:20px;
}

.section-heading p{
    font-size:18px;
    line-height:1.7;
    color:#444;
}

.location-card{
    margin-top:80px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:55px;
    align-items:center;
    padding:38px;
    background:#ffffff !important;
    border:1px solid rgba(139,110,78,.14);
    border-radius:42px;
    box-shadow:0 24px 70px rgba(0,0,0,.08);
}

.location-video{
    height:420px;
    border-radius:32px;
    overflow:hidden;
}

.location-video video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.location-content{
    padding-right:20px;
}

.location-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#8B6E4E;
    margin-bottom:18px;
}

.location-content h3{
    font-size:clamp(2.4rem,4vw,4rem);
    line-height:1;
    margin-bottom:22px;
    color:#1c1c1c;
}

.location-content p{
    font-size:17px;
    line-height:1.8;
    color:#444;
    margin-bottom:32px;
}

.location-btn{
    display:inline-block;
    background:#8B6E4E;
    color:#fff;
    padding:15px 32px;
    border-radius:999px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

/* ==========================
   REAL TORN PAPER DIVIDER
========================== */

.torn-divider{
    position:relative;
    width:100%;
    height:62px;
    z-index:15;
    margin:0;
    pointer-events:none;

    background-image:url("../images/dividers/torn-top2.png");
    background-repeat:repeat-x;
    background-position:center center;
    background-size:auto 62px;
}

.torn-after-booking{
    margin-top:-12px;
    margin-bottom:-4px;
}

/* ==========================
   ABOUT CASA SECTION
========================== */

.about-casa-section{
    position:relative;
    padding:50px 0 120px;
    background-color:#F6F2EB;
    background-image:url("../images/textures/paper-texture.webp");
    background-size:700px;
    background-repeat:repeat;
    overflow:hidden;
}

.about-casa-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* Left Media Card */

.about-media-card{
    position:relative;
    transform:rotate(-1.5deg);
}

.about-media{
    position:relative;
    height:430px;
    overflow:hidden;
    border-radius:8px;
    background:#fff;
    padding:14px;
    box-shadow:0 24px 70px rgba(0,0,0,.14);
}

.about-media video,
.about-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Tape */

.tape{
    position:absolute;
    width:92px;
    z-index:4;
    opacity:.85;
    pointer-events:none;
}

.tape-one{
    top:-26px;
    left:-24px;
    transform:rotate(-16deg);
}

/* Right Content */

.about-content{
    position:relative;
    z-index:2;
}

.section-kicker{
    display:inline-block;
    font-family:'Cormorant Garamond',serif;
    font-size:22px;
    color:#8B6E4E;
    margin-bottom:18px;
}

.about-content h2{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#1c1c1c;
    margin-bottom:26px;
}

.about-content p{
    max-width:600px;
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:34px;
}

.about-btn{
    display:inline-block;
    background:#8B6E4E;
    color:#fff;
    padding:15px 34px;
    border-radius:999px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
}

.about-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(139,110,78,.25);
}

/* Floating Elements */

.floating-element{
    position:absolute;
    pointer-events:none;
    z-index:1;
    opacity:.9;
}

.fern-left{
    width:170px;
    left:-40px;
    bottom:60px;
    transform:rotate(18deg);
}

.pine-right{
    width:120px;
    right:40px;
    top:120px;
    transform:rotate(-18deg);
}
.booking-container button,
.booking-submit{
    background:#8B6E4E !important;
    color:#fff !important;
    border:none !important;
}

.booking-container button:hover,
.booking-submit:hover{
    background:#74593d !important;
}
.about-casa-section{
    margin-top:0;
}

.about-media{
    background:#fff;
    border:12px solid #fff;
}

.about-media img{
    border-radius:4px;
}

/* ================= CHOOSE CASA RIGHT DECOR ================= */

.choose-casa {
    position: relative;
    overflow: visible;
}

.choose-right-decor {
    position: absolute;
    right: 4%;
    top: -190px;
    width: min(360px, 26vw);
    height: auto;
    z-index: 4;
    opacity: 0.9;
    pointer-events: none;
    user-select: none;
    transform: rotate(5deg);
}

.choose-casa-container {
    position: relative;
    z-index: 8;
}

/* ================= CHOOSE YOUR CASA SECTION ================= */

.choose-casa {
    position: relative;
    padding: 90px 0 30px;
    overflow: visible;
    background:
        linear-gradient(rgba(248, 241, 229, 0.88), rgba(248, 241, 229, 0.88)),
        url("../images/textures/paper-texture.webp");
    background-size: cover;
}

.choose-casa-container {
    position: relative;
    z-index: 2;
}

.section-kicker {
    font-family: var(--script-font, 'Caveat', cursive);
    font-size: 28px;
    color: #8B6E4E;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    color: #231b15;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-intro {
    max-width: 560px;
    color: #5f5145;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.location-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1120px;
    margin: 0 auto;
    padding-bottom: 220px;
    overflow: visible;
}

.location-card {
    position: sticky;
    top: 110px;
    display: grid;
    grid-template-columns: 46% 1fr;
    gap: 42px;
    align-items: center;
    min-height: 320px;
    padding: 24px;
    background:
        linear-gradient(rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.96)),
        url("../images/textures/paper-texture.webp");
    border: 1px solid rgba(139, 110, 78, 0.18);
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(65, 48, 32, 0.14);
    transform-origin: center top;
}

.location-card:nth-child(1) {
    z-index: 3;
    top: 105px;
}

.location-card:nth-child(2) {
     z-index: 4;
    top: 145px;
}

.location-card:nth-child(3) {
    z-index: 5;
    top: 185px;
}

.location-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(139, 110, 78, 0.16);
    border-radius: 8px;
    pointer-events: none;
}

.location-card-pin::after {
    content: "";
    position: absolute;
    width: 76px;
    height: 34px;
    left: 28px;
    top: -17px;
    background: rgba(226, 211, 186, 0.75);
    transform: rotate(-8deg);
    box-shadow: 0 4px 12px rgba(61, 44, 28, 0.1);
}

.location-media {
    position: relative;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    background: #d9cab5;
    box-shadow: 0 16px 34px rgba(52, 38, 24, 0.18);
}

.location-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.7s ease;
}

.location-card:hover .location-media img {
    transform: scale(1.06);
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(35, 27, 21, 0.55);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: rgba(139, 110, 78, 0.85);
    transform: scale(1.05);
}

.play-btn span {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid #fff;
    margin-left: 4px;
}

.location-content {
    position: relative;
    z-index: 2;
    padding-right: 22px;
}

.location-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(139, 110, 78, 0.35);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #8B6E4E;
    font-size: 20px;
    margin-bottom: 12px;
}

.location-label {
    font-family: var(--script-font, 'Caveat', cursive);
    color: #8B6E4E;
    font-size: 24px;
    margin-bottom: 8px;
}

.location-content h3 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    color: #241b15;
    margin-bottom: 16px;
    font-weight: 600;
}

.location-content p:not(.location-label) {
    color: #5b4d42;
    font-size: 15px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 22px;
}

.brown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    background: #8B6E4E;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.brown-btn:hover {
    background: #6f563b;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(139, 110, 78, 0.25);
}

.casa-float {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.9;
}

.casa-pine {
    width: 150px;
    right: 5%;
    top: 16%;
    transform: rotate(-18deg);
}

.casa-fern {
    width: 170px;
    left: -28px;
    bottom: 12%;
    transform: rotate(26deg);
}

/* ================= LEAF DECOR DIVIDER ================= */

.leaf-decor-divider {
    position: relative;
    width: 100%;
    padding: 0;
    margin: -20px 0 -35px;
    background: transparent;
    overflow: hidden;
    z-index: 4;
}

.leaf-decor-divider img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

/* ================= WHY STAY SECTION ================= */

.why-stay {
    position: relative;
    padding: 35px 0 76px;
    background: #f8f1e5;
    overflow: hidden;
    border-top: 1px solid rgba(139, 110, 78, 0.12);
    border-bottom: 1px solid rgba(139, 110, 78, 0.12);
}

.why-stay::before,
.why-stay::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 34px;
    background-repeat: repeat-x;
    background-size: auto 34px;
    pointer-events: none;
    z-index: 2;
}

.why-stay::before {
    top: -1px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

.why-stay::after {
    bottom: -1px;
    background-image: linear-gradient(to top, rgba(255,255,255,0.35), transparent);
}

.why-stay-container {
    position: relative;
    z-index: 3;
}

.why-heading-wrap {
    text-align: center;
    margin-bottom: 46px;
}

.why-heading-wrap .section-kicker {
    display: inline-block;
    position: relative;
    font-family: var(--script-font, 'Caveat', cursive);
    font-size: 31px;
    color: #7b6042;
    margin-bottom: 0;
}

.why-heading-wrap .section-kicker::after {
    content: "";
    position: absolute;
    width: 54px;
    height: 1px;
    background: #8B6E4E;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    opacity: 0.65;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    align-items: start;
}

.why-feature {
    text-align: center;
    position: relative;
}

.why-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: #8B6E4E;
}

.why-icon svg {
    width: 58px;
    height: 58px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-feature h3 {
    font-family: var(--body-font, 'Poppins', sans-serif);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #37291d;
    margin: 0;
}

.why-feature:hover .why-icon {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}

.why-decor {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 4;
}

.why-decor-left {
    width: 135px;
    left: 0;
    bottom: -12px;
    transform: rotate(-28deg);
    opacity: 0.9;
}

.why-decor-right {
    width: 110px;
    right: 22px;
    bottom: 0;
    transform: rotate(34deg);
    opacity: 0.9;
}

.why-tape {
    width: 72px;
    right: 86px;
    top: 18px;
    opacity: 0.75;
    transform: rotate(12deg);
}

/* ================= WHY STAY SMALL VISUAL FIXES ================= */

/* Reduce gap between icon and text */
.why-icon {
    margin-bottom: 6px;
}

/* Turn fern image by 90 degrees */
.why-decor-left {
    transform: rotate(62deg);
}

.why-decor-right {
    transform: rotate(-18deg);
}

/* Flip pinecone image wherever used */
.casa-pine,
.why-pine {
    transform: scaleX(-1) rotate(18deg);
}

/* ================= MOMENTS + TESTIMONIALS SECTION ================= */

.memories-testimonials {
    position: relative;
    padding: 88px 0 100px;
    background: #f8f1e5;
    overflow: hidden;
}

.memories-testimonials-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
    position: relative;
}

.memories-column,
.testimonials-column {
    position: relative;
}

.memories-heading h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.95;
    color: #221914;
    margin: 0 0 20px;
    font-weight: 600;
}

.camera-doodle {
    position: absolute;
    top: 6px;
    left: 230px;
    width: 88px;
    opacity: 0.75;
}

.camera-doodle svg {
    width: 100%;
    height: auto;
    stroke: #7d6244;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.memories-collage {
    position: relative;
    height: 340px;
    margin-top: 10px;
}

.polaroid {
    position: absolute;
    background: #fff;
    padding: 10px 10px 16px;
    box-shadow: 0 16px 30px rgba(40, 28, 18, 0.18);
    border-radius: 3px;
}

.polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.polaroid-tape {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 82px;
    height: 22px;
    background: rgba(217, 196, 166, 0.78);
    box-shadow: 0 2px 8px rgba(60, 42, 28, 0.12);
}

.polaroid-one {
    width: 235px;
    height: 170px;
    left: 18px;
    bottom: 35px;
    transform: rotate(-7deg);
    z-index: 1;
}

.polaroid-two {
    width: 190px;
    height: 230px;
    left: 220px;
    bottom: 40px;
    transform: rotate(1deg);
    z-index: 2;
}

.polaroid-three {
    width: 170px;
    height: 215px;
    left: 390px;
    top: 0;
    transform: rotate(7deg);
    z-index: 3;
}

.play-badge {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(31, 23, 18, 0.62);
    border: 1px solid rgba(255,255,255,0.75);
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
}

.play-badge span {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #fff;
    margin-left: 4px;
}

.testimonials-heading {
    margin-bottom: 18px;
}

.testimonial-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(139, 110, 78, 0.18);
    background: rgba(255,255,255,0.78);
    color: #6b5338;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(50, 34, 23, 0.08);
    transition: all 0.25s ease;
    flex: 0 0 42px;
}

.testimonial-nav:hover {
    background: #8B6E4E;
    color: #fff;
}

.testimonial-slider {
    position: relative;
    flex: 1;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: #f9f3e7;
    border-radius: 18px;
    padding: 34px 38px 30px;
    border: 1px solid rgba(139, 110, 78, 0.12);
    box-shadow: 0 18px 34px rgba(48, 34, 23, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(139, 110, 78, 0.12);
    border-radius: 14px;
    pointer-events: none;
}

.testimonial-card.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.testimonial-text {
    font-size: 21px;
    line-height: 1.8;
    color: #3c2b1f;
    margin: 0 0 18px;
    max-width: 92%;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    color: #b6864b;
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 18px;
    color: #2a1e16;
}

.testimonial-author p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #6c5844;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.testimonial-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(139, 110, 78, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
}

.testimonial-dots .dot.is-active {
    background: #8B6E4E;
    transform: scale(1.1);
}

.happy-stamp {
    position: absolute;
    right: -10px;
    bottom: -16px;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(120, 95, 68, 0.45);
    border-radius: 50%;
    transform: rotate(16deg);
    opacity: 0.8;
    display: grid;
    place-items: center;
}

.stamp-inner {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(120, 95, 68, 0.35);
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
}

.stamp-icon {
    font-size: 24px;
    color: #86694b;
}

.stamp-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 1.8px;
    color: #86694b;
    font-weight: 600;
}

.stamp-text.top {
    top: 15px;
}

.stamp-text.bottom {
    bottom: 15px;
}

/* ================= PRE FOOTER CTA SECTION ================= */

.pre-footer-cta {
    position: relative;
    padding: 82px 0 76px;
    background: transparent;
    text-align: center;
    overflow: hidden;
}

.pre-footer-cta-inner {
    position: relative;
    z-index: 2;
}

.pre-footer-cta h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.05;
    color: #231b15;
    margin: 0 0 14px;
    font-weight: 600;
}

.pre-footer-cta p {
    font-size: 16px;
    color: #6a5a4b;
    margin: 0 0 28px;
}

.pre-footer-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.pre-footer-cta .outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid rgba(139, 110, 78, 0.55);
    color: #6f563b;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.pre-footer-cta .outline-btn:hover {
    background: #8B6E4E;
    color: #fff;
    transform: translateY(-2px);
}

/* ================= FOOTER SECTION ================= */

.site-footer {
    position: relative;
    background: #f8f1e5;
    overflow: hidden;
    padding: 118px 0 0;
    border-top: none;
}

.footer-main {
    position: relative;
    z-index: 3;
}

.footer-cta {
    text-align: center;
    margin-bottom: 70px;
}

.footer-cta h2 {
    font-family: var(--heading-font, 'Cormorant Garamond', serif);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    color: #231b15;
    margin: 0 0 12px;
    font-weight: 600;
}

.footer-cta p {
    font-size: 16px;
    color: #6a5a4b;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr 1.25fr;
    gap: 42px;
    align-items: start;
    padding-bottom: 58px;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 185px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 260px;
    font-size: 15px;
    line-height: 1.75;
    color: #5b4d42;
    margin: 0 0 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(139, 110, 78, 0.34);
    color: #6f563b;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 17px;
    background: rgba(255, 250, 240, 0.54);
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: #8B6E4E;
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-family: var(--body-font, 'Poppins', sans-serif);
    color: #2c2119;
    font-size: 17px;
    margin: 0 0 18px;
    font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 14px;
    color: #5c4d40;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #8B6E4E;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-icon {
    width: 18px;
    flex: 0 0 18px;
    color: #8B6E4E !important;
    font-size: 15px !important;
}

/* Map Card */
.footer-map-card {
    position: relative;
    min-height: 270px;
    border-radius: 26px;
    background:
        linear-gradient(rgba(245, 234, 215, 0.82), rgba(245, 234, 215, 0.82)),
        radial-gradient(circle at 30% 30%, rgba(139, 110, 78, 0.12), transparent 32%),
        radial-gradient(circle at 75% 60%, rgba(139, 110, 78, 0.12), transparent 30%);
    border: 1px solid rgba(139, 110, 78, 0.16);
    box-shadow: 0 16px 36px rgba(54, 38, 25, 0.10);
    overflow: hidden;
    transform: rotate(-3deg);
}

.footer-map-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(139, 110, 78, 0.25);
    border-radius: 20px;
}

.footer-map-card::after {
    content: "";
    position: absolute;
    inset: -24px;
    background-image:
        linear-gradient(105deg, transparent 30%, rgba(139, 110, 78, 0.08) 31%, transparent 32%),
        linear-gradient(15deg, transparent 35%, rgba(139, 110, 78, 0.08) 36%, transparent 37%);
    opacity: 0.75;
}

.map-route-line {
    position: absolute;
    width: 74%;
    height: 62%;
    left: 12%;
    top: 18%;
    border: 2px dashed rgba(139, 110, 78, 0.34);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(18deg);
    z-index: 2;
}

.map-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 4;
}

.map-pin span {
    width: 20px;
    height: 20px;
    background: #1f1712;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: block;
    position: relative;
    box-shadow: 0 3px 7px rgba(0,0,0,0.18);
}

.map-pin span::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #f8f1e5;
    border-radius: 50%;
    left: 6px;
    top: 6px;
}

.map-pin p {
    margin: 0;
    font-family: var(--script-font, 'Caveat', cursive);
    font-size: 22px;
    color: #241a13;
    font-weight: 700;
    transform: rotate(3deg);
}

.map-pin-leh {
    right: 22%;
    top: 24%;
}

.map-pin-dehradun {
    right: 9%;
    top: 48%;
}

.map-pin-noida {
    right: 23%;
    bottom: 20%;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(139, 110, 78, 0.14);
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.45);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
    margin: 0;
    font-size: 13px;
    color: #6b5b4c;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #8B6E4E;
}

/* Footer Decorations */
.footer-mountain-sketch {
    position: absolute;
    width: 340px;
    right: 40px;
    left: auto;
    top: 90px;
    opacity: 0.24;
    z-index: 1;
    transform: rotate(2deg);
}

.footer-pinecone {
    position: absolute;
    width: 140px;
    right: -18px;
    bottom: 12px;
    opacity: 0.92;
    z-index: 4;
    transform: scaleX(-1) rotate(-18deg);
}

.footer-tape {
    position: absolute;
    width: 82px;
    right: 30%;
    top: 28px;
    opacity: 0.7;
    z-index: 2;
    transform: rotate(-15deg);
}

/* ================= FOOTER TORN DIVIDER ================= */

.footer-torn-divider {
    position: absolute;
    left: 0;
    top: -2px;
    width: 100%;
    height: 82px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.footer-torn-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= REMOVE CREAM BACKGROUNDS SITE-WIDE ================= */

.about-casa,
.choose-casa,
.why-stay,
.memories-testimonials,
.site-footer {
    background: transparent !important;
}

/* ================= WHITE PAPER CARD BACKGROUNDS ================= */

.location-card,
.testimonial-card,
.footer-map-card,
.booking-container,
.about-image-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
}

/* ================= HEADER LEFT LOGO + RIGHT MENU FIX ================= */

.site-header {
    position: fixed;
    top: 22px;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.35s ease;
}

.header-container {
    width: min(1180px, 90%);
    margin: 0 auto;
    min-height: 74px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    border-radius: 999px;
    transition: all 0.35s ease;
}

/* Logo left */
.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-logo img {
    width: 178px;
    height: auto;
    display: block;
}

/* Menu right */
.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.desktop-nav a {
    font-size: 13px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.045em;
    transition: color 0.25s ease;
}

.desktop-nav a:hover {
    color: #d8b88f;
}

/* CTA extreme right */
.header-cta {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8B6E4E;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #6f563b;
    transform: translateY(-2px);
}

/* Header after scroll */
.site-header.scrolled .header-container {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(34, 24, 18, 0.12);
}

.site-header.scrolled .desktop-nav a {
    color: #2d2119;
}

.site-header.scrolled .desktop-nav a:hover {
    color: #8B6E4E;
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
}

/* ================= HEADER FINAL FIX ================= */

.site-header {
    position: fixed !important;
    top: 22px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
}

.header-container {
    width: min(1180px, 90%) !important;
    min-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    border-radius: 999px !important;
    background: transparent !important;
    transition: all 0.35s ease !important;
}

/* Logo left */
.site-logo {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    flex: 0 0 auto !important;
}

.site-logo img {
    width: 165px !important;
    height: auto !important;
    display: block !important;
}

/* Menu right */
.desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 32px !important;
    margin-left: auto !important;
}

.desktop-nav a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    line-height: 1 !important;
}

.desktop-nav a:hover {
    color: #d9bd92 !important;
}

/* CTA button extreme right */
.header-cta {
    min-height: 44px !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #8B6E4E !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
}

.header-cta:hover {
    background: #6f563b !important;
}

/* Header on scroll */
.site-header.scrolled .header-container {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 12px 30px rgba(34, 24, 18, 0.12) !important;
}

.site-header.scrolled .desktop-nav a {
    color: #2d2119 !important;
}

.site-header.scrolled .desktop-nav a:hover {
    color: #8B6E4E !important;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none !important;
}

/* Hide mobile menu on desktop */
.mobile-menu {
    display: none;
}
/* ================= CASA HEADER FINAL CLEAN FIX ================= */

.cc-header {
    position: fixed;
    top: 22px;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: transparent;
}

.cc-header-inner {
    width: min(1180px, 90%);
    height: 72px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 999px;
    transition: all 0.35s ease;
}

.cc-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.cc-logo img {
    width: 165px;
    max-height: 58px;
    height: auto;
    display: block;
    object-fit: contain;
}

.cc-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.cc-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.cc-nav a:hover {
    color: #d9bd92;
}

.cc-header-btn {
    min-height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #8B6E4E;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.cc-header-btn:hover {
    background: #6f563b;
}

.cc-header.scrolled .cc-header-inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(34, 24, 18, 0.12);
}

.cc-header.scrolled .cc-nav a {
    color: #2d2119;
}

.cc-header.scrolled .cc-nav a:hover {
    color: #8B6E4E;
}

.cc-menu-btn {
    display: none;
}

.cc-mobile-menu {
    display: none;
}

/* ================= SCROLL ANIMATED PINECONE ================= */

.scroll-pinecone {
    position: fixed;
    top: 0;
    left: 0;
    width: 118px;
    height: auto;
    z-index: 75;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transform-origin: center center;
    will-change: transform, opacity;
}

/* Keep footer pinecone visible for final merge */
.footer-pinecone {
    z-index: 80;
}

/* ================= DESKTOP LOCATION CARD STACK CLEAN FIX ================= */

.location-card {
    background: #ffffff !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.location-card::before {
    z-index: 1;
}

.location-media,
.location-content {
    position: relative;
    z-index: 3;
}

/* =========================================================
   AVAILABILITY QR POPUP
   ========================================================= */

.availability-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(35, 27, 20, 0.65);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease,
                visibility 0.3s ease;

    z-index: 99999;
}

.availability-modal.active {
    opacity: 1;
    visibility: visible;
}

.availability-modal-content {
    position: relative;

    width: min(430px, 92vw);

    padding: 40px 35px;

    background: #fff;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(25px) scale(0.96);

    transition: transform 0.35s ease;
}

.availability-modal.active .availability-modal-content {
    transform: translateY(0) scale(1);
}

.availability-modal-content h2 {
    margin: 8px 0 12px;
}

.availability-modal-content p {
    line-height: 1.6;
}

.availability-qr {
    display: block;

    width: 240px;
    height: 240px;

    max-width: 100%;

    object-fit: contain;

    margin: 20px auto 0;
}

.availability-close {
    position: absolute;

    top: 10px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: none;

    background: transparent;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    color: #5d4b3c;
}