:root {
    --primary: #698570;
    --primary-light: #698570;
    --primary-dark: #556B5C;
    --secondary: #fdbb5d;
    --accent: #f8d3ef;
    --sage: #698570;
    --dark: #000000;
    --light: #ffffff;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --max-width: 1200px;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Inter', sans-serif;
    --h1-size: clamp(2.75rem, 5vw, 4.5rem);
    --h2-size: clamp(2.25rem, 4vw, 3.25rem);
    --h3-size: clamp(1.5rem, 3vw, 2rem);
    --p-large: clamp(1.25rem, 2vw, 1.5rem);
    --p-medium: clamp(1.125rem, 1.5vw, 1.25rem);
    --p-regular: 1.1rem;
    --p-small: 0.95rem;
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-loose: 1.8;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--dark);
    background: var(--light);
    line-height: var(--line-height-normal);
    padding-top: 84px;
    font-weight: 400;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--primary-dark);
    letter-spacing: -0.015em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--h1-size);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

/* Remove the h1 line */
h1::after {
    content: none;
}

h2 {
    position: relative;
    display: inline-block;
    font-size: var(--h2-size);
    margin-bottom: 2rem;
    font-weight: 600;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 80px;
}

h3 {
    font-size: var(--h3-size);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: var(--p-regular);
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: auto;
    padding: 0.5rem 0;
}

.logo img {
    height: auto;
    max-height: 65px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* Navigation styles with better spacing */
.nav-links a.social-icon {
    margin-left: 0.75rem;
}

/* Fix for nav links hover effect */
.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
    opacity: 0.6;
}

.nav-links .cta-button {
    background: var(--light);
    color: var(--primary-light);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-links .cta-button:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(105, 133, 112, 0.2);
}

.mobile-menu-btn {
    display: none;
    margin-left: 1rem;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        height: 24px;
        width: 30px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero.scrolled .hero-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.85) 30%,
        rgba(64, 81, 59, 0.45) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.scrolled::before {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Remove all the pre-animation and initial-scroll related styles */
.hero.pre-animation,
body.initial-scroll {
    display: none;
}

.hero-overlay {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.scrolled .hero-overlay {
    opacity: 1;
}

/* Gradient overlay for text */
.hero h1 span {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--primary-dark);
    display: inline;
}

.hero p {
    font-size: var(--p-large);
    line-height: var(--line-height-normal);
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 400;
}

.hero .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(64, 81, 59, 0.3);
    text-transform: uppercase;
    background: var(--primary);
    color: var(--light);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Fix hero button hover effect */
.hero .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(64, 81, 59, 0.4);
    color: var(--light);
}

.hero .cta-button:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero .container {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        margin-right: 0;
        padding: 60px 20px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(64, 81, 59, 0.45) 100%
        );
    }

    .hero-emoji {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero {
        min-height: 90vh;
        align-items: center;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(64, 81, 59, 0.45) 100%
        );
        opacity: 0;
        transition: opacity 0.8s ease-out;
    }

    .hero.scrolled::before {
        opacity: 1;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero h1 {
        font-size: 2.8rem;
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
        line-height: 1.1;
        animation: fadeIn 0.8s ease-out forwards;
        text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
    }

    .hero p {
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 2rem;
        animation: fadeIn 0.8s ease-out forwards;
        animation-delay: 0.2s;
        opacity: 1;
        text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }

    .hero .cta-button {
        width: auto;
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
        border-radius: 100px;
        background: var(--primary);
        color: white;
        font-weight: 600;
        box-shadow: 0 10px 20px rgba(64, 81, 59, 0.25);
        animation: fadeIn 0.8s ease-out forwards;
        animation-delay: 0.4s;
        opacity: 1;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        animation: fadeIn 1.5s ease-out;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        background: transparent;
        box-shadow: none;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero-emoji {
    display: inline-flex;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
}

.hero-text {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    margin: 0 0 3rem;
    color: var(--light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 650px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

.hero .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--primary);
    color: var(--light);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.8s ease-out forwards;
    animation-delay: 1.2s;
    position: relative;
    overflow: hidden;
}

.hero .cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 187, 93, 0.2);
    color: var(--light);
}

