/* ===================================================================
   SPOT ZATOR — WARIANT B — „Warm Modern"
   styles.css
   =================================================================== */

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

/* --- Root Variables --- */
:root {
    /* Tła */
    --color-bg: #FFFFFF;
    --color-bg-alt: #F8F7F4;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #1A1A1A;

    /* Akcent */
    --color-gold: #C9A96E;
    --color-gold-light: #D4B98A;
    --color-gold-dim: #C9A96E18;

    /* Tekst */
    --color-text: #1A1A1A;
    --color-text-inv: #F5F5F0;
    --color-muted: #6B6B6B;
    --color-muted-dark: #444444;

    /* Linie i bordery */
    --color-border: #EBEBEB;
    --color-border-mid: #D8D8D8;
    --color-border-dark: #2A2A2A;

    /* CTA */
    --color-cta-bg: #1A1A1A;
    --color-cta-text: #FFFFFF;
    --color-cta-hover: #2D2D2D;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 96px;
    --space-2xl: 128px;

    --section-padding-y: 104px;
    --section-padding-x: 80px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.10);

    /* Border radius */
    --radius-none: 0px;
    --radius-sm: 2px;

    /* Typography */
    --font-family: 'DM Sans', -apple-system, sans-serif;
    --text-label: 12px;
    --text-sm: 14px;
    --text-base: 17px;
    --text-lg: 20px;
    --text-xl: 26px;
    --text-2xl: 36px;
    --text-3xl: 52px;
    --text-hero: 76px;
    --text-hero-mob: 44px;
    --weight-thin: 200;
    --weight-light: 300;
    --weight-regular: 400;
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 72px;
        --section-padding-x: 24px;
    }
}

/* --- Global --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-weight: var(--weight-light);
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: var(--weight-thin);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-text);
}

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

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

ul {
    list-style: none;
}

/* --- Selection --- */
::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border-mid);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* --- Focus --- */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* --- Utility Classes --- */
.label {
    font-size: var(--text-label);
    font-weight: var(--weight-light);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.deco-line {
    width: 32px;
    height: 1px;
    background: var(--color-gold);
    display: block;
    margin-bottom: 24px;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.section-label {
    font-size: var(--text-label);
    font-weight: var(--weight-light);
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-thin);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--weight-light);
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 560px;
}

/* --- Grid System --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: var(--text-2xl);
    }
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes lineExpand {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.3;
        height: 20px;
    }
}

/* Page load animations */
.navbar {
    animation: fadeIn 0.5s ease 0.1s both;
}

.hero-line {
    animation: lineExpand 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    transform-origin: left;
}

.hero-label {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero-h1 {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-subtitle {
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-cta {
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-image-wrap {
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-group .reveal:nth-child(1) {
    transition-delay: 0ms;
}

.reveal-group .reveal:nth-child(2) {
    transition-delay: 100ms;
}

.reveal-group .reveal:nth-child(3) {
    transition-delay: 200ms;
}

.reveal-group .reveal:nth-child(4) {
    transition-delay: 300ms;
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn-primary {
    display: inline-block;
    background: var(--color-cta-bg);
    color: var(--color-cta-text);
    padding: 16px 40px;
    font-family: var(--font-family);
    font-size: var(--text-label);
    font-weight: var(--weight-light);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-cta-hover);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover::after {
    left: 150%;
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border-mid);
    padding: 14px 36px;
    font-family: var(--font-family);
    font-size: var(--text-label);
    font-weight: var(--weight-light);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.12);
}

/* ===================================================================
   NAVBAR
   =================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px var(--section-padding-x);
    transition: background 0.4s ease,
        backdrop-filter 0.4s ease,
        box-shadow 0.4s ease;
    z-index: 100;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: var(--weight-thin);
    letter-spacing: 0.05em;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo .logo-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    width: 28px;
    height: 28px;
    padding: 0;
}

.hamburger svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* --- Mobile Menu --- */
.nav-menu-mobile {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 200;
}

.nav-menu-mobile.open {
    opacity: 1;
    pointer-events: all;
}

.nav-menu-mobile a {
    font-size: 36px;
    font-weight: 200;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}

.nav-menu-mobile a:hover {
    color: var(--color-gold);
}

.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
    font-size: 28px;
    transition: color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===================================================================
   HERO
   =================================================================== */

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

@media (max-width: 768px) {
    #hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 48px;
    }
}

#hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse at center,
            rgba(201, 169, 110, 0.05) 0%,
            transparent 65%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
    width: 100%;
}

.hero-h1 {
    font-size: var(--text-hero);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-h1 {
        font-size: var(--text-hero-mob);
    }
}

.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--color-muted);
    max-width: 480px;
    line-height: 1.75;
    margin-top: 24px;
}

.hero-cta {
    margin-top: 48px;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--color-gold);
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image-wrap {
        display: none;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: var(--section-padding-x);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-muted);
    font-size: var(--text-label);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: var(--color-gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ===================================================================
   SECTION — O NAS
   =================================================================== */

#o-nas {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-alt);
}

.section-intro-block {
    max-width: 720px;
    padding-left: 40px;
    border-left: 1px solid var(--color-gold);
    margin-top: 48px;
}

.section-intro-block p {
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--color-muted-dark);
    line-height: 1.8;
}

/* ===================================================================
   SECTION — APARTAMENTY
   =================================================================== */

#apartamenty {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg);
}

.feature-cards-wrap {
    margin-top: 56px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
}

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

.feature-card::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 24px;
    transition: width 0.4s ease;
}

