/* ── Font ─────────────────────────────────────────────── */
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/source-sans-3-v15-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/source-sans-3-v15-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/source-sans-3-v15-latin-700.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 900; font-display: swap; src: url('/assets/fonts/source-sans-3-v15-latin-900.woff2') format('woff2'); }

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 40px; }
body {
    font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
    color: #404040;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --purple: #7c3aed;
    --purple-light: #8b5cf6;
    --indigo: #6366f1;
    --purple-glow: rgba(124, 58, 237, 0.25);
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: 0.2s ease;
    --max-width: 1200px;
}

/* ── Sticky Navigation ─────────────────────────────────── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-nav.nav-bg,
.site-nav.menu-open {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--gray-200);
}
.site-nav-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
    height: 64px; display: flex; align-items: center; gap: 32px;
}
.site-nav-logo {
    position: relative; flex-shrink: 0;
    width: 270px; height: 36px;
    align-self: center;
    overflow: visible;
}
.logo-small {
    position: absolute; left: 0; top: 0;
    object-fit: contain; object-position: left center;
    height: 36px; width: 180px;
    opacity: 0; transition: opacity 0.3s ease;
}
.site-nav.scrolled .logo-small,
.site-nav.menu-open .logo-small { opacity: 1; }
.site-nav-links {
    display: flex; align-items: center; gap: 28px;
    flex: 1; justify-content: center;
}
.site-nav-links a {
    font-size: 14px; font-weight: 600; color: var(--gray-600);
    transition: color var(--transition); white-space: nowrap;
}
.site-nav-links a:hover { color: var(--purple); }
.site-nav-links a.active { color: var(--purple); }
.site-nav-lang {
    font-size: 13px; font-weight: 600; color: var(--gray-500);
    padding: 6px 14px;
    border: 1px solid var(--gray-200); border-radius: 20px;
    transition: all var(--transition); user-select: none; white-space: nowrap;
}
.site-nav-lang:hover { border-color: var(--gray-400); color: var(--gray-700); }

/* Hamburger */
.site-nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 4px; width: 32px; height: 24px; position: relative; flex-shrink: 0;
}
.site-nav-hamburger span {
    display: block; width: 100%; height: 2px; background: var(--gray-700);
    border-radius: 1px; position: absolute; left: 0; transition: all 0.3s ease;
}
.site-nav-hamburger span:nth-child(1) { top: 0; }
.site-nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.site-nav-hamburger span:nth-child(3) { bottom: 0; }
.site-nav-hamburger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.site-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.site-nav-hamburger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.site-nav-mobile-menu {
    display: none; flex-direction: column; gap: 4px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 32px 24px;
}
.site-nav-mobile-menu.open { display: flex; }
.site-nav-mobile-menu a {
    font-size: 16px; font-weight: 600; color: var(--gray-600);
    padding: 12px 0; border-bottom: 1px solid var(--gray-100);
    transition: color var(--transition);
}
.site-nav-mobile-menu a:hover { color: var(--purple); }

