﻿/* ================================================================
   RIO GRANDE --- Custom Theme v3.0
   Design: Luxury Event Venue | SEO & Conversion Optimised
   Palette: Burgundy #591010 | Gold #C9A84C | Cream #FBF8F0
================================================================ */

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

/* --- CSS Variables --- */
:root {
    --burgundy:     #591010;
    --burgundy-dk:  #3d0b0b;
    --burgundy-lt:  #7a1515;
    --gold:         #C9A84C;
    --gold-lt:      #e2c06a;
    --cream:        #FBF8F0;
    --cream-dk:     #f0ebe0;
    --white:        #ffffff;
    --dark:         #1a1a1a;
    --text:         #4a4a4a;
    --text-lt:      #777;
    --border:       #e8e0d0;
    --shadow-sm:    0 2px 12px rgba(89,16,16,.08);
    --shadow-md:    0 8px 32px rgba(89,16,16,.14);
    --shadow-lg:    0 20px 60px rgba(89,16,16,.18);
    --transition:   all .35s cubic-bezier(.4,0,.2,1);
    --radius:       4px;
    --radius-lg:    10px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--dark);
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 700;
}

p { margin: 0 0 1.2rem; color: var(--text); }
a { color: var(--burgundy); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }

/* --- Utility --- */
.bg-cream    { background: var(--cream); }
.bg-cream-dk { background: var(--cream-dk); }
.bg-burgundy { background: var(--burgundy); }
.bg-dark     { background: var(--dark); }
.text-gold   { color: var(--gold); }
.text-white  { color: #fff; }
.text-center { text-align: center; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.container-rg {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Section Labels --- */
.eyebrow {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-lt);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}
.divider span { height: 2px; background: var(--gold); flex: 0 0 40px; }
.divider i { color: var(--gold); font-size: 1rem; }

/* --- Buttons --- */
.btn-rg {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-rg-primary {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}
.btn-rg-primary:hover {
    background: var(--burgundy-dk);
    border-color: var(--burgundy-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(89,16,16,.35);
}

.btn-rg-gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn-rg-gold:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,.4);
}

.btn-rg-outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn-rg-outline:hover {
    background: var(--burgundy);
    color: #fff;
    transform: translateY(-2px);
}

.btn-rg-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.7);
}
.btn-rg-outline-white:hover {
    background: #fff;
    color: var(--burgundy);
    border-color: #fff;
}

/* --- Sticky Phone Bar --- */
#sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--burgundy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .82rem;
    transform: translateY(-100%);
    transition: transform .4s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,.25);
}
#sticky-bar.visible { transform: translateY(0); }
#sticky-bar .bar-left { display: flex; align-items: center; gap: 20px; }
#sticky-bar .bar-left span { opacity: .85; }
#sticky-bar a { color: var(--gold-lt); font-weight: 700; }
#sticky-bar a:hover { color: #fff; }
#sticky-bar .bar-right { display: flex; align-items: center; gap: 12px; }
#sticky-bar .bar-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 5px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
}
#sticky-bar .bar-cta:hover { background: var(--gold-lt); color: var(--dark); }

