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

:root {
    --bg-color: #FDFBF8; /* Ivory Gallery White */
    --bg-secondary: #F5EFEB; /* Linen Mist / Organic Sand Break */
    --accent-gold: #BCA385; /* Soft Olive Bronze */
    --text-primary: #22201D; /* Rich Espresso Black */
    --text-secondary: #6B655D; /* Stone Grey */
    --light-grey: #F8F6F2;
    --overlay: rgba(253, 251, 248, 0.2);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Custom Framed Mat Utilities for Editorial Look */
.framed-container {
    border: 1px solid rgba(188, 163, 133, 0.15);
    padding: 2.5rem;
    position: relative;
}
.framed-container::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(188, 163, 133, 0.08);
    pointer-events: none;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.sub-title {
    font-family: var(--font-accent);
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-gold);
}

/* Layout */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 13px 40px;
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--text-primary);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: -1;
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #1A1A1A;
}

/* Header */
#site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    transition: var(--transition-smooth);
}

#site-header.scrolled {
    background-color: rgba(253, 252, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    padding: 1.2rem 0;
    position: fixed;
    border-bottom: 1px solid rgba(180, 151, 90, 0.08);
}

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

.logo {
    font-family: var(--font-accent);
    letter-spacing: 6px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary) !important;
    transition: var(--transition-smooth);
}

#site-header.scrolled .logo {
    color: var(--text-primary);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 3.5rem;
}

.main-nav a {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary) !important;
    position: relative;
    font-weight: 400;
}

#site-header.scrolled .main-nav a {
    color: var(--text-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

#site-header.scrolled .main-nav a:hover {
    color: var(--accent-gold);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

/* Hero Section */
/* Hero Section Layout Refactored to Split Grid */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background-color: var(--bg-color);
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Split grid inside slide container */
.slide .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.slide-content {
    text-align: left;
    color: var(--text-primary);
    max-width: 550px;
    padding: 0;
    transform: translateY(30px);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, opacity 0.8s ease 0.3s;
    opacity: 0;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
}

.slide-content .sub-title {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.8rem;
}

.hero-graphics {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 1.2s ease 0.2s, opacity 1s ease 0.2s;
}

.slide.active .hero-graphics {
    transform: scale(1);
    opacity: 1;
}

.hero-image-frame {
    width: 80%;
    height: 72%;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(180, 151, 90, 0.25);
}

/* Offset Decorative Gold Frame */
.hero-image-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
    transition: transform 0.4s ease;
}

.hero-image-frame:hover::after {
    transform: translate(-5px, -5px);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.slide.active .hero-image-frame img {
    transform: scale(1);
}

/* Fix button in hero slider overlay on light backgrounds */
.slide .btn-primary {
    color: var(--text-primary);
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide h1 {
    font-size: 4.5rem;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.15;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .slide h1 {
        font-size: 2.8rem;
    }
    .main-nav {
        display: none; /* Add burger later */
    }
}

/* General Padding */
.section-padding {
    padding: 8rem 0;
}

/* About Section */
#about {
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    font-size: 16rem;
    font-weight: 900;
    font-family: var(--font-accent);
    color: rgba(180, 151, 90, 0.08); /* Boosted opacity for light air canvas */
    z-index: 0;
    letter-spacing: 30px;
    user-select: none;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border-radius: 4px;
}

.about-image-wrapper .frame {
    position: absolute;
    top: -20px;
    left: 0;
    width: 90%;
    height: 105%;
    border: 1px solid var(--accent-gold);
    z-index: 1;
}

.about-content h2 {
    font-size: 3.8rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.15;
}

.about-content .divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.about-content .divider::before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
}

.divider-diamond {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
    display: inline-block;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Filled Button Override for About Section with strong contrast */
#about .btn-primary {
    background-color: var(--accent-gold);
    color: #FFF;
    border: none;
    box-shadow: 0 4px 15px rgba(180, 151, 90, 0.15);
}

#about .btn-primary::before {
    background-color: var(--text-primary);
}

#about .btn-primary:hover {
    color: #FFF;
}

/* Stats Section */
.dark-bg {
    background-color: #111;
    color: #FFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #BBB;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-img {
        height: 400px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* General Utilities */
.text-center {
    text-align: center;
}

.divider.center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem auto 2.5rem;
}

.divider.center::before, .divider.center::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    max-width: 150px;
}

.divider.center::after {
    background: linear-gradient(to left, transparent, var(--accent-gold), transparent);
}
/* For Center dividers, we will add diamond node in html */

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active::after {
    width: 80%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    cursor: pointer;
    overflow: hidden;
}

