:root {
    /* ─── Modern Earthy Luxe Palette ─── */
    --sage-green: #A8B8A1;
    --warm-beige: #E8E2D8;
    --soft-clay: #C97C5D;
    --charcoal: #2B2B2B;
    --off-white: #F7F5F2;

    /* Semantic Color Mapping */
    --bg-primary: var(--off-white);
    --bg-secondary: var(--warm-beige);
    --bg-dark: var(--charcoal);
    --bg-glass: rgba(247, 245, 242, 0.85);
    --text-primary: var(--charcoal);
    --text-secondary: #6B6560;
    --text-inverse: var(--off-white);
    --accent-primary: var(--soft-clay);
    --accent-secondary: var(--sage-green);
    --accent-glow: rgba(201, 124, 93, 0.35);
    --accent-sage-glow: rgba(168, 184, 161, 0.25);
    --map-filter: grayscale(1) sepia(0.15);

    /* Typography */
    --font-heading: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(43, 43, 43, 0.06);
    --shadow-medium: 0 10px 40px rgba(43, 43, 43, 0.08);
    --shadow-elevated: 0 20px 60px rgba(43, 43, 43, 0.12);
    --shadow-clay-glow: 0 10px 40px rgba(201, 124, 93, 0.15);
    --shadow-sage-glow: 0 10px 40px rgba(168, 184, 161, 0.2);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 300;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    max-width: 60ch;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ─── Utilities ─── */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-gold {
    color: var(--accent-primary);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1.5px solid var(--accent-primary);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.btn:hover {
    background: var(--accent-primary);
    color: var(--off-white);
    box-shadow: var(--shadow-clay-glow);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--off-white);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background: #B56A4D;
    border-color: #B56A4D;
    color: var(--off-white);
    box-shadow: var(--shadow-clay-glow);
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
    color: var(--off-white);
}

.navbar .logo img {
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(247, 245, 242, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 1px 30px rgba(43, 43, 43, 0.06);
    border-bottom: 2px solid var(--sage-green);
    color: var(--text-primary);
}

.navbar.scrolled .logo img {
    filter: invert(1) brightness(0);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--off-white);
    transition: color 0.4s ease;
}

.navbar.scrolled .logo {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    color: var(--off-white);
    font-weight: 500;
    position: relative;
    transition: color 0.4s ease, opacity 0.4s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
    opacity: 0.7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    color: var(--off-white);
    transition: color 0.4s ease;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-primary);
}

/* ─── New Hero Styles ─── */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 10;
    /* Darker overlay for text readability */
    background: linear-gradient(to bottom,
            rgba(43, 43, 43, 0.35) 0%,
            rgba(43, 43, 43, 0.30) 40%,
            rgba(43, 43, 43, 0.40) 70%,
            rgba(43, 43, 43, 0.65) 100%);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomEffect 20s infinite alternate;
}

.hero-content-new {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 64rem;
    padding: 0 1.5rem;
}

.font-serif {
    font-family: var(--font-accent);
}

.hero-title {
    color: #FFFFFF;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 1);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.025em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-hero {
    min-width: 220px;
    height: 3.5rem;
    padding: 0 2rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
}

.btn-solid {
    background: var(--off-white);
    color: var(--charcoal);
    border: 1px solid var(--off-white);
}

.btn-solid:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--off-white);
    box-shadow: var(--shadow-clay-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #FFF;
}

.btn-outline:hover {
    background: rgba(247, 245, 242, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(247, 245, 242, 0.5);
}

.scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

/* ─── Stats Section Overlay ─── */
.stats-overlay-section {
    position: relative;
    z-index: 30;
    margin-top: -3rem;
    padding: 0 1.5rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--sage-green);
    gap: 1px;
    padding: 1px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    background: var(--off-white);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-fast);
}

.stat-box:hover {
    background: var(--warm-beige);
}