/* --- Hero --- */
.rg-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* --- Video hero background --- */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
    /* poster image shows while video loads */
    background: url('/images/slider/05.webp') center/cover no-repeat;
}
.hero-video.ready { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,10,10,.78) 0%,
        rgba(89,16,16,.55) 50%,
        rgba(26,10,10,.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px 50px;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px; height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.88);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-family: 'Nunito Sans', sans-serif;
    font-size: .8rem;
    letter-spacing: .05em;
}
.hero-trust-item i { color: var(--gold); font-size: 1rem; }

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-family: 'Nunito Sans', sans-serif;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.scroll-indicator .line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    50.1%{ transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Stats Bar --- */
.stats-bar {
    background: var(--dark);
    padding: 0;
}
.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid rgba(255,255,255,.08);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

/* --- About --- */
.about-section {
    padding: 100px 0;
    background: var(--white);
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    width: 100%;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--burgundy);
    color: #fff;
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    padding: 10px;
}
.about-badge strong { font-size: 1.9rem; line-height: 1; font-family: 'Playfair Display', serif; }
.about-badge span   { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: 4px; font-family: 'Nunito Sans', sans-serif; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}
.about-feature i {
    color: var(--burgundy);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.about-feature-text strong {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.about-feature-text span { font-size: .88rem; color: var(--text-lt); }

/* --- Services / Cards --- */
.services-section {
    padding: 100px 0;
    background: var(--cream-dk);
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: var(--dark);
    transition: var(--transition);
    height: 340px;
    cursor: pointer;
    /* Ensure text is always readable even without hover */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform .6s ease;
}
.service-card:hover img { transform: scale(1.08); }

.service-overlay {
    position: absolute;
    inset: 0;
    /* Always-on gradient --- strong enough to read text without hover */
    background: linear-gradient(
        to top,
        rgba(10,4,4,.92) 0%,
        rgba(10,4,4,.55) 45%,
        rgba(10,4,4,.15) 100%
    );
    transition: var(--transition);
}
.service-card:hover .service-overlay {
    background: linear-gradient(
        to top,
        rgba(89,16,16,.96) 0%,
        rgba(89,16,16,.55) 50%,
        rgba(89,16,16,.1) 100%
    );
}

.service-body {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: #fff;
}
.service-cat {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.service-desc {
    font-size: .92rem;
    color: rgba(255,255,255,.78);
    margin: 0 0 10px;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.5;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.service-card:hover .service-cta { opacity: 1; transform: translateY(0); }

/* --- Testimonials --- */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}
.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 40px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    line-height: 1;
    color: var(--cream-dk);
    z-index: 0;
    pointer-events: none;
}

.testimonial-card {
    position: relative;
    z-index: 1;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.stars { color: #f5b100; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--burgundy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0;
}
.author-name  { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: .88rem; color: var(--dark); }
.author-event { font-size: .78rem; color: var(--text-lt); }

/* --- Packages section wrapper --- */
.packages-section {
    padding: 100px 0;
    background: var(--cream-dk);
}

/* --- Old image-based card (kept for fallback) --- */
.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.package-card.featured { border: 2px solid var(--gold); }
.package-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Nunito Sans', sans-serif;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
}
.package-img {
    width: 100%;
    display: block;
}
.package-body {
    padding: 28px;
    text-align: center;
}
.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 8px;
}
.package-tagline {
    font-size: .95rem;
    color: var(--text-lt);
    margin-bottom: 20px;
}
.package-cta {
    display: block;
    width: 100%;
}

/* ---
   HTML Package Cards (replaces design images)
--- */

/* Grid layout */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
@media(max-width: 991px) { .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* Card shell */
.pkg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-card--featured {
    border: 2px solid var(--gold);
    box-shadow: 0 12px 40px rgba(201,168,76,.2);
    transform: scale(1.02);
}
.pkg-card--featured:hover { transform: scale(1.02) translateY(-6px); }

/* Header band */
.pkg-header {
    position: relative;
    padding: 32px 24px 24px;
    text-align: center;
}
.pkg-header--essential  { background: linear-gradient(135deg, #1a1a1a 0%, #2d1010 100%); }
.pkg-header--experience { background: linear-gradient(135deg, #3d0b0b 0%, #591010 60%, #7a1515 100%); }
.pkg-header--grande     { background: linear-gradient(135deg, #0f0707 0%, #3d0b0b 100%); }

/* Ribbon badge */
.pkg-ribbon {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.4);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 14px;
}
.pkg-ribbon--gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Script heading */
.pkg-script {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

/* Tagline */
.pkg-header .pkg-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin: 0 0 20px;
}

/* Price badge in header */
.pkg-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    padding: 8px 22px;
}
.pkg-price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.pkg-price-unit {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Body */
.pkg-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Section within body */
.pkg-section {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.pkg-section:last-child { border-bottom: none; }

.pkg-section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.pkg-section-title i { font-size: .85rem; color: var(--gold); }

/* Bullet list */
.pkg-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pkg-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text);
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}
.pkg-list li::before {
    content: '.';
    position: absolute;
    left: 4px;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Food blocks */
.pkg-food-block {
    margin-bottom: 12px;
}
.pkg-food-block:last-child { margin-bottom: 0; }
.pkg-food-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 3px;
}
.pkg-food-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: .98rem;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.pkg-footer {
    padding: 20px 22px;
    background: var(--cream-dk);
    border-top: 1px solid var(--border);
}
.pkg-footer--featured {
    background: linear-gradient(135deg, #3d0b0b, #591010);
    border-top: none;
}

.pkg-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.pkg-price-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-lt);
}
.pkg-footer--featured .pkg-price-label { color: rgba(255,255,255,.6); }
.pkg-price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
}
.pkg-price-value small {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    color: var(--text-lt);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-left: 3px;
}
.pkg-footer--featured .pkg-price-value { color: var(--gold); }
.pkg-footer--featured .pkg-price-value small { color: rgba(255,255,255,.5); }

/* CTA button */
.pkg-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    background: transparent;
    transition: var(--transition);
}
.pkg-cta:hover {
    background: var(--burgundy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89,16,16,.3);
}
.pkg-cta--gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}
.pkg-cta--gold:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(201,168,76,.4);
}

/* Mobile tweaks */
@media(max-width: 768px) {
    .pkg-script { font-size: 1.25rem; }
    .pkg-price-amount { font-size: 1.7rem; }
    .pkg-card--featured { transform: none; }
    .pkg-card--featured:hover { transform: translateY(-6px); }
}

/* --- Facilities --- */
.facilities-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.facilities-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,10,10,.82);
}
.facilities-content { position: relative; z-index: 1; }
.facility-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.88);
    font-family: 'Nunito Sans', sans-serif;
    font-size: .92rem;
    letter-spacing: .04em;
}
.facility-item:last-child { border-bottom: none; }
.facility-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* --- Gallery Grid --- */
.gallery-section { padding: 100px 0; background: var(--cream); }
.gallery-masonry {
    columns: 3;
    column-gap: 12px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.gallery-item a { display: block; }
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(89,16,16,.5);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: #fff; font-size: 1.5rem; }

@media(max-width:900px) { .gallery-masonry { columns: 2; } }
@media(max-width:500px) { .gallery-masonry { columns: 1; } }

/* --- Enquiry Form Section --- */
.enquiry-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.enquiry-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(89,16,16,.3);
    pointer-events: none;
}
.enquiry-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(201,168,76,.06);
    pointer-events: none;
}

