/* ============================================
   ArteVid – Modern Prototype Styles
   ============================================ */

/* --- Local Fonts --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('assets/fonts/playfair-display-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('assets/fonts/playfair-display-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --color-primary: #1a2744;
    --color-primary-light: #2d4a7a;
    --color-accent: #c8a45c;
    --color-accent-light: #e2c97e;
    --color-text: #1a1a2e;
    --color-text-light: #6b7280;
    --color-bg: #fafafa;
    --color-bg-alt: #f0ede8;
    --color-bg-dark: #0f1724;
    --color-white: #ffffff;
    --color-border: #e5e7eb;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;

    /* Effects */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

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

#ueber {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 164, 92, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .nav-link {
    color: var(--color-text);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--color-accent);
}

.site-header.scrolled .logo-img--white {
    display: none;
}

.site-header.scrolled .logo-img--color {
    display: block;
}

.site-header.scrolled .cta-link {
    border-color: var(--color-accent) !important;
    color: var(--color-accent) !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 101;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-img--color {
    display: none;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link.cta-link {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    margin-left: 0.5rem;
    padding: 0.4rem 1.25rem;
}

.nav-link.cta-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-header.scrolled .mobile-toggle span {
    background: var(--color-primary);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--color-bg-dark);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.08);
    filter: saturate(1.04) contrast(1.02);
    transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active img,
.hero-slide.is-active video {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 36, 0.5) 0%,
        rgba(15, 23, 36, 0.75) 100%
    );
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide img,
    .hero-slide video {
        transition: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem var(--space-md) 4rem;
    max-width: var(--container-max);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-sub {
    font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
    text-align: left;
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.hero-indicators {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 3;
}

.hero-indicator {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.25);
    opacity: 0.9;
    cursor: pointer;
    transition: width 300ms ease, background-color 300ms ease, border-color 300ms ease, opacity 200ms ease, transform 200ms ease;
}

.hero-indicator:hover,
.hero-indicator:focus-visible {
    opacity: 1;
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.55);
}

.hero-indicator.is-active {
    width: 2rem;
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 18px rgba(198, 168, 108, 0.35);
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.usp-row {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.usp-item strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
}

.usp-item span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.service-card {
    padding: 0;
    border-radius: var(--radius-lg);
    background: #111;
    border: none;
    position: relative;
    overflow: hidden;
}

.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    color: var(--color-accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-media video,
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .service-media img,
.service-card:hover .service-media video {
    transform: scale(1.04);
}

.service-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem 1.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-card h3 {
    margin-bottom: var(--space-xs);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.service-link:hover {
    letter-spacing: 0.03em;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--color-border);
    border-radius: 100px;
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 150px;
    grid-auto-flow: dense;
    gap: var(--space-md);
}

.portfolio-item {
    position: relative;
    display: block;
    grid-column: span 1;
    grid-row: span 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.portfolio-placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) var(--space-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition);
}

.portfolio-item:hover figcaption {
    transform: translateY(0);
}

.portfolio-item figcaption h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.portfolio-item figcaption p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: left;
}