.portfolio-img-container {
    position: relative;
    overflow: hidden;
    height: 420px;
}

.portfolio-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    color: #FFF;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlay-content span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

/* Hover Effects */
.portfolio-item:hover .portfolio-img-container img {
    transform: scale(1.08);
}

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

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

/* Services Section */
.light-grey-bg {
    background-color: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #FFF;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(180, 151, 90, 0.2);
    box-shadow: 0 10px 30px rgba(180, 151, 90, 0.05);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

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

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

.service-info {
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-features {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-primary);
    border-top: 1px solid #EEE;
    padding-top: 1.2rem;
}

.service-features li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.2rem;
}

.service-features li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials Section */
.testimonial-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 6rem;
    color: rgba(180, 151, 90, 0.08);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.testimonial-author h4 {
    font-family: var(--font-accent);
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Footer Section */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-grid h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFF;
    margin-bottom: 1.8rem;
}

.footer-about p {
    color: #AAA;
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #AAA;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    color: #AAA;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Ambient Glow Blobs */
.glow-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(180, 151, 90, 0.12) 0%, rgba(180, 151, 90, 0.03) 50%, transparent 80%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1) opacity(0.5); }
    50% { transform: scale(1.1) opacity(0.8); }
}

/* Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

/* Glass Badge overlapping depth */
.glass-badge {
    position: absolute;
    bottom: -15px;
    right: -25px;
    background: rgba(253, 252, 247, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border: 1px solid rgba(180, 151, 90, 0.2);
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    z-index: 10;
    width: 180px;
    text-align: center;
}

.glass-badge .badge-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
}

.glass-badge h4 {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.glass-badge p {
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Removed process bottom padding rule to restore uniform absolute section spacing spacing */

/* ==========================================
   Added Sections (Process, FAQ, Contact)
   ========================================== */

/* Our Process Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 2.5rem;
    background: #FFF;
    border: 1px solid rgba(180, 151, 90, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
    z-index: 1;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(180, 151, 90, 0.05);
    border-color: var(--accent-gold);
}

.process-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(180, 151, 90, 0.08); /* Boosted opacity for light air canvas */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-item h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.process-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-trigger {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-align: left;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.accordion-trigger i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FCFCFA;
}

.accordion-content p {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.accordion-item.active {
    border-color: rgba(180, 151, 90, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.accordion-item.active .accordion-trigger {
    color: var(--accent-gold);
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Booking Contact Form */
.contact-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: #FFF;
    padding: 3rem;
    border: 1px solid rgba(180, 151, 90, 0.15);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group:nth-child(4) {
    grid-column: span 2;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FDFDFB;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border-radius: 2px;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.contact-form-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B4975A' d='M0 0l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(180, 151, 90, 0.04);
}

.form-submit .btn-primary {
    background-color: var(--accent-gold);
    color: #1A1A1A !important; /* Dark text on gold for high contrast */
    border: none;
    padding: 13px 60px;
}

.form-submit .btn-primary:hover {
    color: #FFF;
}

#booking-inquiry .btn-primary::before {
    background-color: var(--text-primary);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group:nth-child(4) {
        grid-column: span 1;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}
/* Fix Footer WhatsApp Button Visibility on Dark BG */
#footer .btn-primary {
    background-color: var(--accent-gold) !important;
    color: #1A1A1A !important;
    border: none;
}

#footer .btn-primary:hover {
    background-color: #FFF !important;
    color: #1A1A1A !important;
}
/* Refined Organic Background Utilities */
.rose-bg, .slate-bg, .sage-bg {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Overriding light readability inside Matte Backgrounds */
.rose-bg .stat-number {
    color: var(--accent-gold) !important; /* Back to gold counters for pop */
}
.rose-bg .stat-label {
    color: var(--text-secondary) !important;
}
.rose-bg h2, .rose-bg span {
    color: var(--text-primary) !important;
}
#footer h2, #footer h4 {
    color: var(--accent-gold) !important;
}
#footer p, #footer a, #footer .footer-contact p, #footer .footer-links a {
    color: var(--text-primary) !important;
}
.rose-bg .btn-primary {
    background-color: var(--text-primary) !important;
    color: #FFF !important;
    border: none;
}
.rose-bg .btn-primary:hover {
    background-color: var(--accent-gold) !important;
    color: var(--text-primary) !important;
}

/* Modern Minimalist Separators instead of severe clip clips */
.rose-bg {
    position: relative;
    z-index: 1;
}

.rose-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background-color: rgba(188, 163, 133, 0.15); /* Gentle line border divide */
    z-index: 10;
}
/* Smooth scrolling standard enablement */
html {
    scroll-behavior: smooth;
}