.stat-label {
    color: var(--sage-green);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-number {
    color: var(--text-primary);
    font-size: 2.25rem;
    font-family: var(--font-accent);
}

.stat-suffix {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ─── Sections General ─── */
.section {
    padding: var(--spacing-xl) 0;
}

.section-dark {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* About section uses warm beige for earthy warmth */
#about.section-dark {
    background-color: var(--warm-beige);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--text-primary);
}

.section-dark p {
    color: var(--text-secondary);
}

.section-light {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

/* Global section h2 color */
.section h2,
.section-dark h2,
.section-light h2 {
    color: var(--text-primary);
    font-weight: 300;
}

/* ─── Yoga Section — Keep Dramatic Dark ─── */
#yoga.section-dark {
    background-color: var(--charcoal);
    color: var(--off-white);
    position: relative;
}

#yoga.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 184, 161, 0.05) 0%, transparent 50%, rgba(201, 124, 93, 0.05) 100%);
    pointer-events: none;
}

#yoga.section-dark h1,
#yoga.section-dark h3,
#yoga.section-dark h4,
#yoga.section-dark h5,
#yoga.section-dark h6 {
    color: var(--off-white) !important;
}

#yoga.section-dark h3 {
    color: var(--accent-primary) !important;
}

#yoga.section-dark h2 {
    color: var(--off-white) !important;
}

#yoga.section-dark p {
    color: rgba(247, 245, 242, 0.75) !important;
}

/* ─── Philosophy / About ─── */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.philosophy-image-wrapper {
    position: relative;
    height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--warm-beige);
}

.philosophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Explore Our Core Cards ─── */
.core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.core-card {
    background: var(--off-white);
    border: 1px solid rgba(168, 184, 161, 0.2);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

.core-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-sage-glow);
}

.core-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.core-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.core-card:hover .core-img-wrapper img {
    transform: scale(1.08);
}

.core-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.core-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 500;
}

.core-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Billboards ─── */
.billboard-section {
    position: relative;
}

.billboard-item {
    min-height: 50vh;
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
}

@media (min-width: 992px) {
    .billboard-item {
        background-attachment: fixed;
    }
}

.billboard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(43, 43, 43, 0.15) 0%,
            rgba(201, 124, 93, 0.1) 50%,
            rgba(43, 43, 43, 0.35) 100%);
    z-index: 1;
}

.billboard-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.billboard-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: var(--font-accent);
    font-style: italic;
    margin-bottom: 1rem;
    color: #FFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.billboard-content p {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #FFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* ─── Facilities Gallery ─── */
.facilities-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.facilities-scroll::-webkit-scrollbar {
    display: none;
}

.facility-card {
    min-width: 400px;
    height: 500px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.facility-card:hover .facility-img {
    transform: scale(1.05);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(43, 43, 43, 0.85), transparent);
    color: #FFF;
}

.facility-overlay h4,
.facility-overlay p {
    color: #FFF !important;
}

/* ─── Flexible Scheduling ─── */
.scheduling-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.schedule-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2rem !important;
    color: var(--accent-primary);
    background: rgba(201, 124, 93, 0.08);
    padding: 0.8rem;
    border-radius: 12px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    color: var(--text-primary);
}

.section-dark .feature-item h4 {
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
}

.scheduling-image-wrapper {
    height: 600px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--sage-green);
}

.scheduling-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .scheduling-grid {
        grid-template-columns: 1fr;
    }

    .scheduling-image-wrapper {
        height: 400px;
        order: -1;
        margin-bottom: 2rem;
        box-shadow: 10px 10px 0 rgba(168, 184, 161, 0.3);
    }
}

/* ─── Memberships / Plans ─── */
.plans-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--off-white);
    border: 1px solid rgba(168, 184, 161, 0.2);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: var(--shadow-soft);
    border-radius: 16px;
    flex: 0 1 370px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-clay-glow);
    border-color: rgba(201, 124, 93, 0.4);
}

.plan-card.premium {
    background: linear-gradient(145deg, var(--off-white), rgba(232, 226, 216, 0.5));
    border: 2px solid var(--accent-primary);
}

