:root {
    --bg-color: #F8F4EC;
    --primary-color: #312A25;
    /* Dark Brownish Grey */
    --accent-color: #D6AB7C;
    /* Soft Gold / Sand */
    --gold-color: #D6AB7C;
    /* Gold */
    --text-main: #4A4641;
    --text-muted: #78736E;
    --header-height: 100px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #FFFCF7;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.main-header.sticky {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.sticky .nav-right a,
.main-header.sticky .nav-left a {
    color: var(--text-main);
}

.main-header.sticky .logo-text,
.main-header .nav-logo-text span {
    color: var(--primary-color);
}

/* Ensure header logo text is always visible on light background */
.nav-logo-text span {
    color: var(--primary-color) !important;
}

/* Remove the visible "white box" around the logo PNG on light headers */
.nav-logo img {
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
    mix-blend-mode: darken;
}

.split-nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 35px;
    align-items: center;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a,
.desktop-nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.logo-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 0.4em;
    text-align: center;
    color: var(--gold-color);
    margin-top: 5px;
    text-transform: uppercase;
}

.btn-book-nav {
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.1em;
}

.btn-book-nav:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background: url('/Screenshot%202026-03-12%20at%2018.32.12.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero .logo-text {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 300;
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 300;
    opacity: 0.9;
}

/* Booking Bar */
.booking-bar-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 10;
}

.booking-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.booking-item label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.booking-item input,
.booking-item select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-size: 15px;
    background: transparent;
    outline: none;
    color: var(--text-main);
    cursor: pointer;
}

.btn-search {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background-color: var(--accent-color);
}

/* Section Styling */
.section {
    padding: 120px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head .sub {
    font-family: 'Great Vibes', cursive;
    font-size: 45px;
    font-weight: 400;
    color: var(--primary-color);
    display: block;
    margin-bottom: -5px;
    text-transform: lowercase;
    letter-spacing: 0;
}

.section-head h2 {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--primary-color);
    line-height: 1.1;
}

/* Welcome section refinements */
.section-head--welcome .sub {
    margin-bottom: 8px;
}

.section-head__line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 0 auto 20px;
    border: none;
}

.section-head__tagline {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-top: 15px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Welcome two-column block */
.welcome-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-cols__image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(49, 42, 37, 0.12), 0 8px 24px rgba(49, 42, 37, 0.06);
}

.welcome-cols__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.welcome-cols__image-wrap:hover .welcome-cols__image {
    transform: scale(1.03);
}

.welcome-cols__image-label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.welcome-cols__text {
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
}

.welcome-cols__lead {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.85;
    margin-bottom: 24px;
}

.welcome-cols__highlight {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.85;
    margin-bottom: 32px;
}

.welcome-cols__signature {
    padding-top: 24px;
    border-top: 1px solid rgba(49, 42, 37, 0.1);
}

.welcome-cols__signature h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.welcome-cols__signature p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .welcome-cols {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .welcome-cols__text {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--accent-color);
        padding-top: 30px;
    }
}

/* Riverside Villa - Landing page extra feature */
.riverside-villa__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.riverside-villa__gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.riverside-villa__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .riverside-villa__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .riverside-villa__gallery img {
        height: 180px;
    }

    .riverside-villa__content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ========== About Page ========== */
.about-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    margin-top: var(--header-height, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.about-hero:hover .about-hero__bg {
    transform: scale(1.05);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(49, 42, 37, 0.75) 0%, rgba(49, 42, 37, 0.5) 50%, rgba(26, 48, 26, 0.6) 100%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.about-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 12px;
}

.about-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero__tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.06em;
    max-width: 420px;
    margin: 0 auto;
}

/* About Story */
.about-story {
    padding: 100px 24px 100px;
    background: linear-gradient(180deg, #f8f6f2 0%, var(--bg-color) 100%);
}

.about-story__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(49, 42, 37, 0.15);
}

.about-story__image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-story__image-wrap:hover .about-story__image {
    transform: scale(1.04);
}

.about-story__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 22px;
    border-radius: 8px;
    text-align: right;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-story__badge-num {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
}

.about-story__badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.about-story__sub {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: var(--primary-color);
    display: block;
    margin-bottom: -8px;
}

.about-story__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-story__line {
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 28px;
}