/* ── Button ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: var(--radius); font-family: inherit;
    font-size: 15px; font-weight: 600; border: none; cursor: pointer;
    transition: all var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gray-900); color: #fff;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    opacity: 0; transition: opacity 0.3s ease; z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { background: var(--purple); box-shadow: 0 0 20px var(--purple-glow); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
    background: transparent; color: var(--gray-700);
    border: 1.5px solid var(--gray-300); padding: 11px 27px;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

/* ── Hero A: Floating Gallery ──────────────────────────── */
.hero {
    padding: 0 32px 100px;
    max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    min-height: 100vh;
}
.hero-logo {
    height: 200px; width: auto; margin-bottom: 48px; margin-left: -24px;
}
.hero-text h1 {
    font-size: 52px; font-weight: 900; line-height: 1.1;
    color: var(--gray-900); margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-text h1 .accent {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 18px; color: var(--gray-500); line-height: 1.7;
    margin-bottom: 32px; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-gallery {
    position: relative; height: 520px;
}
.hero-card {
    position: absolute; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--gray-100);
}
.hero-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.hero-card img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-card:nth-child(1) { width: 200px; height: 260px; top: 20px; left: 10px; transform: rotate(-6deg); z-index: 3; }
.hero-card:nth-child(2) { width: 180px; height: 240px; top: 40px; left: 220px; transform: rotate(4deg); z-index: 2; }
.hero-card:nth-child(3) { width: 190px; height: 250px; top: 0; left: 380px; transform: rotate(-3deg); z-index: 4; }
.hero-card:nth-child(4) { width: 170px; height: 220px; top: 280px; left: 30px; transform: rotate(5deg); z-index: 2; }
.hero-card:nth-child(5) { width: 200px; height: 260px; top: 270px; left: 220px; transform: rotate(-4deg); z-index: 3; }
.hero-card:nth-child(6) { width: 160px; height: 210px; top: 260px; left: 400px; transform: rotate(7deg); z-index: 1; }

/* ── Section Common ────────────────────────────────────── */
.section {
    padding: 100px 32px;
    max-width: var(--max-width); margin: 0 auto;
}
.section-gray { background: var(--gray-50); }
.section-full {
    padding: 100px 32px;
}
.section-full .section-inner {
    max-width: var(--max-width); margin: 0 auto;
}
.section-header {
    text-align: center; margin-bottom: 60px;
}
.section-label {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--purple);
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px; font-weight: 800; color: var(--gray-900);
    line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px; color: var(--gray-500); max-width: 560px;
    margin: 0 auto; line-height: 1.7;
}

/* ── References / Logos ────────────────────────────────── */
.references { padding-top: 60px; padding-bottom: 60px; }
.references-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 56px; flex-wrap: wrap;
}
.references-logos img {
    max-height: 44px; width: auto;
    opacity: 0.5; transition: opacity 0.2s ease;
}
.references-logos img:hover { opacity: 0.85; }

/* ── Shoot Types ───────────────────────────────────────── */
.shoot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.shoot-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: #fff; border: 1px solid var(--gray-200);
    transition: all 0.3s ease; cursor: default;
}
.shoot-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.shoot-card-img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    background: var(--gray-100);
}

/* ── Split View Slider ─────────────────────────────────── */
.split-view {
    position: relative; width: 100%; aspect-ratio: 3/4;
    overflow: hidden; cursor: col-resize; user-select: none;
    -webkit-user-select: none; background: var(--gray-100);
}
.split-view-layer {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.split-view-before {
    z-index: 1; clip-path: inset(0 50% 0 0);
}
.split-view-after {
    z-index: 0;
}
.split-view-handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    z-index: 2; width: 3px; background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.split-view-handle::after {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 32px; height: 32px; border-radius: 50%;
    background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
}
.split-view-handle::before {
    content: '◂ ▸'; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 3; font-size: 11px; color: var(--gray-600);
    white-space: nowrap; letter-spacing: 2px;
}
.shoot-card-body { padding: 20px; }
.shoot-card-title {
    font-size: 16px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 6px;
}
.shoot-card-desc {
    font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

/* ── How It Works ──────────────────────────────────────── */
.steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; position: relative;
}
.steps::before {
    content: ''; position: absolute;
    top: 36px; left: 60px; right: 60px;
    height: 2px; background: var(--gray-200);
}
.step { text-align: center; position: relative; }
.step-number {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--gray-50); border: 2px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 24px; font-weight: 800;
    color: var(--purple); position: relative; z-index: 1;
    transition: all 0.3s ease;
}
.step:hover .step-number {
    background: var(--purple); color: #fff;
    border-color: var(--purple);
    box-shadow: 0 0 20px var(--purple-glow);
}
.step-title {
    font-size: 16px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 8px;
}
.step-desc {
    font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

/* ── Features ──────────────────────────────────────────── */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    padding: 32px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(99,102,241,0.1));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 22px;
}
.feature-title {
    font-size: 17px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 8px;
}
.feature-desc {
    font-size: 14px; color: var(--gray-500); line-height: 1.7;
}

