:root {
    --black: #0a0a0a;
    --charcoal: #151515;
    --dark-surface: #1a1a1a;
    --dark-card: #111111;
    --gold: #c9a84c;
    --gold-light: #e2ca7a;
    --gold-dark: #a68a3a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-muted: #8a8a8a;
    --text-body: #b0b0b0;
    --navy: #0d1b2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
::selection { background: var(--gold); color: var(--black); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; background: var(--black); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); letter-spacing: 0.3em; animation: pulse 1.2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: none; }

/* HEADER */
header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(201,168,76,0.08); padding: 18px 0; transition: padding 0.3s ease, background 0.3s ease; }
header.scrolled { padding: 12px 0; background: rgba(10,10,10,0.96); border-bottom: 1px solid rgba(201,168,76,0.15); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.12em; color: var(--gold); }
.logo span { color: var(--white); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--black) !important; padding: 10px 24px !important; font-weight: 700 !important; letter-spacing: 0.08em; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--gold-light); color: var(--black) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.nav-cta::after { display: none !important; }
.nav-phone { display: flex; align-items: center; gap: 6px; color: var(--gold) !important; font-size: 0.82rem !important; letter-spacing: 0.05em !important; }
.nav-phone i { font-size: 0.75rem; }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--black); }
.hero-bg-img { position: absolute; left: 0; top: 80px; width: 100%; height: calc(100% - 80px); object-fit: cover; object-position: center top; display: block; z-index: 0; filter: grayscale(15%) contrast(1.05); }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.0) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.80) 58%, rgba(10,10,10,0.97) 100%); z-index: 1; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--black), transparent); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; padding: 130px 0 100px; } .hero-grid--fullbleed { grid-template-columns: 1fr 1fr; } .hero-grid--fullbleed .hero-text-col { grid-column: 2; } .hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-image-col { position: relative; display: flex; justify-content: center; align-items: flex-end; order: -1; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 420px; }
.hero-image-frame { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid rgba(201,168,76,0.15); }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; filter: grayscale(15%) contrast(1.05); transition: filter 0.5s ease, transform 0.5s ease; }
.hero-image-frame:hover img { filter: grayscale(0%) contrast(1.08); transform: scale(1.02); }
.hero-image-frame::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(10,10,10,0.7), transparent); pointer-events: none; }
.hero-image-wrapper::before { content: ''; position: absolute; top: -8px; left: -8px; width: 60px; height: 60px; border-top: 2.5px solid var(--gold); border-left: 2.5px solid var(--gold); z-index: 2; }
.hero-image-wrapper::after { content: ''; position: absolute; bottom: -8px; right: -8px; width: 60px; height: 60px; border-bottom: 2.5px solid var(--gold); border-right: 2.5px solid var(--gold); z-index: 2; }
.hero-image-badge { position: absolute; bottom: 24px; left: -20px; background: var(--gold); color: var(--black); padding: 14px 28px; z-index: 5; box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.hero-image-badge h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.15em; line-height: 1; margin-bottom: 2px; }
.hero-image-badge span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em; opacity: 0.75; }
.hero-image-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 110%; height: 110%; background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%); pointer-events: none; z-index: -1; }
.hero-placeholder-img { width: 100%; height: 100%; background: linear-gradient(160deg, var(--charcoal) 0%, rgba(201,168,76,0.08) 50%, var(--charcoal) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.hero-placeholder-img .placeholder-initials { font-family: 'Playfair Display', serif; font-size: 7rem; font-weight: 900; color: rgba(201,168,76,0.12); line-height: 1; }
.hero-placeholder-img .placeholder-label { font-family: 'Bebas Neue', sans-serif; font-size: 0.8rem; letter-spacing: 0.3em; color: rgba(201,168,76,0.25); }
.hero-text-col { position: relative; }
.hero-label { font-family: 'Bebas Neue', sans-serif; color: var(--gold); letter-spacing: 0.35em; font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-label::before { content: ''; width: 40px; height: 1.5px; background: var(--gold); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 3.2vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; color: var(--white); white-space: normal; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 1.05rem; color: var(--text-body); margin-bottom: 16px; max-width: 500px; line-height: 1.8; }
.hero-roles { display: flex; flex-wrap: nowrap; gap: 10px; margin-bottom: 32px; }
.hero-role { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: var(--gold-light); padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; }
.hero-quote-inline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: rgba(245,240,232,0.6); line-height: 1.7; margin-bottom: 32px; padding-left: 20px; border-left: 2px solid rgba(201,168,76,0.3); max-width: 460px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: nowrap; align-items: center; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--black); padding: 16px 36px; text-decoration: none; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; white-space: nowrap; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: opacity 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); padding: 15px 36px; text-decoration: none; font-weight: 500; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.2); transition: all 0.3s ease; white-space: nowrap; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

