:root {
    --color-black: #0d0d0d;
    --color-charcoal: #1a1a1a;
    --color-brown: #3d2b1f;
    --color-brown-light: #5c4033;
    --color-beige: #d4c4b0;
    --color-cream: #f5f0e8;
    --color-white: #faf8f5;
    --color-accent: #e63946;
    --color-accent-soft: rgba(230, 57, 70, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), 
                width 0.2s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-brown);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                width 0.3s ease,
                height 0.3s ease,
                border-color 0.3s ease;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(3);
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    border-color: var(--color-accent);
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

/* Tour Banner in Hero */
.tour-banner {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
    padding: 1rem 2rem;
    background: rgba(13, 13, 13, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 196, 176, 0.15);
}

.tour-today {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tour-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-beige);
    opacity: 0.7;
}

.tour-city {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 500;
}

.tour-date {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-cream);
    padding-left: 2rem;
    border-left: 1px solid rgba(212, 196, 176, 0.3);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-cream);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-menu-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-links a:hover {
    color: var(--color-accent);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--color-beige);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    border-color: var(--color-accent);
}

.mobile-menu-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-cream);
    transition: background 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover span {
    background: var(--color-accent);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-brown) 50%, var(--color-black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(230, 57, 70, 0.35) 0%, transparent 35%),
        radial-gradient(circle at 25% 60%, rgba(255, 200, 150, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 35% 75%, rgba(212, 196, 176, 0.3) 0%, transparent 30%);
    animation: pulse 8s ease-in-out infinite;
}

