:root {
    /* Clean White Base */
    --bg: #ffffff;
    --bg-alt: #fafafa;
    --bg-section: #ffffff;
    
    /* Rich Text Colors */
    --text: #1a1a1a;
    --text-soft: #444444;
    --muted: #666666;
    --muted-light: #888888;
    
    /* Indian Wedding Color Palette */
    --wedding-red: #e63946;
    --wedding-magenta: #d81b60;
    --wedding-maroon: #880e4f;
    --wedding-gold: #ffc107;
    --wedding-saffron: #ff9800;
    --wedding-pink: #f48fb1;
    --wedding-deep: #4a0e2e;
    
    /* Accent Colors */
    --accent: #ffc107;
    --accent-2: #fff3cd;
    --accent-soft: rgba(255, 193, 7, 0.15);
    --border: rgba(216, 27, 96, 0.12);
    --card: rgba(255, 255, 255, 0.95);
    --highlight: #fff8e1;
    
    /* Futuristic Shadows */
    --shadow: 0 20px 60px rgba(136, 14, 79, 0.12);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 25px 80px rgba(216, 27, 96, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 193, 7, 0.3);
    --glass: rgba(255, 255, 255, 0.85);
    
    /* Royal Wedding Colors */
    --royal-maroon: #c2185b;
    --royal-maroon-light: #e91e63;
    --royal-gold: #ffc107;
    --royal-gold-light: #ffca28;
    --royal-deep: #880e4f;
    --royal-bronze: #ff8f00;
    --royal-cream: #ffffff;
    
    /* Vibrant Indian Gradients */
    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #ffeb3b 50%, #ffc107 100%);
    --gradient-maroon: linear-gradient(135deg, #c2185b 0%, #e91e63 50%, #c2185b 100%);
    --gradient-saffron: linear-gradient(135deg, #ff9800 0%, #ffb74d 50%, #ff9800 100%);
    --gradient-wedding: linear-gradient(135deg, #c2185b 0%, #e91e63 25%, #ff4081 50%, #ff9800 75%, #ffc107 100%);
    --gradient-festive: linear-gradient(45deg, #c2185b, #e91e63, #ff4081, #ff9800, #ffc107);
    
    /* Border Radii */
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-xl: 2.5rem;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Futuristic Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-left: 1px solid rgba(194, 24, 91, 0.08);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c2185b, #e91e63, #ff4081);
    border-radius: 5px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #880e4f, #c2185b, #e91e63);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #c2185b #ffffff;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 1.25rem;
}

h1, h2, h3, h4 {
    font-family: "Fraunces", serif;
    margin: 0 0 0.5em;
    line-height: 1.15;
    color: var(--text);
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--wedding-magenta);
    text-shadow: 0 0 20px rgba(194, 24, 91, 0.2);
}

p {
    margin: 0 0 1em;
    color: var(--muted);
}

figcaption,
.tagline {
    color: var(--muted-light);
}

.eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--wedding-magenta);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.eyebrow::after {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--gradient-wedding);
    border-radius: 999px;
    animation: shimmer 2.4s linear infinite;
}

.lede {
    font-size: 1.25rem;
    color: var(--royal-deep);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 252, 0.98) 100%);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(194, 24, 91, 0.1);
    box-shadow: 0 4px 30px rgba(194, 24, 91, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.8s ease forwards;
    position: sticky;
    isolation: isolate;
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-wedding);
    background-size: 300% 100%;
    animation: headerShine 6s linear infinite;
}

.site-header::after {
    display: none;
}

@keyframes headerShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.25rem 0.6rem 0.6rem;
    background: linear-gradient(135deg, #ffffff 0%, #fffbfc 100%);
    border-radius: var(--radius-md);
    border: 2px solid rgba(194, 24, 91, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.08);
}

.brand-mark:hover {
    border-color: var(--wedding-magenta);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.15);
    transform: translateY(-2px);
}

.brand-logo {
    width: auto;
    height: 52px;
    max-height: 52px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(194, 24, 91, 0.1));
    transition: all 0.3s ease;
}

.brand-mark:hover .brand-logo {
    filter: drop-shadow(0 8px 20px rgba(194, 24, 91, 0.18));
    transform: scale(1.02);
}

.brand-mark .eyebrow {
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--royal-maroon);
    font-weight: 700;
}

.brand-mark .eyebrow::after {
    display: none;
}

.brand-mark .tagline {
    font-size: 0.78rem;
    color: var(--wedding-magenta);
    letter-spacing: 0.06em;
    font-weight: 500;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    justify-content: center;
}

