@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary-color: #6a382d;
    --primary-dark: #2f1d18;
    --primary-soft: #9a7561;
    --gold: #c4a173;
    --gold-deep: #9d7645;
    --gold-soft: #efe0c6;
    --champagne: #f7efe3;
    --champagne-deep: #ead7bc;
    --ivory: #fffaf4;
    --blush: #f2e3d7;
    --text-dark: #37251f;
    --text-light: #705b51;
    --text-soft: #94786a;
    --white: #ffffff;
    --shadow-sm: 0 14px 30px rgba(47, 29, 24, 0.08);
    --shadow-md: 0 24px 54px rgba(47, 29, 24, 0.11);
    --shadow-lg: 0 34px 82px rgba(34, 21, 18, 0.16);
    --border-soft: rgba(106, 56, 45, 0.08);
    --container: 1240px;
    --transition: 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fffbf7 0%, #fff8f1 100%);
}

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

a {
    color: inherit;
}

::selection {
    background: var(--gold);
    color: var(--primary-dark);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section-kicker {
    text-align: center;
    color: var(--primary-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.section-title {
    max-width: 880px;
    margin: 18px auto 0;
    text-align: center;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-subtitle {
    max-width: 760px;
    margin: 18px auto 0;
    text-align: center;
    color: var(--text-light);
    font-size: 1.04rem;
}

.btn-primary,
.btn-secondary,
.btn-gold,
.btn-outline,
.btn-success-primary,
.btn-success-secondary,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary,
.btn-gold,
.btn-submit {
    background: linear-gradient(135deg, #d7bb93 0%, #be9664 100%);
    color: var(--primary-dark);
    box-shadow: 0 16px 30px rgba(157, 118, 69, 0.22);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-gold:hover,
.btn-outline:hover,
.btn-success-primary:hover,
.btn-success-secondary:hover,
.btn-submit:hover,
.sticky-contact-btn:hover {
    transform: translateY(-2px);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 250, 244, 0.08);
    color: var(--white);
    border-color: rgba(242, 225, 195, 0.48);
    backdrop-filter: blur(14px);
}

.btn-outline {
    background: rgba(255, 250, 244, 0.92);
    color: var(--primary-dark);
    border-color: rgba(91, 35, 35, 0.12);
}

.btn-success-primary {
    background: #25d366;
    color: var(--white);
}

.btn-success-secondary {
    background: rgba(106, 56, 45, 0.06);
    color: var(--primary-dark);
    border-color: rgba(106, 56, 45, 0.12);
}

.lead-pill,
.package-tier,
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-eyebrow {
    background: rgba(255, 248, 241, 0.14);
    border: 1px solid rgba(255, 248, 241, 0.18);
    color: rgba(255, 248, 241, 0.92);
    backdrop-filter: blur(10px);
}

.lead-pill,
.package-tier {
    background: rgba(208, 164, 95, 0.12);
    border: 1px solid rgba(208, 164, 95, 0.18);
    color: var(--gold-deep);
}

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1400;
    background: rgba(255, 248, 241, 0.96);
    border-bottom: 1px solid rgba(198, 160, 106, 0.24);
    box-shadow: 0 10px 26px rgba(49, 19, 19, 0.08);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.desktop-scrolled,
.navbar.scrolled {
    background: rgba(255, 248, 241, 0.985);
    box-shadow: 0 14px 34px rgba(49, 19, 19, 0.12);
}

.nav-container {
    width: min(var(--container), calc(100% - 40px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.logo-img {
    width: auto;
    height: 92px;
    object-fit: contain;
    transition: height var(--transition);
}

.logo span {
    transition: opacity var(--transition), width var(--transition);
}

.logo.compact span {
    width: 0;
    opacity: 0;
    overflow: hidden;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform var(--transition);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d7bb93 0%, #be9664 100%);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(157, 118, 69, 0.2);
}

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

.hamburger span {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-dark);
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    margin-top: 92px;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(102deg, rgba(27, 18, 14, 0.74) 8%, rgba(44, 30, 24, 0.54) 42%, rgba(87, 70, 56, 0.18) 76%, rgba(87, 70, 56, 0.05) 100%),
        linear-gradient(180deg, rgba(196, 161, 115, 0.04) 0%, rgba(27, 18, 14, 0.1) 100%);
}

.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.03) 0%, rgba(30, 15, 13, 0.08) 100%);
}

.slider-container,
.slide {
    position: absolute;
    inset: 0;
}

.slide {
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-image: url('images/blue.jpg');
}

.slide:nth-child(2) {
    background-image: url('images/red.png');
}

.slide:nth-child(3) {
    background-image: url('images/IMG_6674.PNG');
}

.slide:nth-child(4) {
    background-image: url('images/IMG_6675.PNG');
}

.slide.active {
    opacity: 1;
}

.hero-shell {
    position: relative;
    z-index: 3;
}

.hero-layout {
    min-height: calc(100vh - 92px - 132px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    align-items: end;
    gap: 52px;
    padding: 74px 0 36px;
}

.hero-copy {
    max-width: 700px;
    color: var(--white);
}

.hero-copy h1 {
    margin-top: 24px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 6vw, 6.8rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.hero-description {
    max-width: 560px;
    margin-top: 24px;
    font-size: 1.12rem;
    color: rgba(255, 248, 241, 0.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    max-width: 720px;
}

.hero-fact {
    display: inline-flex;
    align-items: center;
    padding: 12px 17px;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.08);
    border: 1px solid rgba(242, 225, 195, 0.2);
    color: rgba(255, 248, 241, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 18px;
    align-items: end;
}

.hero-showcase-main,
.hero-mini-card,
.hero-floating-note {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 28px 70px rgba(40, 18, 15, 0.18);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.hero-showcase-main {
    position: relative;
    min-height: 540px;
    background: rgba(255, 250, 245, 0.12);
}

.hero-showcase-main img,
.hero-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-showcase-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 17, 14, 0.08) 0%, rgba(25, 17, 14, 0.56) 100%);
}

.hero-showcase-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 250, 245, 0.9);
    color: var(--primary-dark);
    box-shadow: 0 16px 36px rgba(32, 19, 16, 0.14);
}

.hero-showcase-caption h2 {
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.06;
}

.hero-showcase-side {
    display: grid;
    gap: 18px;
}

.hero-mini-image {
    min-height: 236px;
    position: relative;
}

.hero-mini-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, rgba(25, 17, 14, 0.6) 100%);
}

.hero-mini-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    color: var(--white);
}