/* Sand/Dust Particles on Sunbeam */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 60%, rgba(212, 196, 176, 0.8) 0.5px, transparent 0.5px),
        radial-gradient(circle at 25% 65%, rgba(230, 57, 70, 0.6) 0.8px, transparent 0.8px),
        radial-gradient(circle at 30% 55%, rgba(255, 200, 150, 0.7) 0.6px, transparent 0.6px),
        radial-gradient(circle at 15% 70%, rgba(212, 196, 176, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 35% 60%, rgba(245, 240, 232, 0.6) 0.4px, transparent 0.4px),
        radial-gradient(circle at 22% 75%, rgba(230, 57, 70, 0.4) 0.7px, transparent 0.7px),
        radial-gradient(circle at 28% 50%, rgba(212, 196, 176, 0.6) 0.5px, transparent 0.5px),
        radial-gradient(circle at 18% 58%, rgba(255, 200, 150, 0.5) 0.9px, transparent 0.9px),
        radial-gradient(circle at 32% 68%, rgba(245, 240, 232, 0.7) 0.6px, transparent 0.6px),
        radial-gradient(circle at 12% 62%, rgba(212, 196, 176, 0.4) 0.8px, transparent 0.8px),
        radial-gradient(circle at 38% 72%, rgba(230, 57, 70, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 24% 48%, rgba(255, 200, 150, 0.6) 0.7px, transparent 0.7px),
        radial-gradient(circle at 16% 78%, rgba(212, 196, 176, 0.5) 0.4px, transparent 0.4px),
        radial-gradient(circle at 33% 53%, rgba(245, 240, 232, 0.5) 0.6px, transparent 0.6px),
        radial-gradient(circle at 27% 82%, rgba(212, 196, 176, 0.4) 0.8px, transparent 0.8px),
        radial-gradient(circle at 19% 52%, rgba(255, 200, 150, 0.6) 0.5px, transparent 0.5px),
        radial-gradient(circle at 36% 64%, rgba(212, 196, 176, 0.7) 0.7px, transparent 0.7px),
        radial-gradient(circle at 14% 68%, rgba(245, 240, 232, 0.5) 0.6px, transparent 0.6px),
        radial-gradient(circle at 29% 58%, rgba(230, 57, 70, 0.4) 0.4px, transparent 0.4px),
        radial-gradient(circle at 21% 72%, rgba(212, 196, 176, 0.6) 0.8px, transparent 0.8px),
        radial-gradient(circle at 34% 52%, rgba(255, 200, 150, 0.5) 0.5px, transparent 0.5px),
        radial-gradient(circle at 17% 64%, rgba(245, 240, 232, 0.6) 0.7px, transparent 0.7px),
        radial-gradient(circle at 26% 76%, rgba(212, 196, 176, 0.5) 0.6px, transparent 0.6px),
        radial-gradient(circle at 31% 48%, rgba(230, 57, 70, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 13% 56%, rgba(255, 200, 150, 0.7) 0.8px, transparent 0.8px);
    background-size: 
        150px 150px, 180px 180px, 120px 120px, 200px 200px, 100px 100px,
        160px 160px, 140px 140px, 190px 190px, 110px 110px, 170px 170px,
        130px 130px, 185px 185px, 145px 145px, 125px 125px, 155px 155px,
        135px 135px, 175px 175px, 115px 115px, 165px 165px, 195px 195px,
        105px 105px, 148px 148px, 188px 188px, 122px 122px, 158px 158px;
    animation: floatParticles 12s ease-in-out infinite, pulseParticles 8s ease-in-out infinite;
    opacity: 0;
    mask-image: radial-gradient(ellipse 50% 60% at 25% 65%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 50% 60% at 25% 65%, black 0%, transparent 70%);
    pointer-events: none;
}

/* Stars that emerge from sand particles */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    opacity: 0;
    animation: sandToStar 6s ease-in-out infinite;
}

.star::before {
    content: '★';
    font-size: 12px;
    color: rgba(245, 240, 232, 0.95);
    text-shadow: 0 0 6px rgba(245, 240, 232, 0.8), 0 0 12px rgba(230, 57, 70, 0.5), 0 0 20px rgba(255, 200, 150, 0.4);
}

.star-1 { left: 15%; top: 35%; animation-delay: 0s; }
.star-2 { left: 28%; top: 25%; animation-delay: 1.2s; }
.star-3 { left: 8%; top: 55%; animation-delay: 2.4s; }
.star-4 { left: 35%; top: 42%; animation-delay: 3.6s; }
.star-5 { left: 22%; top: 18%; animation-delay: 4.8s; }

.star-1::before { color: rgba(255, 200, 150, 0.95); font-size: 10px; }
.star-2::before { color: rgba(245, 240, 232, 0.98); font-size: 16px; }
.star-3::before { color: rgba(230, 57, 70, 0.8); font-size: 11px; }
.star-4::before { color: rgba(212, 196, 176, 0.95); font-size: 9px; }
.star-5::before { color: rgba(255, 200, 150, 0.9); font-size: 13px; }

@keyframes sandToStar {
    0% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
        filter: blur(2px);
    }
    15% {
        opacity: 0.3;
        transform: scale(0.5) rotate(15deg);
        filter: blur(1px);
    }
    30% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
        filter: blur(0);
    }
    70% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
        filter: blur(0);
    }
    85% {
        opacity: 0.3;
        transform: scale(0.5) rotate(-15deg);
        filter: blur(1px);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) rotate(0deg);
        filter: blur(2px);
    }
}

@keyframes floatParticles {
    0%, 100% { 
        transform: translateY(0) translateX(0); 
    }
    25% { 
        transform: translateY(-8px) translateX(5px); 
    }
    50% { 
        transform: translateY(-3px) translateX(-3px); 
    }
    75% { 
        transform: translateY(-10px) translateX(8px); 
    }
}

@keyframes pulseParticles {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.50); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.1em;
    line-height: 0.9;
    position: relative;
    overflow: hidden;
}

.hero-name span {
    display: inline-block;
    animation: revealLetter 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.hero-name span:nth-child(1) { animation-delay: 0.1s; }
.hero-name span:nth-child(2) { animation-delay: 0.15s; }
.hero-name span:nth-child(3) { animation-delay: 0.2s; }
.hero-name span:nth-child(4) { animation-delay: 0.25s; }
.hero-name span:nth-child(5) { animation-delay: 0.3s; }

@keyframes revealLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--color-beige);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-beige);
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-beige), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* About Section */
.about {
    min-height: 100vh;
    padding: 10rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    background: var(--color-cream);
    position: relative;
}