.hero .cta-button:hover::after {
    opacity: 1;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        margin-right: 0;
        padding: 60px 20px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(64, 81, 59, 0.45) 100%
        );
    }

    .hero-emoji {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0.8rem 1rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo img {
        max-height: 50px;
        max-width: 140px;
        display: block;
        object-fit: contain;
    }
    
    body {
        padding-top: 72px;
    }
    
    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
        margin-left: 1rem;
    }
    
    .mobile-menu-btn span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--primary);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .mobile-menu-btn span:nth-child(1) {
        top: 0px;
    }
    
    .mobile-menu-btn span:nth-child(2),
    .mobile-menu-btn span:nth-child(3) {
        top: 10px;
    }
    
    .mobile-menu-btn span:nth-child(4) {
        top: 20px;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Remove duplicated styles for logo and update them */
    .logo {
        height: 50px;
    }
    
    .logo img {
        max-height: 50px;
        max-width: 140px;
        display: block;
        object-fit: contain;
    }
    
    .social-icon {
        margin: 0 auto;
    }
    
    /* Vibe section mobile styles */
    .vibe-section {
        padding: 0 0 2rem 0;
        background: var(--light);
    }
    
    .vibe-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        max-width: 100%;
    }
    
    .vibe-image {
        order: -1;
        height: auto;
        overflow: visible;
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-width: 100%;
    }
    
    .vibe-image img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center 33%;
        border-radius: 0;
        max-height: none;
    }
    
    .vibe-content {
        max-width: 100%;
        padding: 2rem;
        background: var(--light);
    }
    
    .vibe-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .vibe-tagline {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: var(--sage);
        font-style: italic;
        word-wrap: break-word;
    }
    
    .vibe-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--dark);
        word-wrap: break-word;
    }
    
    .vibe-highlight {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
        border-left: none;
        background: none;
    }
    
    .vibe-highlight p {
        margin: 0;
        font-size: var(--p-medium);
        line-height: var(--line-height-loose);
        font-weight: 500;
    }
    
    /* Button improvements for mobile */
    .cta-button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-links a.cta-button {
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    
    .nav-links a.social-icon {
        width: 40px;
        height: 40px;
        margin: 0.5rem auto;
    }
    
    /* Update mobile menu styling */
    .nav-links {
        background: var(--primary-light);
        border-left: 4px solid var(--light);
        color: var(--light);
    }
    
    .mobile-menu-btn span {
        background: var(--light);
    }
    
    .mobile-menu-btn.active span {
        background-color: var(--light);
    }
    
    /* Update the mobile hero gradient */
    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(105, 133, 112, 0.45) 100%
        );
    }
}

@media (max-width: 480px) {
    .vibe-content {
        padding: 1.5rem;
    }

    .vibe-content h2 {
        font-size: 1.8rem;
    }

    .vibe-highlight {
        margin: 1.25rem 0;
        padding: 1.25rem 0;
    }
    
    /* Improved form spacing on smallest screens */
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .vibe-image img {
        object-position: center 28%;
    }
}

/* Fix for iOS input issues */
@supports (-webkit-touch-callout: none) {
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light));
    pointer-events: none;
    z-index: 2;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(105, 133, 112, 0.15) 100%
    );
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    font-size: 1.1rem;
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--heading-font);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    font-style: italic;
}

.emphasis-text {
    font-size: 1.2rem;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.feature-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

/* Mobile Services Section */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
    }
}

.service-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    will-change: transform;
    border: 1px solid rgba(104, 2, 134, 0.1);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 133, 112, 0.15);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.service-card h3, .service-card p {
    padding: 1rem;
}

.service-card h3 {
    color: var(--primary);
}