.hero-mini-copy span {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 248, 241, 0.84);
}

.hero-mini-copy strong {
    display: block;
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.08;
}

.hero-mini-copy-card {
    padding: 24px 22px;
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.98) 0%, rgba(245, 235, 222, 0.96) 100%);
}

.hero-card-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.hero-card-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.hero-card-label {
    color: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-card-row i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(208, 164, 95, 0.2) 0%, rgba(208, 164, 95, 0.12) 100%);
    color: var(--gold-deep);
    font-size: 0.94rem;
}

.hero-card-row strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
}

.hero-card-row span {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--primary-dark);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(157, 118, 69, 0.34);
    padding-bottom: 4px;
}

.hero-floating-note {
    position: absolute;
    left: -36px;
    bottom: 26px;
    max-width: 250px;
    padding: 18px 20px;
    background: rgba(255, 250, 245, 0.92);
    color: var(--primary-dark);
}

.hero-floating-note span {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-soft);
}

.hero-floating-note strong {
    display: block;
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.05;
}

.hero-floating-note p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hero-signature-strip {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0 0 56px;
}

.hero-signature-card {
    padding: 22px 24px;
    border-radius: 26px;
    background: rgba(255, 250, 245, 0.12);
    border: 1px solid rgba(255, 248, 241, 0.18);
    color: rgba(255, 248, 241, 0.92);
    backdrop-filter: blur(12px);
}