.about::before {
    content: 'ABOUT';
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 400;
    color: var(--color-beige);
    opacity: 0.3;
    letter-spacing: 0.2em;
    pointer-events: none;
}

.about-image-container {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.about-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-black);
    z-index: 1;
}

/* Hover on about image */
.about-image:hover .aura-overlay {
    opacity: 0;
}

/* Photo layer (revealed on hover) */
.photo-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-image-container:hover .drawing-layer {
    opacity: 0;
}

.about-image-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    border: 1px solid var(--color-beige);
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-image-container:hover .about-image-frame {
    top: 1rem;
    left: 1rem;
    right: -2rem;
    bottom: -2rem;
    border-color: var(--color-accent);
}

.about-content {
    padding-left: 4rem;
}


.section-number {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-title em {
    font-style: italic;
    color: var(--color-brown);
}

.about-text {
    font-size: 1rem;
    color: var(--color-brown-light);
    line-height: 2;
    margin-bottom: 2rem;
    max-width: 500px;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-beige);
}

#pr41 {
    display: flex;
    justify-content: center;  /* centers items horizontally */
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 5rem;
}

.stat {
    text-align: left;
}


.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-charcoal);
    line-height: 1;
}

.stat-label a {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-brown-light);
    margin-top: 0.5rem;
}


/*  <div class="gallery-sketch" style="background-image: url('images/sketch-01.png');"></div> Section */
.gallery {
    min-height: 100vh;
    padding: 6rem 2rem;
    background: var(--color-charcoal);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 6rem;
}

.gallery-header .section-number {
    color: var(--color-accent);
}

.gallery-header .section-title {
    color: var(--color-cream);
}

.gallery-header .section-title em {
    color: var(--color-beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 85vh;
    min-height: 700px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-brown);
}

/* Creative asymmetric layout matching the scheme */
.gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 8 / 13;
    grid-row: 2 / 4;
}

.gallery-item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
}

.gallery-item:nth-child(7) {
    grid-column: 5 / 8;
    grid-row: 3 / 4;
}
.gallery-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 0.5px solid var(--color-brown-light);
}

.gallery-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-brown-light);
    margin-bottom: 1.5rem;
}

.gallery-cta .gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-brown-light);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--color-brown-light);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-cta .gallery-link:hover {
    background: var(--color-brown);
    color: var(--color-cream);
}

.gallery-cta .gallery-link svg {
    transition: transform 0.3s ease;
}

.gallery-cta .gallery-link:hover svg {
    transform: translate(3px, -3px);
}

/* ============================================
AURA GRADIENT OVERLAY
============================================ */
/* Aura overlay - warm monochrome */
/* Aura overlay */
.aura-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
opacity: 2;
transition: opacity 0.3s ease;
overflow: hidden;
background: rgba(214, 182, 159, 0.1);
}

/* Base blob + animation */
.aura-blob {
position: absolute;
border-radius: 50%;
filter: blur(30px);
opacity: 0.8;
animation: float 5s ease-in-out infinite;
}

/* Blob 1 - Beige */
.blob-1 {
width: 100%;
height: 200%;
top: -50%;
left: -50%;
background: radial-gradient(circle, rgba(109, 64, 39, 0.9) 0%, transparent 60%);
animation-delay: 0s;
}

/* Blob 2 - Cream */
.blob-2 {
width: 150%;
height: 150%;
top: 20%;
right: -40%;
background: radial-gradient(circle, rgba(168, 112, 93, 0.8) 0%, transparent 55%);
animation-delay: -2s;
animation-duration: 10s;
}

/* Blob 3 - Brown */
.blob-3 {
width: 120%;
height: 120%;
bottom: -30%;
left: -20%;
background: radial-gradient(circle, rgba(229, 207, 197, 0.9) 0%, transparent 50%);
animation-delay: -4s;
animation-duration: 12s;
}