html, body { overflow-x: hidden; }

/* STATS */
.stats-banner { background: var(--charcoal); border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); padding: 90px 0; position: relative; z-index: 3; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* SECTION SHARED */
.section-eyebrow { font-family: 'Bebas Neue', sans-serif; color: var(--gold); letter-spacing: 0.35em; font-size: 0.85rem; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 2rem; color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }

/* ABOUT */
.about { padding: 120px 0; background: var(--black); position: relative; }
.about::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(ellipse at right center, rgba(201,168,76,0.03), transparent 60%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text p { color: var(--text-body); font-size: 1.05rem; margin-bottom: 1.3rem; line-height: 1.85; }
.credentials { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 14px; }
.credential-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 22px; background: var(--charcoal); border-left: 3px solid var(--gold); transition: transform 0.3s ease, background 0.3s ease; }
.credential-item:hover { transform: translateX(6px); background: rgba(201,168,76,0.06); }
.credential-item i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.credential-item span { color: var(--text-body); font-size: 0.95rem; line-height: 1.5; }
.credential-item strong { color: var(--white); }
.about-visual { position: relative; }
.about-image-block { background: var(--black); height: 500px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: none; }
.about-image-block::before { content: 'MD'; font-family: 'Bebas Neue', sans-serif; font-size: 12rem; color: rgba(201,168,76,0.05); position: absolute; }
.about-image-block::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--black) 0%, transparent 15%, transparent 70%, var(--black) 100%), linear-gradient(to right, transparent 70%, var(--black) 100%), linear-gradient(to left, transparent 70%, var(--black) 100%); pointer-events: none; z-index: 2; }
.about-image-block img { position: relative; z-index: 1; }
.about-companies { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.company-badge { background: var(--charcoal); border: 1px solid rgba(201,168,76,0.1); padding: 20px; text-align: center; transition: border-color 0.3s ease; }
.company-badge:hover { border-color: var(--gold); }
.company-badge h4 { font-family: 'Bebas Neue', sans-serif; color: var(--gold); letter-spacing: 0.15em; font-size: 1rem; margin-bottom: 4px; }
.company-badge p { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* BOOK */
.book-section { padding: 120px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.book-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(201,168,76,0.05), transparent 70%); }
.book-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.book-image-wrapper { position: relative; display: flex; justify-content: center; }
.book-image-wrapper img { max-width: 520px; width: 100%; box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1); transition: transform 0.5s ease; }
.book-image-wrapper:hover img { transform: translateY(-8px) rotate(-1deg); }
.book-image-wrapper::after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 70%; height: 40px; background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 70%); filter: blur(15px); }
.bestseller-badge { position: absolute; top: -12px; right: 20px; background: var(--gold); color: var(--black); font-family: 'Bebas Neue', sans-serif; font-size: 0.78rem; letter-spacing: 0.15em; padding: 8px 18px; z-index: 3; }
.book-content h3 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.book-content h3 em { color: var(--gold); font-style: italic; }
.book-subtitle { color: var(--gold); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.book-desc { color: var(--text-body); font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px; }
.book-highlights { list-style: none; margin-bottom: 36px; }
.book-highlights li { padding: 10px 0; color: var(--text-body); font-size: 0.95rem; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.book-highlights li i { color: var(--gold); font-size: 0.7rem; }
.book-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* EXPERTISE */
.expertise { padding: 120px 0; background: var(--black); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.expertise-card { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.04); padding: 44px 32px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.expertise-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card:hover { border-color: rgba(201,168,76,0.15); transform: translateY(-4px); background: rgba(201,168,76,0.03); }
.expertise-icon { font-size: 1.8rem; margin-bottom: 20px; display: block; }
.expertise-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; color: var(--white); }
.expertise-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* SIGNATURE TALKS */
.signature-talks { padding: 120px 0 60px; background: var(--charcoal); position: relative; }
.signature-talks::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 50% 20%, rgba(201,168,76,0.03), transparent); }
.talks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; position: relative; z-index: 2; }
.talk-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.04); padding: 40px 36px; position: relative; overflow: hidden; transition: all 0.4s ease; }
.talk-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease; }
.talk-card:hover::before { transform: scaleY(1); }
.talk-card:hover { border-color: rgba(201,168,76,0.12); transform: translateY(-3px); }
.talk-duration { font-family: 'Bebas Neue', sans-serif; color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 12px; display: inline-block; background: rgba(201,168,76,0.08); padding: 4px 14px; }
.talk-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.talk-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.talk-ideal { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.talk-ideal i { color: var(--gold); font-size: 0.65rem; }
.talks-note { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 0.9rem; font-style: italic; position: relative; z-index: 2; }
.talks-note a { color: var(--gold); text-decoration: none; }

/* VIDEO REEL */


.video-reel { padding: 60px 0 120px; background: var(--charcoal); position: relative; }
.video-reel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,168,76,0.03), transparent); }
.video-wrapper { max-width: 900px; margin: 60px auto 0; position: relative; z-index: 2; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--dark-card); border: 1px solid rgba(201,168,76,0.12); overflow: hidden; cursor: pointer; transition: border-color 0.4s ease; }
.video-frame:hover { border-color: rgba(201,168,76,0.3); }
.video-frame:hover .play-circle { transform: translate(-50%, -50%) scale(1.1); background: var(--gold); }
.video-frame:hover .play-circle i { color: var(--black); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(201,168,76,0.08) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.play-circle { width: 80px; height: 80px; border: 2px solid rgba(201,168,76,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.4s ease; background: rgba(201,168,76,0.1); }
.play-circle i { color: var(--gold); font-size: 1.6rem; margin-left: 4px; transition: color 0.3s; }
.video-label { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; }
.video-label p { color: var(--cream); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; margin-bottom: 4px; }
.video-label span { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.video-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.video-feature { text-align: center; padding: 28px 20px; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.04); transition: border-color 0.3s ease; }
.video-feature:hover { border-color: rgba(201,168,76,0.15); }
.video-feature i { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; display: block; }
.video-feature h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.video-feature p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* GALLERY */
.google-reviews-cta { padding: 60px 0 80px; background: var(--black); }
.reviews-inner { background: var(--charcoal); border-radius: 24px; padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
.reviews-inner::after { content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); pointer-events: none; }
.reviews-badge { display: inline-block; border: 1px solid rgba(201,168,76,0.5); color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.reviews-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 14px; }
.reviews-title em { font-style: italic; color: var(--gold); }
.reviews-subtitle { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 400px; }
.reviews-rating { display: flex; align-items: center; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.g-logo { background: #fff; border-radius: 6px; padding: 5px 8px; font-size: 13px; font-weight: 700; }
.g-logo span:nth-child(1) { color: #4285f4; } .g-logo span:nth-child(2) { color: #ea4335; } .g-logo span:nth-child(3) { color: #fbbc04; } .g-logo span:nth-child(4) { color: #4285f4; } .g-logo span:nth-child(5) { color: #34a853; } .g-logo span:nth-child(6) { color: #ea4335; }
.rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-score { color: var(--cream); font-size: 14px; }
.reviews-actions { display: flex; flex-direction: column; align-items: stretch; gap: 16px; flex-shrink: 0; min-width: 220px; }
.btn-review-gold { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 50px; background: var(--gold); color: var(--black); font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.25s ease; white-space: nowrap; }
.btn-review-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-review-outline { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 50px; background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.25); font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.25s ease; white-space: nowrap; }
.btn-review-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.reviews-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 4px; }
.speaking-gallery { padding: 120px 0; background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 8px; margin-top: 60px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--charcoal), rgba(201,168,76,0.05)); border: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; cursor: pointer; }
.gallery-item:hover { border-color: rgba(201,168,76,0.35); }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 1.8rem; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--cream); font-size: 0.78rem; padding: 20px 12px 10px; letter-spacing: 0.05em; }
.gallery-placeholder { width: 100%; height: 100%; min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.gallery-placeholder i { color: rgba(201,168,76,0.2); font-size: 2rem; }
.gallery-placeholder span { color: rgba(201,168,76,0.3); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Bebas Neue', sans-serif; }
.gallery-item.featured .gallery-placeholder { min-height: 360px; }
.gallery-item.featured .gallery-placeholder i { font-size: 3.5rem; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9998; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-inner img { max-width: 88vw; max-height: 85vh; object-fit: contain; display: block; border: 1px solid rgba(201,168,76,0.15); }
.lightbox-close { position: fixed; top: 24px; right: 28px; background: none; border: none; color: var(--gold); font-size: 1.6rem; cursor: pointer; z-index: 9999; transition: color 0.3s; }
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 1.2rem; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; z-index: 9999; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--black); }
.lightbox-caption { position: absolute; bottom: -36px; left: 0; right: 0; text-align: center; color: var(--text-muted); font-size: 0.82rem; letter-spacing: 0.05em; }

/* SERVICES */
.services { padding: 120px 0; background: var(--charcoal); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.04); padding: 48px 32px; position: relative; transition: all 0.4s ease; }
.service-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.service-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: rgba(201,168,76,0.1); position: absolute; top: 20px; right: 24px; line-height: 1; }
.service-icon-wrap { margin-bottom: 16px; color: var(--gold); font-size: 1.6rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 14px; color: var(--white); }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li { padding: 6px 0; color: var(--text-body); font-size: 0.88rem; display: flex; align-items: center; gap: 10px; }
.service-features li::before { content: '—'; color: var(--gold); font-weight: 700; }