.learn-more {
    display: inline-block;
    padding: 0 1rem 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.learn-more:hover {
    color: var(--secondary);
}

/* Contact Form */
.contact-section {
    background: linear-gradient(180deg, var(--light) 0%, rgba(248, 211, 239, 0.1) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(105, 133, 112, 0.2) 100%
    );
    z-index: -1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    font-size: var(--h1-size);
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: block;
    width: 100%;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.booking-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(104, 2, 134, 0.2);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(104, 2, 134, 0.1);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.consent-checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.form-cta {
    text-align: center;
}

.form-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--sage);
}

.booking-form .cta-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-social a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.hero, .about-text, .feature-image, .feature {
    animation: fadeIn 1s ease-out;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Our Vibe Section */
.vibe-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light) 0%, rgba(248, 211, 239, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.vibe-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.vibe-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vibe-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.vibe-tagline {
    font-family: var(--heading-font);
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    color: var(--sage);
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.4;
}

.vibe-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center 30%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.vibe-text {
    font-size: var(--p-medium);
    line-height: var(--line-height-loose);
    color: var(--dark);
    margin-bottom: 2rem;
}

.vibe-highlight {
    margin: 2rem 0;
    padding: 1rem 0;
    position: relative;
    border-left: none;
    padding-left: 0;
}

.vibe-highlight p {
    margin: 0;
    font-size: var(--p-medium);
    line-height: var(--line-height-loose);
    font-weight: 500;
}

.vibe-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary);
    z-index: -1;
    border-radius: 8px;
    opacity: 0.7;
}

@media (min-width: 1200px) {
    .vibe-text {
        font-size: 1.5rem;
        line-height: 1.8;
    }
    
    .vibe-highlight p {
        font-size: 1.5rem;
        line-height: 1.8;
    }
    
    .vibe-content {
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {
    .vibe-section {
        padding: 4rem 0;
    }
    
    .vibe-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .vibe-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .vibe-image {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        order: -1;
    }
    
    .vibe-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .vibe-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .vibe-highlight p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vibe-section {
        padding: 3rem 0;
    }
    
    .vibe-container {
        padding: 0 1rem;
    }
    
    .vibe-header h2 {
        font-size: 2rem;
    }
    
    .vibe-tagline {
        font-size: 1.1rem;
    }
    
    .vibe-image img {
        object-position: center 28%;
    }
    
    .vibe-highlight {
        padding: 1.25rem 0;
    }
}

/* Reviews Section */
.reviews-section {
    background: var(--light);
    color: var(--primary-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(64, 81, 59, 0.08) 100%
    );
    z-index: -1;
}

.reviews-section h2 {
    color: var(--primary-dark);
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
    font-weight: 600;
}

/* Make sure heading decoration is centered too */
.reviews-section h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.review-card {
    background: white; /* Ensure solid base background */
    border-radius: 16px;
    overflow: hidden; /* Revert to hidden to contain elements */
    transition: all 0.4s ease;
    border: 1px solid rgba(64, 81, 59, 0.1);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transform-origin: center;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 133, 112, 0.15);
}

.review-content {
    padding: 3.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1; /* Keep content on top */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    /* Ensure content background covers fully */
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 211, 239, 0.2)); 
    border-radius: inherit; /* Match parent border radius */
    width: 100%; /* Ensure full width */
    height: 100%; /* Ensure full height */
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    opacity: 0.2;
    color: var(--primary);
}