/* Blob 4 - Warm Tan */
.blob-4 {
width: 150%;
height: 100%;
top: 10%;
left: 30%;
background: radial-gradient(circle, rgba(117, 61, 5, 1) 0%, transparent 50%);
animation-delay: -1s;
animation-duration: 9s;
}

/* Float animation */
@keyframes float {
0%, 100% {
transform: translate(0, 0) scale(1);
}
25% {
transform: translate(10%, -10%) scale(1.05);
}
50% {
transform: translate(-5%, 10%) scale(0.95);
}
75% {
transform: translate(-10%, -5%) scale(1.02);
}
}

/* Hover - reveal photo */
.gallery-item:hover .aura-overlay {
opacity: 0;
}

/* ===== ABOUT SECTION OVERRIDE (add this) ===== */
.about-image .aura-overlay {
background: rgba(245, 240, 232, 0.1);
}
.about-image .blob-1 {
background: radial-gradient(circle, rgba(212, 196, 176, 0.9) 0%, transparent 60%);
}
.about-image .blob-2 {
background: radial-gradient(circle, rgba(211, 147, 147, 0.7) 0%, transparent 55%);
}
.about-image .blob-3 {
background: radial-gradient(circle, rgba(92, 64, 51, 0.5) 0%, transparent 50%);
}
.about-image .blob-4 {
background: radial-gradient(circle, rgba(200, 190, 220, 0.9) 0%, transparent 50%);
}

/* ===== ABOUT HOVER ===== */
.about-image:hover .aura-overlay { opacity: 0; }


.gallery-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.gallery-item:hover .gallery-drawing {
    opacity: 0;
}

.gallery-item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-title h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-cream);
    font-weight: 400;
}

.gallery-item-title span {
    font-size: 0.7rem;
    color: var(--color-beige);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Schedule/Tour Section */
.schedule {
    min-height: 80vh;
    padding: 8rem 8%;
    background: var(--color-cream);
    position: relative;
}

.schedule::before {
    content: 'TOUR';
    position: absolute;
    top: 50%;
    left: -3%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 400;
    color: var(--color-beige);
    opacity: 0.3;
    letter-spacing: 0.2em;
    pointer-events: none;
}

.schedule-header {
    text-align: center;
    margin-bottom: 4rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-card {
    background: var(--color-white);
    border: 1px solid var(--color-beige);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 43, 31, 0.1);
    border-color: var(--color-brown-light);
}

.schedule-card.current {
    background: var(--color-charcoal);
    border-color: var(--color-accent);
}

.schedule-card.current .schedule-month,
.schedule-card.current .schedule-day,
.schedule-card.current .schedule-city,
.schedule-card.current .schedule-detail {
    color: var(--color-cream);
}

.schedule-card.current .schedule-city {
    color: var(--color-accent);
}

.schedule-status {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    padding-right: 1.5rem;
    border-right: 1px solid var(--color-beige);
}

.schedule-card.current .schedule-date {
    border-color: var(--color-brown-light);
}

.schedule-month {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-brown-light);
}

.schedule-day {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-charcoal);
    line-height: 1;
    margin-top: 0.25rem;
}

.schedule-info {
    flex: 1;
}

.schedule-city {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.schedule-detail {
    font-size: 0.75rem;
    color: var(--color-brown-light);
    letter-spacing: 0.1em;
}

/* Rates Section */
.rates {
    min-height: 100vh;
    padding: 10rem 8%;
    background: var(--color-cream);
    position: relative;
}

.rates::before {
    content: 'RATES';
    position: absolute;
    top: 50%;
    right: -3%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 400;
    color: var(--color-beige);
    opacity: 0.3;
    letter-spacing: 0.2em;
    pointer-events: none;
}

.rates-header {
    text-align: center;
    margin-bottom: 6rem;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rate-card {
    background: var(--color-white);
    padding: 3rem;
    position: relative;
    border: 1px solid var(--color-beige);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rate-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.15);
}

.rate-card.featured {
    background: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

.rate-card.featured * {
    color: var(--color-cream);
}

.rate-card.featured .rate-price {
    color: var(--color-accent);
}

.rate-type {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-brown-light);
    margin-bottom: 1rem;
}

.rate-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.rate-price {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-brown);
    margin-bottom: 2rem;
}

