/* ===== Brand Colors from Logo ===== */
:root {
    --burgundy: #4c131e;
    --burgundy-deep: #3a0d16;
    --burgundy-text: #660810;
    --burgundy-light: #7c2c2e;
    --cream: #ede7c7;
    --cream-light: #f4f0db;
    --cream-dark: #ddd8b8;
    --gold: #C4A265;
    --gold-muted: #bcbfa8;
    --white: #FEFCF5;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--burgundy);
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== Scroll Progress ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    z-index: 10002; width: 0%;
}

/* ===== Utility ===== */
.script-accent {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.5em;
    color: var(--burgundy-text);
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    padding: 0 0.1em;
}

.script-accent-gold {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.5em;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    padding: 0 0.1em;
    text-shadow: 0 0 30px rgba(196, 162, 101, 0.3);
}

.script-inline {
    font-family: 'Pinyon Script', cursive;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label.light-label { color: var(--gold); opacity: 0.6; }
.section-label.center-label { text-align: center; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--burgundy);
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--cream); }

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: var(--burgundy-light);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.divider { width: 50px; height: 1px; background: var(--burgundy); margin-bottom: 2rem; }
.divider.center-divider { margin-left: auto; margin-right: auto; }
.divider.gold { background: var(--gold); }

.body-text {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1.2rem;
    color: var(--burgundy);
    font-weight: 300;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(76, 19, 30, 0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 500;
    color: var(--cream); letter-spacing: 4px;
}

.nav-menu {
    list-style: none; display: flex; gap: 2.5rem; align-items: center;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 400;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--cream); transition: color 0.3s ease; position: relative;
}

.nav-menu a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }

.nav-cta {
    background: transparent !important; color: var(--cream) !important;
    padding: 0.5rem 1.6rem;
    border: 1px solid rgba(196, 162, 101, 0.5) !important;
    transition: all 0.4s ease !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--burgundy-deep) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--cream); transition: all 0.3s ease; }

/* ============================
   HERO - Editorial Split
   ============================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    background: var(--burgundy-deep);
}

.hero-left {
    position: relative;
    overflow: hidden;
}

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

.hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--burgundy-deep) 100%),
                linear-gradient(to top, var(--burgundy-deep) 0%, transparent 30%);
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.hero-right-inner { text-align: left; max-width: 400px; }

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-script {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.9;
    display: block;
    margin-bottom: -1rem;
    margin-left: 0.5rem;
    text-shadow: 0 0 25px rgba(196, 162, 101, 0.25);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 10px;
    line-height: 1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-line {
    width: 60px; height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--cream);
    opacity: 0.5;
    line-height: 2;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(196, 162, 101, 0.35);
    padding: 1rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    position: relative; overflow: hidden;
    animation: fadeInUp 1s ease 1s both;
}
.hero-btn::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--gold);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.hero-btn:hover::before { height: 100%; }
.hero-btn:hover { color: var(--burgundy-deep); border-color: var(--gold); }

/* Hero pills */
.hero-pills {
    position: absolute;
    bottom: 3rem; left: 0; right: 0;
    display: flex; justify-content: center; gap: 1rem;
    z-index: 5;
    animation: fadeInUp 1s ease 1.2s both;
}

.pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(237, 231, 199, 0.2);
    padding: 0.5rem 1.3rem;
    border-radius: 100px;
    transition: all 0.4s ease;
}

.pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(196, 162, 101, 0.08);
}

/* ============================
   ABOUT - Split Section
   ============================ */
