@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Space+Grotesk:wght@100;200;300;400;500;600;700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #ffffff;
    --light-bg: #000000;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.95));
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img,
video {
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--primary-color);
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 0.6em;
    color: #C4A484;
    text-transform: uppercase;
    margin: 0;
    padding: 0 2rem;
    position: absolute;
    left: 2rem;
}

.camera-logo {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: var(--transition);
}

.logo:hover .camera-logo {
    transform: scale(1.1);
}

.nav-content {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    margin-right: 25%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 0.6em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #C4A484;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 0;
    background: var(--primary-color);
    overflow: hidden;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,1));
}

.video-banner {
    position: relative;
    width: 100%;
    padding-top: 36.23%; /* 2.76:1 aspect ratio (1/2.76 * 100) */
    overflow: hidden;
    background: var(--primary-color);
}

.hero-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background: var(--primary-color);
}

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

@media (min-width: 769px) {
    .hero-youtube-iframe {
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 56.25vw;
        min-height: 100%;
        min-width: 177.78vh;
        transform: translate(-50%, -50%);
    }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%; /* Centers the video vertically */
    background: var(--primary-color);
}

.hero-content {
    position: relative;
    background: var(--primary-color);
    padding: 6rem 2rem;
}

.hero-text-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: var(--primary-color);
    padding: 2rem;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

.hero-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: #c0392b;
}

/* Videography Page */
.videography-hero {
    height: 50vh;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,1));
    position: relative;
    margin-top: 0;
}

.videography-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.video-gallery {
    padding: 4rem 2rem;
    background: var(--primary-color);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,1));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 100%;
    margin: 0 auto;
}

.video-item {
    margin: 0;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Modern aspect ratio handling */
    overflow: hidden;
}

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

/* Support images inside video-container for thumbnail links */
.video-container a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;
}

.video-description {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    margin-top: 1rem;
    width: 100%;
}

.video-description h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 1rem 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.video-description p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.video-intro-text {
    text-align: center;
    margin: 0 0 2rem 0;
}

.video-intro-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    margin: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.videography-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--white);
    margin: 2rem 0;
}

.videography-subtitle {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-text {
    padding: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
}

.about-ashlee {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.about-ashlee h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.stat {
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.9);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Packages Section */
.packages {
    padding: 5rem 2rem;
    background: var(--primary-color);
    background-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.95));
}

.packages h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
}

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

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.package-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.package-button:hover {
    background: var(--secondary-color);
}

/* Contact Page Styles */
.contact-page {
    padding-top: 80px;
    background: var(--primary-color);
    min-height: 100vh;
}

.contact-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,1));
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.1em;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #C4A484;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #C4A484;
}

.contact-item p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.contact-item a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #C4A484;
}

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

.social-link {
    display: flex;
    align-items: center;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.social-link i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: #C4A484;
}

.social-link:hover {
    color: #C4A484;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.form-header p {
    color: #999;
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C4A484;
    background: rgba(255, 255, 255, 0.15);
}

.form-footer {
    margin-top: 2rem;
}

.botcheck {
    display: none;
}

.form-status {
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.form-status-success {
    color: #8fd4a8;
}

.form-status-error {
    color: #f0a0a0;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    background: #C4A484;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #b38f6f;
    transform: translateY(-2px);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #C4A484;
    font-weight: 500;
}

.faq-item p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

    .contact-info-section {
        position: static;
    }

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

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

    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-bg);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
    padding: 0.5rem 0.65rem;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 1.25rem;
        z-index: 10000;
        background: #000000;
    }

    .navbar.scrolled,
    .navbar.menu-open {
        background: #000000;
    }

    .logo {
        position: relative;
        z-index: 10002;
        left: auto;
        padding: 0;
        font-size: 0.62rem;
        letter-spacing: 0.28em;
        flex: 1;
        min-width: 0;
        line-height: 1.4;
        color: #C4A484;
    }

    .nav-content {
        margin-right: 0;
        padding: 0;
        flex-shrink: 0;
        position: static;
    }

    .mobile-menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10003;
        color: #ffffff;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 10001;
        padding: 5rem 1.5rem 2rem;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.3em;
        padding: 0.85rem 1.25rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }
}