.review-content p {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: var(--heading-font);
    text-align: center;
    color: var(--primary-dark);
    font-weight: 500;
    letter-spacing: 0.02em;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.review-content .emoji {
    display: inline-block;
    margin: 0 0.2rem;
    font-size: 120%;
    transform: translateY(2px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    z-index: 0; /* Behind content */
    border-radius: inherit; /* Match parent */
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* Prevent interaction with pseudo-element */
}

.review-card:hover::before {
    opacity: 0.4;
}

.review-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.review-card:nth-child(even) {
    transform: rotate(1deg);
}

.review-card:nth-child(odd):hover,
.review-card:nth-child(even):hover {
    transform: translateY(-3px) rotate(0) scale(1.02);
}

@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-content p {
        font-size: 1.35rem;
    }
    
    .review-card:nth-child(odd), 
    .review-card:nth-child(even) {
        transform: rotate(0);
    }
    
    .review-card:nth-child(odd):hover, 
    .review-card:nth-child(even):hover {
        transform: translateY(-3px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 3rem;
    }

    .review-card {
        border-radius: 14px;
        max-width: 95%;
        margin: 0 auto;
    }

    .review-content {
        padding: 3rem 2rem 2rem;
        min-height: 150px;
    }
    
    .quote-icon {
        top: 1rem;
        left: 1rem;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        gap: 30px;
    }
    
    .review-content {
        padding: 2.75rem 1.5rem 1.75rem;
        min-height: 130px;
    }
    
    .review-content p {
        font-size: 1.2rem;
    }
}

/* Accent Text Animation */
.accent-text {
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
    color: var(--secondary);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .review-content p {
        font-size: 1.5rem;
    }
}

.cta-button.nav-cta {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    background: var(--primary);
    color: var(--light);
}

@media (max-width: 1024px) {
    .hero .container {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        margin-right: 0;
        padding: 60px 20px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(64, 81, 59, 0.45) 100%
        );
    }

    .hero-emoji {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Update various selection highlights */
::selection {
    background-color: rgba(105, 133, 112, 0.3);
}

/* Update vibe section gradient */
.vibe-section::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(64, 81, 59, 0.25) 100%
    );
}

/* Update cta button styles */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(64, 81, 59, 0.2);
    text-align: center;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 133, 112, 0.25);
    border-color: var(--light);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(105, 133, 112, 0.2);
}

/* Update mobile menu button */
.mobile-menu-btn.active span {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    /* Update mobile menu styling */
    .nav-links {
        background: var(--primary-light);
        border-left: 4px solid var(--light);
        color: var(--light);
        backdrop-filter: blur(15px);
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--light);
    }
    
    .nav-links a.social-icon {
        margin: 0.5rem auto;
    }
    
    .mobile-menu-btn span {
        background: var(--light);
    }
    
    .mobile-menu-btn.active span {
        background-color: var(--light);
    }
    
    /* Hero styles */
    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(105, 133, 112, 0.45) 100%
        );
    }
    
    .hero-content {
        border: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(64, 81, 59, 0.1);
        background: transparent;
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
        font-weight: 800;
    }
    
    .hero h1::after {
        width: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero .cta-button {
        font-weight: 700;
    }
    
    /* Delete the redundant mobile section below */
}

/* Enhance the navbar on scroll */
.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo img {
    transform: scale(0.95);
}

/* Delete this duplicate section
@media (max-width: 768px) {
    .hero h1 {
        font-weight: 800;
    }
    
    .hero h1::after {
        width: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-content {
        border: none;
        background: transparent;
        box-shadow: none;
    }
}
*/

/* Update active link styling */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Update form focus styles */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(105, 133, 112, 0.15);
    outline: none;
}

/* Section headers */
h2 {
    position: relative;
    display: inline-block;
    font-size: var(--h2-size);
    margin-bottom: 2rem;
    font-weight: 600;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 80px;
}

.vibe-header h2:after,
.contact-section h2:after,
.reviews-section h2:after,
.services-section h2:after,
.repertoire-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
}

/* Also make sure the h2 text itself is centered for all sections */
.reviews-section h2,
.services-section h2,
.contact-section h2,
.vibe-header h2,
.repertoire-section h2 {
    text-align: center;
    width: 100%;
}

/* Add animated angled borders to sections */
.about-section, 
.vibe-section, 
.contact-section,
.repertoire-section {
    position: relative;
    margin: 4rem 0;
}

.about-section::after, 
.vibe-section::after, 
.contact-section::after,
.repertoire-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--light);
    transform: skewY(-1deg);
    z-index: 2;
}

/* Make the hero image more dramatic */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(64, 81, 59, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Update the vibe section */
.vibe-section::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(64, 81, 59, 0.25) 100%
    );
}