/* HOW IT WORKS */
.how-it-works { padding: 120px 0 60px; background: var(--black); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(201,168,76,0.15); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-step.reveal:nth-child(1) { transition-delay: 0s; }
.process-step.reveal:nth-child(2) { transition-delay: 0.25s; }
.process-step.reveal:nth-child(3) { transition-delay: 0.5s; }
.process-step.reveal:nth-child(4) { transition-delay: 0.75s; }
.step-number { width: 80px; height: 80px; border: 2px solid rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; background: var(--black); position: relative; transition: all 0.4s ease; }
.step-number span { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); letter-spacing: 0.05em; transition: color 0.4s ease; }
.process-step:hover .step-number { background: var(--gold); border-color: var(--gold); }
.process-step:hover .step-number span { color: var(--black); }
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { padding: 120px 0 60px; background: var(--black); position: relative; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(201,168,76,0.03), transparent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; position: relative; z-index: 2; }
.testimonial-card { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.04); padding: 40px 32px; transition: all 0.4s ease; display: flex; flex-direction: column; }
.testimonial-card:hover { border-color: rgba(201,168,76,0.15); }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; line-height: 1.8; color: var(--cream); flex-grow: 1; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.author-avatar { width: 48px; height: 48px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.author-avatar-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(201,168,76,0.2); flex-shrink: 0; }
.author-info h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.author-info p { color: var(--text-muted); font-size: 0.8rem; }