.about {
    display: grid;
    grid-template-columns: 1fr;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-left {
    background: var(--cream-light);
    display: flex;
    align-items: center;
    padding: 6rem 5rem 6rem 4rem;
}

.about-left-content { max-width: 480px; margin-left: auto; }

.about-right {
    background: var(--burgundy-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.about-photo-frame {
    width: 320px;
    background: white;
    padding: 8px 8px 30px 8px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.3);
    transform: rotate(2deg);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.about-photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-photo-frame img {
    width: 100%;
}

/* Floating mini polaroid */
.about-polaroid-float {
    position: absolute;
    bottom: 2rem; left: -2rem;
    z-index: 3;
}

.polaroid-mini {
    width: 140px;
    background: white;
    padding: 5px 5px 20px 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transform: rotate(-8deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.polaroid-mini:hover {
    transform: rotate(-2deg) scale(1.05);
}

.polaroid-mini img { width: 100%; }

/* ============================
   BRAND - Cinematic
   ============================ */
.brand {
    padding: 10rem 0;
    background: var(--burgundy-deep);
    position: relative; overflow: hidden;
}

.brand-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(196, 162, 101, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(198, 167, 146, 0.03) 0%, transparent 50%);
}

.brand-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 860px; margin: 0 auto;
}

.brand-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; font-weight: 400;
    line-height: 1.35; color: var(--cream);
    margin-bottom: 2.5rem;
}

.brand-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 3.5rem;
}
.brand-divider span {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.brand-divider svg { color: var(--gold); opacity: 0.35; }

.brand-columns {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-bottom: 4rem; text-align: left;
}

.brand-col p {
    font-size: 1.1rem; line-height: 2;
    color: var(--cream); margin-bottom: 1.2rem;
    opacity: 0.7; font-weight: 300;
}
.brand-col em { color: var(--gold); font-style: italic; }

.brand-quote-block {
    padding: 2rem; max-width: 700px; margin: 0 auto;
}

.brand-quote-block blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-style: italic; font-weight: 400;
    color: var(--cream); line-height: 1.8; opacity: 0.8;
}

.brand-quote-block .script-accent-gold { font-size: 2rem; }

/* ============================
   SERVICES - Gallery Cards
   ============================ */
.services {
    padding: 10rem 0;
    background: var(--cream-light);
}

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

.service-card {
    background: var(--white);
    border: 1px solid rgba(76, 19, 30, 0.06);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 80px rgba(76, 19, 30, 0.1);
    border-color: rgba(196, 162, 101, 0.2);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(58, 13, 22, 0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 1.2rem;
}

.service-price-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(58, 13, 22, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(196, 162, 101, 0.2);
}

.popular-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--burgundy-deep);
    background: var(--gold);
    padding: 0.35rem 0.8rem;
    z-index: 2;
}

.service-info {
    padding: 2rem 1.8rem 2.2rem;
}

.service-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--burgundy); margin-bottom: 0.3rem;
}

.service-tagline {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.service-info > p {
    font-size: 0.95rem; line-height: 1.8;
    color: var(--burgundy-light); margin-bottom: 1.2rem;
    font-weight: 300;
}

.service-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}

.service-tags span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--burgundy-light);
    border: 1px solid rgba(76, 19, 30, 0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.service-tags span:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================
   PROCESS
   ============================ */
.process {
    padding: 10rem 0;
    background: var(--burgundy-deep);
    position: relative;
}

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

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(196, 162, 101, 0.08);
    transition: all 0.5s ease;
    position: relative;
}

.process-step:hover {
    border-color: rgba(196, 162, 101, 0.2);
    background: rgba(196, 162, 101, 0.02);
}

.step-number {
    font-family: 'Pinyon Script', cursive;
    font-size: 4.5rem;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(196, 162, 101, 0.3);
}

.process-step:hover .step-number { opacity: 1; }

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.step-content p {
    font-size: 1rem; line-height: 1.9;
    color: var(--cream); opacity: 0.55;
    font-weight: 300;
}

/* ============================
   PRICING
   ============================ */
.pricing {
    padding: 10rem 0;
    background: var(--cream-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 860px;
    margin-left: auto; margin-right: auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(76, 19, 30, 0.05);
    transition: all 0.5s ease;
}

.pricing-card:hover {
    border-color: rgba(196, 162, 101, 0.25);
    box-shadow: 0 12px 50px rgba(76, 19, 30, 0.05);
    transform: translateY(-2px);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-style: italic; font-weight: 400;
    color: var(--burgundy);
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(76, 19, 30, 0.06);
}

.pricing-items { display: flex; flex-direction: column; gap: 0.8rem; }

.pricing-item {
    display: flex; align-items: baseline;
    font-size: 1.05rem; color: var(--burgundy);
}

.pricing-item .dots {
    flex: 1;
    border-bottom: 1px dotted var(--cream-dark);
    margin: 0 0.8rem; min-width: 20px;
}

.pricing-item .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; font-size: 0.95rem;
    color: var(--burgundy-deep);
}

.pricing-card.addons h3 { color: var(--gold); }

.pricing-notes {
    max-width: 860px; margin: 2rem auto 0;
    text-align: center; font-size: 0.88rem;
    color: var(--burgundy-light);
    font-style: italic; line-height: 1.7; opacity: 0.6;
}

/* ============================
   GALLERY - Horizontal Scroll
   ============================ */
.gallery {
    background: var(--white);
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.gallery-marquee {
    overflow: hidden;
    margin-bottom: 2rem;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    animation: galleryScroll 40s linear infinite;
}

.gallery-track img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(76, 19, 30, 0.06);
    transition: all 0.4s ease;
}