.plan-price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin: 1rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    width: 100%;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(168, 184, 161, 0.15);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

/* ─── App Store Buttons ─── */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    background: var(--charcoal);
    color: var(--off-white);
    border: 1px solid rgba(43, 43, 43, 0.2);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.store-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-clay-glow);
}

/* ─── App Features Grid ─── */
.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
    margin-bottom: 3rem;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-feature-item .material-icons {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.app-feature-item span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .app-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Nutrition Section ─── */
.nutrition-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nutrition-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.nutri-item {
    padding-left: 1.5rem;
    border-left: 2px solid var(--accent-primary);
}

.nutri-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nutri-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nutrition-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 250px 200px;
    gap: 1rem;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.collage-img.large {
    grid-row: 1 / -1;
    height: 100%;
}

@media (max-width: 992px) {
    .nutrition-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .nutrition-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px;
    }

    .collage-img.large {
        grid-row: auto;
    }
}

/* ─── Gallery ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 10-Item Masonry Layout - Dynamic Shapes */
.gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-grid .gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-grid .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-grid .gallery-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-grid .gallery-item:nth-child(10) {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-grid .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-grid .gallery-item:nth-child(5) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-grid .gallery-item:nth-child(8) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-grid .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ─── Gallery Section (dark bg override) ─── */
#gallery.section-dark {
    background-color: var(--charcoal);
}

#gallery.section-dark h2 {
    color: var(--off-white) !important;
}

#gallery.section-dark h3 {
    color: var(--accent-primary) !important;
}

/* Alternate h3 accent colors: Sage Green for some sections */
#experience h3,
#app h3 {
    color: var(--sage-green) !important;
}

/* ─── Contact Form ─── */
.contact-form-custom input:focus,
.contact-form-custom select:focus {
    outline: none;
    border-bottom-color: var(--accent-primary) !important;
}

/* ─── Wellness Section ─── */
#wellness strong {
    color: var(--text-primary) !important;
}

/* ─── Trainers ─── */
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trainer-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.trainer-card:hover .trainer-img {
    filter: grayscale(0%);
}

.trainer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(43, 43, 43, 0.9), transparent);
    color: #FFF;
}

.trainer-info h4,
.trainer-info p {
    color: #FFF;
}

.trainer-info .text-gold {
    color: var(--accent-primary) !important;
}

/* ─── Footer ─── */
footer {
    background: var(--charcoal);
    padding: 5rem 0 2rem;
    color: var(--off-white);
    position: relative;
    z-index: 2;
    border-top: 3px solid var(--soft-clay);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--sage-green), var(--accent-primary), var(--sage-green));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247, 245, 242, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
    color: var(--off-white);
}

.social-icon:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(201, 124, 93, 0.1);
}

.newsletter-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(247, 245, 242, 0.2);
    padding: 1rem 0;
    width: 100%;
    color: var(--off-white);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

footer a {
    color: rgba(247, 245, 242, 0.7);
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--accent-primary);
}

/* ─── Maps ─── */
iframe[src*="google.com/maps"] {
    filter: var(--map-filter);
    border-radius: 8px;
}

/* ─── Hero Legacy ─── */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(43, 43, 43, 0.5) 0%, rgba(43, 43, 43, 0.1) 50%, rgba(43, 43, 43, 0.25) 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding-top: 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--transition-smooth) forwards 0.5s;
    color: #FFF;
}

.hero-content h1,
.hero-content p {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(43, 43, 43, 0.3);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    color: var(--accent-primary);
}

/* ─── Classes ─── */
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background: var(--bg-primary);
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(168, 184, 161, 0.15);
    border-radius: 8px;
}

.class-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.class-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.class-card:hover .class-img-wrapper img {
    transform: scale(1.1);
}

.class-content {
    padding: 2rem;
}

.class-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* ─── Testimonials ─── */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--accent-primary);
}

