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

:root {
    --gold: #BB622A;
    --gold-light: #D4A879;
    --gold-dark: #986339;
    --brand: #986339;
    --charcoal: #1A1A1A;
    --dark: #986339;
    --ivory: #FAF8F5;
    --warm-gray: #F0EDE8;
    --stone: #E8E5E0;
    --text: #4A4A4A;
    --text-light: #888888;
    --white: #FFFFFF;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--ivory);
    cursor: none;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gold { color: var(--gold); }

/* Preloader */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--brand); display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-img { height: 100px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.preloader-line { width: 120px; height: 1px; background: rgb(255 255 255); position: relative; overflow: hidden; }
.preloader-line::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--gold); animation: loadLine 1.5s ease-in-out infinite;
}
@keyframes loadLine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Custom Cursor */
.cursor {
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
    width: 40px; height: 40px; border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%); transition: all 0.15s ease;
}
.cursor.hover { width: 16px; height: 16px; background: var(--gold-dark); }
.cursor-follower.hover { width: 56px; height: 56px; border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 28px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(250,248,245,0.95); backdrop-filter: blur(20px);
    padding: 16px 0; box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700;
    color: var(--white); letter-spacing: 1px; transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo-img { height: 60px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter 0.3s; }
.navbar.scrolled .nav-logo-img { filter: none; }
.footer-logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-size: 12px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.8);
    transition: color 0.3s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--charcoal); }
.navbar.scrolled .nav-link.active { color: var(--gold); }

.nav-cta {
    padding: 10px 24px; border: 1px solid var(--gold);
    color: var(--gold) !important; font-weight: 600; transition: var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--white) !important; }
.navbar.scrolled .nav-cta { border-color: var(--gold); color: var(--gold) !important; }

.menu-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.menu-btn span { width: 28px; height: 1.5px; background: var(--white); transition: var(--transition); }
.navbar.scrolled .menu-btn span { background: var(--brand); }
.menu-btn.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--brand); z-index: 999; display: flex;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-link {
    font-family: 'Playfair Display', serif; font-size: 42px;
    color: var(--white); transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold-light); }

/* Hero */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; overflow: hidden;
}
.hero-slideshow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 66%) 50%, rgb(52 35 21) 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(187,98,42,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(187,98,42,0.03) 1px, transparent 1px);
    background-size: 60px 60px; z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; max-width: 1400px;
    margin: 0 auto; padding: 0 48px; width: 100%;
}
.hero-badge {
    font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 32px;
    opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title {
    font-family: 'Playfair Display', serif; font-size: 96px;
    font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 32px;
}
.hero-title .line { display: block; opacity: 0; transform: translateY(60px); }
.hero-title .line-1 { animation: fadeUp 1s ease 0.7s forwards; }
.hero-title .line-2 { animation: fadeUp 1s ease 0.9s forwards; }
.hero-title .line-3 { animation: fadeUp 1s ease 1.1s forwards; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    max-width: 520px; font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.65); margin-bottom: 40px;
    opacity: 0; animation: fadeUp 1s ease 1.3s forwards;
}
.hero-actions {
    display: flex; gap: 16px;
    opacity: 0; animation: fadeUp 1s ease 1.5s forwards;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 40px; font-family: 'Inter', sans-serif; font-size: 11px;
    font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
    transition: var(--transition); cursor: pointer; border: none;
    position: relative; overflow: hidden;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { border-color: rgba(26,26,26,0.2); color: var(--charcoal); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.map-content .btn-dark { border-color: rgba(255,255,255,0.3); color: var(--white); }
.map-content .btn-dark:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Hero Scroll */
.hero-scroll {
    position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center;
    gap: 12px; opacity: 0; animation: fadeUp 1s ease 2s forwards;
}
.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 400; }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--gold); animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Hero Counter */
.hero-counter {
    position: absolute; right: 48px; bottom: 48px; z-index: 2;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 1s ease 2s forwards;
}
.counter-num, .counter-total {
    font-family: 'DM Mono', monospace; font-size: 12px;
    color: rgba(255,255,255,0.5); letter-spacing: 1px;
}
.counter-bar { width: 60px; height: 1px; background: rgba(255,255,255,0.15); position: relative; }
.counter-fill { position: absolute; top: 0; left: 0; height: 100%; width: 20%; background: var(--gold); transition: width 0.3s; }