.gallery-track img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(76, 19, 30, 0.1);
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 6 - 6rem)); }
}

.gallery-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.gallery-cta .script-accent {
    font-size: 2rem;
    color: var(--burgundy);
    opacity: 0.8;
}

.gallery-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--burgundy);
    transition: color 0.3s ease;
}

.gallery-link:hover { color: var(--gold); }

/* ============================
   CONTACT - Split
   ============================ */
.contact {
    display: grid;
}

.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 70vh;
}

.contact-left {
    background: var(--burgundy-deep);
    display: flex;
    align-items: center;
    padding: 6rem 5rem;
}

.contact-left-content { max-width: 500px; }

.contact-body {
    font-size: 1.1rem; line-height: 2;
    color: var(--cream); opacity: 0.65;
    margin-bottom: 2.5rem; font-weight: 300;
}

.contact-details {
    display: flex; flex-direction: column;
    gap: 1rem; margin-bottom: 2.5rem;
}

.contact-item {
    display: flex; align-items: center; gap: 1rem;
    color: var(--cream); font-size: 1rem; opacity: 0.6;
    transition: all 0.3s ease;
}
.contact-item:hover { opacity: 1; transform: translateX(5px); }
.contact-item svg { color: var(--gold); flex-shrink: 0; }

.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gold); color: var(--burgundy-deep);
    padding: 0.9rem 2rem;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    font-weight: 500;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 162, 101, 0.3);
}

.cta-btn-outline {
    background: transparent; color: var(--gold);
}
.cta-btn-outline:hover {
    background: var(--gold); color: var(--burgundy-deep);
}

.contact-right {
    background: var(--burgundy);
    display: flex; align-items: center; justify-content: center;
    padding: 4rem;
}

.contact-logo {
    max-width: 280px; opacity: 0.85;
    transition: opacity 0.4s ease;
}
.contact-logo:hover { opacity: 1; }

/* ============================
   FOOTER
   ============================ */
.footer {
    padding: 3rem 0;
    background: var(--burgundy-deep);
    border-top: 1px solid rgba(196, 162, 101, 0.06);
}

.footer-content { text-align: center; }
.footer-logo { margin-bottom: 0.5rem; }

.footer-script {
    font-family: 'Pinyon Script', cursive;
    font-size: 1.8rem; color: var(--gold);
    opacity: 0.8; display: block;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 400;
    color: var(--cream); letter-spacing: 6px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem; opacity: 0.5;
}

.footer-social {
    display: flex; gap: 1.5rem;
    justify-content: center; margin-bottom: 1.5rem;
}
.footer-social a {
    color: var(--cream); opacity: 0.35;
    transition: all 0.4s ease;
}
.footer-social a:hover { color: var(--gold); opacity: 1; transform: translateY(-2px); }

.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; color: var(--cream);
    opacity: 0.2; letter-spacing: 1px;
}

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

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0; transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        height: 60vh;
    }

    .hero-right {
        padding: 4rem 2rem 6rem;
    }

    .hero-title { font-size: 4rem; }
    .hero-pills { flex-wrap: wrap; padding: 0 1rem; bottom: 1.5rem; gap: 0.5rem; }
    .pill { font-size: 0.55rem; padding: 0.4rem 1rem; }

    .about-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-left { padding: 4rem 2rem; }
    .about-left-content { max-width: 100%; margin: 0; }

    .about-right { padding: 3rem 2rem; min-height: 50vh; }
    .about-polaroid-float { bottom: 1rem; left: 1rem; }

    .brand { padding: 6rem 0; }
    .brand-heading { font-size: 2.2rem; }
    .brand-columns { grid-template-columns: 1fr; gap: 1.5rem; }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto; margin-right: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto; margin-right: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-left { padding: 4rem 2rem; }
    .contact-right { display: none; }

    .section-title { font-size: 2.2rem; }

    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--burgundy-deep);
        flex-direction: column;
        padding: 5rem 2rem 2rem; gap: 1.5rem;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 50px rgba(0,0,0,0.4);
    }
    .nav-menu.active { right: 0; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3rem; letter-spacing: 5px; }
    .hero-script { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .brand-heading { font-size: 1.7rem; }
    .container { padding: 0 1.2rem; }
    .services, .process, .pricing { padding: 6rem 0; }
    .brand { padding: 5rem 0; }
    .cta-buttons { flex-direction: column; }
    .about-photo-frame { width: 250px; }
    .gallery-track img { width: 220px; height: 260px; }
}
