/* =============================================================================
   UNCLE CHRIS - CHILDREN'S ENTERTAINER
   styles.css — New World Digital Media
   =============================================================================

   Sections:
   1. Custom Properties (Root)
   2. Reset / Base
   3. Typography
   4. Layout Utilities
   5. Components — Header & Nav
   6. Components — Buttons
   7. Components — Wave Dividers
   8. Components — Hero
   9. Components — Services
   10. Components — About Snapshot
   11. Components — Video
   12. Components — Testimonials
   13. Components — CTA Banner
   14. Components — Footer
   15. Components — Back to Top
   16. Media Queries

   ============================================================================= */


/* =============================================================================
   1. CUSTOM PROPERTIES
   ============================================================================= */

:root {
    /* Colours */
    --color-red:        #C60000;
    --color-red-dark:   #a80000;
    --color-yellow:     #FFD700;
    --color-black:      #012c41;
    --color-dark:       #02334b;
    --color-cream:      #f0f7ff;
    --color-cream-dark: #d8e4f0;
    --color-white:      #FFFFFF;
    --color-text:       #2a2a2a;
    --color-text-muted: #666666;

    /* Fonts */
    --font-heading: 'Gluten', cursive;
    --font-body:    'Poppins', sans-serif;

    /* Type scale */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  clamp(1.5rem, 3vw, 2rem);
    --text-4xl:  clamp(2rem, 4vw, 2.75rem);
    --text-5xl:  clamp(2.5rem, 5vw, 3.5rem);

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2.5rem;
    --space-xl:   4rem;
    --space-2xl:  6rem;

    /* Radii */
    --radius-sm:  0.5rem;
    --radius-md:  1rem;
    --radius-lg:  1.5rem;
    --radius-xl:  2rem;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
    --shadow-red: 0 4px 20px rgba(198,0,0,0.25);

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}


/* =============================================================================
   2. RESET / BASE
   ============================================================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--color-black);
}

h1 { font-size: var(--text-5xl); font-weight: 700; }
h2 { font-size: var(--text-4xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 600; }
h4 { font-size: var(--text-lg);  font-weight: 600; }

p {
    line-height: 1.75;
    color: var(--color-text);
}

strong { font-weight: 600; }

em { font-style: italic; }

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.section-title.light {
    color: var(--color-white);
}

.section-intro {
    font-size: var(--text-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-muted);
}

.section-intro.light {
    color: rgba(255,255,255,0.85);
}


/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* =============================================================================
   5. COMPONENTS — HEADER & NAV
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--color-white);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

/* On the cream/light background initially, show the dark logo */
.logo-light { display: none; }
.logo-dark  { display: block; }

/* When header goes solid red (scrolled on red sections) — not used here
   but structure is ready */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

nav ul li a {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-black);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s;
}

nav ul li a:hover {
    color: var(--color-red);
    background: rgba(198, 0, 0, 0.06);
}

nav ul li a.active {
    color: var(--color-red);
    font-weight: 600;
}

nav ul li a.nav-cta {
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
}

nav ul li a.nav-cta:hover {
    background: var(--color-red-dark);
    color: var(--color-white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-black);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* =============================================================================
   6. COMPONENTS — BUTTONS
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    box-shadow: 0 6px 24px rgba(198,0,0,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-red);
    border-color: var(--color-red);
}

.btn-outline:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-large {
    font-size: var(--text-lg);
    padding: 1rem 2.5rem;
}


/* =============================================================================
   7. COMPONENTS — WAVE DIVIDERS
   ============================================================================= */

.wave-divider {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* Each wave needs a bg colour behind it matching the section above */

.wave-hero-to-services    { background: var(--color-white); }
.wave-services-to-about   { background: var(--color-red); }
.wave-about-to-video      { background: var(--color-cream); }
.wave-video-to-testimonials { background: var(--color-red); }
.wave-testimonials-to-cta { background: var(--color-black); }


/* =============================================================================
   8. COMPONENTS — HERO
   ============================================================================= */

.hero {
    background: var(--color-white);
    background-image: url('../images/hero-bg.jpg');
    background-position: 10% 50%;
    background-size: cover;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-red);
    margin-bottom: var(--space-xs);
}

.hero-content h1 {
    margin-bottom: var(--space-md);
}

.hero-content h1 em {
    color: var(--color-red);
    font-style: normal;
}