/* ─── Animations ─── */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* ─── Mobile Responsive ─── */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-image-wrapper {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--off-white);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(168, 184, 161, 0.2);
        box-shadow: 0 10px 30px rgba(43, 43, 43, 0.06);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    /* Yoga section mobile grid fix */
    #yoga .container>div {
        grid-template-columns: 1fr !important;
    }

    #yoga .container>div>div:first-child {
        height: 400px !important;
    }
}

/* ─── Decorative Earthy Accent Dividers ─── */
.section-light+.section-dark::before,
.section-dark+.section-light::before {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--sage-green), var(--accent-primary));
    margin: 0 auto;
    position: relative;
    top: -1px;
}

/* ─── Custom Scrollbar (Desktop) ─── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--warm-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--sage-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* ─── Selection Color ─── */
::selection {
    background: rgba(201, 124, 93, 0.2);
    color: var(--charcoal);
}

/* ═══════════════════════════════════════════════════ */
/* NEW COMPONENTS — Restructured Site                  */
/* ═══════════════════════════════════════════════════ */

/* ─── About Layout ─── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--text-primary) !important;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(168, 184, 161, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(168, 184, 161, 0.2);
    border-left: 3px solid var(--sage-green);
    transition: var(--transition-fast);
}

.pillar-item:hover {
    background: rgba(168, 184, 161, 0.2);
    border-color: rgba(168, 184, 161, 0.35);
    border-left-color: var(--soft-clay);
    transform: translateX(4px);
}

.about-image-wrapper {
    position: relative;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 16px 16px 0 var(--sage-green);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        height: 350px;
        box-shadow: 8px 8px 0 var(--sage-green);
    }
}

/* ─── Classes Masonry Grid ─── */
.classes-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
}

.class-tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.class-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.class-tile:hover img {
    transform: scale(1.08);
}

/* Featured (large) tiles span 2 columns */
.class-tile.class-large {
    grid-column: span 2;
    grid-row: span 1;
}

