/* ══════════════════════════════════════
   VARIABLES & RESET
   ══════════════════════════════════════ */
:root {
    --cream: #FAF8F5;
    --charcoal: #302F2F;
    --warm-gray: #8a8078;
    --accent: #CC9F53;
    --accent-dark: #B8893D;
    --white: #FFFFFF;
    --soft-shadow: 0 20px 60px rgba(48, 47, 47, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--cream);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 1rem 4rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500;
    color: var(--charcoal); text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links { display: flex; gap: 3rem; list-style: none; }

.nav-links a {
    color: var(--charcoal); text-decoration: none;
    font-size: 0.85rem; font-weight: 400;
    letter-spacing: 0.15em; text-transform: uppercase;
    position: relative; padding: 0.5rem 0;
}

.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 139, 91, 0.3);
}

/* ══════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════ */
.cta-button {
    display: inline-block; padding: 1.2rem 3rem;
    background: var(--charcoal); color: var(--white);
    text-decoration: none; font-size: 0.85rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    transition: all 0.4s ease; border: none; cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 139, 91, 0.3);
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }

.section-label {
    font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent-dark); margin-bottom: 1rem;
}

.section-header h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
.section-header p { color: var(--warm-gray); font-size: 1.1rem; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    position: relative; overflow: hidden;
    margin: 0; padding: 0;
    height: 85vh;
    margin-top: 70px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* end hero-video */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 47, 47, 0.55);
    z-index: 1;
    pointer-events: none;
}

/* hero decorative bg removed — video background replaces it */

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
    line-height: 1.7;
}

.hero-subtitle {
    font-size: 0.9rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.15;
    margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.25rem; color: rgba(255,255,255,0.75); max-width: 600px;
    margin: 0 auto 3rem; opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}

.hero .cta-button {
    opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
    background: var(--accent); color: var(--white);
}

.hero .cta-button:hover {
    background: var(--accent-dark);
}

.scroll-indicator {
    position: absolute; bottom: 3rem; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0; animation: fadeUp 1s ease 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); padding-left: 0.2em;
}

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
.stats-bar { background: var(--charcoal); padding: 2.5rem 4rem; }

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

.stat-item { text-align: center; flex: 1; min-width: 150px; }

.stat-number {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500;
    color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
.gallery { padding: 1px 0 0 0; background: var(--white); display: flex; flex-direction: column; gap: 1px; }

.gallery-row { display: grid; gap: 1px; }
.gallery-row.row-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-row.row-4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
    position: relative; aspect-ratio: 5/4; overflow: hidden; cursor: pointer;
}

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

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

.gallery-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-cta .section-label {
    margin-bottom: 1rem;
}

.gallery-cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.gallery-cta-subheading {
    font-size: 1.15rem;
    color: #6b6560;
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.cta-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: none;
}

/* ══════════════════════════════════════
   MASONRY GALLERY (COLLAGE 2)
   ══════════════════════════════════════ */
.masonry-gallery {
    width: 100%;
    overflow: hidden;
}

.masonry-gallery-cream {
    background: var(--cream);
}

.masonry-5col {
    columns: 5;
}

.masonry-grid,
.masonry-row {
    columns: 6;
    column-gap: 0;
    column-fill: balance;
    font-size: 0;
    margin-bottom: -4px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.masonry-item.visible {
    opacity: 1;
}

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

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

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
.lightbox {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95);
    z-index: 2000; display: none; align-items: center; justify-content: center;
}

.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; }

.lightbox-close {
    position: absolute; top: 2rem; right: 2rem; width: 50px; height: 50px;
    background: none; border: 1px solid rgba(255,255,255,0.3);
    color: white; font-size: 1.5rem; cursor: pointer; transition: all 0.3s ease;
}

.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }

.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; background: none;
    border: 1px solid rgba(255,255,255,0.3); color: white;
    font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease;
}

.lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process { padding: 6rem 4rem; background: var(--white); }

.process-steps {
    display: flex; justify-content: center; gap: 4rem;
    max-width: 1000px; margin: 0 auto;
}

.process-step { flex: 1; text-align: center; max-width: 280px; transition: transform 0.3s ease; opacity: 0; transform: translateY(30px); }
.process-step.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.process-step:hover { transform: scale(1.1); }

.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border: 2px solid var(--accent);
    border-radius: 50%; font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 500; color: var(--accent-dark);
    margin-bottom: 1.5rem;
}

.process-step h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.process-step p { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.6; }

/* ══════════════════════════════════════
   CORPORATE PHOTOGRAPHY — 2-COL GRID
   ══════════════════════════════════════ */
.corp-photo {
    padding: 5rem 0;
    background: var(--charcoal);
}

