/* =========================================
   VIEW PADDY FIELD HOME STAY — MAIN CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;400;600&display=swap');

/* ── Design Tokens ── */
:root {
    --brown-dark: #3D2B1F;
    --brown-mid: #6B4226;
    --brown-warm: #8B5E3C;
    --brown-light: #C49A6C;
    --brown-pale: #E8D5B7;
    --cream: #FBF7F0;
    --white: #FFFFFF;
    --green-deep: #2D4A22;
    --green-mid: #4A7C3F;
    --green-soft: #8AB87A;
    --green-pale: #D4E8C2;
    --text-dark: #2A1F14;
    --text-mid: #5A4030;
    --text-light: #8B7355;
    --shadow-sm: 0 2px 12px rgba(61, 43, 31, 0.08);
    --shadow-md: 0 8px 32px rgba(61, 43, 31, 0.14);
    --shadow-lg: 0 20px 60px rgba(61, 43, 31, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.serif-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
}

.section-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-warm);
    margin-bottom: 0.6rem;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--brown-dark);
    color: var(--cream);
}

.section-green {
    background: var(--green-pale);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--brown-mid);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 66, 38, 0.35);
}

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(107, 66, 38, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--brown-mid);
    border: 2px solid var(--brown-mid);
}

.btn-outline:hover {
    background: var(--brown-mid);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--brown-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green-mid);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74, 124, 63, 0.35);
}

.btn-green:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(251, 247, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-text span {
    display: block;
}

.nav-logo-text .name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.nav-logo-text .sub {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-warm);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brown-dark);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--brown-pale);
    color: var(--brown-mid);
}

.nav-book {
    margin-left: 0.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* White lines when floating over the hero (not yet scrolled) */
.navbar:not(.scrolled) .hamburger span {
    background: var(--white);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 43, 31, 0.65) 0%, rgba(61, 43, 31, 0.3) 50%, rgba(45, 74, 34, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-pale);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll span {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── Hero Stats Bar ── */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(251, 247, 240, 0.95);
    backdrop-filter: blur(12px);
}

.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

.stat-item {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--brown-pale);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brown-mid);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* =========================================
   QUICK OVERVIEW / FEATURES
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--brown-pale);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.place-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: var(--brown-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--brown-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    color: var(--brown-dark);
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-mid);
    font-size: 1.05rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brown-light), var(--brown-warm));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* =========================================
   CABIN CARD
   ========================================= */
.cabin-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.cabin-showcase.reverse {
    direction: rtl;
}

.cabin-showcase.reverse>* {
    direction: ltr;
}

.cabin-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.cabin-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cabin-img-wrap:hover img {
    transform: scale(1.04);
}

.cabin-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--green-mid);
    color: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cabin-info {
    padding: 1rem 0;
}

.cabin-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.cabin-img-grid .grid-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cabin-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cabin-img-grid img:hover {
    transform: scale(1.05);
}

.cabin-info h3 {
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.cabin-info p {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.amenity-item span {
    font-size: 1rem;
}

.price-box {
    background: var(--cream);
    border: 1px solid var(--brown-pale);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-main {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-main .amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-mid);
}

.price-main .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.tag-green {
    background: var(--green-pale);
    color: var(--green-deep);
}

.tag-brown {
    background: var(--brown-pale);
    color: var(--brown-dark);
}

.tag-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

/* =========================================
   BOOKING CALCULATOR
   ========================================= */
.booking-section {
    background: linear-gradient(135deg, var(--brown-dark) 0%, #2D1810 100%);
    color: var(--cream);
}

.booking-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 780px;
    margin: 0 auto;
    backdrop-filter: blur(8px);
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown-pale);
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brown-light);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--brown-dark);
    color: var(--cream);
}

.price-preview {
    background: rgba(200, 154, 108, 0.15);
    border: 1px solid rgba(200, 154, 108, 0.3);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-preview .total-label {
    font-size: 0.85rem;
    color: var(--brown-pale);
}

.price-preview .total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-light);
}