.hero-signature-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(239, 224, 198, 0.86);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.hero-signature-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.28rem;
    line-height: 1.08;
}

.hero-signature-card p {
    margin-top: 10px;
    color: rgba(255, 248, 241, 0.78);
    font-size: 0.92rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.12);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.slider-btn.prev {
    left: 24px;
}

.slider-btn.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 248, 241, 0.38);
    cursor: pointer;
    transition: width var(--transition), background var(--transition);
}

.dot.active {
    width: 34px;
    background: var(--gold);
}

.venue-overview-section,
.trust-section,
.reviews-showcase-section,
.gallery-section,
.luxury-menu-section,
.faq-section,
.contact-section,
.feedback-section {
    position: relative;
    padding: 100px 0;
}

.venue-overview-section {
    background: linear-gradient(180deg, #fffaf4 0%, #f9f1e7 100%);
}

.overview-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.96fr);
    gap: 46px;
    align-items: center;
}

.overview-copy .section-kicker,
.overview-copy .section-title,
.overview-copy .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.overview-copy .section-title {
    max-width: 680px;
}

.overview-copy .section-subtitle {
    max-width: 620px;
}

.overview-text {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    color: var(--text-light);
    font-size: 1rem;
}

.overview-highlights {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.overview-highlight {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(198, 160, 106, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.overview-highlight strong {
    display: block;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.overview-highlight span {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.94rem;
}

.overview-visual {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.82fr);
    gap: 18px;
}

.overview-main-photo,
.overview-photo,
.overview-metric {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.overview-main-photo,
.overview-photo {
    background: var(--champagne);
    border: 2px solid rgba(255, 255, 255, 0.74);
}

.overview-main-photo img,
.overview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-side-stack {
    display: grid;
    gap: 18px;
}

.overview-photo {
    min-height: 230px;
}

.overview-metrics {
    display: grid;
    gap: 14px;
}

.overview-metric {
    padding: 20px;
    background: linear-gradient(180deg, #58302c 0%, #41211e 100%);
    color: rgba(255, 248, 241, 0.92);
}

.overview-metric strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.overview-metric span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 248, 241, 0.74);
    font-size: 0.9rem;
}

.trust-section {
    background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.trust-card {
    padding: 28px 24px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 243, 233, 0.96) 100%);
    border-radius: 28px;
    border: 1px solid rgba(198, 160, 106, 0.12);
    box-shadow: var(--shadow-sm);
}

.trust-card i {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(208, 164, 95, 0.18) 0%, rgba(208, 164, 95, 0.1) 100%);
    color: var(--gold-deep);
    font-size: 1.25rem;
}

.trust-card h3 {
    margin-top: 20px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.14;
}

.trust-card p {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-showcase-section {
    background: linear-gradient(180deg, #f9f1e7 0%, #fffaf4 100%);
}

.reviews-badge-row {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(208, 164, 95, 0.18);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.reviews-badge i {
    color: #4285f4;
    font-size: 1.4rem;
}

.reviews-badge strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
}

.reviews-badge span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.reviews-slider-container {
    position: relative;
    margin: 42px auto 0;
    padding: 0 74px;
}

.reviews-grid-wrapper {
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.55s ease;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    padding: 28px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 30px;
    border: 1px solid rgba(208, 164, 95, 0.14);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a382d 0%, #8a624d 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
}

.review-date {
    color: var(--text-soft);
    font-size: 0.84rem;
}

.review-rating {
    display: flex;
    gap: 4px;
    color: var(--gold);
}

.review-content p {
    color: var(--text-light);
    font-size: 0.94rem;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #6a382d 0%, #4d2a22 100%);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.reviews-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews-prev {
    left: 0;
}

.reviews-next {
    right: 0;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.review-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(157, 118, 69, 0.2);
    cursor: pointer;
    transition: width var(--transition), background var(--transition);
}

.review-dot.active {
    width: 32px;
    background: var(--gold);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 620px;
    margin: 38px auto 0;
}

.stat-item {
    padding: 26px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(208, 164, 95, 0.16);
    box-shadow: var(--shadow-sm);
}

.stat-item i {
    color: var(--gold);
    font-size: 2rem;
}

.stat-item h3 {
    margin-top: 10px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.stat-item p {
    margin-top: 4px;
    color: var(--text-light);
}

.gallery-section {
    background: linear-gradient(180deg, #fffaf4 0%, #f8f0e6 100%);
    color: var(--text-dark);
}

.gallery-section .section-kicker {
    color: var(--primary-soft);
}

.gallery-section .section-title {
    color: var(--primary-dark);
}

.gallery-section .section-subtitle {
    color: var(--text-light);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(91, 35, 35, 0.12);
    background: rgba(255, 255, 255, 0.84);
    color: var(--primary-dark);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #e3c286 100%);
    color: var(--primary-dark);
    border-color: transparent;
}

.gallery-subsection {
    margin-top: 56px;
}

.gallery-subsection-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
}

.gallery-subsection-title i {
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 34px rgba(49, 19, 19, 0.12);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.92);
    position: absolute;
    pointer-events: none;
}

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

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 34px 18px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(49, 19, 19, 0.82) 100%);
}

.gallery-overlay i {
    display: none;
}

.gallery-label {
    color: rgba(255, 248, 241, 0.94);
    font-size: 0.9rem;
    font-weight: 700;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    background: rgba(10, 6, 7, 0.95);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 92%;
    max-height: 88%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 18px;
    right: 24px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 248, 241, 0.12);
    color: var(--white);
    cursor: pointer;
}