.hero-lead {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-trust {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

/* Hero image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 100%;
    width: 100%;
    background: var(--color-cream);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Placeholder state before real image is dropped in */
.hero-image-frame::before {
    content: '📸 hero-chris.jpg';
    position: absolute;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-align: center;
    padding: var(--space-sm);
    z-index: 1;
    pointer-events: none;
}

.hero-image-frame img[src*="hero-chris.jpg"] + *,
.hero-image-frame:has(img[src*="hero-chris.jpg"])::before {
    /* Hide placeholder text once real image loads */
    display: none;
}

.hero-badge {
    position: absolute;
    bottom: var(--space-sm);
    left: -var(--space-sm);
    background: var(--color-yellow);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    min-width: 90px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-black);
}

.badge-text {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
}


/* =============================================================================
   9. COMPONENTS — SERVICES
   ============================================================================= */

.services-section {
    background: var(--color-red);
    padding: var(--space-2xl) 0 var(--space-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-card {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding:var(--space-md);
    text-align: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: block;
    text-decoration: none;
}

.service-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.service-card img {
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 5/4;;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--color-white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.service-card p {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.services-footnote {
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
}

.services-footnote a {
    color: var(--color-yellow);
    font-weight: 600;
    text-decoration: underline;
}

.service-card-featured {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: var(--space-md);
}

.service-card-featured:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-card-featured-image {
    flex: 0 0 380px;
}

.service-card-featured-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.service-card-featured-text {
    flex: 1;
}

.service-card-badge {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-sm);
}

.service-card-featured-text h3 {
    color: var(--color-white);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-xs);
}

.service-card-featured-text p {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-card-featured .btn-primary {
    background: var(--color-white);
    color: var(--color-red);
}

.service-card-featured .btn-primary:hover {
    background: var(--color-cream);
}


/* =============================================================================
   10. COMPONENTS — ABOUT SNAPSHOT
   ============================================================================= */

.about-snapshot {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.about-snapshot-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-xl);
}

.about-snapshot-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-cream-dark);
    aspect-ratio: 5 / 6;
}

.about-snapshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-text h2 {
    margin-bottom: var(--space-md);
    text-align: left;
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.about-text .btn {
    margin-top: var(--space-sm);
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.credential-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    box-shadow: var(--shadow-sm);
}

.cred-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
}

.credential-card strong {
    display: block;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 2px;
}

.credential-card span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}


/* =============================================================================
   11. COMPONENTS — VIDEO SECTION
   ============================================================================= */

.video-section {
    background: var(--color-red);
    padding: var(--space-2xl) 0;
}

.video-wrapper {
    position: relative;
    /* padding-bottom: 56.25%;  */
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 50px rgba(0,0,0,0.35);
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-xl);
}


/* =============================================================================
   12. COMPONENTS — TESTIMONIALS
   ============================================================================= */

.testimonials-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial-card {
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    position: relative;
}

.testimonial-card.featured {
    background: var(--color-cream-dark);
    border-color: var(--color-red);
    transform: scale(1.03);
}

.testimonial-card p {
    color: var(--color-text);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-dark);
    font-size: var(--text-sm);
}

.testimonial-card.featured cite {
    color: var(--color-yellow);
}

.testimonials-cta {
    text-align: center;
}


/* =============================================================================
   13. COMPONENTS — CTA BANNER
   ============================================================================= */

.cta-banner {
    background: var(--color-red);
    padding: var(--space-2xl) 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
}

.cta-text h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-lg);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

.cta-contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.cta-contact-direct a {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: var(--text-base);
    transition: opacity 0.2s;
}

.cta-contact-direct a:hover {
    opacity: 0.8;
}

.cta-banner .btn-primary {
    background: var(--color-white);
    color: var(--color-red);
    border-color: var(--color-white);
    box-shadow: none;
}

.cta-banner .btn-primary:hover {
    background: var(--color-cream);
    border-color: var(--color-cream);
}


/* =============================================================================
   14. COMPONENTS — FOOTER
   ============================================================================= */

.site-footer {
    background: var(--color-black);
    padding: var(--space-2xl) 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: var(--text-sm);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: var(--space-md);
}

.footer-socials {
    display: flex;
    gap: var(--space-sm);
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: background 0.2s;
}

.footer-socials a:hover {
    background: var(--color-red);
}