.enquiry-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 16px;
}
.enquiry-info p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

.enquiry-contact-list { margin: 32px 0; }
.enquiry-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.8);
}
.enquiry-contact-item .icon-wrap {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(89,16,16,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.enquiry-contact-item .icon-wrap i { color: var(--gold); font-size: .95rem; }
.enquiry-contact-item a { color: rgba(255,255,255,.9); font-weight: 600; }
.enquiry-contact-item a:hover { color: var(--gold); }

.enquiry-urgency {
    background: rgba(89,16,16,.5);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.85);
    font-family: 'Nunito Sans', sans-serif;
    font-size: .85rem;
}
.enquiry-urgency i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* --- Form Styles --- */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: 6px;
}
.form-card .form-subtitle {
    font-size: .9rem;
    color: var(--text-lt);
    margin-bottom: 28px;
}

.form-group-rg {
    margin-bottom: 18px;
}
.form-group-rg label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group-rg label .req { color: var(--burgundy); margin-left: 2px; }

.form-group-rg input,
.form-group-rg select,
.form-group-rg textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-group-rg input:focus,
.form-group-rg select:focus,
.form-group-rg textarea:focus {
    border-color: var(--burgundy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(89,16,16,.08);
}
.form-group-rg textarea { resize: vertical; min-height: 120px; }
.form-group-rg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23591010' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

.form-submit {
    width: 100%;
    padding: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--burgundy);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}