.vibe-image {
    position: relative;
    border-radius: 0;
    overflow: visible;
}

.vibe-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    z-index: -1;
    border-radius: 4px;
}

.vibe-image img {
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vibe-image:hover img {
    transform: scale(1.02);
}

/* Add decorative elements */
.hero h1::before {
    content: none;
}

/* Service cards with more depth */
.service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 133, 112, 0.15);
}

.service-card::after {
    content: none;
}

/* Button pulsing effect for CTA */
.hero .cta-button {
    animation: none; /* Remove pulsing animation */
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(64, 81, 59, 0.2);
    text-transform: uppercase;
}

.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(105, 133, 112, 0.2);
}

/* Remove texture overlay */
body::after {
    content: none;
}

/* Mobile enhancements */
@media (max-width: 768px) {
    .navbar {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Consolidated mobile nav styles */
    .nav-links {
        background: var(--primary-light);
        border-left: 4px solid var(--light);
        color: var(--light);
        backdrop-filter: blur(15px);
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--light);
    }
    
    .nav-links a.social-icon {
        margin: 0.5rem auto;
    }
    
    .mobile-menu-btn span {
        background: var(--light);
    }
    
    .mobile-menu-btn.active span {
        background-color: var(--light);
    }
    
    /* Hero styles */
    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(105, 133, 112, 0.45) 100%
        );
    }
    
    .hero-content {
        border: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(64, 81, 59, 0.1);
        background: transparent;
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
        font-weight: 800;
    }
    
    .hero h1::after {
        width: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero .cta-button {
        font-weight: 700;
    }
}

/* Enhance the navbar on scroll */
.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo img {
    transform: scale(0.95);
}

.vibe-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vibe-image {
    flex: 1 1 400px;
    max-width: 45%;
    width: 100%;
    margin: 0;
}

.vibe-content {
    flex: 1 1 400px;
    max-width: 45%;
    width: 100%;
    padding: 0;
}

@media (max-width: 768px) {
    .vibe-content-wrapper {
        padding: 0 1rem;
        gap: 2rem;
        flex-direction: column;
    }
    
    .vibe-image,
    .vibe-content {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .vibe-content {
        text-align: center;
    }
    
    .vibe-features {
        max-width: 400px;
        margin: 2rem auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .vibe-section {
        padding: 3rem 0;
    }
    
    .vibe-container {
        padding: 0 1rem;
    }
    
    .vibe-header h2 {
        font-size: 2rem;
    }
    
    .vibe-tagline {
        font-size: 1.1rem;
    }
    
    .vibe-image img {
        object-position: center 28%;
    }
    
    .vibe-highlight {
        padding: 1.25rem 0;
    }
}

/* Reviews Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Mobile Reviews Section */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .review-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .review-content {
        padding: 2.5rem 1.5rem 1.5rem;
        min-height: unset;
    }
}

/* Global Mobile Fixes */
@media (max-width: 768px) {
    /* Ensure all sections take full width */
    section {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Container sizing */
    .container,
    .vibe-container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Fix any grid layouts for single column */
    .services-grid,
    .reviews-grid,
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Fix any flexbox layouts for single column */
    .vibe-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Fix image containers */
    .vibe-image,
    .service-card {
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix all images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Logo fixes for mobile */
    .logo {
        height: 50px;
    }
    
    .logo img {
        max-height: 50px;
        max-width: 140px;
        display: block;
        object-fit: contain;
    }
    
    /* Adjust typography for better mobile reading */
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .logo {
        height: 42px;
    }
    
    .logo img {
        max-height: 42px;
        max-width: 120px;
    }
    
    .navbar .container {
        padding: 0.6rem 1rem;
    }
    
    body {
        padding-top: 65px;
    }
}

/* Add more visual distinction to headings */
h1, h2, h3 {
    position: relative;
}

h1 {
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

h1 em {
    color: inherit !important;
    font-style: italic !important;
    background: none !important;
}

h1 em::after {
    content: none !important;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 80px;
}

.vibe-header h2:after,
.contact-section h2:after,
.reviews-section h2:after,
.services-section h2:after,
.repertoire-section h2:after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
}

.vibe-header h2,
.contact-section h2,
.reviews-section h2,
.services-section h2,
.repertoire-section h2 {
    display: inline-block;
    margin-bottom: 2.5rem;
}

/* Make emoji icons more visually appealing */
.review-content .emoji,
.service-card h3 .emoji {
    display: inline-block;
    font-size: 125%;
    vertical-align: middle;
    margin: 0 0.1em;
    transform: translateY(-0.05em);
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

/* Social icon styling */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Override nav link hover effects for social icons */
.nav-links a.social-icon::after {
    display: none;
}

.nav-links a.social-icon:hover {
    transform: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .nav-links a.social-icon {
        margin: 0.5rem auto;
    }
}

/* Mobile style fixes for the h1 em element */
@media (max-width: 1200px) {
    h1 em {
        color: inherit !important;
        font-style: italic !important;
        background: none !important;
    }
    
    h1 em::after {
        content: none !important;
    }
}

/* Fix legacy styles that might override our main rules */
h1 em, 
h1 span em,
.hero h1 em {
    color: inherit !important;
    font-style: italic !important;
    background: none !important;
}

h1 em::after, 
h1 span em::after,
.hero h1 em::after {
    content: none !important;
}

/* SEO and Conversion Optimization Enhancements */

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0 1rem;
    margin: 1rem 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.service-locations {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--primary-dark);
    padding: 0 1rem;
    margin-bottom: 1rem;
}

/* Services Introduction */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: var(--p-medium);
    color: var(--sage);
}

/* Vibe Features List */
.vibe-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.vibe-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: var(--p-regular);
}

.vibe-features li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    top: -0.1rem;
}