.price-preview .discount-badge {
    background: var(--green-mid);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}

.booking-platforms {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.platform-booking {
    background: #003580;
    color: #fff;
}

.platform-booking:hover {
    background: #002560;
    transform: translateY(-2px);
}

.platform-airbnb {
    background: #FF5A5F;
    color: #fff;
}

.platform-airbnb:hover {
    background: #e0474c;
    transform: translateY(-2px);
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 43, 31, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--brown-pale);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--brown-pale);
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
}

.stars {
    color: #F5A623;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-mid);
    font-family: 'Playfair Display', serif;
}

.reviewer-name {
    font-weight: 700;
    color: var(--brown-dark);
    font-size: 0.92rem;
}

.reviewer-from {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* =========================================
   PLACES TO VISIT
   ========================================= */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.place-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--brown-pale);
    transition: var(--transition);
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.place-img {
    height: 180px;
    background: var(--brown-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-body {
    padding: 1.25rem 1.5rem;
}

.place-body h3 {
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 0.4rem;
}

.place-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.place-distance {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--green-mid);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-stack {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 46%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    aspect-ratio: 1;
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text .section-label {
    display: block;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    margin-bottom: 1.2rem;
    color: var(--brown-dark);
}

.about-text p {
    color: var(--text-mid);
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.highlight-item .icon {
    font-size: 1.3rem;
    margin-top: 0.1rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--cream);
    border: 1px solid var(--brown-pale);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brown-warm);
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

.contact-form textarea {
    min-height: 120px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--brown-pale);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--brown-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.2rem;
}

.info-text p,
.info-text a {
    font-size: 0.88rem;
    color: var(--text-mid);
}

.info-text a:hover {
    color: var(--brown-mid);
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--brown-pale);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-brand .nav-logo .name,
.footer-brand .nav-logo .sub {
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(232, 213, 183, 0.7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--cream);
}

.social-link:hover {
    background: var(--brown-warm);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(232, 213, 183, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--cream);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(232, 213, 183, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(232, 213, 183, 0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--cream);
}

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: var(--white);
    padding: 0.8rem 1.3rem 0.8rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn .wa-icon {
    font-size: 1.4rem;
}

.scroll-top-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brown-mid);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

/* =========================================
   PAGE HEADER (for inner pages)
   ========================================= */
.page-header {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero.png') center/cover;
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--brown-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 1001; /* Fixed overlap with navbar */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown-dark);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.mobile-menu a:hover {
    background: var(--brown-pale);
    color: var(--brown-mid);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 2px solid var(--brown-pale);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: var(--brown-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0; /* hide any text/character content */
}

/* Pure CSS X drawn with pseudo-elements — renders perfectly on all devices */
.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
}
.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after  { transform: rotate(-45deg); }

.mobile-close:hover {
    background: var(--brown-pale);
    border-color: var(--brown-warm);
}

/* =========================================
   UTILITY
   ========================================= */
.text-center {
    text-align: center;
}

.text-brown {
    color: var(--brown-mid);
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── AOS-like fade animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   RESPONSIVE — MOBILE FIRST
   ========================================= */

/* ─── Tablet (1024px) ─── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cabin-showcase,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cabin-showcase.reverse { direction: ltr; }
    .cabin-img-wrap { aspect-ratio: 16/9; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item.wide  { grid-column: span 1; }
    .gallery-item.tall  { grid-row: span 1; }

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

    .hero-stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .cabin-img-grid { min-height: 400px; }
}

/* ─── Mobile (768px) ─── */
@media (max-width: 768px) {

    /* ── Nav ── */
    .nav-links,
    .nav-book { display: none; }
    .hamburger { display: flex; }
    .navbar { padding: 0.85rem 0; }
    .navbar.scrolled { padding: 0.6rem 0; }
    .nav-logo img { height: 38px; width: 38px; }
    .nav-logo-text .name { font-size: 0.9rem; }
    .nav-logo-text .sub { font-size: 0.6rem; }
    /* Keep hamburger white over hero */
    .navbar:not(.scrolled) .hamburger span { background: var(--white); }

    /* ── Typography ── */
    h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }

    /* ── Layout ── */
    .section { padding: 3rem 0; }
    .container { padding: 0 1.25rem; }

    /* ── Hero — full viewport, content stacked ── */
    .hero {
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding-top: 5rem;
        padding-bottom: 0;
        overflow: visible;
    }
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-bottom: 0;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem 2.5rem;
    }
    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
        text-align: center;
        margin-bottom: 0.9rem;
        line-height: 1.15;
    }
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        text-align: center;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }

    /* ── Hero Stats — 2×2 grid below content ── */
    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        background: rgba(251, 247, 240, 0.97);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
        margin-top: 0;
    }
    .hero-stats .container { padding: 0; }
    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        border-top: none;
    }
    .stat-item {
        padding: 1.2rem 1rem;
        border-right: 1px solid var(--brown-pale);
        border-bottom: 1px solid var(--brown-pale);
        text-align: center;
    }
    .stat-item:nth-child(even) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 0.72rem; }

    /* ── Section headings ── */
    .section-header { margin-bottom: 2rem; }
    .section-header p { font-size: 0.95rem; }

    /* ── Features ── */
    .features-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
    .feature-card { padding: 1.5rem 1.25rem; }

    /* ── Cabin showcase ── */
    .cabin-showcase { gap: 1.5rem; }
    .cabin-img-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 260px;
        gap: 0.5rem;
        border-radius: var(--radius-md);
    }
    .cabin-info { padding: 0; }
    .cabin-info h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
    .amenities-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .price-box { padding: 1.25rem; }
    .price-main .amount { font-size: 2rem; }
    .price-anchor-row { flex-direction: column; gap: 0.3rem; }

    /* ── Compare table ── */
    .compare-table { font-size: 0.78rem; min-width: 480px; }
    .compare-table th,
    .compare-table td { padding: 0.6rem 0.75rem; }

    /* ── Booking ── */
    .booking-section { padding: 3rem 0; }
    .booking-card { padding: 1.5rem 1.25rem; border-radius: var(--radius-md); }
    .booking-grid { grid-template-columns: 1fr; gap: 1rem; }
    .price-preview { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .price-preview .total-amount { font-size: 1.8rem; }
    .booking-platforms { flex-direction: row; }
    .platform-btn { flex: 1; justify-content: center; text-align: center; }

    /* ── Testimonials ── */
    .testimonials-track { grid-template-columns: 1fr; gap: 1.25rem; }
    .testimonial-card { padding: 1.5rem; }

    /* ── Places preview cards ── */
    .places-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .place-img { height: 160px; }

    /* ── About section ── */
    .about-grid { gap: 1.5rem; }
    .about-img-accent { display: none; }
    .about-highlights { grid-template-columns: 1fr; gap: 0.75rem; }

    /* ── Gallery ── */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item { height: 160px; }

    /* ── Contact ── */
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-wrap { padding: 1.5rem 1.25rem; }
    .contact-form textarea { min-height: 100px; }

    /* ── Page header ── */
    .page-header { padding: 6rem 0 2.5rem; text-align: center; }
    .page-header h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .page-header p { font-size: 0.95rem; }
    .breadcrumb { justify-content: center; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-brand { text-align: center; }
    .footer-brand .nav-logo { justify-content: center; }
    .social-links { justify-content: center; }
    .footer-col h4 { text-align: center; }
    .footer-col ul { text-align: center; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }

    /* ── Floating buttons ── */
    .floating-buttons { bottom: 1.25rem; right: 1rem; }
    .whatsapp-btn { padding: 0.7rem 1.1rem 0.7rem 0.9rem; font-size: 0.85rem; }

    /* ── CTA sections ── */
    .flex-center { flex-direction: column; align-items: stretch; }
    .flex-center .btn { text-align: center; justify-content: center; }
}

/* ─── Small phone (480px) ─── */
@media (max-width: 480px) {

    h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }

    .section { padding: 2.5rem 0; }
    .container { padding: 0 1rem; }

    /* Hero */
    .hero h1 { font-size: 2.1rem; }
    .hero-tagline { font-size: 0.95rem; }
    .hero-cta { display: flex; }
    .hero-cta .btn { font-size: 0.88rem; padding: 0.85rem 1.25rem; }
    .stat-num { font-size: 1.3rem; }
    .stat-label { font-size: 0.68rem; }
    .stat-item { padding: 1rem 0.75rem; }

    /* Cabin image grid — stacked */
    .cabin-img-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 220px;
    }

    /* Amenities — single column */
    .amenities-grid { grid-template-columns: 1fr; }

    /* About highlights */
    .about-highlights { grid-template-columns: 1fr; }

    /* Booking card */
    .booking-card { padding: 1.25rem 1rem; border-radius: var(--radius-md); }

    /* Compare table horizontal scroll */
    .compare-table { min-width: 420px; font-size: 0.73rem; }
    .compare-table th,
    .compare-table td { padding: 0.5rem 0.6rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }

    /* Price */
    .price-main .amount { font-size: 1.9rem; }
    .price-tags { flex-wrap: wrap; gap: 0.35rem; }
    .price-tag { font-size: 0.7rem; padding: 0.2rem 0.6rem; }

    /* Exit modal */
    .exit-modal { padding: 2rem 1.25rem; }

    /* Footer */
    .footer { padding: 2.5rem 0 0; }
    .footer-grid { gap: 1.5rem; }

    /* WhatsApp — icon only */
    .wa-text { display: none; }
    .whatsapp-btn {
        padding: 0;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
        align-items: center;
    }
    .whatsapp-btn .wa-icon { font-size: 1.6rem; margin: 0; }

    /* Places big cards */
    .place-card-big { grid-template-columns: 1fr !important; direction: ltr !important; }
    .place-img-big { min-height: 180px; }

    /* Contact form name/email stack */
    .contact-name-email { grid-template-columns: 1fr !important; }
}