/* ===== SEO Hero (Ken Burns + Lead Form) ===== */
.seo-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}
.seo-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.ken-burns-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 2s ease;
    animation: kenBurns 25s ease-in-out infinite alternate;
}
.ken-burns-slide.active { opacity: 1; }
.ken-burns-slide:nth-child(1) { animation-delay: 0s; }
.ken-burns-slide:nth-child(2) { animation-delay: 5s; }
.ken-burns-slide:nth-child(3) { animation-delay: 10s; }
.ken-burns-slide:nth-child(4) { animation-delay: 15s; }
@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); opacity: 0; }
    4% { opacity: 1; }
    21% { transform: scale(1.1) translate(-10px, -5px); opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}
.seo-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 50%, rgba(52,35,21,0.7) 100%);
    z-index: 1;
}
.seo-hero-inner {
    position: relative; z-index: 2; max-width: 1400px; margin: 0 auto;
    padding: 120px 48px; width: 100%; display: grid;
    grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.seo-hero-content h1 {
    font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 700;
    color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.seo-hero-content > p {
    font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65);
    margin-bottom: 32px; max-width: 520px;
}
.seo-hero-badges {
    display: flex; flex-wrap: wrap; gap: 12px;
}
.seo-hero-badges span {
    font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold);
    padding: 8px 16px; border: 1px solid rgba(201,168,76,0.25); border-radius: 2px;
}
.seo-hero-form {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); padding: 40px;
    border-radius: 4px;
}
.seo-hero-form h3 {
    font-family: 'Playfair Display', serif; font-size: 24px;
    color: var(--white); margin-bottom: 8px;
}
.seo-hero-form > p {
    font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px;
}
.seo-lead-form {
    display: flex; flex-direction: column; gap: 14px;
}
.seo-lead-form input,
.seo-lead-form select,
.seo-lead-form textarea {
    width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 2px;
    color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px;
    outline: none; transition: border-color 0.3s;
}
.seo-lead-form input::placeholder,
.seo-lead-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
.seo-lead-form select option { color: var(--charcoal); background: var(--ivory); }
.seo-lead-form input:focus,
.seo-lead-form select:focus,
.seo-lead-form textarea:focus {
    border-color: var(--gold);
}

/* Sections Common */
section { padding: 60px 0; }

.section-header {
    max-width: 1400px; margin: 0 auto; padding: 0 48px 80px; text-align: center;
}
.section-tag {
    display: inline-block; font-family: 'DM Mono', monospace; font-size: 11px;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
    margin-bottom: 16px; position: relative; padding-left: 48px;
}
.section-tag::before {
    content: ''; position: absolute; left: 0; top: 50%; width: 32px; height: 1px; background: var(--gold);
}
.section-title {
    font-family: 'Playfair Display', serif; font-size: 52px;
    font-weight: 700; color: var(--charcoal); line-height: 1.2; max-width: 90%; margin: auto;
}
.section-title--light { color: var(--white); }
.section-footer {
    max-width: 1400px; margin: 0 auto; padding: 80px 48px 0; text-align: center;
}

/* Services Preview (Home) */
.services-preview { background: var(--white); }
.services-preview-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.preview-card {
    padding: 48px 36px; border: 1px solid var(--stone);
    transition: var(--transition); position: relative; display: block;
}
.preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.preview-num {
    font-family: 'DM Mono', monospace; font-size: 12px;
    color: var(--gold); margin-bottom: 16px; letter-spacing: 2px;
}
.preview-card h3 {
    font-family: 'Playfair Display', serif; font-size: 24px;
    color: var(--charcoal); margin-bottom: 12px;
}
.preview-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.preview-arrow { font-size: 24px; color: var(--gold); opacity: 0; transform: translateX(-10px); transition: var(--transition); }
.preview-card:hover .preview-arrow { opacity: 1; transform: translateX(0); }

/* Featured Projects (Home) */
.featured-projects { background: var(--ivory); }
.featured-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.featured-card { display: block; position: relative; }
.featured-image {
    height: 360px; overflow: hidden; position: relative;
    background: var(--brand);
}
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.featured-image video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.featured-card:hover .featured-image img { transform: scale(1.05); }
.featured-card:hover .featured-image video { transform: scale(1.05); }
.featured-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(152,99,57,0.5); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition);
}
.featured-card:hover .featured-overlay { opacity: 1; }
.featured-overlay span {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--white); border: 1px solid var(--white); padding: 12px 28px;
}
.featured-info { padding: 20px 0; }
.featured-meta { display: flex; gap: 12px; margin-bottom: 6px; }
.featured-meta span {
    font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-light); letter-spacing: 1px;
}
.featured-info h3 {
    font-family: 'Playfair Display', serif; font-size: 22px; color: var(--charcoal);
}

