/* ==========================================================================
   WORK.PHOTOGRAPHY — Comprehensive Design System
   ========================================================================== */

:root {
    --black: #0f0f0f;
    --black-soft: #1a1a1a;
    --rose: #ff6b9d;
    --rose-soft: #ff87af;
    --soft-pink: #ffb3c9;
    --cream: #faf8f5;
    --cream-dark: #f0ede8;
    --gray-600: #555;
    --gray-400: #888;
    --gray-200: #ccc;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   Film Grain Overlay
   ========================================================================== */

.grain-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
}

.grain-overlay::before {
    content: '';
    position: absolute;
    top: -200%; left: -200%;
    width: 400%; height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 0.5s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--rose); }

p { font-size: 1rem; line-height: 1.7; color: var(--gray-600); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--cream), transparent);
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo span { color: var(--rose); }

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--rose); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: var(--black);
    color: var(--cream);
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--rose);
    color: var(--black);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-menu-btn span {
    width: 24px; height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    display: inline-block;
    background: var(--rose);
    color: var(--black);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--black);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--black);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--cream);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--black);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--rose);
    border-color: var(--rose);
}

/* ==========================================================================
   Layout
   ========================================================================== */

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

section { padding: 6rem 4rem; }

/* ==========================================================================
   Hero Section with Photo Stack
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--rose);
}

.hero h1 { margin-bottom: 2rem; }

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-600);
    max-width: 420px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-deco {
    position: absolute;
    bottom: 4rem; left: 4rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Photo Stack */
.photo-stack {
    position: relative;
    width: 380px;
    height: 480px;
    perspective: 1000px;
}

.photo-card {
    position: absolute;
    width: 300px;
    height: 360px;
    background: white;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: all 0.6s var(--ease-out);
    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.photo-card:hover img { filter: grayscale(0%); }

.photo-caption {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.photo-card:nth-child(1) {
    top: 60px; left: 80px;
    transform: rotate(-6deg);
    z-index: 3;
    animation: floatCard1 6s ease-in-out infinite;
}

.photo-card:nth-child(2) {
    top: 30px; left: 40px;
    transform: rotate(4deg);
    z-index: 2;
    animation: floatCard2 7s ease-in-out infinite;
}

.photo-card:nth-child(3) {
    top: 90px; left: 0;
    transform: rotate(-2deg);
    z-index: 1;
    animation: floatCard3 8s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-15px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(4deg) translateY(-10px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}

.photo-stack:hover .photo-card:nth-child(1) {
    transform: rotate(-12deg) translateX(-30px) translateY(-20px);
}

.photo-stack:hover .photo-card:nth-child(2) {
    transform: rotate(8deg) translateX(30px);
}

.photo-stack:hover .photo-card:nth-child(3) {
    transform: rotate(2deg) translateY(30px);
}

/* ==========================================================================
   Page Hero (for subpages)
   ========================================================================== */

.page-hero {
    padding: 10rem 4rem 5rem;
    max-width: 800px;
}

.page-hero .hero-eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.15rem; max-width: 600px; }

/* ==========================================================================
   Flow Steps
   ========================================================================== */

.flow-section {
    padding: 4rem 4rem 6rem;
    background: var(--cream);
}

.flow-steps {
    display: flex;
    justify-content: center;
    gap: 0;
}

.flow-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.flow-step::after {
    content: '';
    position: absolute;
    top: 50%; right: -10%;
    width: 20%; height: 1px;
    background: var(--gray-200);
}

.flow-step:last-child::after { display: none; }

.flow-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black);
    border-radius: 50%;
}

.flow-icon svg {
    width: 32px; height: 32px;
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
}

.flow-step h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.flow-step p { font-size: 0.95rem; }

/* ==========================================================================
   Audience Split
   ========================================================================== */

.audiences {
    padding: 6rem 4rem;
    background: var(--cream);
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro p {
    max-width: 500px;
    margin: 1rem auto 0;
}

.audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--cream-dark);
}

.audience-card {
    background: white;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.5s var(--ease-out);
    display: block;
}

.audience-card:hover {
    background: var(--black);
    color: var(--cream);
}

.audience-card:hover p { color: rgba(250, 248, 245, 0.7); }
.audience-card:hover .card-link { color: var(--rose); }

.audience-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon svg {
    width: 48px; height: 48px;
    stroke: currentColor;
    stroke-width: 1;
    fill: none;
}

.audience-card h3 { margin-bottom: 1rem; }

.audience-card p {
    margin-bottom: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--rose);
    transition: color 0.3s ease;
}

/* ==========================================================================
   Portfolio Grid
   ========================================================================== */

.portfolio-preview {
    padding: 6rem 4rem;
    background: var(--cream);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-header p {
    font-size: 1.1rem;
    color: #666;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    filter: grayscale(30%);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-info {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-info h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.portfolio-info span {
    font-size: 0.8rem;
    color: var(--soft-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust-section {
    padding: 6rem 4rem;
    background: var(--black);
    color: var(--cream);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.trust-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 1rem;
}

.trust-item h4 {
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.6);
}

/* ==========================================================================
   Heritage Section (About Page)
   ========================================================================== */

.heritage {
    background: var(--black);
    padding: 0;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.heritage-visual {
    position: relative;
}

.heritage-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.8;
}

.heritage-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, transparent 60%);
    mix-blend-mode: color;
}

.heritage-text {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--cream);
}

.heritage-text h2 {
    margin-bottom: 2rem;
}