/* ─── Extra small phone (360px) ─── */
@media (max-width: 360px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.3rem; }

    .section { padding: 2rem 0; }
    .container { padding: 0 0.875rem; }

    .hero h1 { font-size: 1.85rem; }
    .stat-num { font-size: 1.15rem; }
    .stat-item { padding: 0.85rem 0.5rem; }

    .booking-card { padding: 1rem 0.875rem; }
    .price-preview .total-amount { font-size: 1.5rem; }

    .mobile-menu a { font-size: 1.25rem; }

    .cabin-img-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 150px);
        min-height: auto;
    }

    .btn { padding: 0.8rem 1.25rem; font-size: 0.85rem; }
}



/* =========================================
   CONVERSION OPTIMIZATION LAYER
   ========================================= */

/* ── Top Announcement Bar ── */
.announcement-bar {
    background: linear-gradient(90deg, var(--green-deep), var(--brown-mid));
    color: var(--white);
    text-align: center;
    padding: 0.6rem 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ann-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.15rem 0.65rem;
    font-size: 0.74rem;
}

.ann-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.ann-close:hover {
    color: var(--white);
}

/* ── Live Viewer Indicator ── */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(6px);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* ── Trust Badge Strip ── */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--brown-pale);
    border-bottom: 1px solid var(--brown-pale);
    padding: 0.9rem 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-mid);
    white-space: nowrap;
}