.vibe-cta {
    margin-top: 1.5rem;
    display: inline-block;
}

/* Reviews Enhancements */
.reviews-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: var(--p-medium);
    color: var(--sage);
}

.reviewer-info {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.reviewer-info .review-venue {
    font-style: italic;
    color: var(--primary-dark);
}

.review-stars {
    margin-top: 0.5rem;
    color: #fdbb5d;
    letter-spacing: 1px;
}

/* Remove all review platforms related styles */
.review-platforms, 
.platform-links {
    display: none;
}

.reviews-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: var(--p-medium);
    color: var(--sage);
}

.review-platforms a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
}

.review-platforms a:hover {
    transform: translateY(-5px);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .review-platforms {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .review-platforms a {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 0.75rem;
    }
}

/* Remove old and duplicate review platform styles */
.platform-links {
    display: none;
}

.custom-requests {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(64, 81, 59, 0.1);
}

.custom-requests h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.custom-requests p {
    margin-bottom: 1.5rem;
}

/* Contact Section Enhancements */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: var(--p-medium);
    color: var(--sage);
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-details h3,
.faq-preview h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-list a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.faq-preview details {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-preview summary {
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    list-style: none;
}

.faq-preview summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-preview details[open] summary::after {
    content: '−';
}

.faq-preview details p {
    margin-top: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.95rem;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    margin-top: 0.5rem;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consent-checkbox input {
    width: auto;
}

.consent-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Enhanced Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-logo .tagline {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer h4 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(3px);
}

.footer-areas p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-social h4 {
    margin-bottom: 1.5rem;
}

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

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--light);
}

.seo-footer {
    font-size: 0.75rem;
    opacity: 0.6;
    line-height: 1.5;
    max-width: 100%;
}

/* Success Message Styling */
.success-message {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
}

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

.success-message h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.follow-up {
    font-size: 1rem;
    opacity: 0.9;
}

.follow-up a {
    color: var(--primary);
    font-weight: 500;
}

/* Mobile Responsive Adjustments for New Elements */
@media (max-width: 992px) {
    .repertoire-categories,
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-sections {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .repertoire-categories,
    .contact-columns,
    .footer-sections {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .custom-requests {
        padding: 2rem 1.5rem;
    }
    
    .success-message {
        padding: 2rem 1rem;
    }
    
    .service-features li,
    .repertoire-list li,
    .contact-list li {
        font-size: 0.95rem;
    }
} 

/* Repertoire Section */
.repertoire-section {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

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

.repertoire-intro {
    max-width: 800px;
    margin: 1rem auto 0;
    color: var(--text-color);
}

/* Custom Requests Section */
.custom-requests-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.custom-requests-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.custom-requests-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.custom-requests-section .cta-button {
    background: white;
    color: var(--primary);
    border: none;
}

.custom-requests-section .cta-button:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Social Feed Section */
.social-feed-section {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
}

.social-feed-section h2 {
    margin-bottom: 1.5rem;
}

.social-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

.social-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 100px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .repertoire-section,
    .custom-requests-section,
    .social-feed-section {
        padding: 4rem 0;
    }
    
    .repertoire-header,
    .social-intro {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .repertoire-section,
    .custom-requests-section,
    .social-feed-section {
        padding: 3rem 0;
    }
}

/* Reviews section CTA button container */
.reviews-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 0;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(248, 249, 250, 0.5) 100%);
    border-radius: 12px;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    border-radius: 4px 4px 0 0;
}

.reviews-cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(105, 133, 112, 0.2);
    transition: all 0.3s ease;
}

.reviews-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 133, 112, 0.3);
}