.rate-price span {
    font-size: 1rem;
    color: var(--color-brown-light);
}

.rate-features {
    list-style: none;
    margin-bottom: 2rem;
}

.rate-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-beige);
    font-size: 0.9rem;
    color: var(--color-brown-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rate-card.featured .rate-features li {
    border-color: var(--color-brown);
}

.rate-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 500;
}

.rate-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.rate-cta:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.rate-cta-btn{
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--color-charcoal);
    color: var(--color-brown-light);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.rate-cta-btn:hover {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.rate-card.featured .rate-cta {
    border-color: var(--color-accent);
    color: var(--color-cream);
}

.rate-card.featured .rate-cta:hover {
    background: var(--color-accent);
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 10rem 8%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-brown) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, var(--color-accent-soft) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.contact-info .section-number {
    color: var(--color-accent);
}

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

.contact-info .section-title em {
    color: var(--color-beige);
}

.contact-text {
    color: var(--color-beige);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 3rem;
    max-width: 400px;
}

.contact-email {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-section {
    margin-top: 3rem;
}

.social-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-brown-light);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-brown-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-beige);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-5px);
}

.contact-form-container {
    background: rgba(250, 248, 245, 0.03);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(212, 196, 176, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-beige);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-brown-light);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23d4c4b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

.form-group select option {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: 0.5rem;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 120px;
    resize: none;
}

.submit-btn {
    padding: 1.25rem 3rem;
    background: var(--color-accent);
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--color-cream);
    color: var(--color-charcoal);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.form-status.error {
    display: block;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--color-accent);
}

/* Deposit Section Styles */
.deposit-section {
    background: rgba(13, 13, 13, 0.3);
    padding: 2rem;
    border: 1px solid rgba(212, 196, 176, 0.15);
    margin: 1rem 0;
}

.deposit-header {
    margin-bottom: 1.5rem;
}

.deposit-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.deposit-note {
    font-size: 0.7rem;
    color: var(--color-beige);
    letter-spacing: 0.1em;
}

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

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: rgba(250, 248, 245, 0.03);
    border: 1px solid rgba(212, 196, 176, 0.2);
    color: var(--color-beige);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.payment-box svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-option:hover .payment-box {
    border-color: var(--color-beige);
    background: rgba(250, 248, 245, 0.05);
}

.payment-option:hover .payment-box svg {
    opacity: 1;
}

.payment-option input:checked + .payment-box {
    border-color: var(--color-accent);
    background: var(--color-accent-soft);
    color: var(--color-cream);
}

.payment-option input:checked + .payment-box svg {
    opacity: 1;
    color: var(--color-accent);
}

.payment-details {
    display: none;
    animation: slideDown 0.4s ease;
}

.payment-details.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-info {
    display: none;
}

.payment-info.active {
    display: block;
}

.wallet-card {
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(212, 196, 176, 0.1);
    padding: 1.5rem;
    text-align: center;
}

.wallet-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-brown-light);
    margin-bottom: 0.75rem;
}

.wallet-address {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.wallet-address.btc-addr {
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.wallet-note {
    display: block;
    font-size: 0.7rem;
    color: var(--color-beige);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.copy-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-beige);
    color: var(--color-beige);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--color-beige);
    color: var(--color-charcoal);
}

.extra-option-group {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--color-brown-light);
    letter-spacing: 0.1em;
    cursor: pointer;
}




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

/* Subscription Form */
.subscription-form {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 320px;
padding: 1.5rem;
margin-top: 1rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
backdrop-filter: blur(10px);
}

.subscription-form label {
display: flex;
flex-direction: column;
gap: 0.4rem;
color: rgba(255, 255, 255, 0.7);
font-size: 0.8rem;
letter-spacing: 0.05em;
}