.trust-badge .tb-icon {
    font-size: 1.1rem;
}

.trust-sep {
    width: 1px;
    height: 20px;
    background: var(--brown-pale);
}

/* ── Price Anchor ── */
.price-anchor-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.anchor-hotel {
    font-size: 0.88rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.anchor-save {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

/* ── Availability Ribbon ── */
.avail-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff9e6;
    border: 1px solid #f5a623;
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #b45309;
    margin-bottom: 1rem;
}

.avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f5a623;
    animation: livePulse 1.6s ease-out infinite;
}

/* ── Sticky Booking Bar ── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--brown-dark);
    border-top: 2px solid var(--brown-warm);
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.sticky-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.sticky-price small {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: var(--brown-light);
    display: block;
}

.sticky-perks {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sticky-perk {
    font-size: 0.78rem;
    color: rgba(232, 213, 183, 0.7);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── Pulsing CTA button ── */
.btn-pulse {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(107, 66, 38, 0.35);
    }

    50% {
        box-shadow: 0 4px 32px rgba(107, 66, 38, 0.6), 0 0 0 8px rgba(107, 66, 38, 0.1);
    }
}

/* ── Guarantee Badge ── */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green-pale);
    border: 1px solid var(--green-soft);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--green-deep);
    font-weight: 700;
}