.language-toggle {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fffbfc 100%);
    padding: 0.3rem;
    border-radius: 999px;
    border: 2px solid rgba(194, 24, 91, 0.12);
    box-shadow: 0 2px 10px rgba(194, 24, 91, 0.08);
}

.lang-btn {
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #555555;
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--royal-maroon);
    background: rgba(194, 24, 91, 0.08);
}

.lang-btn.is-active {
    background: var(--gradient-wedding);
    color: #fff;
    box-shadow: 0 3px 12px rgba(194, 24, 91, 0.35);
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 0.3rem;
    margin: 0;
    padding: 0.5rem 0.6rem;
    background: linear-gradient(135deg, #ffffff 0%, #fffbfc 50%, #fff8f5 100%);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 2px solid rgba(194, 24, 91, 0.12);
    box-shadow: 0 4px 20px rgba(194, 24, 91, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.primary-nav ul::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--royal-gold), var(--royal-maroon), var(--royal-gold));
    z-index: -1;
    opacity: 0.4;
}

.primary-nav li {
    position: relative;
}

/* Hide mobile language toggle on desktop */
.mobile-lang-toggle {
    display: none;
}

.primary-nav a {
    font-weight: 600;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    font-size: 0.9rem;
    color: #1a1a1a !important;
    background: transparent;
    letter-spacing: 0.01em;
    -webkit-text-fill-color: #1a1a1a;
    text-shadow: none;
}

.primary-nav a:hover {
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.12) 0%, rgba(233, 30, 99, 0.08) 100%);
    color: #880e4f !important;
    -webkit-text-fill-color: #880e4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(194, 24, 91, 0.15);
}

.primary-nav a:active {
    transform: translateY(0);
    box-shadow: none;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2.5px;
    background: var(--gradient-wedding);
    border-radius: 2px;
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.primary-nav a:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #fffbfc 100%);
    border: 2px solid rgba(194, 24, 91, 0.15);
    color: var(--wedding-magenta);
    padding: 0.7rem 0.95rem;
    border-radius: 0.9rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.1);
}

.nav-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.18);
    border-color: var(--wedding-magenta);
}

.nav-toggle:active {
    transform: scale(0.98);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--gradient-wedding);
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle span:not(:last-child) {
    margin-bottom: 5px;
}

.nav-toggle[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--royal-maroon), var(--royal-deep));
    box-shadow: 0 6px 25px rgba(194, 24, 91, 0.35);
}

.nav-toggle[aria-expanded="true"]::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--royal-gold), #fff);
}

.nav-toggle[aria-expanded="true"] span {
    background: #fff;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.site-header > .cta {
    padding: 0.7rem 1.4rem;
    font-size: 0.88rem;
    background: linear-gradient(135deg, var(--royal-maroon) 0%, var(--royal-deep) 100%);
    box-shadow: 0 4px 18px rgba(194, 24, 91, 0.35);
    font-weight: 600;
}

.site-header > .cta:hover {
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.45);
    transform: translateY(-2px);
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-wedding);
    background-size: 300% 300%;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.25rem;
    border-radius: 999px;
    border: none;
    box-shadow: 
        0 8px 25px rgba(194, 24, 91, 0.35),
        0 4px 15px rgba(255, 152, 0, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(194, 24, 91, 0.4),
        0 8px 25px rgba(255, 152, 0, 0.3),
        0 0 30px rgba(255, 193, 7, 0.2);
    color: #fff;
}

.cta:hover::before {
    opacity: 1;
}

.cta:hover::after {
    transform: translateX(100%);
}

.cta:active {
    transform: translateY(-2px) scale(1.01);
}

.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    border-radius: 999px;
    border: 2px solid var(--royal-maroon);
    color: var(--royal-maroon);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ghost:hover {
    background: var(--gradient-maroon);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(194, 24, 91, 0.3);
}

.ghost.secondary {
    border: 2px solid var(--wedding-saffron);
    color: var(--wedding-saffron);
}

.ghost.secondary:hover {
    background: var(--gradient-saffron);
    border-color: transparent;
}

main {
    padding: 2rem clamp(1.5rem, 6vw, 5rem) 4rem;
    background: #ffffff;
}

.section {
    margin-bottom: 5rem;
    padding: 5rem 0;
    position: relative;
}

/* Section Transition Dividers */
.section::after {
    content: "";
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gradient-wedding);
    border-radius: 3px;
    opacity: 0.6;
}

.section:last-child::after {
    display: none;
}

/* Alternating Section Backgrounds */
main > section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
}

main > section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(194, 24, 91, 0.06);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