/* Studio Preview (Home) */
.studio-preview { background: var(--white); }
.studio-preview-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.studio-preview-content p {
    font-size: 16px; color: var(--text); line-height: 1.9; margin: 24px 0 32px;
}
.studio-preview-visual { height: 480px; overflow: hidden; }
.studio-preview-visual img { transition: transform 0.8s ease; }
.studio-preview-visual:hover img { transform: scale(1.05); }

/* Testimonial */
.testimonial { background: var(--brand); padding: 60px 0; }
.testimonial-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; text-align: center; }
.testimonial-mark { font-family: 'Playfair Display', serif; font-size: 80px; color: var(--white); line-height: 1; display: block; margin-bottom: 24px; opacity: 0.2; }
.testimonial blockquote {
    font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400;
    font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 32px;
}
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.author-name { font-size: 14px; color: var(--gold-light); font-weight: 500; letter-spacing: 1px; }
.author-project { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 1px; }

/* CTA Section */
.cta-section { background: var(--ivory); padding: 120px 0; text-align: center; }
.cta-inner { /* max-width: 700px; */ margin: 0 auto; padding: 0 48px; }
.cta-inner h2 {
    font-family: 'Playfair Display', serif; font-size: 42px;
    color: var(--charcoal); margin-bottom: 16px; line-height: 1.2;
}
.cta-inner p { font-size: 16px; color: var(--text-light); margin-bottom: 32px; }

/* Page Header */
.page-header {
    position: relative; height: 70vh; min-height: 500px;
    display: flex; align-items: flex-end; overflow: hidden;
    padding: 40px 0;
}
.page-header--short { height: 55vh; min-height: 400px; }
.page-header-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(7deg, rgb(0 0 0 / 92%) 0%, rgb(65 119 137 / 58%) 60%, rgb(0 0 0 / 81%) 100%);
}
.page-header-content {
    position: relative; z-index: 2; max-width: 1400px;
    margin: 0 auto; padding: 0 48px 20px; width: 100%;
}
.page-header-content h1 {
    font-family: 'Playfair Display', serif; font-size: 72px;
    font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.page-header-content p {
    font-size: 16px; color: rgba(255,255,255,0.6); max-width: 500px; line-height: 1.8;
}

/* Project Filters */
.project-filters { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--stone); }
.filters-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; display: flex; gap: 16px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px; font-family: 'DM Mono', monospace; font-size: 11px;
    letter-spacing: 1px; text-transform: uppercase; background: transparent;
    border: 1px solid var(--stone); color: var(--text-light); cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }

/* Projects Full Page */
.projects-full { background: var(--ivory); padding-top: 60px; }
.projects-full-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.project-card-full { background: var(--white); transition: var(--transition); }
.project-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card-image { height: 280px; overflow: hidden; position: relative; background: var(--brand); }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.project-card-image video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.project-card-full:hover .project-card-image img { transform: scale(1.05); }
.project-card-full:hover .project-card-image video { transform: scale(1.05); }
.project-card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(152,99,57,0.4); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition);
}
.project-card-full:hover .project-card-overlay { opacity: 1; }
.project-card-body { padding: 28px; }
.project-card-meta { display: flex; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.project-card-meta span {
    font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-light); letter-spacing: 1px;
}
.project-card-body h3 {
    font-family: 'Playfair Display', serif; font-size: 22px;
    color: var(--charcoal); margin-bottom: 8px;
}
.project-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.project-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.project-card-tags span {
    font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-light); padding: 4px 10px; border: 1px solid var(--stone); border-radius: 2px;
}

/* Services Full Page */
.services-full { background: var(--ivory); padding: 120px 0; }
.services-full-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.service-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; margin-bottom: 80px;
}
.service-block--reverse { direction: rtl; }
.service-block--reverse .service-block-content { direction: ltr; }
.service-block-image { height: 400px; overflow: hidden; }
.service-block-image img { transition: transform 0.8s ease; }
.service-block:hover .service-block-image img { transform: scale(1.03); }
.service-block-num {
    font-family: 'DM Mono', monospace; font-size: 12px;
    color: var(--gold); margin-bottom: 12px; letter-spacing: 2px;
}
.service-block-content h2 {
    font-family: 'Playfair Display', serif; font-size: 36px;
    color: var(--charcoal); margin-bottom: 16px;
}
.service-block-content > p {
    font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 20px;
}
.service-block-list { list-style: none; }
.service-block-list li {
    position: relative; padding-left: 20px; font-size: 14px;
    color: var(--text-light); margin-bottom: 8px;
}
.service-block-list li::before {
    content: '-'; position: absolute; left: 0; color: var(--gold);
}