@media (max-width: 768px) {
    .reviews-cta {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .reviews-cta .cta-button {
        width: 90%;
        max-width: 320px;
        font-size: 1.1rem;
        padding: 0.9rem 1.5rem;
    }
}

.text-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Left-align for better balance */
    line-height: 1.1;
}

.logo-top {
    font-size: 32px;
    letter-spacing: 3px;
    font-weight: 700;
}

.logo-bottom {
    font-size: 16px;
    letter-spacing: 2.5px;
    font-weight: 500;
    margin-top: 2px;
}

.footer-logo .text-logo {
    margin-bottom: 10px;
    align-items: flex-start;
}

.footer-logo .logo-top {
    font-size: 28px;
}

.footer-logo .logo-bottom {
    font-size: 14px;
}

/* Improved tablet handling with better breakpoints */
@media (min-width: 769px) and (max-width: 1199px) {
    /* Special handling for medium tablet sizes */
    .vibe-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 3rem;
    }
    
    .vibe-image,
    .vibe-content {
        flex: 1 1 45%;
        max-width: 47%;
        margin: 0;
    }
    
    /* Refined logo for tablet */
    .navbar .text-logo {
        margin-left: 5px;
    }
    
    .logo-top {
        font-size: 28px;
        letter-spacing: 2.5px;
    }

    .logo-bottom {
        font-size: 15px;
        letter-spacing: 2px;
    }
    
    /* Ensure proper image handling */
    .vibe-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Better small tablet handling */
@media (min-width: 641px) and (max-width: 768px) {
    .vibe-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .vibe-image,
    .vibe-content {
        flex: 1 1 45%;
        max-width: 48%;
        margin: 0;
    }
    
    .navbar .text-logo {
        margin-left: 5px;
    }
    
    .logo-top {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .logo-bottom {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .vibe-features {
        padding-left: 5px;
    }
    
    .vibe-features li {
        font-size: 14px;
    }
}

/* Mobile breakpoint refinement */
@media (max-width: 640px) {
    .vibe-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vibe-image,
    .vibe-content {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .navbar .text-logo {
        margin-left: 0;
    }
    
    .logo-top {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .logo-bottom {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .vibe-content {
        text-align: center;
    }
    
    .vibe-features {
        max-width: 400px;
        margin: 2rem auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0.8rem 1rem;
    }
    
    .logo-top {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    .logo-bottom {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* Repertoire Note Styling */
.repertoire-note {
    display: block;
    font-style: italic;
    margin-top: 3rem;
    color: var(--primary);
    font-weight: 500;
    text-align: center;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .repertoire-note {
        margin-top: 2rem;
        font-size: 1.1rem;
    }
}