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

html,
body {
    margin: 0 !important;
    padding: 0;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    min-height: 100vh;
    height: auto !important;
    background-color: #fff;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #222;
    background-color: #fff;
    padding-bottom: env(safe-area-inset-bottom);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.01em;
}

:root {
    /* Brand palette - logo uses a deep violet -> magenta-purple gradient */
    --brand:        #7b2d9e;   /* primary deep violet-purple */
    --brand-light:  #bf3fa0;   /* vivid magenta-purple accent */
    --brand-dark:   #501470;   /* deepest purple for hover / depth */
    --brand-tint:   #f7eeff;   /* lightest lavender for card backgrounds */
    --brand-shadow: rgba(123, 45, 158, 0.12);
    --overlay-dark: rgba(20, 20, 20, 0.65);
    /* Legacy aliases - keep names so existing var() calls just work */
    --gold-1:       #7b2d9e;
    --gold-2:       #501470;
    --gold-3:       #3a0e52;
    --gold-tint:    #f7eeff;
    --gold-shadow:  rgba(123, 45, 158, 0.12);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.thankyou-actions{
    padding: 2rem 0 0 0;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 0.75rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo__image {
    height: 85px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand);
}

.btn-book-now {
    flex-shrink: 0;
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--brand);
    color: var(--brand);
    background: none;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-book-now:hover,
.btn-book-now:focus {
    background: var(--brand);
    color: #fff;
}

/* Global link styling */
a {
    color: var(--gold-3);
    text-decoration: underline;
}
a:visited {
    color: var(--gold-2);
}
a:hover,
a:focus {
    color: var(--gold-1);
    text-decoration: none;
}

/* Visually hidden utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip navigation link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    background: #fff;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid var(--gold-1);
    border-radius: 0 0 4px 0;
}
.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    overflow: visible;
    outline: none;
}

/* Focus outlines */
a:focus,
.btn:focus {
    outline: 3px solid var(--gold-1);
    outline-offset: 3px;
}

/* Logo link */
a.logo {
    color: inherit;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}
a.logo:visited {
    color: inherit;
}
a.logo:hover,
a.logo:focus {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

/* Keep navigation links dark */
.navbar .nav-links a {
    color: #333;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: var(--brand);
}

/* Hamburger toggle button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 110;
}
.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.navbar.nav-open .nav-toggle .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.nav-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
}
.navbar.nav-open .nav-toggle .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav - show toggle, stack links into dropdown */
@media (max-width: 768px) {
    .nav-container { 
        position: relative;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .logo {
        order: 1;
    }
    .nav-toggle { 
        display: flex;
        order: 3;
        margin-left: auto;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 85vw;
        max-width: 320px;
        background-color: #fff;
        padding: 5rem 0 2rem;
        gap: 0;
        z-index: 300;
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0,0,0,0.2);
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }
    .navbar.nav-open .nav-links {
        transform: translateX(0);
        visibility: visible;
    }
    .nav-links li { padding: 0; }
    .navbar .nav-links a {
        display: block;
        padding: 0.85rem 1.5rem 0.85rem 3.5rem;
        color: #333;
        border-bottom: 1px solid #f0f0f0;
    }
    .navbar .nav-links li:last-child a { border-bottom: none; }
    .btn-book-now {
        order: 2;
    }
}

body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99;
}
body.nav-open {
    overflow: hidden;
}

/* Hero Section (homepage) */
.hero {
    position: relative;
    color: #fff;
    padding: 4rem 2rem 3rem;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -300px;
    animation: kenBurns 20s ease-out forwards;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
}

.tagline {
    font-size: 1.8rem;
    margin: 0;
    color: #bbb;
}

.subtitle {
    font-size: 1.25rem;
    margin: 0;
    color: #aaa;
}

.hero-intro {
    background: #f9f9f9;
    padding: 3rem 2rem;
    text-align: center;
}

.hero-intro .tagline {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brand);
}

.hero-intro .subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.hero-description {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.btn,
.btn:visited,
.btn:focus,
.btn:hover {
    color: inherit;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #fff;
}
.btn.btn-primary,
.btn.btn-primary:visited,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--gold-2) 0%, var(--gold-3) 100%);
    color: #fff !important;
}