/* ── Social Proof Notification Toast ── */
.social-toast {
    position: fixed;
    bottom: 5.5rem;
    left: 1.5rem;
    z-index: 997;
    background: var(--white);
    border: 1px solid var(--brown-pale);
    border-left: 3px solid var(--green-mid);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 300px;
    transform: translateX(-120%);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.social-toast.show {
    transform: translateX(0);
}

.toast-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brown-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.toast-text {
    font-size: 0.79rem;
    color: var(--text-mid);
    line-height: 1.45;
}

.toast-text strong {
    color: var(--brown-dark);
}

.toast-time {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.15rem;
    display: block;
}

/* ── Exit Intent Modal ── */
.exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.exit-overlay.open {
    display: flex;
}

.exit-modal {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.exit-modal .exit-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.exit-modal h2 {
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
    font-size: 1.6rem;
}

.exit-modal p {
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-light);
}

.exit-close:hover {
    color: var(--brown-dark);
}

.exit-offer {
    background: var(--white);
    border: 1px solid var(--brown-pale);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.exit-offer strong {
    color: var(--brown-mid);
    font-size: 1rem;
    display: block;
}

/* ── Booking nudge ── */
.booking-nudge {
    font-size: 0.77rem;
    color: rgba(232, 213, 183, 0.6);
    margin-top: 0.5rem;
    text-align: center;
}

/* ── Compare Table ── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-table th {
    padding: 1rem 1.25rem;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    background: var(--cream);
    color: var(--brown-dark);
    border-bottom: 2px solid var(--brown-pale);
}

.compare-table th.highlight-col {
    background: var(--brown-mid);
    color: var(--white);
}

.compare-table td {
    padding: 0.85rem 1.25rem;
    font-size: 0.84rem;
    color: var(--text-mid);
    text-align: center;
    border-bottom: 1px solid var(--brown-pale);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table .td-check {
    color: var(--green-mid);
    font-size: 1.1rem;
}

.compare-table .td-cross {
    color: #ef4444;
    font-size: 1.1rem;
}

.compare-table .td-hl {
    background: rgba(107, 66, 38, 0.04);
    font-weight: 700;
    color: var(--brown-mid);
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--brown-dark);
}

/* ── Mobile Sticky adjustment ── */
@media(max-width:640px) {
    .sticky-bar {
        justify-content: space-between;
        padding: 0.85rem 1.25rem;
        height: auto;
        min-height: 70px;
        background: rgba(61, 43, 31, 0.98);
        backdrop-filter: blur(10px);
    }

    .sticky-bar-info { gap: 0.75rem; }
    .sticky-price { font-size: 1.4rem; }

    .sticky-bar .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        flex: 0 0 auto;
    }

    .sticky-perks {
        display: none;
    }

    .floating-buttons {
        bottom: 5.5rem;
    }

    .social-toast {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        max-width: none;
        bottom: 6rem;
    }

    .trust-strip-inner {
        gap: 1.25rem;
    }

    .trust-sep {
        display: none;
    }
}

@media(max-width: 480px) {
    .cabin-img-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 180px);
        min-height: auto;
    }
}