.form-submit:hover {
    background: var(--burgundy-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(89,16,16,.35);
}
.form-submit:disabled {
    background: #ccc;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: .78rem;
    color: var(--text-lt);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-note i { color: var(--gold); }

.alert-rg {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-family: 'Nunito Sans', sans-serif;
    font-size: .88rem;
    margin-bottom: 18px;
    display: none;
    align-items: center;
    gap: 10px;
}
.alert-rg.success { background: #f0faf3; border: 1px solid #6dbf82; color: #2d7a47; }
.alert-rg.error   { background: #fff0f0; border: 1px solid #e88; color: #c0392b; }
.alert-rg.show { display: flex; }

/* --- Map Section --- */
.map-section { position: relative; }
.map-section iframe { display: block; border: 0; }

/* --- Footer --- */
.rg-footer {
    background: #0f0707;
    color: rgba(255,255,255,.7);
    padding: 70px 0 0;
}
.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}
.footer-logo-text em { font-style: italic; color: var(--gold); }
.footer-tagline { font-size: .82rem; letter-spacing: .12em; color: rgba(255,255,255,.45); text-transform: uppercase; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }

.footer-heading {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .92rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px; color: rgba(255,255,255,.6); font-size: .92rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* --- Kill old sidebar layout --- */
#pwe-aside,
.pwe-nav-toggle,
.js-pwe-nav-toggle,
.header-logo,
h1.header-logo {
    display: none !important;
}
/* Remove the left gap the old sidebar layout created */
#pwe-main {
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}
#pwe-page,
body {
    margin-left: 0 !important;
    padding-left: 0 !important;
    overflow-x: hidden;
}

/* --- Top Navbar --- */
#rg-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9500;
    background: rgba(15, 7, 7, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .35s ease, box-shadow .35s ease;
}
#rg-navbar.scrolled {
    background: rgba(15, 7, 7, 0.99);
    box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.rg-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.rg-nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.rg-nav-logo img {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(1.05);
}

/* Desktop links */
#rg-nav-links { flex: 1; }
#rg-nav-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
#rg-nav-links ul li a {
    display: block;
    padding: 8px 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}
#rg-nav-links ul li a:hover,
#rg-nav-links ul li a.active {
    color: var(--gold);
    background: rgba(255,255,255,.05);
}

/* Right side */
.rg-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.rg-nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    transition: var(--transition);
    white-space: nowrap;
}
.rg-nav-phone i { color: var(--gold); font-size: .85rem; }
.rg-nav-phone:hover { color: var(--gold); }

.rg-nav-cta {
    display: inline-block;
    padding: 9px 22px;
    background: var(--burgundy);
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid var(--burgundy);
    transition: var(--transition);
    white-space: nowrap;
}
.rg-nav-cta:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