.footer-nav h4,
.footer-contact h4 {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.footer-contact h4:not(:first-child) {
    margin-top: var(--space-md);
}

.footer-nav ul li {
    margin-bottom: 0.4rem;
}

.footer-nav ul li a {
    color: rgba(255,255,255,1);
    font-size: var(--text-sm);
    transition: color 0.2s;
}

.footer-nav ul li a:hover {
    color: var(--color-yellow);
}

.footer-contact ul {
    margin-bottom: var(--space-sm);
}

.footer-contact ul li {
    margin-bottom: 0;
}

.footer-contact ul li a {
    color: rgba(255,255,255,1);
    font-size: var(--text-sm);
    transition: color 0.2s;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-contact ul li a[href^="tel"] {
    font-size: var(--text-2xl);
}

.footer-contact ul li a[href^="mailto"] {
    font-size: var(--text-b);
}


.footer-contact ul li a:hover {
    color: var(--color-yellow);
}

.footer-contact p {
    color: rgba(255,255,255,1);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.footer-bottom {
    padding: var(--space-md) 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-xs);
}

.footer-bottom p a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-bottom p a:hover {
    color: var(--color-yellow);
}

.footer-bottom > .container > a {
    color: rgba(255,255,255,0.4);
    font-size: var(--text-xs);
    text-decoration: underline;
    transition: color 0.2s;
    flex-shrink: 0;
}

.footer-bottom > .container > a:hover {
    color: var(--color-yellow);
}


/* =============================================================================
   15. COMPONENTS — BACK TO TOP
   ============================================================================= */

.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
    z-index: 900;
        display: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--color-red-dark);
}


/* =============================================================================
   17. INNER PAGE — PAGE HERO BANNER
   ============================================================================= */

.page-hero {
    background-color: var(--color-red);
    background-image: url('../images/page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    text-align: center;
}

.page-hero-inner {
    max-width: 740px;
}

.page-hero .hero-eyebrow {
    color: rgba(255,255,255,0.75);
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 0;;
}

.page-hero-lead {
    color: rgba(255,255,255,0.88);
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

/* Jump-to nav on shows page */
.shows-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.shows-nav a {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.shows-nav a:hover {
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.6);
}

/* Wave dividers for inner pages */
.wave-pagehero-to-content { background: var(--color-red); }
.wave-shows-to-venues     { background: var(--color-cream); }
.wave-venues-to-cta       { background: var(--color-cream); }
.wave-show-separator-a    { background: var(--color-cream); }
.wave-show-separator-b    { background: var(--color-cream); }


/* =============================================================================
   18. SHOWS PAGE — SHOW SECTIONS
   ============================================================================= */
.show-even {
    background: var(--color-white);
}

.show-odd {
    background: var(--color-cream);
}

.show-section {
    padding: var(--space-2xl) 0;
}

.show-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.show-inner-reverse {
    direction: rtl;
}

.show-inner-reverse > * {
    direction: ltr;
}

/* Show image */
.show-image {
    position: relative;
}

.show-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-cream-dark);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-label {
    position: absolute;
    bottom: -0.75rem;
    right: var(--space-sm);
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

/* Show text */
.show-text h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.show-intro {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-red);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.show-text p {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.show-features {
    list-style: none;
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.show-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.show-features li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.35rem;
}


/* =============================================================================
   19. SHOWS PAGE — VENUES SECTION
   ============================================================================= */

.venues-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.venue-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.venue-icon {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
}

.venue-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
    color: var(--color-black);
}

.venue-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* =============================================================================
   20. ABOUT PAGE — BIO SECTION
   ============================================================================= */

.about-bio {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.about-bio-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-photo-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-cream-dark);
    aspect-ratio: 5 / 6;
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.stat-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.about-bio-text h2 {
    margin-bottom: var(--space-md);
}

.about-bio-text p {
    margin-bottom: var(--space-md);
}

.about-credentials-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.cred-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-white);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.cred-badge-icon {
    color: var(--color-red);
    font-weight: 700;
    font-size: var(--text-base);
}


/* =============================================================================
   21. ABOUT PAGE — TV SECTION
   ============================================================================= */

.tv-section {
    background: var(--color-dark);
    padding: var(--space-2xl) 0;
}

.wave-bio-to-tv    { background: var(--color-cream); }
.wave-tv-to-clients { background: var(--color-dark); }
.wave-clients-to-cta { background: var(--color-cream); }

.tv-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    margin-top: var(--space-lg);
}

.tv-video {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.tv-show-list h3 {
    color: var(--color-white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    text-align: center;
}

.tv-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.tv-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}

.tv-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.tv-list li strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--text-base);
    margin-bottom: 2px;
}

.tv-list li span {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
}

