/* ============================================
   AURUM CZYSTE - ART DECO STYLES
   Professional Cleaning Services Website
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --color-primary: #0a0a0a;
    --color-primary-light: #141414;
    --color-primary-medium: #1a1a1a;
    --color-secondary: #f5f0e0;
    --color-secondary-dark: #e8e0c8;
    --color-secondary-light: #faf7ef;
    --color-accent: #d4af37;
    --color-accent-light: #e8cc6e;
    --color-accent-dark: #b8962e;
    --color-accent-muted: rgba(212, 175, 55, 0.15);
    --color-text: #f5f0e0;
    --color-text-dark: #1a1a1a;
    --color-text-muted: rgba(245, 240, 224, 0.7);
    --color-text-dark-muted: rgba(26, 26, 26, 0.65);
    --color-border: rgba(212, 175, 55, 0.25);
    --color-border-strong: rgba(212, 175, 55, 0.5);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Josefin Sans', 'Trebuchet MS', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    --radius-sm: 2px;
    --radius-md: 4px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;
    --transition-very-slow: 1s ease;

    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.1);
    --shadow-gold-strong: 0 0 40px rgba(212, 175, 55, 0.2);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);

    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover {
    color: var(--color-accent-light);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: var(--font-body);
}

/* ----- Utilities ----- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----- Preloader ----- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-diamond {
    margin-bottom: var(--space-lg);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.diamond-shape {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent);
    transform: rotate(45deg);
    margin: 0 auto;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    margin-bottom: var(--space-lg);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    animation: preloaderBar 2s ease-in-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes preloaderBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ----- Header / Navigation ----- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 1px 0 var(--color-border);
}

.header-deco-top {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 20%, var(--color-accent) 80%, transparent 100%);
    opacity: 0.6;
}

.header-deco-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border) 30%, var(--color-border) 70%, transparent 100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(var(--header-height) - 4px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-text);
}

.nav-logo:hover {
    color: var(--color-text);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: var(--space-sm) var(--space-md);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link-cta {
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    margin-left: var(--space-sm);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle-line {
    width: 24px;
    height: 1.5px;
    background: var(--color-accent);
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ----- Hero Section ----- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--color-primary);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-primary) 70%);
    pointer-events: none;
}

.hero-corner {
    position: absolute;
    z-index: 2;
    opacity: 0;
    animation: fadeInCorner 1.5s ease forwards;
}

.hero-corner-tl { top: calc(var(--header-height) + 20px); left: 20px; animation-delay: 0.8s; }
.hero-corner-tr { top: calc(var(--header-height) + 20px); right: 20px; animation-delay: 1s; }
.hero-corner-bl { bottom: 20px; left: 20px; animation-delay: 1.2s; }
.hero-corner-br { bottom: 20px; right: 20px; animation-delay: 1.4s; }

@keyframes fadeInCorner {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: var(--space-2xl) var(--space-lg);
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--color-secondary);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
}

.title-line-1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.04em;
    animation-delay: 0.5s;
}

.title-line-2 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--color-accent);
    letter-spacing: 0.02em;
    font-style: italic;
    animation-delay: 0.7s;
}

.hero-divider {
    margin: var(--space-lg) auto;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.1s;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.3s;
}

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

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold-strong);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
}

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

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.7rem;
}

.btn-arrow svg {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow svg {
    transform: translateX(4px);
}

/* ----- Hero Stats ----- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.6s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    display: inline;
}

.stat-plus, .stat-percent {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 2s;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.4; height: 25px; }
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ----- Section Headers ----- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header-deco {
    margin-bottom: var(--space-md);
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.section-header-light .section-label {
    color: var(--color-accent);
}

.section-header-light .section-title {
    color: var(--color-secondary);
}

.section-title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.underline-left, .underline-right {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-accent);
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ----- About Section ----- */
.about-section {
    background: var(--color-secondary);
    color: var(--color-text-dark);
}

.about-section .section-label {
    color: var(--color-accent-dark);
}

.about-section .section-title {
    color: var(--color-text-dark);
}

.about-section .underline-left,
.about-section .underline-right {
    background: var(--color-accent-dark);
}