.subscription-form input,
.subscription-form textarea {
padding: 0.75rem 1rem;
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: #fff;
font-size: 0.9rem;
font-family: inherit;
outline: none;
transition: border-color 0.3s ease;
}

.subscription-form input::placeholder,
.subscription-form textarea::placeholder {
color: rgba(255, 255, 255, 0.3);
}

.subscription-form input:focus,
.subscription-form textarea:focus {
border-color: rgba(168, 85, 247, 0.5);
}

.subscription-form textarea {
resize: vertical;
min-height: 80px;
}

.subscription-form button {
padding: 0.875rem 1.5rem;
margin-top: 0.5rem;
background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(236, 72, 153, 0.4));
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 8px;
color: #fff;
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}

.subscription-form button:hover {
background: linear-gradient(135deg, rgba(168, 85, 247, 0.6), rgba(236, 72, 153, 0.6));
transform: translateY(-2px);
}

/* Footer */
footer {
    text-decoration: none;
    padding: 4rem 8% 2rem;
    background: var(--color-black);
    border-top: 1px solid var(--color-brown);
}

.footer-top {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(61, 43, 31, 0.3);
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-beige);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.footer-domain {
color: var(--color-accent);
opacity: 0.7;
font-size: 0.875rem;
text-decoration: none;
transition: color 0.3s ease;
user-select: all;
cursor: text;
}

.footer-domain span {
    color: var(--color-accent);
    text-decoration: none;
    margin-right: 50px;
}

.footer-domain:hover {
    color: var(--color-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 0.7rem;
    color: var(--color-brown-light);
    letter-spacing: 0.1em;
}
.footer-links {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    }

    .footer-links a {
        text-decoration: none;
        color: var(--color-beige)!important;
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        transition: color 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--color-cream)!important;
    }

    .footer-links span {
        color: var(--color-brown)!important;
        opacity: 0.5;
    }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}


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

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .tour-banner {
        top: 5rem;
        padding: 0.75rem 1.5rem;
        gap: 1.5rem;
    }

    .tour-city {
        font-size: 1.1rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 6rem 5%;
    }

    .about-content {
        padding-left: 0;
    }

    .gallery {
        padding: 6rem 4%;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 200px);
        height: auto;
        min-height: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }

    .gallery-item:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(3) {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item:nth-child(5) {
        grid-column: 3 / 7;
        grid-row: 3 / 5;
    }

    .gallery-item:nth-child(6) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }

    .gallery-item:nth-child(7) {
    grid-column: 1 / 7;  /* Full width */
    grid-row: 5 / 6;
    display: block;
    }

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

    .schedule::before {
        display: none;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-links {
        display: flex;
        text-decoration: none;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0;
        }

}

@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .tour-banner {
        top: 4.5rem;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
    }

    .tour-date {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(212, 196, 176, 0.3);
        padding-top: 0.5rem;
    }

    .hero-name {
        font-size: 3.5rem;
    }

    .about::before,
    .rates::before {
        display: none;
    }

    .gallery {
        padding: 4rem 1rem;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: auto;
        min-height: auto;
    }

    .gallery-item {
        width: 100%;
        aspect-ratio: 3/4;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7) {
        grid-column: auto;
        grid-row: auto;
    }

    .schedule {
        padding: 4rem 5%;
    }

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

    .schedule-card {
        padding: 1.5rem;
    }

    .rates {
        padding: 4rem 5%;
    }

    .rates-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .rate-card {
        padding: 2rem;
    }

    footer {
        padding: 3rem 5% 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-brand .rate-cta {
        margin: 1rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .rate-cta-btn{
        display: inline-block;
        padding: 1rem 2rem;
        background: transparent;
        border: 1px solid var(--color-charcoal);
        color: var(--color-brown-light);
        font-family: var(--font-body);
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }
    
    .rate-cta-btn:hover {
        background: var(--color-charcoal);
        color: var(--color-cream);
    }
    .footer-links {
        display: flex;
        text-decoration: none;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0;
        width: 100%;
    }
      
}