/* Process Full Page */
.process-full { background: var(--ivory); padding: 120px 0; }
.process-full-inner { max-width: 900px; margin: 0 auto; padding: 0 48px; }
.process-step-block {
    display: grid; grid-template-columns: 80px 1fr; gap: 40px;
    padding: 40px 0; border-bottom: 1px solid var(--stone);
}
.process-step-block:last-child { border-bottom: none; }
.step-block-num {
    font-family: 'Playfair Display', serif; font-size: 36px;
    color: var(--gold); line-height: 1; opacity: 0.5;
}
.step-block-content h2 {
    font-family: 'Playfair Display', serif; font-size: 28px;
    color: var(--charcoal); margin-bottom: 12px;
}
.step-block-content p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.step-block-duration { display: flex; gap: 12px; align-items: center; }
.duration-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-light); font-weight: 500;
}
.duration-value {
    font-size: 13px; color: var(--gold); font-weight: 500;
}

/* Studio Page - Story */
.story { background: var(--ivory); /* padding-top: 0; */ }
.story-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-text p { font-size: 16px; color: var(--text); line-height: 1.9; margin-top: 24px; }
.story-visual { height: 520px; overflow: hidden; }
.story-visual img { transition: transform 0.8s ease; }
.story-visual:hover img { transform: scale(1.03); }

/* Stats Bar */
.stats-bar { background: var(--brand); /* padding: 120px 0; */ }
.stats-bar-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}
.stat-item { padding: 24px; }
.stat-item .stat-num {
    font-family: 'Playfair Display', serif; font-size: 52px;
    color: var(--gold-light); display: block; line-height: 1; margin-bottom: 8px;
}
.stat-item .stat-label {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Philosophy */
.philosophy { background: var(--white); }
.philosophy-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.philosophy-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px;
}
.philosophy-card { padding: 36px 28px; border: 1px solid var(--stone); transition: var(--transition); }
.philosophy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.philosophy-icon { margin-bottom: 20px; }
.icon-diamond {
    display: block; width: 12px; height: 12px; background: var(--gold);
    transform: rotate(45deg); opacity: 0.3;
}
.philosophy-card h3 {
    font-family: 'Playfair Display', serif; font-size: 20px;
    color: var(--charcoal); margin-bottom: 10px;
}
.philosophy-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Team */
.team { background: var(--ivory); }
.team-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
.team-card { display: flex; flex-direction: column; gap: 24px; }
.team-card.featured { flex-direction: row; align-items: center; gap: 48px; }
.team-image { flex-shrink: 0; width: 100%; }
.team-card.featured .team-image { width: 380px; }
.team-info { text-align: left; }
.team-card.featured .team-info { flex: 1; }
.team-placeholder {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto;
    background: var(--stone); display: flex; align-items: center; justify-content: center;
}
.team-placeholder span {
    font-family: 'Playfair Display', serif; font-size: 32px; color: var(--charcoal);
}
.team-info h3 {
    font-family: 'Playfair Display', serif; font-size: 22px;
    color: var(--charcoal); margin-bottom: 4px;
}
.team-role { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 12px; }
.team-info p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Bio styling */
.bio-intro { margin-bottom: 24px; }
.bio-intro p { font-size: 15px; line-height: 1.8; color: var(--charcoal); }
.bio-intro strong { color: var(--gold); }

.bio-highlights { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.bio-highlight { display: flex; gap: 12px; align-items: flex-start; padding: 16px 20px; background: var(--white); border-left: 3px solid var(--gold); box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; }
.bio-highlight:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.highlight-icon { font-size: 18px; color: var(--gold); line-height: 1.4; flex-shrink: 0; margin-top: 2px; }
.bio-highlight div { font-size: 13.5px; line-height: 1.7; color: var(--text-light); }
.bio-highlight strong { display: block; color: var(--charcoal); font-size: 14px; margin-bottom: 4px; }

.bio-close { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--stone); }

/* Contact Page */
.contact-page { background: var(--ivory); padding: 120px 0; }
.contact-page-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
}
.contact-detail-block { padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--stone); }
.contact-detail-block:last-child { border-bottom: none; }
.contact-detail-block .detail-label {
    display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 8px; font-weight: 500;
}
.contact-detail-block .detail-value { font-size: 20px; color: var(--charcoal); font-weight: 400; display: block; margin-bottom: 6px; }
.contact-detail-block a.detail-value:hover { color: var(--gold); }
.contact-detail-block p { font-size: 13px; color: var(--text-light); }
.detail-social { display: flex; gap: 20px; margin-top: 12px; }
.detail-social a { font-size: 14px; color: var(--text-light); transition: color 0.3s; letter-spacing: 1px; }
.detail-social a:hover { color: var(--gold); }