.prev-lightbox {
    left: 20px;
}

.next-lightbox {
    right: 20px;
}

.luxury-menu-section {
    background: linear-gradient(180deg, #fffdf9 0%, #f9f1e7 100%);
}

.menu-compare-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.compare-pill {
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 243, 233, 0.96) 100%);
    border-radius: 24px;
    border: 1px solid rgba(198, 160, 106, 0.12);
    box-shadow: var(--shadow-sm);
}

.compare-pill strong {
    display: block;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.14rem;
}

.compare-pill span {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.luxury-menu-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.luxury-menu-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 243, 233, 0.96) 100%);
    border-radius: 32px;
    border: 1px solid rgba(198, 160, 106, 0.12);
    box-shadow: var(--shadow-md);
}

.luxury-menu-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #7c4b39, var(--gold));
}

.luxury-menu-card h3 {
    margin-top: 18px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.menu-tagline {
    margin-top: 8px;
    color: var(--primary-soft);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.package-meta {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.package-meta-item {
    padding: 18px;
    background: rgba(247, 239, 227, 0.82);
    border-radius: 18px;
}

.package-meta-item span {
    display: block;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.package-meta-item strong {
    display: block;
    margin-top: 6px;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.menu-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.menu-points li {
    position: relative;
    padding-left: 22px;
    color: var(--text-light);
    font-size: 0.94rem;
}

.menu-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.package-tags span,
.contact-benefits span,
.visit-highlights span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(247, 239, 227, 0.96);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(196, 161, 115, 0.16);
}

.menu-note {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.package-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.menu-disclaimer {
    margin-top: 28px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.faq-section {
    background: linear-gradient(180deg, #fffaf4 0%, #fffdf9 100%);
}

.faq-container {
    max-width: 920px;
    margin: 40px auto 0;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(208, 164, 95, 0.14);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
}

.faq-question h3 {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
}

.faq-question i {
    color: var(--gold-deep);
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-item.active .faq-answer {
    max-height: 320px;
    padding: 0 24px 22px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--text-light);
}

.contact-section {
    background:
        radial-gradient(circle at top left, rgba(196, 161, 115, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(76, 45, 36, 0.98) 0%, rgba(55, 34, 28, 0.98) 100%);
    color: var(--white);
}

.contact-section .section-kicker {
    color: var(--gold-soft);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: rgba(255, 248, 241, 0.78);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.92fr);
    gap: 26px;
    margin-top: 42px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    display: grid;
    gap: 20px;
}

.contact-lead-card,
.visit-planner-card,
.contact-info,
.booking-form,
.booking-success,
.map-container {
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98) 0%, rgba(247, 239, 227, 0.96) 100%);
    color: var(--text-dark);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: var(--shadow-lg);
}

.contact-lead-card,
.visit-planner-card,
.contact-info,
.booking-form,
.booking-success {
    padding: 28px;
}

.contact-lead-card h3,
.visit-planner-card h3,
.booking-form-header h3 {
    margin-top: 10px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.95rem;
    line-height: 1.14;
}

.contact-lead-card p,
.visit-planner-card p,
.booking-form-header p {
    margin-top: 10px;
    color: var(--text-light);
}

.contact-benefits,
.visit-highlights,
.visit-actions,
.booking-success-actions,
.feedback-prompt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.booking-form-header {
    margin-bottom: 24px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(106, 56, 45, 0.1);
    background: rgba(255, 255, 255, 0.88);
    font: inherit;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(208, 164, 95, 0.78);
    box-shadow: 0 0 0 4px rgba(208, 164, 95, 0.14);
    background: var(--white);
}

.form-group input.invalid {
    border-color: #cc4a3f;
    background: rgba(255, 245, 244, 0.96);
}

.form-group input.valid {
    border-color: #2e9960;
}

.error-message {
    display: block;
    min-height: 20px;
    margin-top: 5px;
    color: #cc4a3f;
    font-size: 0.84rem;
}

.form-helper-text {
    margin-top: 12px;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-item i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(208, 164, 95, 0.18) 0%, rgba(208, 164, 95, 0.1) 100%);
    color: var(--gold-deep);
}

.info-item h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
}

.info-item p,
.info-item a {
    color: var(--text-light);
    text-decoration: none;
}

.map-container {
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.booking-success-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    color: #1b8d49;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.booking-success h3 {
    margin-top: 14px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
}

.booking-success p {
    margin-top: 8px;
    color: var(--text-light);
}

.booking-summary {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(247, 239, 227, 0.82);
}

.booking-summary-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
}

.booking-summary-label {
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-summary-value {
    color: var(--primary-dark);
    font-weight: 700;
}

.text-link-btn {
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--primary-color);
    font-weight: 800;
    cursor: pointer;
}

.feedback-section {
    padding-top: 0;
    background: linear-gradient(180deg, rgba(55, 34, 28, 0.98) 0%, rgba(39, 25, 21, 0.98) 100%);
}

.feedback-prompt-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(196, 161, 115, 0.16) 0%, rgba(255, 250, 245, 0.08) 100%);
    border-radius: 32px;
    border: 1px solid rgba(196, 161, 115, 0.22);
}