.btn-secondary,
.btn.btn-secondary,
a.btn.btn-secondary {
    background-color: #343a40;
    color: #fff !important;
    border: 1px solid #2c343b;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
a.btn.btn-secondary:hover,
a.btn.btn-secondary:focus {
    background-color: #1f272d;
    color: #fff !important;
    outline: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--gold-1);
    border: 2px solid var(--gold-1);
}

.btn-outline:hover {
    background: linear-gradient(45deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover,
.btn-ghost:focus {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #1fa655;
    color: white !important;
}

/* Share Buttons */
.share-buttons {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--brand);
}

.share-buttons__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-buttons__list {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid var(--brand);
    color: var(--brand);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.share-button--facebook {
    border-color: #1877F2;
    color: #1877F2;
}

.share-button--facebook:hover,
.share-button--facebook:focus {
    background-color: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.share-button--whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.share-button--whatsapp:hover,
.share-button--whatsapp:focus {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}

.share-button--email {
    border-color: #EA4335;
    color: #EA4335;
}

.share-button--email:hover,
.share-button--email:focus {
    background-color: #EA4335;
    border-color: #EA4335;
    color: #fff;
}

.share-button--copy {
    border-color: var(--brand);
    color: var(--brand);
}

.share-button--copy:hover,
.share-button--copy:focus {
    background-color: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.share-button:hover,
.share-button:focus {
    outline: none;
}

.share-button.copied {
    background-color: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.share-button svg {
    width: 20px;
    height: 20px;
}

/* Share Buttons for Services Pages */
.share-services {
    margin: 0;
    padding: 2.5rem;
    background: #333;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.share-services__text {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.share-services__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #25D366;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.share-services__button:hover,
.share-services__button:focus {
    background-color: #1fa655;
    border-color: #1fa655;
    color: #fff;
    outline: none;
}

.share-services__button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .share-services {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .share-services__button {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
    .hero::before {
        background: url('../images/david-peace-stage-performance.jpg') center center/cover no-repeat;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .share-buttons {
        padding: 1.5rem;
    }
    
    .share-buttons__list {
        gap: 0.75rem;
    }
    
    .share-button {
        width: 40px;
        height: 40px;
    }
}

/* Headings rhythm */
h1 { margin-top: 1.5rem; margin-bottom: 1rem; }
h2 { margin-top: 1.25rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.3rem; margin-top: 1rem; margin-bottom: 0.6rem; }

/* Sections */
.intro {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}
.intro h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.intro p { max-width: 700px; margin: 0 auto 1rem; }

/* Services grid on homepage / services overview */
.options {
    padding: 4rem 2rem;
}
.options h2 { text-align: center; font-size: 2.4rem; margin-bottom: 3rem; }
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.option-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.option-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.option-card p { margin-bottom: 1.5rem; color: #444; }

/* Split card layout (image left, content right) */
.options-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.option-card-split {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.option-card-split__image {
    flex: 0 0 35%;
    overflow: hidden;
}
.option-card-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.option-card-split__content {
    flex: 1;
    padding: 2rem;
}
.option-card-split h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #222;
}
.option-card-split p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .option-card-split {
        flex-direction: column;
        gap: 1.5rem;
    }
    .option-card-split__image {
        flex: 1;
        min-height: 250px;
        width: 100%;
    }
    .option-card-split__content {
        padding: 1.5rem;
    }
    .option-card-split h3 {
        font-size: 1.5rem;
    }
}

/* About snippet on homepage */
.about-platform {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
    color: #fff;
}
.about-platform .container { max-width: 900px; }
.about-platform h2 { font-size: 2rem; margin-bottom: 1rem; text-align: left; }
.about-platform p { line-height: 1.7; margin-bottom: 1rem; text-align: left; }
.about-platform .btn-outline { color: #fff; border-color: #fff; }
.about-platform .btn-outline:hover { background: rgba(255,255,255,0.2); }

/* Page Header (no image) */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}
.page-header h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.page-header p { color: #aaa; }

/* Ken Burns effect - subtle zoom and pan */
@keyframes kenBurns {
    from {
        transform: scale(1) translateY(0);
    }
    to {
        transform: scale(1.08) translateY(8px);
    }
}

/* Page Hero with image */
.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 100vh;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.page-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    animation: kenBurns 20s ease-out forwards;
}

/* Full-bleed hero variants (tall hero with overlay + text at bottom) */
.page-hero.booking-hero,
.page-hero.profile-hero,
.page-hero.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
}
.page-hero.booking-hero::after,
.page-hero.profile-hero::after,
.page-hero.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.page-hero.booking-hero .page-hero__img,
.page-hero.profile-hero .page-hero__img,
.page-hero.about-hero .page-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Override object-position for align-center variants */
.page-hero.about-hero.align-center .page-hero__img {
    object-position: center -550px;
}
.page-hero.about-hero.align-top .page-hero__img {
    object-position: center -550px;
}
.page-hero.booking-hero.align-center .page-hero__img {
    object-position: center center;
}

/* Page-specific image positioning */
/* About: two heads */
.page-hero.about.about-hero .page-hero__img {
    object-position: center -250px;
}

/* Corporate: two heads */
.page-hero.corporate.about-hero .page-hero__img {
    object-position: center -200px;
}

/* Contact: image positioning */
.page-hero.contact.about-hero .page-hero__img {
    object-position: center -300px;
}

/* FAQs: two half bodies on stage */
.page-hero.faqs.about-hero .page-hero__img {
    object-position: center -150px;
}

/* Reviews: face reacting */
.page-hero.reviews.about-hero .page-hero__img {
    object-position: center -400px;
}

/* Wedding: people laughing at table */
.page-hero.wedding.about-hero .page-hero__img {
    object-position: center -300px;
}

/* Blog: man profile against pole */
.page-hero.blog.about-hero .page-hero__img {
    object-position: center -250px;
}

/* Services: full body from waist up */
.page-hero.services.about-hero .page-hero__img {
    object-position: center bottom;
}

/* Services Stage: move image up */
.page-hero.services-stage.about-hero .page-hero__img {
    object-position: center -800px;
}

/* Services Close-up: image positioning */
.page-hero.services-close-up.about-hero .page-hero__img {
    object-position: center -150px;
}

/* Services Tarot: eyes and cards top to middle */
.page-hero.services-tarot.about-hero .page-hero__img {
    object-position: center -550px;
}

/* Workshop: image positioning */
.page-hero.workshops.about-hero .page-hero__img {
    object-position: center -100px;
}

/* Mobile hero image positioning - center images on mobile to prevent too-high positioning */
@media (max-width: 768px) {
    .page-hero.about.about-hero .page-hero__img,
    .page-hero.corporate.about-hero .page-hero__img,
    .page-hero.contact.about-hero .page-hero__img,
    .page-hero.faqs.about-hero .page-hero__img,
    .page-hero.reviews.about-hero .page-hero__img,
    .page-hero.wedding.about-hero .page-hero__img,
    .page-hero.blog.about-hero .page-hero__img,
    .page-hero.services.about-hero .page-hero__img,
    .page-hero.services-stage.about-hero .page-hero__img,
    .page-hero.services-close-up.about-hero .page-hero__img,
    .page-hero.services-tarot.about-hero .page-hero__img,
    .page-hero.workshops.about-hero .page-hero__img {
        object-position: center center;
    }
    
    /* Homepage hero: reset vertical offset on mobile */
    .hero .hero__bg-img {
        object-position: center center;
    }

    /* Adjust hero min-height for better mobile viewing */
    .page-hero.booking-hero,
    .page-hero.profile-hero,
    .page-hero.about-hero {
        min-height: 60vh;
    }
}

.page-hero.booking-hero .page-hero__content,
.page-hero.profile-hero .page-hero__content,
.page-hero.about-hero .page-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    z-index: 2;
    padding: 2rem;
    color: #fff;
    background: none;
    border-radius: 0;
    max-width: 1000px;
}
.page-hero.booking-hero .page-hero__content h1,
.page-hero.profile-hero .page-hero__content h1,
.page-hero.about-hero .page-hero__content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
}
.page-hero.booking-hero .page-hero__content .subtitle,
.page-hero.profile-hero .page-hero__content .subtitle,
.page-hero.about-hero .page-hero__content .subtitle {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0.5rem 0 0 0;
}

/* Gallery hero - full image with bottom-aligned text */
.page-hero.gallery-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
}
.page-hero.gallery-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.page-hero.gallery-hero .page-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -250px;
    display: block;
    animation: kenBurns 20s ease-out forwards;
}
.page-hero.gallery-hero .page-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    z-index: 2;
    padding: 2rem;
    color: #fff;
    background: none;
    border-radius: 0;
    max-width: 1000px;
    text-align: left;
}
.page-hero.gallery-hero .page-hero__content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
}
.page-hero.gallery-hero .page-hero__content .subtitle {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0.5rem 0 0 0;
}

@media (max-width: 768px) {
    .page-hero.gallery-hero .page-hero__content h1 {
        font-size: 2rem;
    }
    .page-hero.gallery-hero .page-hero__content .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-hero.booking-hero .page-hero__content h1,
    .page-hero.profile-hero .page-hero__content h1,
    .page-hero.about-hero .page-hero__content h1 {
        font-size: 2rem;
    }
    .page-hero.booking-hero .page-hero__content .subtitle,
    .page-hero.profile-hero .page-hero__content .subtitle,
    .page-hero.about-hero .page-hero__content .subtitle {
        font-size: 1rem;
    }
}

/* Blog post hero - editorial style with gradient overlay and title at bottom */
.page-hero.blog-post-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}
.page-hero.blog-post-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.80) 100%);
    z-index: 1;
}
.page-hero.blog-post-hero .page-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
.page-hero.blog-post-hero .page-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    z-index: 2;
    padding: 2rem;
    color: #fff;
    background: none;
    border-radius: 0;
    max-width: 1000px;
}
.page-hero.blog-post-hero .page-hero__content h1 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin: 0;
}
@media (max-width: 768px) {
    .page-hero { min-height: 50vh; }
    .page-hero.blog-post-hero { min-height: 50vh; }
    .page-hero.blog-post-hero .page-hero__content h1 {
        font-size: 1.5rem;
    }
}