main > section {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeRise 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

main > section:nth-of-type(1) { animation-delay: 0.1s; }
main > section:nth-of-type(2) { animation-delay: 0.2s; }
main > section:nth-of-type(3) { animation-delay: 0.3s; }
main > section:nth-of-type(4) { animation-delay: 0.4s; }
main > section:nth-of-type(5) { animation-delay: 0.5s; }
main > section:nth-of-type(6) { animation-delay: 0.6s; }
main > section:nth-of-type(7) { animation-delay: 0.7s; }
main > section:nth-of-type(8) { animation-delay: 0.8s; }

/* ========================================
   FULL-WIDTH HERO BANNER
   ======================================== */
.hero-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(136, 14, 79, 0.95), rgba(194, 24, 91, 0.9), rgba(233, 30, 99, 0.85)),
        url('media/Images/banner_1.png') center/cover no-repeat;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #ffffff, transparent);
    pointer-events: none;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffc107' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-banner-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-banner-title {
    font-family: "Fraunces", serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(255, 193, 7, 0.3);
    line-height: 1.1;
}

.hero-banner-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--wedding-gold);
    margin: 0 0 2.5rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-banner-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-banner-cta .cta {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 193, 7, 0.3);
}

.hero-banner-cta .ghost {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-banner-cta .ghost:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--wedding-magenta);
    border-color: #ffffff;
}


.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(145deg, #fffbfc 0%, #fff8f5 50%, #fffdf8 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(194, 24, 91, 0.1);
    box-shadow: 
        0 30px 80px rgba(194, 24, 91, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-wedding);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    background: transparent;
}

.hero-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(194, 24, 91, 0.12);
}

.hero-visual figcaption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.banner-carousel {
    position: relative;
}

.banner-slider {
    margin-top: 2.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(194, 24, 91, 0.1);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 50px rgba(194, 24, 91, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, #fffbfc 0%, #fff8f5 100%);
}

.banner-slide {
    display: none;
    position: relative;
}

.banner-slide.is-active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: clamp(240px, 38vw, 450px);
    object-fit: cover;
    display: block;
    filter: saturate(0.95);
}

.banner-slider .image-modal-trigger {
    border-radius: 0;
}

.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: min(420px, 90%);
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 251, 252, 0.98) 0%, rgba(255, 248, 245, 0.95) 100%);
    backdrop-filter: blur(16px);
    border-bottom-right-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    box-shadow: 
        0 20px 50px rgba(194, 24, 91, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(194, 24, 91, 0.12);
    border-bottom: 2px solid rgba(194, 24, 91, 0.12);
}

.banner-overlay h3 {
    margin-top: 0.35rem;
}

.banner-indicators {
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.banner-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.banner-indicators button.is-active {
    background: var(--royal-gold);
    border-color: var(--royal-gold);
    box-shadow: 0 0 10px rgba(194, 24, 91, 0.5);
}

.banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
}

.banner-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--royal-maroon), var(--royal-gold));
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.section-heading p,
.section-heading h2 {
    color: var(--text);
}