/* ENGAGEMENTS */
.engagements { padding: 100px 0; background: var(--charcoal); border-top: 1px solid rgba(201,168,76,0.08); border-bottom: 1px solid rgba(201,168,76,0.08); }
.engagement-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 50px; margin-top: 60px; }
.engagement-item { text-align: center; opacity: 0.4; transition: opacity 0.3s ease; min-width: 140px; }
.engagement-item:hover { opacity: 0.9; }
.engagement-item i { font-size: 2.5rem; color: var(--white); display: block; margin-bottom: 10px; }
.engagement-item span { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; }

/* MEDIA */
.media-section { padding: 100px 0; background: var(--black); }
.media-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 50px; margin-top: 60px; }
.media-logo-item { text-align: center; opacity: 0.35; transition: opacity 0.3s ease; min-width: 120px; }
.media-logo-item:hover { opacity: 0.8; }
.media-logo-item i { font-size: 2.2rem; color: var(--white); display: block; margin-bottom: 10px; }
.media-logo-item span { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }

/* FAQ */
.faq { padding: 120px 0; background: var(--black); }
.faq-container { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question { padding: 24px 0; cursor: pointer; font-weight: 500; font-size: 1.05rem; color: var(--white); display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); transition: transform 0.3s; font-size: 0.8rem; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* BOOKING */
.booking { padding: 120px 0; background: var(--charcoal); position: relative; }
.booking::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.72); z-index: 1; pointer-events: none; }
.booking .container { position: relative; z-index: 2; }
.booking::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.04), transparent); }
.booking-inner { max-width: 700px; margin: 60px auto 0; position: relative; z-index: 2; }
.booking-form { background: var(--dark-card); border: 1px solid rgba(201,168,76,0.1); padding: 56px 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.08); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--charcoal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.terms-group { margin-bottom: 28px; }
.terms-checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.terms-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.terms-checkbox-label span { color: var(--text-body); font-size: 0.9rem; line-height: 1.5; text-transform: none; letter-spacing: 0; }
.terms-checkbox-label a { color: var(--gold); text-decoration: underline; }
.terms-error { color: #e05252; font-size: 0.82rem; margin-top: 6px; }
.field-error-msg { color: #ff6b6b; font-size: 0.78rem; margin-top: 4px; display: block; }
.field-error { border-color: #ff6b6b !important; }
.submit-button { width: 100%; background: var(--gold); color: var(--black); padding: 18px; border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; }
.submit-button:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.25); }
.success-message { background: rgba(201,168,76,0.1); border: 1px solid var(--gold); color: var(--gold); padding: 18px; margin-bottom: 24px; display: none; text-align: center; }

/* CTA BANNER */
.cta-banner { padding: 100px 0; background: var(--black); position: relative; overflow: hidden; text-align: center; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.06), transparent 60%), linear-gradient(135deg, rgba(201,168,76,0.02) 0%, transparent 50%); }
.cta-banner-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--white); }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { color: var(--text-body); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }
.cta-banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner-divider { width: 60px; height: 1.5px; background: var(--gold); margin: 0 auto 30px; opacity: 0.5; }

