/* Import Professional Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

/* Darkish Green Theme & Typography */
:root {
    --primary-dark-green: #14382a;
    --accent-green: #286047;
    --light-green: #edf3ed;
    --gold-accent: #d9a441;
    --text-dark: #26372e;
    --text-light: #fbfcf9;
    --white: #ffffff;
    --paper: #faf8f2;
    --line: #d8e1d8;
    
    /* Fonts */
    --heading-font: 'Fraunces', Georgia, serif;
    --body-font: 'DM Sans', Arial, sans-serif;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Navigation Bar */
.site-header {
    background: rgba(20, 56, 42, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.13), 0 10px 30px rgba(10, 37, 26, 0.16);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo img {
    background: transparent;
    height: 96px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.8;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
}

/* Nav Hover Animation */
.site-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 4px;
    right: 0;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
    left: 0;
    background: var(--gold-accent);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold-accent);
}

.site-nav a.nav-contact {
    background: var(--gold-accent);
    border-radius: 999px;
    color: var(--primary-dark-green);
    padding: 0.58rem 0.9rem;
}

.site-nav a.nav-contact:hover,
.site-nav a.nav-contact.active {
    background: #f1c56c;
    color: var(--primary-dark-green);
}

.site-nav a.nav-contact::after { display: none; }

/* Hero Section */
.hero {
    background: linear-gradient(90deg, rgba(11, 45, 32, 0.92), rgba(20, 56, 42, 0.68)),
                url('https://images.unsplash.com/photo-1464375117522-1311d6a5b81f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: var(--text-light);
    text-align: center;
    min-height: 610px;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    max-width: 820px;
    text-align: left;
}

.hero-kicker {
    align-items: center;
    color: #f5d28c;
    display: flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-kicker::before {
    background: currentColor;
    content: '';
    height: 1px;
    margin-right: 0.8rem;
    width: 2.5rem;
}

.hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    margin-bottom: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e8e3;
    font-weight: 400;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

/* Page Headers */
.page-header {
    background: linear-gradient(120deg, var(--primary-dark-green), #1e4a36);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.page-header .tagline {
    font-size: 1.15rem;
    color: #d1dfd6;
    margin: 0 auto;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: var(--accent-green);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 999px;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--primary-dark-green);
}

.btn-primary:hover {
    background-color: #d19842;
    color: var(--primary-dark-green);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark-green);
}

/* Content Layout */
.content-section {
    padding: 6.5rem 2rem;
}

.light-bg {
    background-color: var(--paper);
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    color: var(--primary-dark-green);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-align: center;
    margin-bottom: 3.5rem;
}

.intro-text h2 {
    color: var(--primary-dark-green);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
}

.intro-text p, .lead-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a544f;
}

.cta-btn {
    margin-top: 1.5rem;
}

.featured-img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(20, 56, 42, 0.16);
    transition: transform 0.5s ease;
}

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

.page-photo { margin: 0; }
.page-photo img { border-radius: 16px; box-shadow: 0 20px 45px rgba(20, 56, 42, .16); display: block; height: auto; max-height: 640px; object-fit: contain; width: 100%; }
.pricing-photo-section { background: var(--primary-dark-green); padding: 3.5rem 2rem; }
.page-photo-wide { margin: 0 auto; max-width: 900px; }
.page-photo-wide img { max-height: 520px; }
.contact-photo { margin-top: 2.5rem; max-width: 480px; }
.team-gallery-section { background: var(--paper); padding: 5rem 2rem; }
.team-gallery-layout { align-items: center; display: grid; gap: 4rem; grid-template-columns: .7fr 1.3fr; }
.team-gallery-layout h2 { color: var(--primary-dark-green); font-size: clamp(2.2rem, 4vw, 3.2rem); }
.team-gallery-photo { justify-self: end; max-width: 650px; }

h1, h2 { line-height: 1.08; }

.nav-toggle {
    display: none;
}