.tv-video-label {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-yellow);
    margin-bottom: var(--space-sm);
    text-align: center;
}


/* =============================================================================
   22. ABOUT PAGE — PAST CLIENTS SECTION
   ============================================================================= */

.clients-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.clients-column {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.clients-column h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.clients-column > p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.clients-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.clients-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-cream-dark);
}

.clients-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.client-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.clients-list li strong {
    display: block;
    font-weight: 600;
    color: var(--color-black);
    font-size: var(--text-base);
    line-height: 1.3;
}

.clients-list li span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}


/* =============================================================================
   24. GALLERY PAGE
   ============================================================================= */

.gallery-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.wave-gallery-to-cta { background: var(--color-cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--color-cream-dark);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(198, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 2rem;
    filter: brightness(0) invert(1);
}


/* =============================================================================
   25. REVIEWS PAGE
   ============================================================================= */

.wave-reviews-to-cta { background: var(--color-cream); }

/* Hero additions */
.reviews-hero-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    border: 1px solid white;
    border-radius: var(--radius-lg);
}

.reviews-hero-stars span:first-child {
    font-size: var(--text-3xl);
    color: var(--color-yellow);
    letter-spacing: 0.05em;
}

.reviews-hero-source {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

/* Reviews section */
.reviews-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Wide card spans 2 columns */
.review-card-wide {
    grid-column: span 2;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card-featured {
    background: var(--color-dark);
}

.review-stars {
    color: gold;;
    font-size: var(--text-3xl);
    letter-spacing: 0.05em;
}

.review-card p {
    font-style: italic;
    color: var(--color-text);
    font-size: var(--text-base);
    line-height: 1.75;
    flex-grow: 1;
}

.review-card-featured p {
    color: rgba(255,255,255,0.95);
}

.review-card cite {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
    margin-top: auto;
}

.review-author {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-black);
}

.review-card-featured .review-author {
    color: var(--color-white);
}

.review-platform {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 500;
}

.review-card-featured .review-platform {
    color: rgba(255,255,255,0.65);
}

/* Google CTA */
.reviews-google-cta {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.reviews-google-cta p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}


/* =============================================================================
   26. CONTACT PAGE
   ============================================================================= */

.contact-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-2xl);
}

.contact-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* --- Sidebar --- */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-info-card,
.contact-coverage-card,
.contact-reassurance-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-black);
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-detail-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-detail-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-detail-list a {
    font-weight: 500;
    color: var(--color-red);
    font-size: var(--text-base);
    transition: opacity 0.2s;
    text-decoration: none;
    word-break: break-all;
}

.contact-detail-list a[href^="tel:"] {
    font-size: var(--text-2xl);
    font-weight: 600;
}

.contact-detail-list a[href^="mailto:"] {
    font-weight: 600;
    white-space: nowrap;;
}

.contact-detail-list a:hover {
    opacity: 0.75;
}

.contact-coverage-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.contact-coverage-card > p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: var(--space-sm);
}

.coverage-list li {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    padding-left: 1rem;
    position: relative;
}

.coverage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--color-red);
    border-radius: 50%;
}

.coverage-note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.5;
}

.contact-reassurance-card {
    background: var(--color-red);
}

.reassurance-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.reassurance-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
}

.reassurance-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--color-yellow);
    color: var(--color-black);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Form --- */
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-section-heading {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-cream-dark);
}

.contact-form .form-section-heading:not(:first-of-type) {
    margin-top: 0;
}

.form-row {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-row-two {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: var(--space-md);
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-black);
}

.required {
    color: var(--color-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-cream);
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.9rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6e6d6d;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(198, 0, 0, 0.12);
    background: var(--color-white);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 2px solid var(--color-cream-dark);
}

.form-required-note {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}


/* =============================================================================
   27. UTILITY PAGES — SUCCESS, FAILURE, PRIVACY
   ============================================================================= */

/* --- Success & Failure --- */

.utility-page {
    background: var(--color-cream);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.utility-inner {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.utility-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.utility-inner h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    color: var(--color-black);
}

.utility-inner > p {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.utility-sub {
    font-size: var(--text-base) !important; /* override lg size for secondary text */
    color: var(--color-text-muted) !important;
}

.utility-sub a {
    color: var(--color-red);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.utility-sub a:hover {
    opacity: 0.75;
}

.utility-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

/* Failure page direct contact links */
.utility-contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: var(--space-lg) 0;
    align-items: center;
}

.utility-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-red);
    text-decoration: none;
    transition: opacity 0.2s;
}