/* FOOTER */
footer { background: var(--charcoal); border-top: 1px solid rgba(201,168,76,0.08); padding: 80px 0 0; }
.footer-main { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; align-items: start; }
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 16px; display: inline-block; }
.footer-brand > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-contact-block { margin-bottom: 24px; }
.footer-heading { font-family: 'Bebas Neue', sans-serif; color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-brand .social-links { justify-content: flex-start; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 0.7rem; color: var(--gold); opacity: 0.5; }
.footer-affiliate p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input { flex: 1; padding: 13px 16px; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.08); border-right: none; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button { background: var(--gold); color: var(--black); border: none; padding: 13px 20px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-mid { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 24px 0; display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.05em; }
.footer-trust-item i { color: var(--gold); font-size: 0.9rem; }
.footer-bottom { padding: 24px 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; text-align: center; border-top: 1px solid rgba(201,168,76,0.08); }
.footer-bottom p { color: rgba(138,138,138,0.6); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(138,138,138,0.6); text-decoration: none; font-size: 0.78rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--text-muted); text-decoration: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; transition: all 0.3s; }
.social-links a:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 32px; left: 32px; width: 48px; height: 48px; background: var(--gold); color: var(--black); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s ease; box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; width: 56px; height: 56px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; z-index: 900; box-shadow: 0 8px 30px rgba(37,211,102,0.35); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.wa-tooltip { position: absolute; left: 68px; background: var(--charcoal); color: var(--white); font-size: 0.78rem; padding: 6px 14px; white-space: nowrap; border: 1px solid rgba(201,168,76,0.1); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

section[id] { scroll-margin-top: 80px; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
    .expertise-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.97); padding: 24px; gap: 16px; border-bottom: 1px solid rgba(201,168,76,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; padding: 120px 0 80px; gap: 40px; }
    .hero-grid--fullbleed { grid-template-columns: 1fr; }
    .hero-grid--fullbleed .hero-text-col { grid-column: 1; }
    .hero::before { background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.92) 65%, rgba(10,10,10,1) 100%) !important; }
    .hero-bg-img { top: 80px !important; height: 58% !important; width: 200% !important; left: -40% !important; object-position: left top !important; object-fit: cover !important; transform: none !important; }
    .hero-grid { padding: 0 0 60px !important; }
    .hero-grid--fullbleed { display: flex; flex-direction: column; }
    .hero-text-col { margin-top: 52vh; position: relative; z-index: 3; }
    .hero-image-col { order: -1; }
    .hero-image-badge { left: 0; }
    .hero h1 { white-space: normal; font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .hero-roles { flex-wrap: wrap; }
    .hero-role { white-space: nowrap; font-size: 0.72rem; padding: 5px 12px; }
    .hero-image-wrapper { max-width: 100%; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; white-space: nowrap; font-size: 0.78rem; letter-spacing: 0.05em; padding: 14px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-block { height: 350px; }
    .book-grid { grid-template-columns: 1fr; gap: 40px; }
    .book-buttons { flex-direction: column; align-items: stretch; }
    .book-buttons .btn-primary, .book-buttons .btn-outline { width: 100%; justify-content: center; }
    .talks-grid { grid-template-columns: 1fr; }
    .expertise-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; text-align: center; }
    .booking-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .reviews-inner { flex-direction: column; padding: 40px 24px; align-items: flex-start; }
    .reviews-actions { align-items: stretch; width: 100%; }
    .btn-review-gold, .btn-review-outline { justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 6px; }
    .gallery-item.featured { grid-column: 1 / span 2; grid-row: span 2; }
    .video-features { grid-template-columns: 1fr; }
    .footer-mid { gap: 20px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .process-steps { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.featured { grid-column: span 1; }
}