.corp-photo .section-header {
    text-align: center;
    padding: 0 4rem;
    margin-bottom: 4rem;
    max-width: 100%;
}

.corp-photo .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.5rem;
    color: var(--white);
    white-space: nowrap;
}

.corp-photo .section-label { color: var(--accent); }

.corp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
}

.corp-row.flip .corp-row-grid { order: 2; }
.corp-row.flip .corp-row-text { order: 1; }

.corp-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    overflow: hidden;
}

.corp-row-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.corp-row-grid img:hover {
    transform: scale(1.05);
}

.corp-row-text {
    padding: 4rem 5rem;
}

.corp-row-text h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.corp-row-text p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
}

.corp-cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.corp-cta-btn:hover {
    background: var(--accent-dark);
    box-shadow: 0 10px 30px rgba(204,159,83,0.3);
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services { padding: 6rem 4rem; background: var(--cream); }

.services .section-header { max-width: 100%; }
.services .section-header h2 { white-space: nowrap; }

.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem; max-width: 1000px; margin: 0 auto;
}

.service-card {
    padding: 3rem; background: var(--white); position: relative;
    overflow: hidden; transition: all 0.4s ease;
}

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--soft-shadow); }

.service-icon {
    width: 60px; height: 60px; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--accent-dark);
}

.service-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.service-card p { color: var(--warm-gray); font-size: 0.95rem; }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about {
    padding: 8rem 4rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: var(--cream);
    z-index: 0;
}

.about-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
    position: relative; z-index: 1;
}

.about-image { position: relative; }

.about-image img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    box-shadow: 0 30px 60px rgba(48,47,47,0.12);
}

.about-image::after {
    content: '\201C';
    position: absolute;
    top: -2rem; right: -1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem; line-height: 1;
    color: var(--accent);
    opacity: 0.15;
    pointer-events: none;
}

.about-text .section-label { text-align: left; }

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem;
}

.about-text p {
    color: #6b6560; margin-bottom: 1.5rem; font-size: 1.05rem;
}

.about-pullquote {
    margin: 2.5rem 0;
    padding: 2rem 0 2rem 2rem;
    border-left: 3px solid var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--charcoal);
}

.headshot-crew {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--cream);
    box-shadow: var(--soft-shadow);
}

.headshot-crew-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.crew-badge {
    width: 70px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.headshot-crew-header h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--charcoal);
}

.headshot-crew p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.8;
}

.experience-badge {
    display: inline-flex; align-items: center; gap: 1rem;
    margin-top: 2rem; padding: 1.5rem 2rem;
    background: var(--cream); box-shadow: var(--soft-shadow);
}

.experience-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 500;
    color: var(--accent-dark); line-height: 1;
}

.experience-text {
    font-size: 0.85rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--charcoal);
}

/* ══════════════════════════════════════
   CLIENTS
   ══════════════════════════════════════ */