@media (max-width: 1200px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2.5rem 1rem;
    }

    .hero-text-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 1.35rem;
        letter-spacing: 0.08em;
        line-height: 1.45;
        text-wrap: balance;
    }

    .hero-description {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
        line-height: 1.7;
        text-transform: none;
    }

    /* YouTube banners: 16:9 padding hack on iframe wrapper (reliable on iOS Safari) */
    .hero .video-banner,
    .video-banner-section .banner-video-container {
        padding-top: 0;
        height: auto;
    }

    .hero .video-banner .hero-youtube,
    .video-banner-section .banner-video-container .hero-youtube {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 0;
        padding-top: 56.25%;
        overflow: hidden;
    }

    .hero .video-banner .hero-youtube-iframe,
    .video-banner-section .hero-youtube-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }

    /* Photo banner: 4:3 on mobile to show more of the image */
    .photo-banner-section .banner-image-container {
        height: 0;
        padding-top: 75%;
    }

    .banner-image {
        object-fit: cover;
        object-position: center center;
    }

    .commercial-banner-section .banner-video-container {
        padding-top: 56.25%;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .videography-title {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
        margin: 1.5rem 1rem;
    }

    .videography-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .video-intro-text {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .video-intro-text p,
    .video-description p {
        font-size: 0.95rem;
        letter-spacing: 0.08em;
        line-height: 1.65;
    }

    .video-description h3 {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .package-card.featured {
        transform: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .commercial-header h1 {
        font-size: 2rem;
    }

    .commercial-description {
        padding: 1.5rem 1rem;
    }

    .commercial-description p,
    .commercial-desc-col .project-desc {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
        line-height: 1.65;
    }

    .commercial-main {
        padding: 0 1rem 2rem;
    }

    .commercial-row,
    .commercial-row-reverse {
        margin: 2rem 0;
    }

    .photography-hero {
        height: 40vh;
        min-height: 220px;
    }

    .photography-hero img {
        width: 100%;
        max-height: 40vh;
    }

    .photography-header-text {
        margin: 1.5rem 1rem 2rem;
        padding: 0;
    }

    .photography-header-text h2 {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .wedding-stories {
        gap: 2.5rem;
        padding: 0 0.5rem;
    }

    .wedding-story {
        padding: 1.25rem 0.75rem;
        border-radius: 12px;
    }

    .wedding-images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 0.75rem;
    }

    .wedding-images img {
        height: auto;
        max-width: 100%;
        border-radius: 10px;
    }

    .wedding-text {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .wedding-text h3 {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

    .wedding-text p {
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        line-height: 1.7;
        text-transform: none;
    }

    .recommended-grid {
        gap: 1rem;
    }

    .venue-name {
        font-size: 0.85rem;
    }

    .about-hero {
        aspect-ratio: 16 / 9;
        max-height: 40vh;
        min-height: 200px;
    }

    .about-text-container {
        margin: 2rem auto;
        padding: 1.5rem 1rem;
    }

    .about-text-container h1 {
        font-size: 2rem;
    }

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

    .about-text-container p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-image-row {
        padding: 0 1rem;
    }

    .about-image-row .about-portrait {
        max-height: 420px;
        object-position: center 15%;
    }

    .about-image-row .about-image {
        height: auto;
        max-height: 320px;
    }

    .close-lightbox {
        top: 10px;
        right: 15px;
        font-size: 32px;
        padding: 12px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
    }

    .hero-title {
        font-size: 1.05rem;
        letter-spacing: 0.06em;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }

    .banner-title,
    .photo-banner-section .banner-title,
    .commercial-banner-section .banner-title {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .banner-description,
    .photo-banner-section .banner-description,
    .commercial-banner-section .banner-description {
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }

    .service-banner {
        height: 250px;
    }

    .banner-content h2 {
        font-size: 1.75rem;
    }

    .commercial-desc-col .project-title {
        font-size: 1.4rem;
    }

    .other-occasions-images {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* Photography Hero Section */
.photography-hero {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photography-hero img {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.photography-header-text {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.photography-header-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.photography-header-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: #999;
    font-weight: 100;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.photography-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    z-index: 1;
}

@media (max-width: 1000px) {
    .photography-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .photography-gallery {
        grid-template-columns: 1fr;
    }
}

/* Photography Grid */
.photography-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    background-color: #000;
}

.photo-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .photography-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photography-hero h1 {
        font-size: 2rem;
    }

    .photography-hero p {
        font-size: 1rem;
    }

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

/* Service Banners */
.service-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    background: #000;
}

.service-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.service-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.banner-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: white;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    font-weight: 300;
}

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

    .service-banner {
        height: 300px;
    }

    .banner-content h2 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }
}

/* Video Banner Section */
.video-banner-section {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
}

.banner-text-container {
    padding: 4rem 2rem;
    background: var(--primary-color);
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.banner-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    margin: 1rem 0 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-video-container {
    position: relative;
    width: 100%;
    padding-top: 36.23%; /* 2.76:1 aspect ratio (1/2.76 * 100) */
    overflow: hidden;
    background: var(--primary-color);
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

@media (max-width: 768px) {
    .banner-text-container {
        padding: 1.75rem 1rem;
    }

    .banner-title {
        font-size: 1.65rem;
        letter-spacing: 0.1em;
        text-wrap: balance;
    }

    .banner-description {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
        line-height: 1.65;
        text-transform: none;
    }
}

/* Photo Banner Section */
.photo-banner-section {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
}

.photo-banner-section .banner-text-container {
    padding: 4rem 2rem;
    background: var(--primary-color);
    z-index: 2;
    text-align: center;
}

.photo-banner-section .banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.photo-banner-section .banner-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    margin: 1rem 0 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.banner-image-container {
    position: relative;
    width: 100%;
    padding-top: 36.23%; /* 2.76:1 aspect ratio (1/2.76 * 100) */
    overflow: hidden;
    background: var(--primary-color);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

@media (max-width: 768px) {
    .photo-banner-section .banner-text-container {
        padding: 1.75rem 1rem;
    }

    .photo-banner-section .banner-title {
        font-size: 1.65rem;
        letter-spacing: 0.1em;
        text-wrap: balance;
    }

    .photo-banner-section .banner-description {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
        line-height: 1.65;
        text-transform: none;
    }
}

/* Commercial Banner Section */
.commercial-banner-section {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
}

.commercial-banner-section .banner-text-container {
    padding: 4rem 2rem;
    background: var(--primary-color);
    z-index: 2;
    text-align: center;
}

.commercial-banner-section .banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.commercial-banner-section .banner-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    margin: 1rem 0 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commercial-banner-section .banner-video-container {
    position: relative;
    width: 100%;
    padding-top: 36.23%; /* 2.76:1 aspect ratio (1/2.76 * 100) */
    overflow: hidden;
    background: var(--primary-color);
}

.commercial-banner-section .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.commercial-banner-section .banner-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

@media (max-width: 768px) {
    .commercial-banner-section .banner-text-container {
        padding: 2rem 1rem;
    }

    .commercial-banner-section .banner-title {
        font-size: 2rem;
    }

    .commercial-banner-section .banner-description {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }
}

/* Contact Section */
.contact-section {
    background-color: #000;
    padding: 4rem 0;
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.contact-email {
    font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-divider {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #666;
}

.packages-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    background-color: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.contact-form input[type="email"]::placeholder {
    color: #666;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-email {
        font-size: 1rem;
    }
}

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

    .contact-title {
        font-size: 1.8rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 2rem 0;
    background-color: #000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1/1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    overflow: auto;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

/* Update photo-item to show pointer cursor */
.photo-item {
    cursor: pointer;
}

/* About Page Styles */
.about-hero {
    width: 100%;
    /* Set a cinematic aspect ratio, e.g., 16:5 */
    aspect-ratio: 16/5;
    max-height: 60vh;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-content {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
}

.about-text-container {
    max-width: 800px;
    margin: 5rem auto 5rem auto;
    text-align: center;
    padding: 3rem 2rem 3rem 2rem;
    background: none;
}

.about-text-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.about-text-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    color: #C4A484;
}

.about-text-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #999;
}

.about-image-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-image-row {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.about-image-row .about-portrait {
    width: 100%;
    height: auto;
    max-height: 560px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 18%;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-main {
    width: 100%;
    max-width: min(1800px, 98vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 2.5rem);
}

/* About page: text | photo (centre) | suppliers */
.about-spread-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 520px) minmax(0, 1.1fr);
    gap: clamp(4.5rem, 9vw, 8rem);
    align-items: center;
    margin: clamp(3rem, 6vh, 5rem) auto;
    width: 100%;
    min-height: min(72vh, 820px);
}

.about-spread-text .about-text-container {
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.about-spread-text .about-text-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    line-height: 1.15;
}

.about-spread-text .about-text-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 1.85rem;
    letter-spacing: 0.1em;
    color: #C4A484;
}

.about-spread-text .about-text-container p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.05rem, 1.25vw, 1.2rem);
    line-height: 1.9;
    margin-bottom: 1.45rem;
    color: #999;
}

.about-spread-text .about-text-container p:last-child {
    margin-bottom: 0;
}

.about-spread-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-spread-photo .about-portrait {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: min(78vh, 760px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 14px;
    display: block;
}

.about-spread-suppliers {
    margin: 0;
    padding: 0;
    max-width: none;
    text-align: left;
}

.about-spread-suppliers .recommended-title {
    font-family: 'Playfair Display', serif;
    color: #C4A484;
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    margin-bottom: 0.85rem;
    letter-spacing: 0.1em;
}

.about-spread-suppliers .recommended-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.08rem);
    color: #888;
    margin: 0 0 2rem;
    line-height: 1.7;
}

.about-spread-suppliers .recommended-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.about-spread-suppliers .venue-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.about-spread-suppliers .venue-website-link {
    flex-direction: row;
    align-items: center;
    flex: 1;
    gap: 1rem;
    min-width: 0;
    text-decoration: none;
}

.about-spread-suppliers .venue-card-image {
    width: auto;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    flex-shrink: 0;
}

.about-spread-suppliers .venue-logo {
    max-height: 56px;
    max-width: 88px;
    object-fit: contain;
}

.about-spread-suppliers .venue-name {
    text-align: left;
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    line-height: 1.35;
    color: #C4A484;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-spread-suppliers .venue-instagram-link {
    margin-top: 0;
    flex-shrink: 0;
    font-size: 1.5rem;
}

@media (max-width: 1100px) {
    .about-spread-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "text text"
            "photo suppliers";
        gap: 3.5rem 4.5rem;
        align-items: start;
    }

    .about-spread-text {
        grid-area: text;
    }

    .about-spread-photo {
        grid-area: photo;
        justify-content: center;
    }

    .about-spread-suppliers {
        grid-area: suppliers;
    }

    .about-spread-photo .about-portrait {
        max-width: 100%;
        max-height: 560px;
    }
}

@media (max-width: 768px) {
    .about-spread-layout {
        min-height: unset;
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "photo"
            "suppliers";
        gap: 3.75rem;
    }

    .about-spread-text .about-text-container {
        text-align: center;
    }

    .about-spread-photo .about-portrait {
        max-width: min(100%, 400px);
        margin: 0 auto;
    }

    .about-spread-suppliers {
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-spread-suppliers .recommended-title,
    .about-spread-suppliers .recommended-subtitle {
        text-align: center;
    }

    .about-spread-suppliers .recommended-grid {
        max-width: 420px;
        margin: 0 auto;
    }
}

.ashlee-section {
    margin-top: 6rem;
}

.ashlee-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1rem;
    }

    .about-text-container h1 {
        font-size: 2.5rem;
    }

    .about-text-container h2 {
        font-size: 1.3rem;
    }

    .about-text-container p {
        font-size: 1rem;
    }

    .about-image {
        height: 400px;
    }

    .ashlee-section {
        margin-top: 4rem;
    }
}

@media (max-width: 480px) {
    .about-text-container h1 {
        font-size: 2rem;
    }

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

    .about-image {
        height: 300px;
    }
}

.wedding-stories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
}

.wedding-story {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
    background: rgba(0,0,0,0.7);
    border-radius: 16px;
    padding: 5rem 3rem;
    min-height: 400px;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.wedding-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    min-width: 320px;
    max-width: 50%;
    justify-content: flex-start;
    align-items: flex-start;
}

.wedding-images img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.wedding-text {
    flex: 3 1 320px;
    min-width: 320px;
    max-width: 48%;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    box-sizing: border-box;
}

.wedding-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: #C4A484;
    text-transform: uppercase;
}

.wedding-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #999;
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .wedding-story {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }
    .wedding-images img {
        max-width: 320px;
        height: 340px;
    }
    .wedding-images {
        min-width: 180px;
        max-width: 100%;
        gap: 1rem;
    }
    .wedding-text {
        min-width: 180px;
        max-width: 100%;
        font-size: 1.1rem;
        padding-left: 1rem;
    }
    .wedding-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) {
    .wedding-story {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
        padding: 2rem 1rem;
    }
    .wedding-images {
        flex-wrap: wrap;
        min-width: 100%;
        max-width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    .wedding-images img {
        max-width: 100%;
        height: 180px;
    }
    .wedding-text {
        min-width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding-left: 0;
        margin-top: 1.5rem;
    }
    .wedding-text h3 {
        font-size: 1.1rem;
    }
}

.other-occasions-grid {
    background: none;
    box-shadow: none;
    padding: 0;
    margin-top: 2rem;
}

.other-occasions-images {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 3rem 1rem;
}

.other-occasions-images img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #111;
}