.contact-page-form {
    padding: 48px; background: var(--white); box-shadow: var(--shadow);
}
.contact-page-form h3 {
    font-family: 'Playfair Display', serif; font-size: 28px;
    color: var(--charcoal); margin-bottom: 32px;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 16px 0 8px; background: transparent; border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1); color: var(--charcoal);
    font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 300;
    transition: border-color 0.3s; outline: none; border-radius: 0;
}
.form-group textarea { resize: vertical; min-height: 60px; }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { color: var(--charcoal); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group label {
    position: absolute; top: 16px; left: 0; font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(0,0,0,0.25); font-weight: 400;
    pointer-events: none; transition: all 0.3s;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label {
    top: -8px; font-size: 9px; color: var(--gold);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: transparent; }

.btn-submit { padding: 18px 48px; font-size: 12px; margin-top: 8px; align-self: flex-start; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-message { margin-top: 16px; font-size: 14px; line-height: 1.5; display: none; }
.form-message.success { display: block; color: #4CAF50; }
.form-message.error { display: block; color: #e74c3c; }
.g-recaptcha { margin-bottom: 8px; }

/* Map Section */
.map-section { background: var(--brand); padding: 0; }
.map-placeholder {
    height: 400px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2A2A2A 100%);
}
.map-content { text-align: center; }
.map-content .section-tag { color: var(--gold-light); }
.map-content h2 {
    font-family: 'Playfair Display', serif; font-size: 36px;
    color: var(--white); margin: 16px 0; line-height: 1.2;
}
.map-content p { color: rgba(255,255,255,0.5); margin-bottom: 24px; font-size: 15px; }

/* Services Marquee */
.services-marquee {
    overflow: hidden; background: var(--brand); padding: 20px 0;
}
.marquee-track {
    display: flex; gap: 24px; animation: marquee 30s linear infinite; white-space: nowrap;
}
.marquee-track span {
    font-family: 'DM Mono', monospace; font-size: 12px;
    letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.marquee-track .dot { color: var(--gold-light); opacity: 0.6; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
.footer {
    background: var(--dark); padding: 80px 0 32px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand { margin-bottom: 40px; }
.footer-logo-img { height: 32px; width: auto; display: block; margin: 0 auto 12px; filter: brightness(0) invert(1); }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 32px; margin-bottom: 48px; position: relative; padding-bottom: 32px; }
.footer-links::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 1px; background: var(--gold); opacity: 0.4; }
.footer-links a {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); transition: all 0.4s ease; position: relative;
}
.footer-links a::before {
    content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%) scaleX(0);
    width: 100%; height: 1px; background: var(--gold); transition: transform 0.4s ease; transform-origin: center;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::before { transform: translateX(-50%) scaleX(1); }
.footer-locations { display: flex; gap: 20px; align-items: center; margin-bottom: 40px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.footer-locations a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-locations a:hover { color: var(--gold); }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.15); letter-spacing: 1px; }

/* ===== Sticky Bar (Mobile: Enquire + WhatsApp) ===== */
.sticky-bar {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    display: flex; align-items: center; gap: 12px;
}
.sticky-enquire {
    height: 52px; padding: 0 28px; border-radius: 26px;
    background: var(--gold); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sticky-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    background: var(--gold-dark);
}
.sticky-wa {
    width: 52px; height: 52px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none; position: relative;
}
.sticky-wa:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.wa-icon { width: 24px; height: 24px; display: block; }
/* Pulse on WhatsApp */
.sticky-wa::before {
    content: ''; position: absolute; top: -4px; left: -4px;
    right: -4px; bottom: -4px; border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}
/* Desktop: hide Enquire button, show only WhatsApp circle */
@media (min-width: 769px) {
    .sticky-enquire { display: none; }
    .sticky-wa { width: 56px; height: 56px; }
    .wa-icon { width: 28px; height: 28px; }
}

/* ===== Project Detail Page ===== */

.detail-hero {
    position: relative; height: 80vh; min-height: 500px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.detail-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    overflow: hidden;
}
.detail-hero-bg video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.detail-hero-bg-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.detail-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(152,99,57,0.85) 0%, rgba(152,99,57,0.3) 60%, rgba(152,99,57,0.5) 100%);
}
.detail-hero-content {
    position: relative; z-index: 2; max-width: 1400px;
    margin: 0 auto; padding: 0 48px 80px; width: 100%;
}
.detail-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 24px; transition: color 0.3s;
}
.detail-back:hover { color: var(--gold); }
.detail-hero-meta { display: flex; gap: 20px; margin-bottom: 12px; }
.detail-hero-meta span {
    font-family: 'DM Mono', monospace; font-size: 11px;
    color: var(--gold); letter-spacing: 1px;
}
.detail-hero-content h1 {
    font-family: 'Playfair Display', serif; font-size: 64px;
    font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.detail-hero-content > p {
    font-size: 16px; color: rgba(255,255,255,0.6);
    max-width: 600px; line-height: 1.8; margin-bottom: 20px;
}
.detail-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.detail-hero-tags span {
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 2px;
}

/* Detail Description */
.detail-description { background: var(--white); padding: 120px 0; }
.detail-description-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: 280px 1fr; gap: 60px;
}
.detail-info { display: flex; flex-direction: column; gap: 24px; }
.detail-info-block { padding-bottom: 20px; border-bottom: 1px solid var(--stone); }
.detail-info-label {
    display: block; font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; font-weight: 500;
}
.detail-info-value {
    font-family: 'Playfair Display', serif; font-size: 20px; color: var(--charcoal);
}
.detail-text p {
    font-size: 16px; color: var(--text); line-height: 1.9; margin-bottom: 20px;
}