.utility-contact-link:hover {
    opacity: 0.75;
}


/* --- Privacy Policy --- */

.privacy-section {
    background: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.privacy-content {
    max-width: 760px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.privacy-content h2 {
    font-size: var(--text-2xl);
    color: var(--color-black);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--color-cream-dark);
}

.privacy-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.privacy-content p {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    font-size: var(--text-base);
    line-height: 1.8;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.privacy-content ul li {
    color: var(--color-text);
    font-size: var(--text-base);
    line-height: 1.7;
}

.privacy-content a {
    color: var(--color-red);
    font-weight: 500;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.privacy-content a:hover {
    opacity: 0.75;
}

.privacy-content address {
    font-style: normal;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    line-height: 2;
    color: var(--color-text);
    font-size: var(--text-base);
    margin-top: var(--space-sm);
}


@view-transition {navigation: auto;}


/* =============================================================================
   MEDIA QUERIES
   ============================================================================= */

/* --- 1200px — Large desktop --- */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- 992px  — Tablet landscape / small desktop --- */
@media (max-width: 992px) {
    /* Nav */
    .hamburger {
        display: flex;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: var(--space-md);
        gap: 0.25rem;
        box-shadow: var(--shadow-md);
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    }

    nav ul.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
    }

    nav ul li a {
        display: block;
        padding: 0.6rem 1rem;
        border-radius: var(--radius-md);
    }

    nav ul li a.nav-cta {
        text-align: center;
        margin-top: 0.25rem;
    }

    nav {
        position: static;
    }

    .site-header {
        position: fixed;
    }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Shows */
    .show-inner,
    .show-inner-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .show-image {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About snapshot */
    .about-snapshot-top {
        grid-template-columns: 1fr;
    }

    .about-snapshot-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text .btn {
        display: block;
        text-align: center;
    }

    .about-credentials {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-featured {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card-featured-image {
        flex: none;
    }

    /* CTA */
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
        max-width: 600px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
    .about-bio-inner {
        grid-template-columns: 1fr;
    }

    .about-photo-frame {
        max-width: 400px;
        margin: 0 auto;
    }


    .clients-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card-wide {
        grid-column: span 2;
    }
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .contact-info-card {
        grid-column: span 2;
    }
}

/* --- 768px  — Tablet portrait --- */
@media (max-width: 768px) {
    :root {
        --space-2xl: 4rem;
        --space-xl: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        transform: scale(1);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin-inline: auto;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .site-header {
        border-bottom-left-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }

    .footer-nav {display: none;}

    .footer-contact ul li a[href^="tel"] {
        font-size: 2rem;
    }

    .footer-contact ul li a[href^="mailto"] {
        font-size: var(--text-lg);
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-credentials-inline {
        gap: var(--space-xs);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        grid-column: span 1;
    }

    .contact-form-wrap {
        padding: var(--space-md);
    }
    .privacy-content {
        padding: var(--space-lg);
    }
}

/* --- 600px  — Large mobile --- */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card-wide {
        grid-column: span 1;
    }

    .reviews-hero-stars {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-footer .btn {
        width: 100%;
        text-align: center;
    }
}

/* --- 480px  — Mobile --- */
@media (max-width: 480px) {
    .venues-grid {
        grid-template-columns: 1fr;
    }

    .tv-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-credentials {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xs);
    }

    .cta-inner .btn-large {
        width: 100%;
    }

    .video-wrapper {
        aspect-ratio: 4/3;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;;
    }

    .stat-label {
        font-size: var(--text-base);
    }

    .clients-column {
        padding: var(--space-md);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }
    .utility-actions {
        flex-direction: column;
        align-items: center;
    }

    .utility-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    .privacy-content {
        padding: var(--space-md);
    }

    .hero h1 {
        font-size: clamp(1rem, 10vw, 3rem);
    }
}


@view-transition {navigation: auto;}


/*=============== SCROLL ANIMATIONS ===============*/
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-left {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-right {
    from { transform: translateX(40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-down {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { scale: 1; }
    50% { scale: 1.1; }
    100% { scale: 1; }
}

@media (prefers-reduced-motion: no-preference) {

    /* FADE IN --------------------------------- */
    .fade-in { opacity: 0; }
    .is-cms .fade-in { opacity: 1; }
    .fade-in-animation { animation: fade-in 1s ease forwards; }
    .is-cms .fade-in-animation { animation: none; }

    /* SLIDE LEFT ------------------------------ */
    .slide-left { opacity: 0; }
    .is-cms .slide-left { opacity: 1; }
    .slide-left-animation { animation: slide-left 1s ease forwards; }
    .is-cms .slide-left-animation { animation: none; }

    /* SLIDE RIGHT ----------------------------- */
    .slide-right { opacity: 0; }
    .is-cms .slide-right { opacity: 1; }
    .slide-right-animation { animation: slide-right 1s ease forwards; }
    .is-cms .slide-right-animation { animation: none; }

    /* SLIDE DOWN ------------------------------ */
    .slide-down { opacity: 0; }
    .is-cms .slide-down { opacity: 1; }
    .slide-down-animation { animation: slide-down 1s ease forwards; }
    .is-cms .slide-down-animation { animation: none; }

    /* SLIDE UP -------------------------------- */
    .slide-up { opacity: 0; }
    .is-cms .slide-up { opacity: 1; }
    .slide-up-animation { animation: slide-up 1s ease forwards; }
    .is-cms .slide-up-animation { animation: none; }

    /* PULSE ----------------------------------- */
    .pulse-animation { animation: pulse 0.7s ease forwards; }
    .is-cms .pulse-animation { animation: none; }

    /* ANIMATION DELAYS ------------------------ */
    .delay-200ms  { animation-delay: 200ms;  animation-fill-mode: both; }
    .delay-300ms  { animation-delay: 300ms;  animation-fill-mode: both; }
    .delay-400ms  { animation-delay: 400ms;  animation-fill-mode: both; }
    .delay-500ms  { animation-delay: 500ms;  animation-fill-mode: both; }
    .delay-600ms  { animation-delay: 600ms;  animation-fill-mode: both; }
    .delay-700ms  { animation-delay: 700ms;  animation-fill-mode: both; }
    .delay-800ms  { animation-delay: 800ms;  animation-fill-mode: both; }
    .delay-900ms  { animation-delay: 900ms;  animation-fill-mode: both; }
    .delay-1000ms { animation-delay: 1000ms; animation-fill-mode: both; }
}

.shapedividers_com-7681{
overflow:hidden;
position:relative;
}
.shapedividers_com-7681::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23c60000"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-7681::before{
background-size: 100% calc(2vw + 52px);
}
}


.shapedividers_com-9402{
overflow:hidden;
position:relative;
}
.shapedividers_com-9402::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-9402::before{
background-size: 100% calc(2vw + 52px);
}
}


.shapedividers_com-1234{
overflow:hidden;
position:relative;
}
.shapedividers_com-1234::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23c60000"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-1234::before{
background-size: 100% calc(2vw + 52px);
}
}


.shapedividers_com-1582{
overflow:hidden;
position:relative;
}
.shapedividers_com-1582::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-1582::before{
background-size: 100% calc(2vw + 52px);
}
}
 


.shapedividers_com-9446{
overflow:hidden;
position:relative;
}
.shapedividers_com-9446::after{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-9446::after{
background-size: 100% calc(2vw + 52px);
}
}


.shapedividers_com-8784{
overflow:hidden;
position:relative;
}
.shapedividers_com-8784::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-8784::before{
background-size: 100% calc(2vw + 52px);
}
}
 



.shapedividers_com-8560{
overflow:hidden;
position:relative;
}
.shapedividers_com-8560::after{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%; 
transform: rotateY(180deg); background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23012c41"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-8560::after{
background-size: 100% calc(2vw + 52px);
}
}
 


.shapedividers_com-1211{
overflow:hidden;
position:relative;
}
.shapedividers_com-1211::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-1211::before{
background-size: 100% calc(2vw + 52px);
}
}
 
 
 
.shapedividers_com-7659{
overflow:hidden;
position:relative;
}
.shapedividers_com-7659::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-7659::before{
background-size: 100% calc(2vw + 52px);
}
}
 
 
 
.shapedividers_com-5037{
overflow:hidden;
position:relative;
}
.shapedividers_com-5037::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23012c41"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-5037::before{
background-size: 100% calc(2vw + 52px);
}
}
 


.shapedividers_com-6080{
overflow:hidden;
position:relative;
}
.shapedividers_com-6080::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-6080::before{
background-size: 100% calc(2vw + 52px);
}
}
 

.shapedividers_com-3268{
overflow:hidden;
position:relative;
}
.shapedividers_com-3268::after{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 52px;
background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23f0f7ff"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-3268::after{
background-size: 100% calc(2vw + 52px);
}
}
 