@media (max-width: 1400px) {
    .other-occasions-images {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .wedding-images {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        min-width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    .wedding-images img {
        height: 180px;
    }
    .other-occasions-images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 1fr);
        gap: 1rem;
        padding: 0 0.5rem 2rem 0.5rem;
    }
    .other-occasions-images img {
        height: 180px;
    }
}

.recommended-suppliers {
    text-align: center;
    margin: 4rem auto 5rem;
    padding: 3rem 2rem;
    max-width: 1100px;
}

.recommended-title {
    color: #C4A484;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
}

.recommended-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #888;
    margin: 0 auto 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.venue-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem 1.25rem 1.25rem;
    min-height: 180px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.venue-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 164, 132, 0.45);
    background: rgba(255, 255, 255, 0.07);
}

.venue-website-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    text-decoration: none;
}

.venue-instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0.75rem;
    font-size: 1.35rem;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.venue-instagram-link i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.venue-instagram-link:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.venue-card-image {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    padding: 0.5rem;
}

.venue-logo {
    max-height: 72px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.venue-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #C4A484;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.venue-card:hover .venue-name,
.venue-website-link:hover .venue-name {
    color: #fff;
}

@media (max-width: 900px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .recommended-suppliers {
        padding: 2rem 1rem;
    }

    .recommended-title {
        font-size: 1.6rem;
    }

    .venue-card {
        min-height: 160px;
        padding: 1.25rem 1rem;
    }

    .venue-card-image {
        height: 70px;
    }

    .venue-logo {
        max-height: 58px;
    }
}

@media (max-width: 480px) {
    .recommended-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

.commercial-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
}

.commercial-row-reverse {
    flex-direction: row-reverse;
}

.commercial-video-col {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commercial-desc-col {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 600px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.commercial-desc-col .project-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #C4A484;
    text-transform: uppercase;
}

.commercial-desc-col .project-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

@media (max-width: 1000px) {
    .commercial-row, .commercial-row-reverse {
        flex-direction: column !important;
        gap: 2rem;
    }
    .commercial-video-col, .commercial-desc-col {
        max-width: 100%;
        min-width: 0;
        text-align: center;
    }
    .commercial-desc-col {
        text-align: center;
    }
}

/* Commercial Header */
.commercial-header {
    text-align: center;
    padding: 2rem 0;
    background: var(--primary-color);
    color: var(--white);
    margin-top: 80px;
}

.commercial-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin: 0;
    text-transform: uppercase;
}

/* Commercial Description */
.commercial-description {
    text-align: center;
    padding: 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.commercial-description p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #999;
    font-weight: 100;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Video Container */
.responsive-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #000;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

/* Photography page title — must stay on one line on mobile */
@media (max-width: 768px) {
    .photography-header-text .photography-page-title {
        font-size: clamp(0.62rem, 2.85vw, 0.82rem);
        letter-spacing: 0.05em;
        white-space: nowrap;
        word-break: keep-all;
        overflow-wrap: normal;
    }
} 