.stat-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.375rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card cite {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   FEATURED PROJECT
   ============================================ */
.feature-project {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
}

.feature-project-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.feature-project-content h2 {
    margin-bottom: var(--space-md);
}

.feature-project-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.feature-project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.feature-project-gallery img {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.feature-project-gallery video {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    display: block;
}

.feature-project-gallery img:first-child,
.feature-project-gallery video:first-child {
    grid-column: span 2;
    height: 300px;
}

/* Feature project – caption variant (full-bleed with overlaid caption) */
.feature-project--caption {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

.feature-project--caption + .feature-project--caption {
    padding-top: 0;
}

.feature-project--caption .feature-project-grid {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.feature-project--caption .feature-project-gallery {
    display: block;
}

.feature-project--caption .feature-project-gallery img,
.feature-project--caption .feature-project-gallery img:first-child {
    width: 100%;
    height: clamp(320px, 55vw, 680px);
    object-fit: cover;
    border-radius: 0;
    grid-column: unset;
    display: block;
}

.feature-project--caption .feature-project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 5% 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
    text-align: left;
}

.feature-project--caption .feature-project-content h2 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 0;
    max-width: 760px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ============================================
   PROJEKTS BEISPIELE
   ============================================ */
.projekts-beispiele {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

.projekts-beispiele .section-header {
    margin-bottom: var(--space-lg);
}

.beispiele-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.beispiel-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin: 0;
}

.beispiel-item img {
    width: 100%;
    height: clamp(300px, 50vw, 640px);
    object-fit: cover;
    display: block;
}

.beispiel-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 5% 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .beispiel-item figcaption {
        padding: 3rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   PRESS
   ============================================ */
.press {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.press-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.press-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.press-card h3 {
    margin-bottom: 0.4rem;
}

.press-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(45, 74, 122, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(200, 164, 92, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-alt);
    text-align: center;
}

.contact-intro {
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
}

.contact-intro h2 {
    margin-bottom: var(--space-md);
}

.contact-lead {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 860px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-lg) var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-card--link:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 164, 92, 0.12);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 92, 0.12);
    border-radius: 50%;
    margin-bottom: 0.25rem;
    color: var(--color-accent);
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.contact-card address,
.contact-card span {
    font-style: normal;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-bg-dark);
    padding: var(--space-xl) 0 var(--space-md);
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}


.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
}

.site-footer h3 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.footer-nav ul li,
.footer-services ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-services ul li {
    font-size: 0.875rem;
}

.footer-contact address {
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-contact a {
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    font-size: 0.8125rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ============================================
   SERVICE SUBPAGES
   ============================================ */
body.subpage .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

body.subpage .site-header .logo-img--white {
    display: none;
}

body.subpage .site-header .logo-img--color {
    display: block;
}

body.subpage .nav-link {
    color: var(--color-text);
}

body.subpage .nav-link:hover,
body.subpage .nav-link.active {
    color: var(--color-accent);
}

body.subpage .mobile-toggle span {
    background: var(--color-primary);
}

body.subpage .nav-link.cta-link {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.service-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
    background-size: cover;
    background-position: center;
}

.service-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-wandmalerei {
    background-image: url("assets/images/artevid/ArteVid/wandmalerei.jpg");
}

.service-hero-fassade {
    background-image: url("assets/images/fassade-waschstrasse-wien.jpg");
}

.service-hero-airbrush {
    background-image: url("assets/images/artevid/bagallery/gallery-1/thumbnail/category-2/harley-davidson-airbrush.jpg");
}

.service-hero-steindekor {
    background-image: url("assets/images/artevid/bagallery/gallery-1/thumbnail/category-4/steindekor.jpg");
}

.service-hero-kunstobjekte {
    background-image: url("assets/images/artevid/bagallery/gallery-1/thumbnail/category-2/harley-davidson-airbrush.jpg");
}

.service-hero-kreatives-handwerk {
    background-image: url("assets/images/eingang-nachher.jpg");
}

.service-hero-kontakt {
    background-image: url("assets/images/eingang-nachher.jpg");
}

.service-hero-portfolio {
    background-image: url("assets/images/artevid/bagallery/gallery-1/thumbnail/category-1/wiener-stadtpark-im-amtshaus-ma-29.jpg");
}

.service-hero-ueber {
    background-image: url("assets/images/fussboden2.jpg");
}

.service-hero-projekt {
    background-image: url("assets/images/gluecksschwein/gluecksschwein-wien.jpg");
}

.service-hero-leistungen {
    background-image: url("assets/images/artevid/ArteVid/SNulen-Bigen-und-Wandgestaltung.jpg");
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 36, 0.35) 0%, rgba(15, 23, 36, 0.75) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-content h1 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.service-detail {
    padding: var(--space-2xl) 0;
    background: var(--color-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.service-detail p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.service-list {
    margin: var(--space-md) 0 var(--space-lg);
}

.service-list li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    color: var(--color-text);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.service-gallery img {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.service-gallery video {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-md);
    object-fit: cover;
    display: block;
}

.service-gallery img:first-child,
.service-gallery video:first-child {
    grid-column: span 2;
    height: 320px;
}

.project-showcase {
    padding: var(--space-2xl) 0;
    background: var(--color-bg);
}

.project-showcase .section-header {
    margin-bottom: var(--space-xl);
}

.section-intro {
    max-width: 640px;
    margin: var(--space-sm) auto 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.showcase-gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* ── Before / After ─────────────────────────────────────── */

.before-after {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--color-primary);
    color: var(--color-white);
}

.ba-header {
    margin-bottom: var(--space-xl);
}

.ba-header .section-eyebrow {
    color: var(--color-accent);
    opacity: 1;
}

.ba-header h2 {
    color: var(--color-white);
}

.ba-header .section-intro {
    color: rgba(255,255,255,0.75);
    max-width: 720px;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.ba-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ba-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ba-item:hover img {
    transform: scale(1.03);
}

.ba-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.35em 0.85em;
    border-radius: 2em;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.ba-badge--before {
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
}

.ba-badge--after {
    background: var(--color-accent);
    color: var(--color-primary);
}

.related-services {
    position: relative;
    margin-top: var(--space-xl);
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--color-white);
}

.related-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(180px, 40%);
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    opacity: 0.75;
}

.related-services .section-header {
    margin-bottom: var(--space-lg);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
}

.related-card {
    display: block;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-primary);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.related-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.related-card span {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 164, 92, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children animations */
.services-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

.testimonials-grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid [data-animate]:nth-child(3) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {

    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 140px;
        grid-auto-flow: dense;
    }

    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-project-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-gallery img {
        height: 240px;
    }

    .ba-item img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 160;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100dvh;
        padding: calc(var(--header-height) + 1.25rem) var(--space-md) var(--space-md);
        background: rgba(12, 20, 34, 0.94);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: flex-start;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 220ms ease, visibility 220ms ease;
        z-index: 1000;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list {
        width: min(420px, 100%);
        max-height: calc(100dvh - var(--header-height) - 2rem);
        overflow: auto;
        padding: 0.25rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        transform: translateY(8px);
        opacity: 0;
        transition: transform 220ms ease, opacity 220ms ease;
    }

    .main-nav.active .nav-list {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        display: block;
        font-size: 1.12rem;
        font-weight: 500;
        padding: 0.8rem 0;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
        color: rgba(255, 255, 255, 0.9);
        background: transparent;
    }

    body.subpage .main-nav .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }

    body.subpage .main-nav .nav-link.active,
    body.subpage .main-nav .nav-link:hover {
        color: var(--color-accent);
    }

    body.subpage .main-nav .nav-link.cta-link {
        border-color: rgba(255, 255, 255, 0.45);
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-link.cta-link {
        margin-left: 0;
        margin-top: 0.35rem;
        border-bottom-color: rgba(200, 164, 92, 0.45);
        color: var(--color-accent-light);
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .hero-content {
        padding: 7rem var(--space-md) 3rem;
    }

    .hero-badges {
        gap: var(--space-md);
    }

    .scroll-indicator {
        display: none;
    }

    .hero-indicators {
        bottom: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 130px;
        grid-auto-flow: row dense;
    }

    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-accent {
        display: none;
    }

    .about-stats {
        gap: var(--space-md);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .feature-project-gallery img:first-child,
    .feature-project-gallery video:first-child {
        height: 220px;
    }

    .feature-project--caption .feature-project-content {
        padding: 3rem 1.25rem 1.5rem;
    }

    .feature-project--caption .feature-project-content h2 {
        font-size: 0.95rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .service-hero {
        min-height: 50vh;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
    }

    .showcase-gallery img {
        height: 220px;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .ba-item img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
    }
}

/* --- Print Styles --- */
@media print {
    .site-header,
    .scroll-indicator,
    .mobile-toggle,
    .portfolio-filters,
    .cta-section {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* Legal Page (Impressum) */
.legal-page {
    padding: 140px 0 100px;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.legal-page address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--color-text, #333);
}

.legal-page address a {
    color: var(--color-accent);
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(26, 39, 68, 0.15);
}

.legal-page h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin: 2rem 0 0.75rem;
}

.legal-page p {
    line-height: 1.8;
    color: var(--color-text, #444);
    margin-bottom: 1rem;
    max-width: 80ch;
}

/* --- Lightbox --- */
.lightbox-trigger {
    cursor: zoom-in;
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: min(92vw, 1200px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.6);
    animation: lb-in 0.2s ease;
}

@keyframes lb-in {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

#lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.15s;
    z-index: 1;
}

#lightbox-close:hover { opacity: 1; }

#lightbox-prev,
#lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s;
    padding: 0 0.75rem;
    z-index: 1;
    user-select: none;
}

#lightbox-prev { left: 0.5rem; }
#lightbox-next { right: 0.5rem; }

#lightbox-prev:hover,
#lightbox-next:hover { opacity: 1; }

@media (max-width: 480px) {
    #lightbox-prev,
    #lightbox-next { font-size: 2.5rem; }
}