/* Overlay */
.class-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top,
            rgba(43, 43, 43, 0.92) 0%,
            rgba(43, 43, 43, 0.6) 50%,
            transparent 100%);
    color: var(--off-white);
    transform: translateY(30%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.class-tile:hover .class-tile-overlay {
    transform: translateY(0);
}

.class-tile-overlay h4 {
    color: var(--off-white) !important;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.class-tile-overlay p {
    color: rgba(247, 245, 242, 0.75) !important;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    max-width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.class-tile:hover .class-tile-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Tag Badge */
.class-tag-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: var(--accent-primary);
    color: var(--off-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2px;
    margin-bottom: 0.6rem;
}

/* Responsive Classes Grid */
@media (max-width: 1200px) {
    .classes-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
    }

    .class-tile.class-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .classes-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
        gap: 1rem;
    }

    .class-tile.class-large {
        grid-column: span 2;
    }

    .class-tile-overlay {
        transform: translateY(0);
        padding: 1.25rem;
    }

    .class-tile-overlay p {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .classes-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .class-tile.class-large {
        grid-column: span 1;
    }
}

/* ─── Wellness Feature Grid ─── */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wellness-card {
    background: rgba(168, 184, 161, 0.06);
    border: 1px solid rgba(168, 184, 161, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-fast);
}

.wellness-card:hover {
    background: rgba(168, 184, 161, 0.15);
    border-color: var(--sage-green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-sage-glow);
}

.wellness-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.wellness-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
}

@media (max-width: 992px) {
    .wellness-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wellness-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── FAQ Section (within Memberships) ─── */
.faq-section {
    text-align: left;
}

/* ─── Mobile App Showcase ─── */
.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-content h2 {
    color: var(--text-primary) !important;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(168, 184, 161, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(168, 184, 161, 0.1);
    transition: var(--transition-fast);
}

.app-feature-row:hover {
    background: rgba(168, 184, 161, 0.12);
    border-color: rgba(201, 124, 93, 0.2);
    transform: translateX(4px);
}

.app-phone-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(43, 43, 43, 0.3),
        0 0 0 1px rgba(168, 184, 161, 0.15),
        0 0 80px rgba(168, 184, 161, 0.08);
    background: var(--charcoal);
    padding: 0;
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

@media (max-width: 992px) {
    .app-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .app-features-list {
        max-width: 500px;
        margin: 0 auto;
    }

    .phone-mockup {
        max-width: 400px;
    }
}

/* ═══════════════════════════════════════════════════ */
/* CONTACT SECTION — Split Layout                      */
/* ═══════════════════════════════════════════════════ */

.contact-section {
    background: var(--bg-secondary);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(43, 43, 43, 0.15);
    min-height: 560px;
}

/* Left: Image Side */
.contact-image-side {
    position: relative;
    overflow: hidden;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(43, 43, 43, 0.3) 0%,
            rgba(43, 43, 43, 0.85) 100%);
}

.contact-img-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-detail:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-detail i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail .detail-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Right: Form Side */
.contact-form-side {
    background: var(--charcoal);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side h4 {
    color: var(--off-white) !important;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.contact-form-side .form-desc {
    color: rgba(247, 245, 242, 0.45);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(247, 245, 242, 0.45);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(247, 245, 242, 0.05);
    border: 1px solid rgba(168, 184, 161, 0.12);
    border-radius: 10px;
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--accent-primary);
    background: rgba(247, 245, 242, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 124, 93, 0.1);
}

.form-field input::placeholder {
    color: rgba(247, 245, 242, 0.25);
}

.form-field select option {
    background: var(--charcoal);
    color: var(--off-white);
}

.contact-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Map Strip */
.contact-map-wrap {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid rgba(168, 184, 161, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-form-side {
        padding: 2rem;
    }

    .contact-image-side {
        min-height: 300px;
    }

    .contact-map-wrap {
        height: 180px;
        border-radius: 12px;
    }
}

/* ───────────────────────────────────────────────────────── */
/* ─── Premium Contact Layout (Restored & Customised)    ─── */
/* ───────────────────────────────────────────────────────── */
.premium-contact-section {
    background-color: #4a3d36;
    padding: 6rem 0;
}

.premium-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.premium-form-side {
    padding-left: 2rem;
    text-align: left;
}

.premium-form-title {
    font-family: var(--font-heading);
    color: #F4EBE1;
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.premium-form-subtitle {
    color: #C97C5D;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.premium-timer {
    font-size: 0.85rem;
    color: rgba(244, 235, 225, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.premium-timer i {
    font-size: 1rem;
}

.premium-desc {
    color: rgba(244, 235, 225, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.premium-perks-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3.5rem;
}

.premium-perks-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #F4EBE1;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.perk-custom-icon {
    font-size: 0.9rem;
    color: #C97C5D;
    /* Theme accent color for icon */
}

.premium-minimal-form {
    display: flex;
    flex-direction: column;
}

.premium-form-label {
    color: #F4EBE1;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.premium-input-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.premium-minimal-input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(244, 235, 225, 0.4) !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    color: #F4EBE1 !important;
    font-size: 0.9rem !important;
    font-family: var(--font-body) !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.premium-minimal-input::placeholder {
    color: rgba(244, 235, 225, 0.6) !important;
    font-size: 0.8rem;
}

.premium-minimal-input:focus {
    border-bottom-color: #F4EBE1 !important;
    box-shadow: none !important;
}

.premium-submit-btn {
    align-self: flex-start;
    background-color: #F4EBE1;
    color: #4a3d36;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.premium-submit-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.premium-image-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.premium-image-shape {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.premium-image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-info-box {
    margin-top: 3rem;
    text-align: left;
    width: 100%;
}

.premium-info-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.premium-info-col h4 {
    color: #F4EBE1;
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.premium-info-col p {
    color: rgba(244, 235, 225, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.premium-info-col a {
    color: #F4EBE1;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.premium-info-col a:hover {
    color: #C97C5D;
}



@media (max-width: 992px) {
    .premium-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .premium-form-side {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .premium-input-row {
        flex-direction: column;
        gap: 2rem;
    }
}