.heritage-text p {
    font-size: 1.05rem;
    color: rgba(250, 248, 245, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.heritage-quote {
    border-left: 2px solid var(--rose);
    padding-left: 1.5rem;
    margin-top: 2rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--soft-pink);
}

/* ==========================================================================
   Features Grid (Dark Section)
   ========================================================================== */

.features-section {
    background: var(--black);
    color: var(--cream);
    padding: 6rem 4rem;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    position: relative;
}

.features-header h2 { max-width: 600px; }

.section-number {
    font-family: var(--serif);
    font-size: 8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    position: absolute;
    right: 0; top: -2rem;
}

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

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-number {
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--rose);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.7;
}

.feature-line {
    width: 40px; height: 1px;
    background: var(--rose);
    margin-top: 2rem;
}

/* ==========================================================================
   Content Grid (Two Column)
   ========================================================================== */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 6rem 4rem;
}

.content-grid.reversed .content-text { order: 2; }
.content-grid.reversed .content-visual { order: 1; }

.content-text h2 { margin-bottom: 1.5rem; }
.content-text p { margin-bottom: 1.5rem; }

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.benefit-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.6em;
    width: 8px; height: 1px;
    background: var(--rose);
}

/* Polaroid Frame */
.polaroid-frame {
    background: white;
    padding: 15px 15px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    max-width: 400px;
}

.polaroid-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(15%);
}

.polaroid-caption {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--cream-dark);
    transition: all 0.5s var(--ease-out);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.75rem; }

.card-line {
    width: 40px; height: 1px;
    background: var(--rose);
    margin-top: 1.5rem;
}

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

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

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
    background: linear-gradient(135deg, var(--rose) 0%, var(--soft-pink) 100%);
    padding: 6rem 4rem;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.cta .btn-primary {
    background: var(--black);
    color: var(--cream);
}

.cta .btn-primary:hover {
    background: var(--cream);
    color: var(--black);
}

.cta .btn-secondary {
    border-color: var(--black);
    color: var(--black);
}

.cta .btn-secondary:hover {
    background: var(--black);
    color: var(--cream);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--black);
    color: var(--cream);
    padding: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h5 {
    font-family: var(--serif);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--rose); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.5);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(250, 248, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.footer-social svg {
    width: 18px; height: 18px;
    fill: var(--cream);
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Chat Widget
   ========================================================================== */

.chat-widget {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 9000;
    font-family: var(--sans);
}

.chat-toggle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--cream);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s var(--ease-out);
}

.chat-toggle:hover {
    background: var(--rose);
    transform: scale(1.05);
}

.chat-toggle svg {
    width: 24px; height: 24px;
    transition: transform 0.3s ease;
}

.chat-toggle[aria-expanded="true"] svg { transform: rotate(45deg); }
.chat-toggle .icon-close { display: none; }
.chat-toggle[aria-expanded="true"] .icon-chat { display: none; }
.chat-toggle[aria-expanded="true"] .icon-close { display: block; }

.chat-window {
    position: absolute;
    bottom: 70px; right: 0;
    width: 360px;
    max-height: 500px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s var(--ease-out);
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 1rem 1.25rem;
    background: var(--black);
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-icon svg {
    width: 18px; height: 18px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
}

.chat-header-text h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.chat-header-text span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
}

.chat-message {
    max-width: 85%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: messageIn 0.3s ease forwards;
}

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

.chat-message.bot {
    align-self: flex-start;
    background: var(--cream);
    border-radius: 2px 12px 12px 12px;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--black);
    color: var(--cream);
    border-radius: 12px 2px 12px 12px;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.chat-options-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.chat-option {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--cream);
    border: 1px solid transparent;
    font-size: 0.85rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
}

.chat-option:hover {
    background: var(--black);
    color: var(--cream);
}

.chat-option svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    opacity: 0.5;
}

.chat-option:hover svg { opacity: 1; }
.chat-option.link { border-left: 2px solid var(--rose); }

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: 2px 12px 12px 12px;
    align-self: flex-start;
}

.typing-indicator span {
    width: 6px; height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .nav { padding: 1rem 2rem; }
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    
    section, .container { padding-left: 2rem; padding-right: 2rem; }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 7rem 2rem 4rem;
    }
    
    .hero-content { padding-right: 0; }
    
    .photo-stack {
        width: 320px;
        height: 420px;
        margin: 0 auto;
    }
    
    .photo-card {
        width: 260px;
        height: 320px;
    }
    
    .photo-card img { height: 240px; }
    
    .audience-split,
    .content-grid,
    .heritage-content,
    .cards-grid { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr 1fr; }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .portfolio-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding-top: 6rem; }
    
    .photo-stack { width: 280px; height: 380px; }
    .photo-card { width: 220px; height: 280px; }
    .photo-card img { height: 200px; }
    
    .flow-steps { flex-direction: column; align-items: center; }
    .flow-step::after { display: none; }
    
    .features-grid,
    .cards-grid,
    .cards-grid-2 { grid-template-columns: 1fr; }
    
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item:nth-child(1) { grid-column: span 1; }
    
    .hero-buttons,
    .cta-buttons { flex-direction: column; align-items: stretch; }
    
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    .chat-window { width: calc(100vw - 2rem); max-width: 360px; }
}
/* ==========================================================================
   Monetization Page Specifics
   ========================================================================== */

.section-dark {
    background: var(--black);
    color: var(--cream);
    padding: 6rem 4rem;
}

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

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

.value-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--rose);
    border: 1px solid var(--rose);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