.feedback-prompt-copy .section-kicker,
.feedback-prompt-copy .section-title,
.feedback-prompt-copy .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.feedback-prompt-copy .section-kicker {
    color: var(--gold-soft);
}

.feedback-prompt-copy .section-title {
    color: var(--white);
    max-width: 560px;
    font-size: clamp(2rem, 2.8vw, 3.2rem);
}

.feedback-prompt-copy .section-subtitle {
    color: rgba(255, 248, 241, 0.76);
}

.footer {
    background: linear-gradient(180deg, #38211b 0%, #241613 100%);
    color: rgba(255, 248, 241, 0.76);
    padding: 84px 0 30px;
    border-top: 1px solid rgba(196, 161, 115, 0.14);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 32px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold-soft);
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section li,
.footer-section a {
    color: rgba(255, 248, 241, 0.74);
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.footer-section li i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-logo-img {
    display: inline-block;
    width: auto;
    height: 34px;
    margin-right: 10px;
    vertical-align: middle;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 248, 241, 0.1);
    color: var(--gold-soft);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 248, 241, 0.08);
    text-align: center;
    color: rgba(255, 248, 241, 0.52);
    font-size: 0.92rem;
}

.sticky-contact-bar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    display: grid;
    gap: 10px;
}

.sticky-contact-btn {
    min-width: 188px;
    padding: 14px 16px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.sticky-call {
    background: rgba(255, 248, 241, 0.98);
    color: var(--primary-dark);
}

.sticky-whatsapp {
    background: #25d366;
    color: var(--white);
}

.sticky-visit {
    background: linear-gradient(180deg, #5d342a 0%, #472821 100%);
    color: var(--white);
}

@media (max-width: 1180px) {
    .hero-showcase {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .hero-showcase-main {
        min-height: 490px;
    }

    .hero-signature-strip {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .luxury-menu-cards {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 980px) {
    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 14px;
        padding: 22px;
        background: linear-gradient(180deg, rgba(255, 250, 245, 0.99) 0%, rgba(246, 237, 225, 0.98) 100%);
        border-radius: 24px;
        border: 1px solid rgba(196, 161, 115, 0.2);
        box-shadow: var(--shadow-lg);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero-layout,
    .overview-layout,
    .contact-content,
    .feedback-prompt-card,
    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .overview-visual,
    .menu-compare-strip,
    .footer-content,
    .hero-showcase-side {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        min-height: auto;
        gap: 30px;
        padding-top: 58px;
    }

    .hero-showcase-main {
        min-height: 420px;
    }

    .hero-floating-note {
        position: static;
        max-width: none;
    }

    .reviews-slider-container {
        padding: 0 58px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }

    .nav-container {
        min-height: 78px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 70px;
    }

    .navbar.scrolled .logo-img {
        height: 56px;
    }

    .hero-slider {
        margin-top: 78px;
    }

    .hero-layout {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: 3.4rem;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: auto;
        flex: 1;
        text-align: center;
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }

    .package-actions,
    .booking-success-actions,
    .visit-actions,
    .feedback-prompt-actions {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline,
    .btn-success-primary,
    .btn-success-secondary,
    .btn-submit {
        width: 100%;
    }

    .slider-btn {
        display: none;
    }

    .hero-showcase-main {
        min-height: 340px;
    }

    .hero-showcase-caption h2 {
        font-size: 1.4rem;
    }

    .trust-grid,
    .gallery-grid,
    .reviews-stats,
    .hero-signature-strip {
        grid-template-columns: 1fr;
    }

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

    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .booking-summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .reviews-slider-container {
        padding: 0 48px;
    }

    .sticky-contact-bar {
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        background: rgba(53, 35, 30, 0.94);
        backdrop-filter: blur(16px);
    }

    .sticky-contact-btn {
        min-width: 0;
        justify-content: center;
        padding: 12px 10px;
        border-radius: 14px;
        font-size: 0.78rem;
        box-shadow: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .venue-overview-section,
    .trust-section,
    .reviews-showcase-section,
    .gallery-section,
    .luxury-menu-section,
    .faq-section,
    .contact-section,
    .feedback-section {
        padding: 78px 0;
    }

    .hero-copy h1 {
        font-size: 2.8rem;
    }

    .hero-description,
    .section-subtitle {
        font-size: 0.97rem;
    }

    .hero-showcase-main,
    .hero-mini-card,
    .hero-floating-note,
    .hero-signature-card,
    .luxury-menu-card,
    .contact-lead-card,
    .visit-planner-card,
    .contact-info,
    .booking-form,
    .booking-success,
    .feedback-prompt-card,
    .review-card,
    .gallery-item,
    .faq-item {
        border-radius: 24px;
    }

    .hero-mini-copy-card,
    .hero-floating-note,
    .hero-signature-card,
    .luxury-menu-card,
    .contact-lead-card,
    .visit-planner-card,
    .contact-info,
    .booking-form,
    .booking-success,
    .feedback-prompt-card {
        padding: 22px;
    }

    .reviews-slider-container {
        padding: 0 42px;
    }

    .reviews-nav {
        width: 38px;
        height: 38px;
    }
}