.about-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.05) 80px,
            rgba(212, 175, 55, 0.05) 81px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.05) 80px,
            rgba(212, 175, 55, 0.05) 81px
        );
    pointer-events: none;
}

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

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-text-block p {
    color: var(--color-text-dark-muted);
    margin-bottom: var(--space-md);
}

.about-features {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-dark);
    letter-spacing: 0.02em;
}

.about-image-block {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-image-frame {
    position: absolute;
    inset: -12px;
    z-index: 0;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
}

.frame-corner::before,
.frame-corner::after {
    content: '';
    position: absolute;
    background: var(--color-accent-dark);
}

.frame-corner-tl { top: 0; left: 0; }
.frame-corner-tl::before { width: 30px; height: 1px; top: 0; left: 0; }
.frame-corner-tl::after { width: 1px; height: 30px; top: 0; left: 0; }

.frame-corner-tr { top: 0; right: 0; }
.frame-corner-tr::before { width: 30px; height: 1px; top: 0; right: 0; }
.frame-corner-tr::after { width: 1px; height: 30px; top: 0; right: 0; }

.frame-corner-bl { bottom: 0; left: 0; }
.frame-corner-bl::before { width: 30px; height: 1px; bottom: 0; left: 0; }
.frame-corner-bl::after { width: 1px; height: 30px; bottom: 0; left: 0; }

.frame-corner-br { bottom: 0; right: 0; }
.frame-corner-br::before { width: 30px; height: 1px; bottom: 0; right: 0; }
.frame-corner-br::after { width: 1px; height: 30px; bottom: 0; right: 0; }

.about-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Trust Section */
.trust-section {
    position: relative;
}

.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.trust-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    white-space: nowrap;
}

.trust-deco-line {
    flex: 1;
    height: 1px;
    background: var(--color-accent-dark);
    max-width: 200px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-base);
    background: rgba(255, 255, 255, 0.5);
}

.trust-card:hover {
    border-color: var(--color-accent-dark);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-4px);
}

.trust-card-icon {
    margin-bottom: var(--space-md);
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--color-text-dark-muted);
    line-height: 1.6;
}

/* ----- Services Section ----- */
.services-section {
    background: var(--color-primary);
}

.section-bg-dark {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    position: relative;
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-border-strong);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), var(--shadow-dark);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    padding: var(--space-xl);
    position: relative;
}

.service-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.06);
    line-height: 1;
}

.service-icon {
    margin-bottom: var(--space-lg);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.service-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-features {
    margin-bottom: var(--space-lg);
}

.service-features li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    position: relative;
    letter-spacing: 0.02em;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    border: 1px solid var(--color-accent);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.service-btn:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent-light);
}

.service-btn:hover svg {
    transform: translateX(4px);
}

.service-btn svg {
    transition: transform var(--transition-fast);
}

/* ----- Case Studies Section ----- */
.cases-section {
    background: var(--color-secondary);
    color: var(--color-text-dark);
}

.cases-section .section-label {
    color: var(--color-accent-dark);
}

.cases-section .section-title {
    color: var(--color-text-dark);
}

.cases-section .underline-left,
.cases-section .underline-right {
    background: var(--color-accent-dark);
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.case-study:last-child {
    margin-bottom: 0;
}

.case-study-reverse {
    direction: rtl;
}

.case-study-reverse > * {
    direction: ltr;
}

.case-image-wrapper {
    position: relative;
}

.case-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.case-image-frame {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.case-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-accent);
    padding: 4px 12px;
}

.case-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.case-meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.case-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-dark-muted);
    letter-spacing: 0.05em;
}

.case-content p {
    color: var(--color-text-dark-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.case-results {
    display: flex;
    gap: var(--space-xl);
}

.case-result {
    text-align: center;
}

.result-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    line-height: 1;
    display: inline;
}

.result-unit {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-accent-dark);
}

.result-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dark-muted);
    margin-top: var(--space-xs);
}