.section-heading h2 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    background: linear-gradient(135deg, var(--royal-maroon) 0%, var(--royal-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-heading > p:not(.eyebrow) {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 600px;
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-wedding);
    border-radius: 2px;
    margin: 1.5rem 0;
}

/* About Section Two-Column Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content {
    max-width: 600px;
}

.about-content .eyebrow {
    margin-bottom: 0.75rem;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--royal-maroon);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.about-stats .stat-card {
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.about-stats .stat-number {
    font-size: 2.5rem;
}

.about-stats .stat-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Stats Grid for Area Measurements */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #fff9fb 0%, #fff5f8 50%, #fffbf5 100%);
    border: 2px solid rgba(194, 24, 91, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 10px 40px rgba(194, 24, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-wedding);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(194, 24, 91, 0.12),
        0 0 20px rgba(255, 193, 7, 0.1);
    border-color: rgba(194, 24, 91, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2.75rem;
    display: block;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-wedding);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    border: 2px solid rgba(194, 24, 91, 0.1);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, #fffbfc 0%, #fff8f5 50%, #fffdf8 100%);
    min-height: 220px;
    box-shadow: 
        0 12px 40px rgba(194, 24, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-wedding);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(194, 24, 91, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(194, 24, 91, 0.15),
        0 0 40px rgba(255, 193, 7, 0.12),
        inset 0 0 0 2px rgba(194, 24, 91, 0.1);
    border-color: var(--wedding-magenta);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:nth-child(odd) {
    animation: none;
}

.feature-card:nth-child(even) {
    animation: none;
}

.feature-card h3 {
    font-family: "Fraunces", serif;
    color: var(--royal-maroon);
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
}

.facility-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.feature-card:hover .facility-icon {
    transform: scale(1.1);
}

.experience-icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.facilities .grid-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.facilities .feature-card {
    text-align: center;
    min-height: 200px;
}

.facilities .feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.facilities .feature-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Rooms Section */
.rooms .grid-features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.rooms .feature-card {
    text-align: center;
}

.room-count {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--royal-maroon);
    margin: 0.75rem 0;
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(194, 24, 91, 0.08);
    border-radius: var(--radius-sm);
}

/* Events Section */
.events .grid-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.events .grid-features .event-card:nth-child(5),
.events .grid-features .event-card:nth-child(6),
.events .grid-features .event-card:nth-child(7) {
    grid-column: span 1;
}

/* Center the last row of 3 items */
.events-grid {
    justify-items: center;
}

.events .feature-card {
    text-align: center;
    min-height: 200px;
    width: 100%;
    max-width: 280px;
}

/* Highlight card (featured) */
.highlight-card {
    background: linear-gradient(145deg, #fffbf0 0%, #fff8e8 50%, #fffdf5 100%) !important;
    border: 2px solid rgba(255, 193, 7, 0.4) !important;
    box-shadow: 
        0 15px 45px rgba(194, 24, 91, 0.1),
        0 0 40px rgba(255, 193, 7, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.highlight-card::before {
    transform: scaleX(1) !important;
    background: var(--gradient-gold) !important;
}

.events .feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.events .feature-card p {
    font-size: 0.92rem;
    color: var(--text-soft);
}

/* Address line in map */
.address-line {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--royal-maroon);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.media-frame {
    border-radius: 2rem;
    border: 3px solid rgba(194, 24, 91, 0.4);
    padding: 0.5rem;
    background: linear-gradient(145deg, #ffffff, #ffffff);
    box-shadow: 0 20px 50px rgba(194, 24, 91, 0.15);
    animation: float 10s ease-in-out infinite;
    max-width: 100%;
}

.media-frame img {
    border-radius: 1.75rem;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.banquet-list {
    padding-left: 1.1rem;
    color: var(--muted);
}

.video-block {
    text-align: center;
}


.video-wrapper {
    position: relative;
    padding-top: 56%;
    border-radius: 2rem;
    overflow: hidden;
    border: 3px solid rgba(194, 24, 91, 0.4);
    background: linear-gradient(135deg, #ffffff, #ffffff);
    box-shadow: 0 20px 50px rgba(194, 24, 91, 0.12);
    animation: pulseOutline 5s ease-in-out infinite;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.experience-grid article {
    border: 2px solid rgba(194, 24, 91, 0.25);
    border-radius: 1.75rem;
    padding: 1.25rem;
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 15px 35px rgba(194, 24, 91, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.experience-grid article img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
}

.experience-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(194, 24, 91, 0.18);
    border-color: var(--royal-gold);
}

.offers .section-heading {
    text-align: left;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-card {
    border: 2px solid rgba(194, 24, 91, 0.25);
    border-radius: 1.5rem;
    padding: 1.75rem;
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 15px 35px rgba(194, 24, 91, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-maroon), var(--royal-gold), var(--royal-maroon));
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(194, 24, 91, 0.18);
    border-color: var(--royal-gold);
}

.offer-card h3 {
    margin: 0;
}

.offer-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    flex: 1;
}

.offer-card li + li {
    margin-top: 0.4rem;
}

.offer-card .cta,
.offer-card .ghost {
    align-self: flex-start;
}

/* Pricing Section */
.pricing {
    text-align: center;
}

.pricing .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-card {
    background: linear-gradient(145deg, #fffbfc 0%, #fff8f5 50%, #fffdf8 100%);
    border: 2px solid rgba(194, 24, 91, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 12px 40px rgba(194, 24, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-wedding);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 60px rgba(194, 24, 91, 0.1),
        0 0 25px rgba(255, 193, 7, 0.08);
    border-color: rgba(194, 24, 91, 0.1);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #fff5f7 0%, #ffeff3 50%, #fff8f0 100%);
    border: 2px solid var(--royal-maroon);
    box-shadow: 
        0 20px 50px rgba(194, 24, 91, 0.15),
        0 0 30px rgba(255, 193, 7, 0.1);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--royal-maroon), var(--royal-deep));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(194, 24, 91, 0.3);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header .eyebrow {
    color: var(--royal-gold);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.pricing-header h3 {
    color: var(--royal-maroon);
    font-size: 1.4rem;
    margin: 0;
}

.pricing-header .venue-type {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(194, 24, 91, 0.1);
    border-radius: 999px;
    display: inline-block;
    border: 1px solid rgba(194, 24, 91, 0.2);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.1), rgba(194, 24, 91, 0.05));
    border-radius: 1rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--royal-maroon);
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-maroon);
    font-family: var(--font-display);
    line-height: 1;
}

.pricing-price .period {
    font-size: 0.85rem;
    color: var(--muted);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(194, 24, 91, 0.15);
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--royal-gold);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-card .cta {
    width: 100%;
    margin-top: auto;
}

/* Add-ons Section */
.addons-section {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
    border: 2px solid rgba(194, 24, 91, 0.25);
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.08);
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.addons-section h3 {
    color: var(--royal-maroon);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.addons-section p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

.addons-grid li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(194, 24, 91, 0.2);
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.addons-grid li::before {
    content: "+";
    color: var(--royal-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.addons-grid li:hover {
    background: rgba(194, 24, 91, 0.1);
    border-color: var(--royal-gold);
    transform: translateX(4px);
}

.pricing-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(194, 24, 91, 0.1);
    animation: float 12s ease-in-out infinite;
    border: 3px solid rgba(194, 24, 91, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(194, 24, 91, 0.18);
    border-color: var(--wedding-magenta);
}

.image-modal-trigger {
    border: none;
    background: transparent;
    padding: 0;
    display: block;
    width: 100%;
    border-radius: 1.25rem;
    cursor: zoom-in;
}

.image-modal-trigger img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: inherit;
}

/* Hero visual should not crop */
.hero-visual .image-modal-trigger img {
    max-height: none;
    object-fit: contain;
}

.image-modal-trigger:focus-visible {
    outline: 2px solid var(--royal-gold);
    outline-offset: 4px;
}

.gallery-link {
    margin-top: 2rem;
    text-align: center;
}

.seo-text {
    background: linear-gradient(145deg, #fffbfc 0%, #fff8f5 50%, #fffdf8 100%);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(194, 24, 91, 0.1);
    box-shadow: 
        0 15px 45px rgba(194, 24, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.seo-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-wedding);
    border-radius: 0 0 3px 3px;
    opacity: 0.9;
}

.map-block .section-heading {
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    border: 2px solid rgba(194, 24, 91, 0.1);
    background: linear-gradient(145deg, #fffbfc 0%, #fff8f5 100%);
    padding: 0.75rem;
    box-shadow: 
        0 15px 45px rgba(194, 24, 91, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: var(--radius-lg);
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: start;
    padding: 3.5rem;
    background: linear-gradient(145deg, #fff9fb 0%, #fff5f8 50%, #fffbf5 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(194, 24, 91, 0.1);
    box-shadow: 
        0 20px 60px rgba(194, 24, 91, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-wedding);
}

.contact-info {
    position: relative;
}

.contact-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--royal-maroon), var(--royal-deep));
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4);
}

.contact-offer-badge .offer-icon {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(194, 24, 91, 0.5); }
}

.contact-offer-box {
    background: linear-gradient(135deg, rgba(194, 24, 91, 0.08), rgba(194, 24, 91, 0.1));
    border: 2px solid var(--royal-gold);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-offer-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.3), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.contact-offer-box h4 {
    color: var(--royal-maroon);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.contact-offer-box p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.contact-offer-box strong {
    color: var(--royal-maroon);
}

.contact-offer-box .offer-validity {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--royal-gold);
    font-weight: 600;
    background: rgba(194, 24, 91, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
}

.contact-list li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(194, 24, 91, 0.2);
    border-radius: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-list li a:hover {
    background: rgba(194, 24, 91, 0.15);
    border-color: var(--royal-gold);
    transform: translateX(5px);
    color: var(--royal-maroon);
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.5rem;
    display: inline-block;
}

.contact-list li + li {
    margin-top: 0.35rem;
}

/* WhatsApp Booking Button - Special Styling */
.whatsapp-booking-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    border: none !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-booking-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
    color: white !important;
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: none !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%) !important;
}

.glass-panel {
    border-radius: var(--radius-xl);
    border: 2px solid rgba(194, 24, 91, 0.12);
    padding: 2.75rem 2.5rem;
    background: linear-gradient(145deg, rgba(255, 251, 252, 0.95) 0%, rgba(255, 248, 245, 0.92) 50%, rgba(255, 253, 248, 0.95) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 
        0 25px 60px rgba(194, 24, 91, 0.1),
        0 8px 25px rgba(255, 152, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    box-shadow: 
        0 30px 70px rgba(194, 24, 91, 0.12),
        0 10px 30px rgba(255, 152, 0, 0.06);
    border-color: rgba(194, 24, 91, 0.15);
}

.glass-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-wedding);
}

.glass-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 193, 7, 0.03), transparent 60%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    color: var(--royal-maroon);
    font-size: 1.5rem;
    margin: 0 0 0.35rem;
}

.form-subtext {
    font-size: 0.9rem;
    color: var(--royal-gold);
    font-weight: 600;
    margin: 0;
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

input, textarea, select {
    border-radius: var(--radius-md);
    border: 2px solid rgba(194, 24, 91, 0.1);
    padding: 0.85rem 1.15rem;
    background: #ffffff;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

input::placeholder, textarea::placeholder {
    color: var(--text-soft);
    opacity: 0.6;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--wedding-magenta);
    box-shadow: 
        0 0 0 4px rgba(194, 24, 91, 0.1), 
        0 8px 25px rgba(194, 24, 91, 0.12),
        0 0 20px rgba(255, 193, 7, 0.08);
    background: #ffffff;
}

input:hover:not(:focus), textarea:hover:not(:focus), select:hover:not(:focus) {
    border-color: rgba(194, 24, 91, 0.2);
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.06);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c2185b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select option {
    padding: 0.5rem;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.form-status {
    min-height: 1.25rem;
    color: var(--royal-maroon);
    margin: 0;
}

.site-footer {
    padding: 3rem clamp(1.5rem, 6vw, 5rem) 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: none;
    background: #ffffff;
    box-shadow: 0 -10px 40px rgba(194, 24, 91, 0.04);
    position: relative;
    text-align: center;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.developer-credit {
    font-size: 0.7rem;
    color: var(--muted-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(194, 24, 91, 0.08);
    width: 100%;
}

.developer-credit a {
    color: var(--wedding-magenta);
    font-weight: 500;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: var(--royal-gold);
    text-decoration: underline;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 500px;
    height: 3px;
    background: var(--gradient-wedding);
    border-radius: 0 0 3px 3px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.gallery-link .cta {
    min-width: 240px;
}

.album-page .site-header {
    position: relative;
    z-index: 1000;
}

.album-hero {
    margin: 3rem auto;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 2.75rem;
    border: 2px solid rgba(194, 24, 91, 0.1);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(194, 24, 91, 0.08);
    text-align: center;
}

.album-hero p {
    max-width: 640px;
    margin: 0.5rem auto 1.5rem;
    color: var(--muted-light);
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.album-tile {
    border: none;
    padding: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 20px 40px rgba(194, 24, 91, 0.15);
    background: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.album-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(194, 24, 91, 0.22);
}

.album-tile img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-tile span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    font-weight: 600;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(136, 14, 79, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 50;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox figure {
    max-width: min(90vw, 960px);
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 3px solid var(--wedding-gold);
    box-shadow: 0 35px 60px rgba(194, 24, 91, 0.35);
}

.lightbox img {
    width: 100%;
    border-radius: 1rem;
}

.lightbox figcaption {
    margin-top: 1rem;
    color: var(--muted);
}

.lightbox button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: 2px solid var(--royal-gold);
    background: linear-gradient(135deg, var(--royal-maroon), var(--royal-deep));
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.35rem;
    font-family: inherit;
    color: #fff;
    box-shadow: 0 10px 25px rgba(194, 24, 91, 0.3);
    transition: transform 0.3s ease;
}

.lightbox button:hover {
    transform: scale(1.1);
}

.floating-cta {
    position: fixed;
    right: clamp(1rem, 4vw, 2.5rem);
    bottom: clamp(1rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    z-index: 30;
}

.floating-toggle {
    border: 2px solid var(--royal-gold);
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, var(--royal-maroon) 0%, var(--royal-deep) 100%);
    box-shadow: 0 15px 35px rgba(194, 24, 91, 0.35);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    animation: pulseOutline 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-toggle:hover {
    transform: scale(1.05);
}

.floating-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.floating-links[data-open="true"] {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cta-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.9rem 1.35rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(194, 24, 91, 0.3);
    background: linear-gradient(145deg, #ffffff, #ffffff);
    box-shadow: 0 12px 30px rgba(194, 24, 91, 0.15);
    color: var(--text);
    min-width: 200px;
    animation: fadeRise 0.6s ease;
    transition: all 0.3s ease;
}

.cta-pill:hover {
    border-color: var(--royal-gold);
    transform: translateX(-4px);
}

.cta-pill span {
    font-weight: 600;
    color: var(--royal-maroon);
}

.cta-pill small {
    color: var(--muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes bloom {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes shimmer {
    0% { transform: translateX(-10%); opacity: 0.3; }
    50% { opacity: 1; }
    100% { transform: translateX(110%); opacity: 0.3; }
}

@keyframes orbit {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(12deg) scale(1.05); }
}

@keyframes sweep {
    0% { transform: translateX(-100%); }
    60% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

@keyframes cardDrift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseOutline {
    0%, 100% { box-shadow: 0 15px 35px rgba(194, 24, 91, 0.35); }
    50% { box-shadow: 0 20px 45px rgba(194, 24, 91, 0.4); }
}

@keyframes fadeRise {
    0% { opacity: 0; transform: translateY(32px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    0% { transform: translateY(-40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .banner-overlay {
        position: static;
        width: 100%;
        border-radius: 0;
    }
    
    /* About Layout - Stack on tablet */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-content .section-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    /* Events Grid - 3 columns on tablet */
    .events .grid-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .events .feature-card {
        max-width: none;
    }
}

@media (max-width: 900px) {
    /* Hero Banner Responsive */
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-banner-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-banner-tagline {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    /* About Stats - 2 columns on mobile */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Events Grid - 2 columns on mobile */
    .events .grid-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    /* Mobile Header Layout */
    .site-header {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        position: relative;
        justify-content: space-between;
    }

    .site-header::after {
        width: 80px;
        height: 2px;
    }

    /* Mobile Brand Mark - Compact */
    .brand-mark {
        padding: 0.35rem 0.6rem 0.35rem 0.35rem;
        gap: 0.5rem;
        flex: 1 1 auto;
        min-width: 0;
        order: 1;
        max-width: calc(100% - 70px);
    }

    .brand-mark .tagline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-logo {
        height: 40px;
        max-height: 40px;
    }

    .brand-mark .eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .brand-mark .tagline {
        font-size: 0.6rem;
    }

    /* Mobile Primary Nav */
    .primary-nav {
        order: 2;
        width: auto;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .nav-toggle {
        min-width: 48px;
        min-height: 48px;
    }

    .primary-nav ul {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: #ffffff;
        backdrop-filter: blur(25px);
        padding: 1rem;
        border-radius: 1.25rem;
        border: 2px solid rgba(194, 24, 91, 0.2);
        box-shadow: 
            0 15px 50px rgba(194, 24, 91, 0.25),
            0 5px 15px rgba(0, 0, 0, 0.12);
        display: none;
        min-width: 240px;
        z-index: 100;
        overflow: visible;
    }

    .primary-nav ul::before {
        display: none;
    }

    .primary-nav ul::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--royal-maroon), var(--royal-gold), var(--royal-maroon));
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .primary-nav li {
        position: relative;
        z-index: 1;
    }

    .primary-nav ul[data-open="true"] {
        display: flex;
        animation: mobileNavSlide 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .primary-nav a {
        padding: 1rem 1.5rem;
        text-align: center;
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a1a !important;
        border-radius: 0.75rem;
        margin: 0.25rem 0;
        background: #f8f8f8;
        -webkit-text-fill-color: #1a1a1a;
        text-shadow: none;
        display: block;
        border: 1px solid rgba(194, 24, 91, 0.1);
    }

    .primary-nav a:hover {
        background: #ffeef3;
        color: #880e4f !important;
        -webkit-text-fill-color: #880e4f;
        transform: translateX(4px);
        border-left: 3px solid #c2185b;
    }

    .primary-nav a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hide Language Toggle on Mobile - will show in dropdown */
    .language-toggle {
        display: none;
    }

    /* Mobile Language Toggle inside dropdown */
    .mobile-lang-toggle {
        display: block;
        padding: 0.75rem 0.5rem 0.25rem;
        border-top: 1px solid rgba(194, 24, 91, 0.15);
        margin-top: 0.5rem;
    }

    .mobile-language-toggle {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        padding: 0.25rem;
        background: #f5f5f5;
        border-radius: 999px;
    }

    .mobile-language-toggle .lang-btn {
        border-radius: 999px;
        border: none;
        background: transparent;
        color: #333333;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .mobile-language-toggle .lang-btn:hover {
        color: #880e4f;
        background: rgba(194, 24, 91, 0.1);
    }

    .mobile-language-toggle .lang-btn.is-active {
        background: linear-gradient(135deg, #c2185b, #880e4f);
        color: #fff;
        box-shadow: 0 3px 10px rgba(194, 24, 91, 0.3);
    }

    /* Hide header CTA on smaller screens */
    .site-header > .cta {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-visual figcaption {
        text-align: center;
    }

    .floating-cta {
        right: 1rem;
        bottom: 1rem;
    }

    .banner-indicators {
        position: static;
        justify-content: center;
        margin: 1rem auto 0;
    }

    .map-wrapper iframe {
        height: 320px;
    }

    /* Responsive image sizing for tablets */
    .banner-slide img {
        height: clamp(180px, 30vw, 280px);
    }

    .image-modal-trigger img {
        max-height: 280px;
    }

    .experience-grid article img {
        height: 160px;
    }

    .gallery-grid img {
        height: 180px;
    }

    .media-frame img {
        max-height: 320px;
    }
}

@keyframes mobileNavSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 600px) {
    /* Extra small header adjustments */
    .site-header {
        padding: 0.6rem 0.75rem;
        gap: 0.5rem;
    }

    .site-header::before {
        height: 3px;
    }

    .site-header::after {
        width: 60px;
    }

    .brand-mark {
        padding: 0.25rem 0.5rem 0.25rem 0.25rem;
        gap: 0.4rem;
        border-radius: 0.75rem;
        max-width: calc(100% - 60px);
    }

    .brand-logo {
        height: 35px;
        max-height: 35px;
    }

    .brand-mark .eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .brand-mark .tagline {
        display: none;
    }

    .nav-toggle {
        padding: 0.5rem 0.7rem;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-toggle span {
        width: 18px;
    }

    .lang-btn {
        font-size: 0.65rem;
        padding: 0.3rem 0.55rem;
    }

    /* Keep language toggle hidden on small screens */
    .language-toggle {
        display: none;
    }

    .primary-nav ul {
        min-width: 180px;
        padding: 0.75rem;
        left: 50%;
        right: auto;
    }

    .primary-nav a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        font-weight: 700;
        color: #1a1a1a !important;
        -webkit-text-fill-color: #1a1a1a;
        background: #f8f8f8;
    }

    .hero {
        padding: 2rem;
    }

    main {
        padding-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .experience-grid,
    .grid-features,
    .album-grid,
    .gallery-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .addons-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .addons-section h3 {
        font-size: 1.1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-price .amount {
        font-size: 2rem;
    }

    .map-wrapper iframe {
        height: 260px;
    }

    .floating-toggle span {
        font-size: 0.9rem;
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        min-height: 50vh;
        padding: 1rem;
    }
    
    .hero-banner-content {
        padding: 1.5rem;
    }
    
    .hero-banner-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-banner-tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-banner-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-banner-cta .cta,
    .hero-banner-cta .ghost {
        width: 100%;
        max-width: 280px;
    }
    
    /* Events Grid - Single column on small mobile */
    .events .grid-features {
        grid-template-columns: 1fr;
    }
    
    .events .feature-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* About Stats - 2 columns on small mobile */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .about-stats .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .about-stats .stat-number {
        font-size: 2rem;
    }
    
    .about-stats .stat-icon {
        font-size: 1.75rem;
    }

    /* Mobile image sizing */
    .banner-slide img {
        height: clamp(160px, 45vw, 220px);
    }

    .image-modal-trigger img {
        max-height: 220px;
    }

    .experience-grid article img {
        height: 140px;
    }

    .gallery-grid img {
        height: 160px;
    }

    .media-frame img {
        max-height: 250px;
    }
}

/* Extra small phones (400px and below) */
@media (max-width: 400px) {
    .site-header {
        padding: 0.5rem;
    }

    .brand-mark {
        flex-direction: row;
        align-items: center;
        padding: 0.25rem 0.5rem 0.25rem 0.25rem;
        gap: 0.35rem;
    }

    .brand-mark > div {
        display: block;
    }

    .brand-mark .eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .brand-mark .tagline {
        font-size: 0.5rem;
    }

    .brand-logo {
        height: 32px;
        max-height: 32px;
    }

    .language-toggle {
        display: none;
    }

    .lang-btn {
        font-size: 0.6rem;
        padding: 0.25rem 0.45rem;
    }

    .primary-nav ul {
        min-width: 160px;
        left: 1rem;
        right: 1rem;
        transform: none;
        background: #ffffff;
    }

    .primary-nav ul[data-open="true"] {
        animation: mobileNavSlideSmall 0.3s ease forwards;
    }

    .primary-nav a {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
        font-weight: 700;
        color: #1a1a1a !important;
        -webkit-text-fill-color: #1a1a1a;
        background: #f5f5f5;
    }

    /* Extra small image sizing */
    .banner-slide img {
        height: clamp(140px, 40vw, 180px);
    }

    .image-modal-trigger img {
        max-height: 180px;
    }

    .experience-grid article img {
        height: 120px;
    }

    .gallery-grid img {
        height: 140px;
    }
}

@keyframes mobileNavSlideSmall {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