/* Gallery */
.detail-gallery { background: var(--ivory); }
.gallery-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.gallery-item {
    position: relative; overflow: hidden; cursor: pointer;
    height: 400px;
}
.gallery-item img { transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child {
    grid-column: 1 / -1; height: 520px;
}
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(152,99,57,0.25); display: flex; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-expand {
    font-size: 36px; color: var(--white); font-weight: 100;
    width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

/* Lightbox */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(152,99,57,0.95); z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close {
    position: absolute; top: 32px; right: 48px; font-size: 36px;
    color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s; z-index: 2;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-content {
    max-width: 80vw; max-height: 80vh; position: relative;
}
.lightbox-content img {
    max-width: 100%; max-height: 80vh; object-fit: contain;
}
.lightbox-nav {
    position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 48px; z-index: 2;
}
.lightbox-nav span {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); cursor: pointer; transition: color 0.3s;
}
.lightbox-nav span:hover { color: var(--gold); }

/* Related Projects */
.related-projects { background: var(--white); }
.related-grid {
    max-width: 1400px; margin: 0 auto; padding: 0 48px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.related-card { display: block; transition: var(--transition); }
.related-card:hover { transform: translateY(-4px); }
.related-image { height: 320px; overflow: hidden; }
.related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.related-image video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.related-card:hover .related-image img { transform: scale(1.05); }
.related-card:hover .related-image video { transform: scale(1.05); }
.related-info { padding: 20px 0; }
.related-meta { display: flex; gap: 12px; margin-bottom: 6px; }
.related-meta span {
    font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-light); letter-spacing: 1px;
}
.related-info h3 {
    font-family: 'Playfair Display', serif; font-size: 22px; color: var(--charcoal);
}

/* Project card full as link */
a.project-card-full { color: inherit; text-decoration: none; display: block; }
a.project-card-full:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Responsive additions */
@media (max-width: 992px) {
    .detail-hero-content h1 { font-size: 42px; }
    .detail-description-inner { grid-template-columns: 1fr; gap: 32px; }
    .detail-info { flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .detail-info-block { flex: 1; min-width: 120px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item, .gallery-item:first-child { height: 300px; grid-column: auto; }
    .related-grid { grid-template-columns: 1fr; }
    .related-image { height: 240px; }
    .lightbox-content { max-width: 95vw; }
    .lightbox-close { top: 20px; right: 24px; }
}

@media (max-width: 768px) {
    .detail-hero { height: 60vh; min-height: 350px; }
    .detail-hero-content { padding: 0 24px 40px; }
    .detail-hero-content h1 { font-size: 32px; }
    .detail-hero-meta { gap: 12px; flex-wrap: wrap; }
    .detail-description-inner { padding: 0 24px; }
    .detail-info { flex-direction: column; }
    .detail-info-block { min-width: auto; }
    .gallery-grid { padding: 0 24px; }
    .gallery-item, .gallery-item:first-child { height: 240px; }
    .related-grid { padding: 0 24px; }
    .detail-text p { font-size: 15px; }
}


/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 72px; }
    .section-title { font-size: 42px; }
    .page-header-content h1 { font-size: 56px; }
    .seo-hero-inner { grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 120px 32px; }
    .seo-hero-content h1 { font-size: 48px; }
    .seo-hero-form { padding: 32px 28px; }
    .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .menu-btn { display: flex; }
    .hero-title { font-size: 56px; }
    .section-title { font-size: 36px; }
    .services-preview-grid { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; gap: 32px; }
    .featured-image { height: 300px; }
    .studio-preview-inner { grid-template-columns: 1fr; gap: 48px; }
    .studio-preview-visual { height: 360px; }
    .story-inner { grid-template-columns: 1fr; gap: 48px; }
    .story-visual { height: 360px; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
    .service-block { grid-template-columns: 1fr; gap: 32px; }
    .service-block--reverse { direction: ltr; }
    .service-block-image { height: 300px; }
    .projects-full-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .hero-counter { display: none; }
    .hero-badge { display: none; }
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
    .seo-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 60px; }
    .seo-hero-content h1 { font-size: 44px; }
    .seo-hero-form { padding: 28px; }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
    .hero-content { padding: 0 20px; }
    .hero { min-height: 600px; }
    .hero-title { font-size: 40px; }
    .hero-sub { font-size: 14px; max-width: 100%; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-scroll { bottom: 20px; }
    .hero-scroll span { font-size: 9px; }
    .scroll-line { height: 28px; }
    .hero-slide { animation: none; }
    
    section { padding: 60px 0; }
    .section-header { padding: 0 20px 36px; }
    .section-title { font-size: 28px; max-width: 100%; }
    .section-footer { padding: 36px 20px 0; }
    
    .page-header { height: 50vh; min-height: 320px; }
    .page-header--short { height: 40vh; min-height: 280px; }
    .page-header-content { padding: 0 20px 32px; }
    .page-header-content h1 { font-size: 32px; }
    .page-header-content p { font-size: 13px; max-width: 100%; }
    
    .services-preview-grid,
    .featured-grid,
    .projects-full-grid,
    .filters-inner,
    .services-full-inner,
    .process-full-inner,
    .story-inner,
    .philosophy-inner,
    .team-grid,
    .contact-page-inner,
    .studio-preview-inner,
    .stats-bar-inner,
    .footer-inner { padding-left: 20px; padding-right: 20px; }
    
    .services-preview-grid,
    .featured-grid,
    .projects-full-grid { gap: 20px; }
    
    .featured-image { height: 220px; }
    .featured-info h3 { font-size: 18px; }
    .studio-preview-visual { height: 240px; }
    .studio-preview-content p { font-size: 15px; }
    
    .preview-card { padding: 32px 24px; text-align: center; }
    .preview-card h3 { font-size: 20px; }
    
    .project-card-body { padding: 20px; }
    .project-card-body h3 { font-size: 18px; }
    .project-card-body p { font-size: 13px; }
    .project-card-image { height: 220px; }
    
    .service-block { gap: 24px; }
    .service-block-image { height: 200px; }
    .service-block-content { padding: 0; }
    .service-block-content h2 { font-size: 26px; }
    .service-block-content > p { font-size: 14px; }
    
    .step-block-num { font-size: 28px; }
    .process-step-block { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
    .step-block-content h2 { font-size: 22px; }
    .step-block-content p { font-size: 14px; }
    
    .service-item { padding: 32px 24px; }
    .service-item h3 { font-size: 18px; }
    .service-item p { font-size: 13px; }
    
    .services-marquee { padding: 14px 0; }
    .marquee-track span { font-size: 10px; letter-spacing: 2px; }
    
    .testimonial { padding: 60px 0; }
    .testimonial-inner { padding: 0 20px; }
    .testimonial-mark { font-size: 56px; }
    .testimonial blockquote { font-size: 18px; }
    
    .philosophy-grid { grid-template-columns: 1fr; gap: 16px; }
    .philosophy-card { padding: 28px 20px; }
    .philosophy-card h3 { font-size: 18px; }
    
    .stats-bar { padding: 48px 0; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 16px; }
    .stat-item .stat-num { font-size: 32px; }
    .stat-item .stat-label { font-size: 10px; }
    
.team-grid { max-width: 360px; }
.team-card.featured { flex-direction: column; align-items: stretch; }
.team-card.featured .team-image { width: 100%; }
.team-info h3 { font-size: 18px; }
.team-info p { font-size: 13px; }
    
    .contact-page-form { padding: 28px 20px; }
    .contact-page-form h3 { font-size: 22px; }
    .contact-detail-block .detail-value { font-size: 17px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .form-group input, .form-group select, .form-group textarea { font-size: 14px; }
    .btn-submit { width: 100%; }
    
    .cta-section { padding: 60px 0; }
    .cta-inner { padding: 0 20px; }
    .cta-inner h2 { font-size: 28px; }
    .cta-inner p { font-size: 14px; }
    
    .map-content h2 { font-size: 24px; }
    .map-content p { font-size: 14px; }
    .map-placeholder { height: 300px; }
    
    .sticky-bar { bottom: 16px; right: 16px; gap: 10px; }
    .sticky-enquire { height: 46px; padding: 0 22px; font-size: 11px; }
    .sticky-wa { width: 46px; height: 46px; }
    .wa-icon { width: 20px; height: 20px; }
    
    .footer { padding: 60px 0 24px; }
    .footer-inner { padding: 0 20px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 24px; padding-bottom: 24px; }
    .footer-links a { font-size: 10px; letter-spacing: 2px; }
    .footer-locations { flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 32px; font-size: 10px; }
    .footer-tagline { font-size: 13px; }
    
    .section-tag { padding-left: 28px; font-size: 10px; }
    .section-tag::before { width: 16px; }
    .mobile-link { font-size: 28px; }
    .mobile-menu-inner { gap: 24px; }
    
    .project-filters { padding: 24px 0; }
    .filters-inner { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 10px; }
    
    .story-text p { font-size: 15px; }
    .story-visual { height: 280px; }
    
    /* Detail page mobile overrides */
    .detail-hero { height: 55vh; min-height: 320px; }
    .detail-hero-content { padding: 0 20px 32px; }
    .detail-hero-content h1 { font-size: 28px; }
    .detail-hero-meta { gap: 10px; flex-wrap: wrap; }
    .detail-hero-meta span { font-size: 10px; }
    .detail-hero-content > p { font-size: 14px; }
    .detail-hero-tags span { font-size: 10px; padding: 4px 10px; }
    .detail-back { font-size: 11px; }
    .detail-description { padding: 48px 0; }
    .detail-description-inner { padding: 0 20px; grid-template-columns: 1fr; gap: 24px; }
    .detail-info { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .detail-info-block { padding-bottom: 12px; margin-bottom: 0; min-width: auto; flex: 1; }
    .detail-info-value { font-size: 16px; }
    .detail-text p { font-size: 15px; }
    .detail-gallery { padding: 48px 0; }
    .gallery-grid { padding: 0 20px; gap: 12px; }
    .gallery-item, .gallery-item:first-child { height: 200px; grid-column: auto; }
    .gallery-overlay { opacity: 0; }
    .related-projects { padding: 48px 0; }
    .related-grid { padding: 0 20px; gap: 20px; grid-template-columns: 1fr; }
    .related-image { height: 200px; }
    .related-info h3 { font-size: 18px; }
    .lightbox-content { max-width: 92vw; }
    .lightbox-close { top: 16px; right: 20px; font-size: 28px; }
    .lightbox-nav { bottom: 24px; gap: 32px; }
    .lightbox-nav span { font-size: 11px; }
    
    .hero-slide { animation: none; }
    
    .seo-hero { min-height: auto; }
    .seo-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 100px 20px 48px; }
    .seo-hero-content h1 { font-size: 32px; }
    .seo-hero-badges { gap: 8px; }
    .seo-hero-badges span { font-size: 9px; padding: 6px 12px; }
    .seo-hero-form { padding: 24px 20px; }
    .seo-hero-form h3 { font-size: 20px; }
}

/* Very small screens */
@media (max-width: 420px) {
    .hero-title { font-size: 32px; }
    .hero-badge { font-size: 9px; letter-spacing: 2px; margin-bottom: 20px; }
    .section-title { font-size: 24px; }
    .page-header-content h1 { font-size: 26px; }
    .detail-hero-content h1 { font-size: 24px; }
    .sticky-bar { bottom: 12px; right: 12px; gap: 8px; }
    .sticky-enquire { height: 40px; padding: 0 16px; font-size: 10px; letter-spacing: 1px; }
    .sticky-wa { width: 40px; height: 40px; }
    .wa-icon { width: 18px; height: 18px; }
    .cta-inner h2 { font-size: 24px; }
    .testimonial blockquote { font-size: 16px; }
    .step-block-content h2 { font-size: 20px; }
    .service-block-content h2 { font-size: 22px; }
    .philosophy-card h3 { font-size: 16px; }
    .featured-info h3 { font-size: 16px; }
    .project-card-body h3 { font-size: 16px; }
    .related-info h3 { font-size: 16px; }
    .gallery-item, .gallery-item:first-child { height: 180px; }
    .seo-hero-content h1 { font-size: 26px; }
    .seo-hero-form { padding: 20px 16px; }
    .seo-lead-form input,
    .seo-lead-form select,
    .seo-lead-form textarea { padding: 12px 14px; font-size: 13px; }
}