.skip-link {
    background: var(--gold-accent);
    color: var(--primary-dark-green);
    font-family: var(--body-font);
    font-weight: 700;
    left: 1rem;
    padding: 0.7rem 1rem;
    position: fixed;
    text-decoration: none;
    top: -4rem;
    z-index: 2000;
}

.skip-link:focus {
    top: 1rem;
}

.welcome-strip {
    background: var(--gold-accent);
    color: var(--primary-dark-green);
    padding: 1.35rem 2rem;
}

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

.welcome-strip p { font-size: 0.92rem; margin: 0; }
.welcome-strip strong { display: block; font-weight: 700; }

:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
}

/* Home gallery */
.home-gallery-section {
    background: var(--primary-dark-green);
    color: var(--text-light);
    overflow: hidden;
}

.home-gallery-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 4rem;
    align-items: center;
}

.gallery-kicker {
    color: var(--gold-accent);
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.home-gallery-copy h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.home-gallery-copy > p:not(.gallery-kicker) {
    color: #d1dfd6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.home-gallery-photo {
    margin: 0;
}

.home-gallery-photo img {
    aspect-ratio: 16 / 10;
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    box-shadow: 18px 18px 0 var(--gold-accent);
    display: block;
    object-fit: cover;
    width: 100%;
}

.home-gallery-photo figcaption {
    color: #d1dfd6;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Details */
.contact-details h2 {
    color: var(--primary-dark-green);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a544f;
}

.contact-details a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: var(--gold-accent);
}

/* Dynamic FAQ Accordion */
.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    color: var(--primary-dark-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.faq-item {
    border-bottom: 1px solid #d1dfd6;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem 0;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover, .faq-question.active {
    color: var(--gold-accent);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    padding-bottom: 1.2rem;
    color: #4a544f;
    margin: 0;
}

/* Contact Form */
.form-card {
    background: var(--light-green);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card h2 {
    color: var(--primary-dark-green);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark-green);
    font-size: 0.78rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cddacb;
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 163, 89, 0.2);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}


/* Gig Cards */
.gigs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.gig-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(20, 56, 42, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gig-header {
    background: linear-gradient(135deg, var(--primary-dark-green), #21523c);
    color: var(--text-light);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 5px solid var(--gold-accent);
}

.gig-header h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gig-date {
    color: var(--gold-accent);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gig-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.gig-body p {
    margin-bottom: 1.2rem;
    color: #4a544f;
    line-height: 1.6;
}

.gig-cost ul {
    list-style: none;
    margin-bottom: 2.5rem;
    padding-left: 0;
}

.gig-cost li {
    color: #4a544f;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-green);
}

.gig-cost li:last-child {
    border-bottom: none;
}

.gig-body .cta-btn {
    margin-top: auto;
    text-align: center;
    width: 100%;
}

/* Educational Workshop Cards */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.level-card {
    background: var(--white);
    padding: 3rem 2rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--gold-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.level-card h3 {
    color: var(--primary-dark-green);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.level-card p {
    color: #4a544f;
    font-weight: 600;
    margin: 0;
}

/* Team Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--light-green);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 2.5rem 2rem;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-dark-green);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.team-title {
    color: var(--gold-accent);
    font-family: var(--heading-font);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.team-bio {
    color: #4a544f;
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* School compliance downloads */
.compliance-section { background: var(--primary-dark-green); color: var(--text-light); }
.compliance-layout { display: grid; gap: 4rem; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); align-items: start; }
.compliance-intro h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.compliance-intro > p:last-child { color: #d1dfd6; font-size: 1.08rem; max-width: 430px; }
.compliance-downloads { border-top: 1px solid rgba(255, 255, 255, .2); }
.compliance-download { align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .2); color: var(--text-light); display: grid; gap: 1rem; grid-template-columns: auto minmax(0, 1fr) auto; padding: 1.1rem 0; text-decoration: none; transition: color .2s ease, padding .2s ease; }
.compliance-download:hover { color: #f5d28c; padding-left: .5rem; }
.document-icon { background: var(--gold-accent); border-radius: 3px; color: var(--primary-dark-green); font: 700 .65rem var(--body-font); letter-spacing: .08em; padding: .35rem .3rem; }
.document-name { font-size: .95rem; font-weight: 600; line-height: 1.4; }
.download-label { font: 700 .72rem var(--body-font); letter-spacing: .08em; text-transform: uppercase; }

.contact-form .btn:disabled {
    cursor: wait;
    opacity: 0.7;
}

.form-honeypot {
    height: 0;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.form-status {
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-status.success { color: #207044; }
.form-status.error { color: #9b2c2c; }

.event-details {
    border-top: 1px solid var(--light-green);
    display: grid;
    gap: 0.35rem 0.8rem;
    grid-template-columns: max-content 1fr;
    margin: 0 0 1.5rem;
    padding-top: 1.25rem;
}

.event-details dt {
    color: var(--primary-dark-green);
    font-size: 0.9rem;
    font-weight: 700;
}

.event-details dd {
    color: #4a544f;
    font-size: 0.9rem;
    margin: 0;
}

.team-contact {
    border-top: 1px solid var(--light-green);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
}

.team-contact p {
    color: #4a544f;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.team-contact p:last-child {
    margin-bottom: 0;
}

.team-contact a,
.pricing-intro a {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: none;
}

.team-contact a:hover,
.pricing-intro a:hover {
    color: var(--gold-accent);
}

/* Pricing */
.pricing-intro {
    max-width: 760px;
    text-align: center;
}

.pricing-intro p {
    color: #4a544f;
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 900px;
}

.pricing-card {
    background: var(--white);
    border-top: 5px solid var(--gold-accent);
    border-radius: 16px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    padding: 2.75rem 2.25rem;
}

.pricing-kicker {
    color: var(--accent-green);
    font-family: var(--heading-font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.pricing-card h2 {
    color: var(--primary-dark-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary-dark-green);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.price span {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-card > p:not(.pricing-kicker):not(.price) {
    color: #4a544f;
    margin-bottom: 2rem;
}

.pricing-card .btn {
    margin-top: auto;
    text-align: center;
}

.pricing-enquiry {
    max-width: 750px;
}

.pricing-enquiry h2 {
    color: var(--primary-dark-green);
    font-size: 2.2rem;
}

/* Demos */
.demos-intro {
    max-width: 740px;
    text-align: center;
}

.demos-intro h2,
.demos-section-heading h2 {
    color: var(--primary-dark-green);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.demos-intro > p:last-child,
.demos-section-heading > p {
    color: #4a544f;
    font-size: 1.05rem;
}

.demo-kicker {
    color: var(--gold-accent);
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.demos-section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 0.7fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.demos-section-heading h2 {
    margin-bottom: 0;
}

.demos-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.video-demo-placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, var(--primary-dark-green), var(--accent-green));
    border-radius: 8px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(20, 46, 32, 0.18);
}

.video-demo-placeholder p {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.video-demo-icon {
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    height: 3.5rem;
    position: relative;
    width: 3.5rem;
}

.video-demo-icon::after {
    border-bottom: 0.55rem solid transparent;
    border-left: 0.8rem solid var(--gold-accent);
    border-top: 0.55rem solid transparent;
    content: '';
    left: 1.25rem;
    position: absolute;
    top: 1.05rem;
}

.demos-photo-grid {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.demo-photo {
    background: var(--light-green);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(20, 56, 42, .12);
    margin: 0;
    overflow: hidden;
}

.demo-photo img {
    display: block;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    width: 100%;
}

.demo-photo-featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    margin-top: auto;
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #d1dfd6;
}

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

.footer-col a:hover {
    color: var(--gold-accent);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #8c9e93;
}

/* Responsive adjustments */
@media (max-width: 950px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo img {
        height: 68px;
    }

    .site-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }

    .grid-2col, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .home-gallery-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .compliance-layout { grid-template-columns: 1fr; gap: 2.5rem; }

    .hero h1 { font-size: clamp(3rem, 9vw, 4.5rem); }
    
    .hero {
        padding: 6rem 1rem;
    }

    .page-header {
        padding: 3rem 1.5rem 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .welcome-strip-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 2rem;
    }

    .demos-section-heading,
    .demos-video-grid,
    .pricing-grid,
    .team-gallery-layout,
    .mailing-list-layout {
        grid-template-columns: 1fr;
    }

    .demos-section-heading {
        gap: 1rem;
    }

    .team-gallery-photo { justify-self: stretch; }
}

.footer-kicker {
    color: var(--gold-accent) !important;
    font-size: 0.72rem !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase;
}

.footer-newsletter h3 { margin-bottom: 0.75rem; }
.footer-newsletter-button {
    background: var(--gold-accent);
    border: 0;
    border-radius: 999px;
    color: var(--primary-dark-green);
    display: inline-block;
    font: 700 0.76rem var(--body-font);
    letter-spacing: 0.08em;
    margin-top: .8rem;
    padding: 0.78rem 1.15rem;
    text-decoration: none;
    text-transform: uppercase;
}
.footer-newsletter-button:hover { background: #f1c56c; color: var(--primary-dark-green); }

.mailing-list-section { background: var(--paper); }
.mailing-list-layout { align-items: center; display: grid; gap: 4rem; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); max-width: 1100px; }
.mailing-list-copy h2 { color: var(--primary-dark-green); font-size: clamp(2.4rem, 4vw, 3.6rem); margin-bottom: 1.25rem; }
.mailing-list-copy > p:not(.gallery-kicker) { color: #4a544f; font-size: 1.08rem; margin-bottom: 1.15rem; }
.mailing-list-form-wrap { background: var(--primary-dark-green); border-radius: 16px; box-shadow: 0 22px 48px rgba(20, 56, 42, .17); overflow: hidden; padding: 1rem; }
.mailing-list-frame { background: #fff; border: 0; display: block; height: 430px; width: 100%; }

@media (max-width: 950px) {
    .site-header {
        position: relative;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        min-height: 76px;
        padding: 0.75rem 1rem;
    }

    .logo img {
        height: 68px;
    }

    .nav-toggle {
        align-items: center;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: var(--text-light);
        cursor: pointer;
        display: flex;
        font-family: var(--heading-font);
        font-size: 0.8rem;
        font-weight: 700;
        gap: 0.55rem;
        letter-spacing: 0.08em;
        padding: 0.6rem 0.7rem;
        text-transform: uppercase;
    }

    .nav-toggle-icon,
    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
        background: currentColor;
        display: block;
        height: 2px;
        position: relative;
        width: 18px;
    }

    .nav-toggle-icon::before,
    .nav-toggle-icon::after {
        content: '';
        position: absolute;
    }

    .nav-toggle-icon::before { top: -6px; }
    .nav-toggle-icon::after { top: 6px; }

    .site-nav {
        display: none;
        width: 100%;
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding-top: 0.75rem;
    }

    .site-nav a {
        display: block;
        padding: 0.85rem 0;
    }

    .site-nav a.nav-contact {
        display: inline-block;
        margin: 0.65rem 0;
        padding: 0.7rem 1rem;
    }

    .site-nav a::after {
        display: none;
    }

    .content-section {
        padding: 4rem 1.25rem;
    }

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

    .gig-header,
    .gig-body {
        padding: 1.75rem 1.25rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 540px;
        padding: 5rem 1.25rem;
    }

    .hero h1 { font-size: 3.25rem; }
    .hero-buttons { align-items: flex-start; flex-direction: column; gap: 0.85rem; }
    .hero-buttons .btn { text-align: center; width: 100%; }
    .welcome-strip { padding: 1.25rem; }
    .compliance-download { align-items: start; grid-template-columns: auto minmax(0, 1fr); }
    .download-label { grid-column: 2; }
    .demos-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
    .demo-photo-featured { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 600px) {
}

.events-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #4a544f;
}