/* Hamburger */
.rg-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: none;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}
.rg-hamburger:hover { border-color: var(--gold); }
.rg-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.rg-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rg-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rg-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.rg-mobile-menu {
    display: none;
    background: #0f0707;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 12px 0 24px;
}
.rg-mobile-menu.open { display: block; }
.rg-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.rg-mobile-menu ul li a {
    display: block;
    padding: 13px 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: var(--transition);
}
.rg-mobile-menu ul li a:hover { color: var(--gold); padding-left: 36px; }
.rg-mob-footer {
    padding: 20px 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rg-mob-footer a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.rg-mob-footer a:hover { color: var(--gold); }
.rg-mob-footer i { color: var(--gold); }

/* Push page content below the fixed navbar */
#pwe-page > main { padding-top: 72px; }
.rg-hero,
.page-header { padding-top: 72px; }
.rg-hero { min-height: 80vh; }

/* --- Floating CTA --- */
.float-cta {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 8000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: var(--transition);
    white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.float-btn.whatsapp { background: #25D366; color: #fff; }
.float-btn.whatsapp:hover { background: #1ebe5c; color: #fff; }
.float-btn.phone { background: var(--burgundy); color: #fff; }
.float-btn.phone:hover { background: var(--burgundy-dk); color: #fff; }
.float-btn i { font-size: 1.05rem; }

/* --- Page Header Banner --- */
.page-header {
    position: relative;
    padding: 130px 0 70px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,10,10,.85), rgba(89,16,16,.65));
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0; }
.breadcrumb-rg {
    display: flex; gap: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
}
.breadcrumb-rg a { color: var(--gold); }
.breadcrumb-rg span { color: rgba(255,255,255,.4); }

/* --- CTA Strip --- */
.cta-strip {
    background: var(--burgundy);
    padding: 60px 0;
    text-align: center;
}
.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 10px;
}
.cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-strip .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* --- Responsive --- */
@media(max-width: 991px) {
    .section { padding: 70px 0; }
    .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .about-badge { width: 100px; height: 100px; bottom: -15px; right: -10px; }
    .about-badge strong { font-size: 1.5rem; }
    .about-features { grid-template-columns: 1fr; }

    /* Navbar: collapse links, show hamburger */
    #rg-nav-links { display: none; }
    .rg-nav-phone  { display: none; }
    .rg-nav-cta    { display: none; }
    .rg-hamburger  { display: flex; }
}

@media(max-width: 768px) {
    /* --- Base font sizes --- Cormorant needs to be larger on mobile --- */
    body     { font-size: 18px; }
    p        { font-size: 1.05rem; line-height: 1.75; }
    .section-title   { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-subtitle { font-size: 1rem; }
    .eyebrow { font-size: .75rem; }

    /* --- Navbar --- */
    .rg-nav-inner { padding: 0 20px; height: 64px; }
    .rg-nav-logo img { height: 44px; }

    /* --- Hero --- */
    .hero-content { padding: 50px 20px 40px; }
    .hero-title   { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-rg { text-align: center; width: 100%; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-trust-item { font-size: .85rem; }

    /* --- Stats --- */
    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .stat-label  { font-size: .7rem; }

    /* --- Services --- 2-column grid, shorter cards --- */
    .services-section { padding: 60px 0; }
    .services-section .container-rg { padding: 0 12px; }
    .services-section .row.g-3 { --bs-gutter-x: .6rem; --bs-gutter-y: .6rem; }
    .service-card { height: 200px; border-radius: 8px; }
    .service-body { padding: 14px; }
    .service-name { font-size: 1.05rem; margin-bottom: 4px; }
    .service-cat  { font-size: .62rem; margin-bottom: 4px; }
    .service-desc { display: none; }   /* hide desc on mobile --- too cramped */
    .service-cta  { display: none; }   /* hide hover arrow on touch */

    /* --- Floating CTAs --- */
    .float-cta { bottom: 16px; right: 16px; }
    .float-btn span { display: none; }
    .float-btn { padding: 14px; border-radius: 50%; }

    /* --- Forms --- */
    .form-card { padding: 24px 16px; }
    .form-group-rg input,
    .form-group-rg select,
    .form-group-rg textarea { font-size: 1rem; padding: 11px 14px; }
    .form-submit { font-size: .9rem; padding: 15px; }

    /* --- Misc --- */
    .container-rg { padding: 0 16px; }
    #sticky-bar .bar-left span { display: none; }
    .footer-bottom { text-align: center; justify-content: center; }
    #pwe-page > main { padding-top: 64px; }
    .rg-hero, .page-header { padding-top: 64px; }
    .about-feature-text strong { font-size: .85rem; }
    .about-feature-text span   { font-size: .9rem; }
    .testimonial-text { font-size: 1.05rem; }
    .enquiry-info h2  { font-size: 1.8rem; }
    .enquiry-info p   { font-size: 1rem; }
}

@media(max-width: 480px) {
    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    .section { padding: 56px 0; }
}