.about-story__lead,
.about-story__body {
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-story__lead {
    font-weight: 500;
}

.about-story__cta {
    display: inline-block;
    margin-top: 12px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.about-story__cta:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* About Values */
.about-values {
    padding: 100px 24px 100px;
    background: var(--bg-color);
}

.about-values__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-values__head {
    text-align: center;
    margin-bottom: 60px;
}

.about-values__sub {
    font-family: 'Great Vibes', cursive;
    font-size: 44px;
    color: var(--primary-color);
    display: block;
    margin-bottom: -6px;
}

.about-values__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-values__line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 0 auto;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-value-card {
    background: #fff;
    padding: 48px 36px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(49, 42, 37, 0.06);
    border: 1px solid rgba(49, 42, 37, 0.06);
    transition: var(--transition);
}

.about-value-card:hover {
    box-shadow: 0 16px 48px rgba(49, 42, 37, 0.1);
    transform: translateY(-4px);
    border-color: rgba(214, 171, 124, 0.3);
}

.about-value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(214, 171, 124, 0.15), rgba(214, 171, 124, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-card__icon i {
    font-size: 26px;
    color: var(--accent-color);
}

.about-value-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.about-value-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* About CTA Strip */
.about-cta {
    padding: 72px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a16 100%);
    text-align: center;
}

.about-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 28px;
}

.about-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.about-cta__btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.about-cta__btn--primary {
    background: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.about-cta__btn--primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.about-cta__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-cta__btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 900px) {
    .about-story__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story__image-wrap {
        order: -1;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-cta__buttons {
        flex-direction: column;
    }

    .about-cta__btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-hero {
        height: 50vh;
        min-height: 320px;
    }

    .about-story__image {
        height: 320px;
    }
}

/* Experience Section */
.experience-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

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

.exp-img-1 {
    width: 80%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.exp-img-2 {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    height: 300px;
    object-fit: cover;
    border: 15px solid var(--bg-color);
}

.exp-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Room Cards */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    position: relative;
    overflow: hidden;
    height: 600px;
}

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

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.room-card:hover .room-info {
    transform: translateY(0);
}

.room-info h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.room-price {
    font-size: 14px;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: #e1b341;
    /* Brighter, vibrant gold for high visibility */
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
.main-footer {
    background-color: #FDFBF7;
    color: var(--primary-color);
    padding: 100px 40px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 80px;
}

.footer-info h3 {
    font-size: 28px;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-info p {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 30px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    color: var(--gold-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.1em;
}

.menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {

    .nav-left,
    .nav-right:not(.btn-book-nav) {
        display: none;
    }

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

    .experience-cols {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 60px;
    }
}

/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 48, 26, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    font-size: 24px;
}

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

/* ========== Contact Page ========== */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 280px;
    margin-top: var(--header-height, 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--bg-color));
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.contact-hero__label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
}

.contact-section {
    padding: 50px 24px 80px;
}

.contact-section .section {
    padding-left: 24px;
    padding-right: 24px;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info a:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border: 1px solid #eee;
}

.contact-form--no-box {
    background: transparent;
    border: none;
    padding: 0;
}

.contact-form__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    color: var(--primary-color);
    margin-bottom: 32px;
    line-height: 1.2;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__row .contact-form__field {
    margin-bottom: 0;
}

.contact-form__input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background: #fff;
    transition: var(--transition);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form__submit {
    padding: 16px 48px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form__submit:hover {
    background-color: var(--accent-color);
}

.contact-map-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-wrap iframe,
.contact-map-iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

/* Contact mobile */
@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
        min-height: 240px;
    }

    .contact-hero__label {
        font-size: 9px;
        letter-spacing: 0.25em;
    }

    .contact-section {
        padding: 36px 20px 60px;
    }

    .contact-map-grid {
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 11px !important;
    }

    .contact-info p {
        font-size: 15px !important;
        margin-bottom: 28px !important;
    }

    .contact-form__heading {
        margin-bottom: 24px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .contact-form__row .contact-form__field {
        margin-bottom: 20px;
    }

    .contact-form__input {
        padding: 14px 18px;
        font-size: 16px; /* avoids zoom on focus on iOS */
    }

    .contact-form__submit {
        width: 100%;
        padding: 18px;
    }

    .contact-map-wrap {
        margin-top: 48px;
    }

    .contact-map-wrap iframe,
    .contact-map-iframe {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-map-wrap iframe,
    .contact-map-iframe {
        height: 280px;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    /* Premium Dark/Gray Map look */
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Sidebar Menu Overlay */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    transition: right 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-left {
    flex: 1;
    background: url('/Screenshot%202026-03-12%20at%2018.32.27.png') center/cover;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease 0.4s;
}

.sidebar-menu.active .sidebar-left {
    opacity: 1;
}

.sidebar-right {
    width: 600px;
    background: #000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
    position: relative;
}

@media (max-width: 1024px) {
    .sidebar-left {
        display: none;
    }

    .sidebar-right {
        width: 100%;
        padding: 60px 40px;
    }
}

.sidebar-close {
    position: absolute;
    top: 40px;
    right: 50px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-links a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--accent-color);
    padding-left: 15px;
}

.main-header.sticky .hamburger-line {
    background-color: var(--text-main) !important;
}

/* Responsive Utilities */
@media (max-width: 991px) {
    .responsive-grid-col-1 {
        grid-template-columns: 1fr !important;
    }

    .responsive-grid-col-2 {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 767px) {
    .responsive-grid-col-1-sm {
        grid-template-columns: 1fr !important;
    }

    .features-box-grid {
        grid-template-columns: 1fr 1fr !important;
        padding: 0 20px !important;
    }

    .hero h1 {
        font-size: 40px !important;
    }

    .hero p {
        font-size: 20px !important;
    }

    .welcome-cols {
        grid-template-columns: 1fr !important;
    }

    .experiences-grid {
        grid-template-columns: 1fr !important;
    }

    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .features-box-grid {
        grid-template-columns: 1fr !important;
    }
}