/* ── Pricing ───────────────────────────────────────────── */
.pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pricing-card {
    position: relative;
    padding: 40px 28px 36px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    display: flex; flex-direction: column; align-items: center;
}
.pricing-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
    border-color: var(--purple);
    box-shadow: 0 0 0 1px var(--purple), var(--shadow-md);
}
.pricing-card--featured:hover {
    box-shadow: 0 0 0 1px var(--purple), var(--shadow-lg);
}
.pricing-badge {
    position: absolute; top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--purple); color: #fff;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; padding: 4px 16px;
    border-radius: 20px; white-space: nowrap;
}
.pricing-card-name {
    font-size: 18px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 20px;
}
.pricing-card-price {
    margin-bottom: 4px;
    display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.pricing-amount {
    font-size: 40px; font-weight: 900; color: var(--gray-900);
    line-height: 1;
}
.pricing-period {
    font-size: 16px; font-weight: 600; color: var(--gray-500);
}
.pricing-card-note {
    font-size: 13px; color: var(--gray-400);
    margin-bottom: 20px;
}
.pricing-card-quota {
    font-size: 15px; font-weight: 600; color: var(--purple);
    margin-bottom: 28px;
}
.pricing-btn {
    width: 100%;
}
.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 32px;
}

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
    text-align: center; padding: 80px 32px;
    background: var(--gray-900); color: #fff;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(99,102,241,0.1));
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-title {
    font-size: 32px; font-weight: 800; margin-bottom: 16px;
}
.cta-desc {
    font-size: 17px; color: var(--gray-400); margin-bottom: 32px; line-height: 1.7;
}
.cta-section .btn-primary {
    background: #fff; color: var(--gray-900);
}
.cta-section .btn-primary::before {
    background: linear-gradient(135deg, var(--purple-light), var(--indigo));
}
.cta-section .btn-primary:hover {
    background: var(--purple-light); color: #fff;
}

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.contact-info h3 {
    font-size: 22px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 16px;
}
.contact-info p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
    margin-bottom: 24px;
}
.contact-detail {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px; font-size: 15px; color: var(--gray-600);
}
.contact-detail-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--gray-100); display: flex;
    align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.contact-form {
    background: var(--gray-50); padding: 32px;
    border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 16px; }
.form-label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--gray-700); margin-bottom: 6px;
}
.form-input, .form-textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-300);
    border-radius: var(--radius); font-family: inherit; font-size: 14px;
    color: var(--gray-700); background: #fff;
    transition: border-color var(--transition);
}
.form-input:focus, .form-textarea:focus {
    outline: none; border-color: var(--purple);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
    background: var(--gray-900); color: var(--gray-400);
    padding: 48px 32px 32px;
}
.footer-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: start;
    flex-wrap: wrap; gap: 32px;
}
.footer-brand p {
    font-size: 13px; color: var(--gray-500); margin-top: 12px;
    max-width: 300px; line-height: 1.6;
}
.footer-contact {
    margin-top: 16px; font-size: 13px; color: var(--gray-500); line-height: 1.8;
    display: flex; flex-direction: column; gap: 2px;
}
.footer-contact a { color: var(--gray-500); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-logos { display: flex; align-items: center; gap: 20px; }
.footer-logos img { height: 48px; filter: brightness(0) invert(0.45); }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gray-300); margin-bottom: 12px;
}
.footer-col a {
    display: block; font-size: 14px; color: var(--gray-500);
    margin-bottom: 8px; transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: var(--max-width); margin: 32px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: var(--gray-600);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray-500); transition: color var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ── Legal Pages ───────────────────────────────────────── */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 120px 32px 80px;
}
.legal-content h1 {
    font-size: 36px; font-weight: 800; color: var(--gray-900);
    margin-bottom: 32px; line-height: 1.2;
}
.legal-content h2 {
    font-size: 24px; font-weight: 700; color: var(--gray-900);
    margin-top: 40px; margin-bottom: 16px;
}
.legal-content h3 {
    font-size: 18px; font-weight: 700; color: var(--gray-900);
    margin-top: 32px; margin-bottom: 12px;
}
.legal-content p {
    font-size: 16px; color: var(--gray-600); line-height: 1.8;
    margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
    margin-bottom: 16px; padding-left: 24px;
}
.legal-content li {
    font-size: 16px; color: var(--gray-600); line-height: 1.8;
    margin-bottom: 8px;
}
.legal-content a {
    color: var(--purple); text-decoration: underline;
}
.legal-content a:hover {
    color: var(--purple-light);
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    color: var(--gray-700);
}
.legal-content th, .legal-content td {
    border: 1px solid var(--gray-200);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}