/* ----- Team Section ----- */
.team-section {
    background: var(--color-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.team-card {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    border: 1px solid var(--color-border);
    background: var(--color-primary-light);
    transition: all var(--transition-base);
}

.team-card:hover {
    border-color: var(--color-border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.team-card-frame {
    position: absolute;
    inset: 4px;
    pointer-events: none;
}

.tcf-corner {
    position: absolute;
    width: 12px;
    height: 12px;
}

.tcf-corner::before, .tcf-corner::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    opacity: 0.4;
}

.tcf-tl { top: 0; left: 0; }
.tcf-tl::before { width: 12px; height: 1px; }
.tcf-tl::after { width: 1px; height: 12px; }

.tcf-tr { top: 0; right: 0; }
.tcf-tr::before { width: 12px; height: 1px; right: 0; }
.tcf-tr::after { width: 1px; height: 12px; right: 0; }

.tcf-bl { bottom: 0; left: 0; }
.tcf-bl::before { width: 12px; height: 1px; bottom: 0; }
.tcf-bl::after { width: 1px; height: 12px; bottom: 0; }

.tcf-br { bottom: 0; right: 0; }
.tcf-br::before { width: 12px; height: 1px; bottom: 0; right: 0; }
.tcf-br::after { width: 1px; height: 12px; bottom: 0; right: 0; }

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.team-role {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.team-deco {
    margin: var(--space-md) 0;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ----- Testimonials Section ----- */
.testimonials-section {
    background: var(--color-primary);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonial-card {
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    background: var(--color-primary-light);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-gold);
}

.testimonial-quote-mark {
    margin-bottom: var(--space-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.author-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-secondary);
}

.author-title {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-top: 2px;
}

/* ----- Gallery Band ----- */
.gallery-band {
    background: var(--color-secondary);
    padding: var(--space-xl) 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-band-inner {
    display: flex;
    gap: var(--space-md);
    animation: galleryScroll 30s linear infinite;
}

.gallery-item {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: sepia(20%) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----- Contact Section ----- */
.contact-section {
    background: var(--color-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-card:first-child {
    padding-top: 0;
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.contact-info-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.support-note {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-style: italic;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
}

.form-frame {
    position: absolute;
    inset: 6px;
    pointer-events: none;
}

.ff-corner {
    position: absolute;
    width: 16px;
    height: 16px;
}

.ff-corner::before, .ff-corner::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    opacity: 0.4;
}

.ff-tl { top: 0; left: 0; }
.ff-tl::before { width: 16px; height: 1px; }
.ff-tl::after { width: 1px; height: 16px; }

.ff-tr { top: 0; right: 0; }
.ff-tr::before { width: 16px; height: 1px; right: 0; }
.ff-tr::after { width: 1px; height: 16px; right: 0; }

.ff-bl { bottom: 0; left: 0; }
.ff-bl::before { width: 16px; height: 1px; bottom: 0; }
.ff-bl::after { width: 1px; height: 16px; bottom: 0; }

.ff-br { bottom: 0; right: 0; }
.ff-br::before { width: 16px; height: 1px; bottom: 0; right: 0; }
.ff-br::after { width: 1px; height: 16px; bottom: 0; right: 0; }

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.form-deco {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.required {
    color: #c44;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(245, 240, 224, 0.3);
}

.form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.form-input.error {
    border-color: #c44;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23d4af37' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: #c44;
    margin-top: var(--space-xs);
    min-height: 1em;
}

/* Checkbox */
.form-consent {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-border);
    position: relative;
    margin-top: 2px;
    transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.form-success .success-icon {
    margin-bottom: var(--space-md);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--color-text-muted);
}

/* ----- Footer ----- */
.main-footer {
    background: var(--color-primary);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.footer-deco-top {
    margin-bottom: var(--space-2xl);
    overflow: hidden;
    height: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.footer-address p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.footer-contact-emails a {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

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

.footer-bottom {
    text-align: center;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
}

.footer-bottom-deco {
    margin-bottom: var(--space-md);
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ----- Modal ----- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
}

.modal-container {
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: var(--space-2xl);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
    z-index: 1;
}

.modal-close:hover {
    border-color: var(--color-accent);
    background: rgba(212, 175, 55, 0.1);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.modal-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.modal-content ul {
    margin-bottom: var(--space-lg);
}

.modal-content ul li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.modal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-accent);
}

.modal-content .modal-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-accent);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.modal-content .btn {
    width: 100%;
    justify-content: center;
}

/* ----- Back to Top ----- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-accent);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.back-to-top:hover svg path {
    stroke: var(--color-primary);
}

/* ----- Cookie Banner ----- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9500;
    background: var(--color-primary);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.6s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.cookie-deco-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.cookie-links {
    font-size: 0.8rem !important;
}

.cookie-links a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-gold {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-gold:hover {
    background: var(--color-accent-light);
}

.btn-outline-gold {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-text-gold {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 5px;
    transition: color var(--transition-fast);
}

.btn-text-gold:hover {
    color: var(--color-accent-light);
}

.cookie-settings-panel {
    border-top: 1px solid var(--color-border);
}

.cookie-settings-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.cookie-settings-inner h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) 0;
}

.cookie-option label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    min-width: 250px;
}

.cookie-option span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--color-accent);
    width: 16px;
    height: 16px;
}

/* ----- Scroll Reveal Animation ----- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Legal Pages ----- */
.legal-page {
    background: var(--color-secondary-light);
    color: var(--color-text-dark);
}

.legal-header {
    background: var(--color-primary);
    border-bottom: 2px solid var(--color-accent);
}

.legal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
}

.legal-main {
    min-height: calc(100vh - 200px);
    padding: var(--space-2xl) 0;
}

.legal-container {
    max-width: 900px;
}

.legal-header-content {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.legal-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.legal-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-text-dark-muted);
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.legal-deco {
    margin-top: var(--space-md);
}

.legal-content {
    background: white;
    padding: var(--space-2xl);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: var(--space-xl);
}

.legal-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-accent);
    display: inline-block;
}

.legal-section h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    color: var(--color-text-dark-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.legal-section ul, .legal-section ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-section ul li, .legal-section ol li {
    color: var(--color-text-dark-muted);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    position: relative;
    padding-left: var(--space-md);
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border: 1px solid var(--color-accent-dark);
    transform: rotate(45deg);
}

.legal-section a {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.legal-highlight {
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--color-accent);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.legal-highlight p {
    margin-bottom: var(--space-xs);
}

.legal-highlight p:last-child {
    margin-bottom: 0;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.gdpr-right-card {
    padding: var(--space-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.03);
    position: relative;
}

.gdpr-right-number {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
}

.gdpr-right-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.gdpr-right-card p {
    font-size: 0.9rem;
    color: var(--color-text-dark-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.legal-footer-links {
    text-align: center;
    padding: var(--space-lg) 0;
}

.legal-footer-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.legal-sep {
    color: var(--color-text-dark-muted);
    margin: 0 var(--space-md);
}

.legal-page-footer {
    background: var(--color-primary);
    padding: var(--space-lg) 0;
    text-align: center;
}

.legal-page-footer p {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .section {
        padding: var(--space-2xl) 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl);
        gap: 0;
        border-left: 1px solid var(--color-border);
        transition: right var(--transition-base);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        padding: var(--space-md) 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: var(--space-md);
        text-align: center;
        border: 1px solid var(--color-accent);
        padding: var(--space-md);
    }

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

    .about-image {
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .case-study,
    .case-study-reverse {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        direction: ltr;
    }

    .case-image {
        height: 250px;
    }

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-corner {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn-gold,
    .cookie-actions .btn-outline-gold {
        width: 100%;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item {
        flex: 0 0 200px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .legal-content {
        padding: var(--space-lg);
    }

    .legal-meta {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .case-results {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ----- Print Styles ----- */
@media print {
    .main-header,
    .cookie-banner,
    .back-to-top,
    .modal-overlay,
    .preloader,
    .hero-scroll-indicator,
    .hero-bg-pattern,
    .hero-overlay,
    .hero-corner {
        display: none !important;
    }

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

    .section {
        padding: 2rem 0;
    }
}

/* ----- Accessibility ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .gallery-band-inner {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-border: rgba(212, 175, 55, 0.5);
        --color-text-muted: rgba(245, 240, 224, 0.9);
        --color-text-dark-muted: rgba(26, 26, 26, 0.85);
    }
}