.clients {
    padding: 5rem 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.clients .section-header { padding: 0 4rem; margin-bottom: 3rem; }
.clients .section-label { color: var(--accent); }
.clients .section-header h2 { color: var(--white); }

.clients-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.clients-track:hover { animation-play-state: paused; }

.client-logo-item {
    flex: 0 0 auto;
    padding: 0 3rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo-item:hover { opacity: 1; }
.logo-svg { height: 60px; width: auto; }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq {
    padding: 6rem 4rem;
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(48, 47, 47, 0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(48, 47, 47, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    gap: 2rem;
}

.faq-question span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: var(--accent-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
}

.faq-icon::before {
    width: 16px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.faq-answer a {
    color: var(--accent-dark);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--accent);
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-left {
    background: var(--charcoal);
    color: var(--white);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-left > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    max-width: 400px;
}

.contact-details { list-style: none; }

.contact-details li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 1.5rem; align-items: baseline;
}

.contact-details li:last-child { border-bottom: none; }

.contact-details .label {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); min-width: 70px;
}

.contact-details a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover { color: var(--accent); }
.contact-details span:not(.label) { color: rgba(255,255,255,0.8); }

.contact-right {
    background: var(--cream);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; max-width: 480px; }

.contact-form input,
.contact-form textarea {
    width: 100%; padding: 1.2rem 0;
    border: none; border-bottom: 1px solid rgba(48,47,47,0.15);
    background: transparent;
    font-family: 'Nunito Sans', sans-serif; font-size: 1rem;
    color: var(--charcoal);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none; border-bottom-color: var(--accent-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b0a9a2; }

.contact-form textarea { resize: none; min-height: 120px; }

.submit-button {
    align-self: flex-start; padding: 1.2rem 3rem;
    background: var(--charcoal); color: var(--white); border: none;
    font-family: 'Nunito Sans', sans-serif; font-size: 0.85rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s ease;
}

.submit-button:hover {
    background: var(--accent-dark); transform: translateY(-2px);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
    padding: 3rem 4rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500;
    color: var(--white); letter-spacing: 0.1em;
}

.footer-center {
    display: flex; gap: 2.5rem; list-style: none;
}

.footer-center a {
    color: rgba(255,255,255,0.5); text-decoration: none;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   HAMBURGER MENU
   ══════════════════════════════════════ */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .hamburger { display: block; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 2rem;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 0.2em;
    }
    .nav-links .nav-cta {
        margin-top: 1rem;
        padding: 1rem 2.5rem;
    }
    .hero-content h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
    .hero-content, .services, .process { padding: 4rem 2rem; }
    .about { padding: 4rem 2rem; }
    .about::before { display: none; }
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-width: 400px; margin: 0 auto; }
    .gallery-row.row-3, .gallery-row.row-4 { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { columns: 3; }
    .masonry-5col { columns: 3; }
    .corp-row { grid-template-columns: 1fr; }
    .corp-row.flip .corp-row-grid { order: 0; }
    .corp-row.flip .corp-row-text { order: 0; }
    .corp-row-text { padding: 3rem 2rem; }
    .corp-photo .section-header h2 { white-space: normal; }
    .services .section-header h2 { white-space: normal; }
    .contact { grid-template-columns: 1fr; }
    .contact-left, .contact-right { padding: 4rem 2rem; }
    .faq { padding: 4rem 2rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .process-steps { flex-direction: column; align-items: center; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .hero { height: 70vh; }
    .hero-content { padding: 3rem 1.5rem; }
    .hero-tagline { font-size: 0.95rem; }
    .cta-button { padding: 1rem 2rem; font-size: 0.8rem; }
    .section-header { margin-bottom: 3rem; }
    .section-header h2 { font-size: clamp(2rem, 6vw, 2.5rem); }
}

@media (max-width: 600px) {
    .gallery-row.row-3, .gallery-row.row-4 { grid-template-columns: 1fr; }
    .masonry-grid { columns: 2; }
    .masonry-5col { columns: 2; }
    .lightbox-nav { display: none; }
    .hero { height: 60vh; }
    .hero-content h1 { font-size: 2rem; }
    .hero-tagline { font-size: 0.85rem; padding: 0 1rem; }
    nav { padding: 0.8rem 1rem; }
    .logo { font-size: 1.3rem; }
    .stats-bar { flex-direction: column; gap: 2rem; padding: 3rem 1.5rem; }
    .stat { min-width: auto; }
}

/* ══════════════════════════════════════
   TESTIMONIALS — CINEMATIC FULL-BLEED
   ══════════════════════════════════════ */
.testimonials {
    position: relative;
    min-height: 100vh;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Giant decorative quote mark */
.testimonials::before {
    content: '\201C';
    position: absolute;
    top: -0.15em;
    left: -0.02em;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30rem, 50vw, 60rem);
    color: rgba(204, 159, 83, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.cinema-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    padding: 6rem 4rem;
}

/* Rating strip at top */
.cinema-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.cinema-rating .big-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.cinema-rating .divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.12);
}

.cinema-rating .meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cinema-rating .stars-row {
    display: flex;
    gap: 0.2rem;
}

.cinema-rating .stars-row svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.cinema-rating .count {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* The quote itself — hero-sized */
.cinema-slides {
    position: relative;
    min-height: 300px;
}

.cinema-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.cinema-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.cinema-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 900px;
}

.cinema-quote span.highlight {
    color: var(--accent);
    font-style: normal;
    font-weight: 400;
}

/* Reviewer avatar */
.cinema-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(204, 159, 83, 0.4);
    flex-shrink: 0;
}

/* Attribution line */
.cinema-attribution {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cinema-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.cinema-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cinema-source {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    margin-left: 1rem;
}

/* Progress bar nav at bottom */
.cinema-nav {
    display: flex;
    gap: 0.5rem;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.cinema-bar {
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cinema-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.cinema-bar.active::after {
    width: 100%;
    animation: progressFill 6s linear forwards;
}

.cinema-bar.done::after {
    width: 100%;
}

.cinema-bar:hover {
    background: rgba(255,255,255,0.2);
}

/* CTA */
.cinema-cta {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    z-index: 2;
}

.cinema-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cinema-cta a:hover {
    color: var(--white);
}

.cinema-cta a svg {
    transition: transform 0.3s ease;
}

.cinema-cta a:hover svg {
    transform: translateX(4px);
}

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

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

/* Testimonials responsive */
@media (max-width: 768px) {
    .cinema-content { padding: 4rem 2rem; }
    .cinema-cta { position: static; margin-top: 3rem; }
}