/* Blog breadcrumb navigation */
.blog-breadcrumb {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    background: linear-gradient(135deg, #7b2d9e 0%, #bf3fa0 100%);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    width: 100%;
}
.blog-breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.blog-breadcrumb a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .blog-breadcrumb {
        padding: 1rem;
    }
}

/* Per-page hero alignment */
.page-hero.align-top .page-hero__img { object-position: center top; }
.page-hero.align-center .page-hero__img { object-position: center center; }
.page-hero.align-bottom .page-hero__img { object-position: center bottom; }

/* Vertically center content for align-center heroes */
.page-hero.align-center .page-hero__content {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50px;
    transform: translateY(-50%);
}
.page-hero__content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 720px;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, rgba(10,10,10,0.55), rgba(10,10,10,0.25));
    border-radius: 6px;
}
.page-hero__content h1 { font-size: 2.4rem; margin-bottom: 0.5rem; }
.page-hero__content .subtitle { color: #ddd; margin-bottom: 0; }

@media (max-width: 768px) {
    .page-hero__content { left: 1rem; right: 1rem; padding: 0.75rem 1rem; }
    .page-hero__content h1 { font-size: 1.6rem; }
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    -webkit-font-smoothing: antialiased;
}
.breadcrumbs a {
    color: var(--gold-1);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: #eaeaea; font-size: 0.9rem; }

/* Services Section (on service detail pages) */
.services-section { padding: 4rem 2rem; }
.services-section h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.services-section > .container > p { color: #444; margin-bottom: 2rem; }

/* Full-width share services section */
.services-section:has(.share-services) {
    padding: 0;
}

.services-section:has(.share-services) .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.service-box { background-color: #f8f9fa; padding: 2rem; border-radius: 8px; margin: 2rem 0; }
.service-box h3 { margin-bottom: 1rem; }

/* Split layout for service boxes */
.service-box-split {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin: 2rem 0;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
}

.service-box-split__image {
    flex: 1;
    overflow: hidden;
    border-radius: 0;
    min-height: 400px;
}

.service-box-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% center !important;
    display: block;
}

.service-box-split__content {
    flex: 1;
    padding: 3rem;
    background: linear-gradient(135deg, #7b2d9e 0%, #bf3fa0 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-box-split__content .service-list li {
    color: white !important;
}

.service-box-split__content .service-list li:before {
    color: white !important;
}

.service-box-split__content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: white;
}

.service-box-split__content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-box-split__content .btn {
    align-self: flex-start;
    margin-top: 1rem;
    background-color: white;
    color: #fff;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-weight: 600;
}

.service-box-split__content .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #501470;
}

.service-box-split__content .service-list {
    color: rgba(255, 255, 255, 0.95);
}

.service-box-split__content .service-list li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-box-split__content .service-list li:before {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Light variant of split layout */
.service-box-split--light {
    background: var(--brand);
}

.service-box-split--light .service-box-split__content {
    background: var(--brand);
    color: #fff;
}

.service-box-split--light .service-box-split__content h3 {
    color: #fff;
}

.service-box-split--light .service-box-split__content p {
    color: rgba(255, 255, 255, 0.95);
}

.service-box-split--light .service-list {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-box-split--light .service-list li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-box-split--light .service-list li:before {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-box-split--light .service-box-split__content ul,
.service-box-split--light .service-box-split__content li {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-box-split--light .service-box-split__content strong {
    color: #fff;
}

.service-box-split--light .service-box-split__content a,
.service-box-split--light .service-box-split__content a:visited,
.service-box-split--light .service-box-split__content a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.service-box-split--light .service-box-split__content .btn {
    background-color: var(--brand);
    color: white;
    border: 2px solid var(--brand);
}

.service-box-split--light .service-box-split__content .btn:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.service-box-split--light .service-box-split__image img {
    object-position: left center;
}

/* Purple variant positioning */
.service-box-split .service-box-split__image img {
    object-position: left center;
}

/* One-off crop override for specific images */
.service-box-split__image--crop-right img {
    object-position: 18% center !important;
}
.service-box-split__image--crop-right-wedding img {
    object-position: 0% center !important;
}

/* Contact page grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-box h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.contact-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.alt-bg { background-color: #f8f9fa; }
.duo-benefit { background-color: #fff; padding: 2rem; border-left: 4px solid var(--gold-1); margin: 2rem 0; }

/* Inline call-to-action buttons */
.cta-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
@media (max-width: 768px) {
    .cta-inline { flex-direction: column; }
    .cta-inline .btn { width: 100%; }
}

/* CTA Section */
/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 4rem 2rem;
    background: #fff;
}
.clients-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.clients-section__text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.clients-section__text p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}
.clients-section__image img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .clients-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .clients-section__text h2 { font-size: 1.6rem; }
}

.cta-section { padding: 3rem 2rem; text-align: center; background-color: #f8f9fa; }
.cta-section h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2rem; color: #444; }

.contact-cta {
    padding: 3rem 2rem;
    text-align: center;
    background: #f8f9fa;
    color: #333;
}
.contact-cta h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-cta p { margin-bottom: 2rem; }

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cta-buttons .btn { display: inline-block; margin-bottom: 0.75rem; }

.cta-note { font-size: 0.9rem; color: #aaa; }
.cta-note a { color: inherit; text-decoration: underline; }
.cta-note a:hover { color: #fff; }

/* Profile photo */
.profile-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 30px rgba(20,20,20,0.12);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Inline profile image */
.profile-inline-image {
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    margin: 1.5rem auto;
    text-align: center;
}
.profile-inline-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    display: block;
    margin: 0 auto;
}

/* Services grid on services overview page */
.linked-service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.linked-service-card {
    display: block;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 6px 18px rgba(10,10,10,0.04);
    box-sizing: border-box;
    position: relative;
}
.linked-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(10,10,10,0.09);
}
.linked-service-card h3 { margin-bottom: 0.5rem; }
.linked-service-card p { color: #444; margin: 0; }
.linked-service-card .card-top {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.linked-service-card .card-body { flex: 1 1 auto; }
.linked-service-card .learn-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(168,126,15,0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.linked-service-card .learn-more-button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
    box-shadow: 0 18px 38px rgba(123,45,158,0.22);
}

@media (max-width: 768px) {
    .linked-service-cards { grid-template-columns: 1fr; }
    .profile-photo { max-width: 320px; }
}

/* Profile section grid (about page) */
.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}
.profile-info p { margin-bottom: 1.5rem; line-height: 1.8; color: #333; }
.profile-highlight { padding: 2rem; background-color: #f8f9fa; border-radius: 8px; }
.highlight-box h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.service-list { list-style: none; }
.service-list li { padding: 0.5rem 0; color: #444; }
.service-list li:before { content: "✓ "; color: var(--gold-1); font-weight: bold; margin-right: 0.5rem; }

/* Override list colors in purple boxes */
.service-box-split--light .service-list li {
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.5rem 0;
}

.service-box-split--light .service-list li:before {
    color: rgba(255, 255, 255, 0.95) !important;
}

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

/* Showreel / video section */
.showreel-section {
    padding: 4rem 2rem 8rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 85%, 0 100%);
}

.showreel-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.showreel-text {
    flex: 1;
    min-width: 0;
}

.showreel-text h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.showreel-video {
    flex: 1;
    min-width: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Reviews page */
.reviews-section { padding: 3rem 2rem; }

.reviews-banner {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(66, 133, 244, 0.04) 100%);
    border: 2px solid #e8f0fe;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.reviews-banner-content {
    display: flex;
    align-items: center;
}

.google-rating-text {
    font-size: 1.25rem;
    color: #5f6368;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.reviews-rating-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
}

.reviews-count {
    color: #5f6368;
    font-size: 0.95rem;
    margin: 0;
}

.btn-write-review {
    background: var(--brand);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-write-review:hover {
    background: var(--brand-dark);
}

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

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.review-card blockquote {
    font-style: normal;
    color: #3c4043;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-card blockquote::before { 
    content: none;
}

.review-card .stars {
    margin-bottom: 0.75rem;
    display: block;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.review-name {
    font-weight: 600;
    color: #202124;
    font-size: 0.95rem;
}

.review-event {
    color: #5f6368;
    font-size: 0.85rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    border-radius: 16px;
}

.reviews-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.reviews-cta p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Stars rating display */
.stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand .footer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.footer-brand .footer-tagline {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.25rem;
    overflow: visible;
}

.footer-social a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 2px;
}

.footer-social svg {
    display: block;
    flex-shrink: 0;
    overflow: visible;
}

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

.footer-nav-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 0.6rem;
}

.footer-nav ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-nav ul li a:hover { color: #fff; }

.footer-contact p {
    margin-bottom: 0.6rem;
}

.footer-contact a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-contact a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 1.25rem 2rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.footer-copy {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
}

.footer-copy a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copy a:hover { color: #aaa; }

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Text column for long-form content */
.text-column {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.text-column h2 { margin-bottom: 1rem; }
.text-column h3 { margin-top: 2rem; margin-bottom: 0.5rem; }
.text-column p { margin-bottom: 1rem; color: #333; line-height: 1.85; }
.text-column ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.text-column ul li { margin-bottom: 0.5rem; color: #333; }

/* About section wrapper */
.about { padding: 3rem 2rem; }

/* About intro with Magic Circle logo */
.about-intro-with-logo {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.magic-circle-logo {
    flex: 0 0 120px;
    width: 120px;
    height: auto;
    display: block;
}

.about-intro-with-logo p {
    flex: 1;
}

/* World Cup gallery (about page) */
.world-cup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Featured image in about (with caption) */
.about-featured-image {
    margin: 2.5rem 0;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.about-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-featured-image figcaption {
    padding: 1rem;
    background: var(--brand-tint);
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Peace of Mind gallery (two images side by side) */
.peace-of-mind-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.peace-of-mind-image {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
}

.peace-of-mind-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.peace-of-mind-image:hover img {
    transform: scale(1.05);
}

.world-cup-image {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
}

.world-cup-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.world-cup-image:hover img {
    transform: scale(1.05);
}

/* Gallery masonry section */
.gallery-section {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #e9e9e9;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== AVAILABILITY CHECK WIDGET ===== */

.availability-widget {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    max-width: 700px;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(123, 45, 158, 0.2);
}

.availability-widget__form {
    display: flex;
    gap: 1rem;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-end;
}

.availability-widget__field {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
}

.availability-widget__field label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.availability-widget__field input,
.availability-widget__field select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    color: #333;
    height: 48px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.availability-widget__field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
}

.availability-widget__field input::placeholder {
    color: #999;
}

.availability-widget__field input:focus,
.availability-widget__field select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(123, 45, 158, 0.1);
}

#check-avail-btn {
    flex: 0 1 auto;
    padding: 0 1.5rem;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

#check-avail-btn:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
}

#check-avail-btn:active {
    transform: translateY(0);
}

#check-avail-btn:focus {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
}

/* ===== RESPONSIVE: Mobile improvements ===== */

/* Tablet (landscape) */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .world-cup-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet and below */
@media (max-width: 768px) {
    /* Hero */
    .hero { padding: 2.5rem 1.5rem 2rem; }
    .hero-content { gap: 1.5rem; }
    .hero-content h1 { font-size: 2.4rem; }
    .tagline { font-size: 1.3rem; }
    .subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    
    /* Availability widget in hero */
    .availability-widget { padding: 1.5rem; gap: 0.75rem; }
    .availability-widget__form { gap: 0.75rem; }
    .availability-widget__field { min-width: 140px; }
    .availability-widget__field label { font-size: 0.85rem; }
    .availability-widget__field input,
    .availability-widget__field select { padding: 0 0.8rem; font-size: 0.95rem; height: 44px; }
    #check-avail-btn { padding: 0 1rem; height: 44px; font-size: 0.9rem; }

    /* Sections */
    .intro { padding: 3rem 1.5rem; }
    .intro h2 { font-size: 1.9rem; }
    .options { padding: 3rem 1.5rem; }
    .options h2 { font-size: 1.9rem; margin-bottom: 2rem; }
    .services-section { padding: 2.5rem 1.5rem; }
    .about { padding: 2.5rem 1.5rem; }
    .about-intro-with-logo { flex-direction: column; align-items: center; text-align: center; }
    .magic-circle-logo { flex: 0 0 100px; width: 100px; }
    .about-featured-image { max-width: 100%; }
    .peace-of-mind-gallery { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-box-split { flex-direction: column; gap: 0; }
    .service-box-split__image { flex: 1; min-height: 300px; }
    .service-box-split__content { padding: 2rem; }
    .service-box-split__content h3 { font-size: 1.5rem; }
    .service-box-split--light { flex-direction: column; }
    .service-box-split--light .service-box-split__content { order: 1; }
    .service-box-split--light .service-box-split__image { order: 2; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-box { padding: 1.5rem; }
    .world-cup-gallery { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 280px; }

    /* Page header */
    .page-header h1 { font-size: 2rem; }

    /* Showreel */
    .showreel-section { padding: 3rem 1.5rem 9rem; clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 92%, 0 100%); }
    .showreel-container { flex-direction: column; gap: 2rem; }
    .showreel-video { flex: none; width: 100%; }
    .showreel-text h2 { font-size: 1.8rem; }

    /* Gallery */
    .gallery-section { padding: 2rem 1.5rem; }
    .gallery-masonry { column-count: 2; column-gap: 1rem; }

    /* Reviews */
    .reviews-section { padding: 2rem 1.5rem; }
    .reviews-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }
}

/* Small phones */
@media (max-width: 480px) {
    body { font-size: 1.05rem; }
    .container { padding: 0 1rem; }
    .hero-content h1 { font-size: 2rem; }
    .tagline { font-size: 1.1rem; }
    .availability-widget { padding: 1rem; }
    .availability-widget__form { flex-direction: column; }
    .availability-widget__field { width: 100%; min-width: 0; }
    #check-avail-btn { width: 100%; height: 44px; }
    .intro h2,
    .options h2 { font-size: 1.6rem; }
    .option-card { padding: 1.5rem; }
    .page-header h1 { font-size: 1.75rem; }
    .contact-cta { padding: 2.5rem 1rem; }
    .cta-section { padding: 2rem 1rem; }
    .gallery-masonry { column-count: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-container { flex-wrap: wrap; }
    .logo { flex: 1; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1.25rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 0.75rem;
    }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 1rem 0.25rem;
        font-size: 1.15rem;
        letter-spacing: 0.02em;
    }
    .navbar.nav-open .nav-links { display: flex; }

    .hero-content h1 { font-size: 2.4rem; }
    body { font-size: 1.15rem; line-height: 1.85; }
    .tagline { font-size: 1.4rem; }
    .hero-buttons { flex-direction: column; }
    .options-grid { grid-template-columns: 1fr; }
    .availability-widget {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .availability-widget__form {
        flex-direction: column;
        gap: 1rem;
    }
    .availability-widget__field {
        width: 100%;
        min-width: 0;
    }
    #check-avail-btn {
        width: 100%;
    }
}

/* Blog post CTA box */
.blog-post__cta {
    background: linear-gradient(135deg, #7b2d9e 0%, #bf3fa0 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}
.blog-post__cta h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: white;
}
.blog-post__cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.blog-post__cta .btn {
    background-color: white;
    color: #7b2d9e;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}
.blog-post__cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: white;
}