.legal-content th {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--gray-900);
}
.legal-content table br { content: ""; display: block; margin-top: 4px; }
.legal-content strong { color: var(--gray-900); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: 80px; }
    .site-nav-logo { width: 200px; }
    .logo-large { width: 200px; height: 130px; left: -15px; }
    .logo-small { width: 140px; }
    .hero-gallery { height: 380px; }
    .hero-card:nth-child(1) { width: 160px; height: 210px; top: 10px; left: 0; }
    .hero-card:nth-child(2) { width: 150px; height: 200px; top: 20px; left: 170px; }
    .hero-card:nth-child(3) { width: 150px; height: 200px; top: 0; left: 320px; }
    .hero-card:nth-child(4) { width: 140px; height: 180px; top: 210px; left: 20px; }
    .hero-card:nth-child(5) { width: 160px; height: 210px; top: 200px; left: 180px; }
    .hero-card:nth-child(6) { display: none; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .shoot-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .site-nav-logo { width: 100px; }
    .logo-small { width: 100px; left: 10px; }
    .hero-text h1 { font-size: 36px; }
    .section-title { font-size: 28px; }
    .hero-gallery { height: 300px; }
    .hero-card:nth-child(1) { width: 140px; height: 180px; left: 0; }
    .hero-card:nth-child(2) { width: 130px; height: 170px; left: 150px; }
    .hero-card:nth-child(3) { display: none; }
    .hero-card:nth-child(4) { width: 130px; height: 170px; top: 180px; left: 10px; }
    .hero-card:nth-child(5) { width: 140px; height: 180px; top: 170px; left: 160px; }
    .shoot-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-amount { font-size: 32px; }
    .references-logos { gap: 32px; }
    .references-logos img { max-height: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .site-nav-links { display: none; }
    .site-nav-lang { display: none; }
    .site-nav-hamburger { display: block; }
    .site-nav {
        background: transparent;
        backdrop-filter: none; -webkit-backdrop-filter: none;
    }
    .site-nav-inner {
        padding: 0 20px; justify-content: space-between;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    }
    .legal-content { padding: 100px 20px 60px; }
}
@media (max-width: 480px) {
    .logo-small { left: 0; }
    .hero-text h1 { font-size: 30px; }
    .hero { padding: 120px 20px 40px; }
    .site-nav-logo { width: 90px; height: 30px; }
    .site-nav.scrolled .site-nav-logo { height: 30px; }
    .section { padding: 60px 20px; }
    .section-full { padding: 60px 20px; }
    .hero-gallery { height: 240px; }
    .hero-card:nth-child(4) { display: none; }
    .hero-card:nth-child(5) { display: none; }
    .site-nav-mobile-menu { padding: 16px 20px 24px; }
    .legal-content { padding: 80px 16px 40px; }
}