.feature-card:hover::before {
    width: 32px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

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

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 300;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: var(--text-base);
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.7;
}

.stat-highlight {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    padding: 48px 40px;
    text-align: center;
    margin-top: 32px;
}

.stat-highlight-number {
    font-size: 80px;
    font-weight: 200;
    color: var(--color-gold);
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-highlight-desc {
    font-size: var(--text-base);
    color: var(--color-muted);
    font-weight: 300;
    margin-top: 12px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Highlight — styl kafelek stat-highlight */
.feature-highlight {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    padding: 48px 36px;
    text-align: center;
    transition: box-shadow 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
}

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

.feature-highlight .feature-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    margin: 0 auto 24px;
}

.feature-highlight h3 {
    font-size: var(--text-xl);
    font-weight: 300;
    margin-bottom: 12px;
}

.feature-highlight p {
    font-size: var(--text-base);
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ===================================================================
   SECTION — DOMKI
   =================================================================== */

#domki {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-alt);
}

.new-badge {
    display: inline-block;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: var(--text-label);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.domki-intro {
    max-width: 640px;
    margin-top: 24px;
}

.domki-intro p {
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-muted-dark);
    line-height: 1.75;
}

.stat-cards-wrap {
    margin-top: 56px;
}

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    padding: 36px 28px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}

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

.stat-number.dark {
    color: var(--color-text);
}

.stat-label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.stat-micro {
    font-size: 11px;
    color: var(--color-muted);
    line-height: 1.6;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin-top: auto;
}

.closing-statement {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-muted-dark);
    margin-top: 56px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.disclaimer {
    font-size: var(--text-sm);
    color: var(--color-muted);
    opacity: 0.7;
    line-height: 1.6;
    margin-top: 48px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

/* ===================================================================
   SECTION — LOKALIZACJA
   =================================================================== */

#lokalizacja {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg);
}

.location-list {
    border-top: 1px solid var(--color-border);
    margin-top: 64px;
}

.location-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.2s ease, padding-left 0.3s ease, margin-left 0.3s ease;
}

.location-item:hover {
    background: linear-gradient(90deg, var(--color-gold-dim), transparent);
    margin-left: -20px;
    padding-left: 20px;
}

.location-number {
    font-size: 40px;
    font-weight: 200;
    color: var(--color-gold);
    letter-spacing: -0.03em;
    line-height: 1;
}

.location-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}

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

.location-item h3 {
    font-size: var(--text-xl);
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.location-item p {
    color: var(--color-muted);
    font-size: var(--text-base);
    font-weight: 300;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .location-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 28px 0;
    }

    .location-number {
        font-size: 28px;
    }
}

/* ===================================================================
   SECTION — WYKOŃCZENIE (Standard wykończenia)
   =================================================================== */

#wykonczenie {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-alt);
}

.style-cards-wrap {
    margin-top: 56px;
}

.style-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.style-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.style-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.style-card:hover img {
    transform: scale(1.04);
}

.style-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 28px;
    background: linear-gradient(to top,
            rgba(20, 16, 10, 0.80) 0%,
            rgba(20, 16, 10, 0.20) 60%,
            transparent 100%);
}

.style-card h3 {
    font-size: 18px;
    font-weight: 300;
    color: #F5F5F0;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.style-card p {
    font-size: 13px;
    color: rgba(245, 245, 240, 0.65);
    font-weight: 300;
}

.style-card-line {
    width: 0;
    height: 1px;
    background: var(--color-gold);
    margin-bottom: 12px;
    transition: width 0.4s ease;
}

.style-card:hover .style-card-line {
    width: 24px;
}

/* ===================================================================
   SECTION — KONTAKT
   =================================================================== */

#kontakt {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg);
    position: relative;
}

#kontakt::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(201, 169, 110, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

.contact-text h2 {
    font-size: var(--text-3xl);
    font-weight: 200;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 400px;
}

.contact-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:first-child {
    border-top: 1px solid var(--color-border);
}

.contact-label {
    font-size: var(--text-label);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 24px;
    font-weight: 200;
    color: var(--color-text);
    letter-spacing: -0.01em;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: var(--color-gold);
}

.contact-value+.contact-value {
    margin-top: 6px;
}

@media (max-width: 768px) {
    .contact-text h2 {
        font-size: var(--text-2xl);
    }

    .contact-value {
        font-size: 20px;
    }
}

/* ===================================================================
   FOOTER
   =================================================================== */

footer {
    background: var(--color-bg-dark);
    padding: 48px var(--section-padding-x);
    border-top: 1px solid var(--color-border-dark);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-logo {
    font-size: 22px;
    font-weight: var(--weight-thin);
    letter-spacing: 0.05em;
    color: var(--color-text-inv);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo .logo-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    display: inline-block;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-copy {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 300;
    text-align: right;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* ===================================================================
   COOKIE BANNER
   =================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: var(--color-text-inv);
    padding: 20px var(--section-padding-x);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 300;
    border-top: 1px solid var(--color-border-dark);
    transform: translateY(100%);
    animation: slideUp 0.5s ease 1s both;
}

.cookie-banner.hidden {
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(100%);
    }
}

.cookie-banner p {
    font-size: var(--text-sm);
    font-weight: 300;
    color: rgba(245, 245, 240, 0.75);
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.cookie-accept {
    white-space: nowrap;
    padding: 12px 28px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
        text-align: center;
    }
}

/* ===================================================================
   MOBILE RESPONSIVE FINE TUNING
   =================================================================== */

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-highlight-number {
        font-size: 60px;
    }

    .contact-value {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }
}