/* ================================================================
   CSS CUSTOM PROPERTIES & RESET
   ================================================================ */

:root {
    /* Primary Palette */
    --color-primary: #1a1a2e;
    --color-secondary: #f5f0eb;
    --color-accent: #1565c0;
    --color-accent-light: #a8936f;
    --color-accent-dark: #6e5a42;

    /* Extended Palette */
    --color-marble: #f8f5f0;
    --color-marble-dark: #eee8df;
    --color-ivory: #fdfcfa;
    --color-charcoal: #2c2c3e;
    --color-charcoal-light: #3d3d52;
    --color-bronze: #b89b6a;
    --color-bronze-dark: #7a6545;
    --color-text: #2a2a3a;
    --color-text-light: #5a5a6e;
    --color-text-muted: #8a8a9a;
    --color-border: #d4cec4;
    --color-border-light: #e8e2d8;
    --color-white: #ffffff;
    --color-black: #0a0a14;
    --color-success: #4a7c59;
    --color-error: #9c4040;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;

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

    /* Sizing */
    --container-max: 1200px;
    --container-narrow: 800px;
    --header-height: 80px;

    /* Borders */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 16px 50px rgba(26, 26, 46, 0.16);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*,
*::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-secondary);
    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-dark);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */

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

.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;
}

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

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

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.6);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(74, 124, 89, 0);
    }
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.001s;
}

[data-animate].animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-up"].animated {
    animation-name: fadeUp;
}

[data-animate="fade-right"].animated {
    animation-name: fadeRight;
}

[data-animate="fade-left"].animated {
    animation-name: fadeLeft;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

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

.btn-primary:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-accent);
    padding: 0.8rem 1rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ================================================================
   ORNAMENTS & DECORATIVE ELEMENTS
   ================================================================ */

.section-ornament-top,
.section-ornament-bottom,
.header-ornament-top,
.header-ornament-bottom,
.footer-ornament-top {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-border) 20%,
        var(--color-accent) 50%,
        var(--color-border) 80%,
        transparent 100%
    );
    position: relative;
}

.section-ornament-top::after,
.section-ornament-bottom::after,
.footer-ornament-top::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.section-ornament-top::after {
    top: -6px;
}

.section-ornament-bottom::after {
    bottom: -6px;
}

.footer-ornament-top::after {
    top: -6px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 0 auto var(--space-lg);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: var(--space-xl);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.5s ease forwards;
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-bronze);
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 240, 235, 0.85);
}

.cookie-text a {
    color: var(--color-bronze);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.5rem;
}

.cookie-actions .btn-outline {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.cookie-actions .btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

/* ================================================================
   HEADER
   ================================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.logo-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.04em;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--color-primary);
    color: var(--color-secondary) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: var(--radius-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

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

.nav-link-cta:hover {
    background: var(--color-charcoal);
    color: var(--color-secondary) !important;
}

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

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-4xl)) var(--space-xl) var(--space-4xl);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 115, 85, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 115, 85, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--color-secondary) 0%, var(--color-marble) 50%, var(--color-secondary) 100%);
}

.hero-marble-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 200px,
            rgba(139, 115, 85, 0.02) 200px,
            rgba(139, 115, 85, 0.02) 201px
        );
    pointer-events: none;
}

.hero-columns-left,
.hero-columns-right {
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 40px;
    pointer-events: none;
}

.hero-columns-left {
    left: 5%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(139, 115, 85, 0.08) 20%, rgba(139, 115, 85, 0.08) 80%, transparent 100%);
    border-left: 1px solid rgba(139, 115, 85, 0.12);
    border-right: 1px solid rgba(139, 115, 85, 0.12);
}

.hero-columns-right {
    right: 5%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(139, 115, 85, 0.08) 20%, rgba(139, 115, 85, 0.08) 80%, transparent 100%);
    border-left: 1px solid rgba(139, 115, 85, 0.12);
    border-right: 1px solid rgba(139, 115, 85, 0.12);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-ornament-frame {
    position: absolute;
    inset: -40px;
    pointer-events: none;
}

.hero-corner {
    position: absolute;
    width: 60px;
    height: 60px;
}

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

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

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

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

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

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

.badge-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
}

.hero-title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

.hero-title-accent {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-charcoal) 50%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

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

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 400;
}

.stat-decimal {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.stat-item {
    flex-direction: row;
    gap: var(--space-xs);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--color-border), transparent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.scroll-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

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

/* ================================================================
   SOCIAL PROOF TICKER
   ================================================================ */

.social-proof-ticker {
    background: var(--color-primary);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xl);
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(245, 240, 235, 0.8);
    white-space: nowrap;
}

.ticker-separator {
    color: rgba(139, 115, 85, 0.4);
    font-size: 0.8rem;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */

.about-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 115, 85, 0.04) 0%, transparent 50%),
        var(--color-secondary);
}

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

.about-image-frame {
    position: relative;
    padding: 16px;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.frame-ornament {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}

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

.frame-ornament-tl { top: -4px; left: -4px; }
.frame-ornament-tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.frame-ornament-tl::after { top: 0; left: 0; width: 2px; height: 20px; }

.frame-ornament-tr { top: -4px; right: -4px; }
.frame-ornament-tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.frame-ornament-tr::after { top: 0; right: 0; width: 2px; height: 20px; }

.frame-ornament-bl { bottom: -4px; left: -4px; }
.frame-ornament-bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.frame-ornament-bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }

.frame-ornament-br { bottom: -4px; right: -4px; }
.frame-ornament-br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.frame-ornament-br::after { bottom: 0; right: 0; width: 2px; height: 20px; }

.about-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-divider-col {
    display: flex;
    justify-content: center;
}

.column-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    height: 100%;
    min-height: 200px;
}

.divider-ornament {
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0;
}

.divider-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-border), var(--color-accent));
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    line-height: 1.3;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border-light);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--color-white);
}

/* ================================================================
   GALLERY SECTION
   ================================================================ */

.gallery-section {
    padding: var(--space-5xl) 0;
    background:
        linear-gradient(135deg, var(--color-marble) 0%, var(--color-secondary) 50%, var(--color-marble) 100%);
}

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

.gallery-item-large {
    grid-row: span 2;
}

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

.gallery-frame {
    position: relative;
    background: var(--color-white);
    padding: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-base);
    cursor: pointer;
}

.gallery-frame:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-frame:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 12px;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.gallery-plaque {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 4px 16px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-frame:hover .gallery-plaque {
    opacity: 1;
    bottom: 24px;
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */

.features-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 30% 80%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        var(--color-secondary);
}

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

.feature-card {
    position: relative;
}

.feature-card-inner {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: var(--space-2xl);
    height: 100%;
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.feature-card-inner:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-accent);
}

.feature-card-inner:hover::before {
    opacity: 1;
}

.feature-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(139, 115, 85, 0.1);
    line-height: 1;
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
}

.feature-card-icon {
    margin-bottom: var(--space-xl);
}

.feature-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.feature-card-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.feature-card-line {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin-top: var(--space-xl);
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */

.testimonials-section {
    padding: var(--space-5xl) 0;
    background:
        linear-gradient(180deg, var(--color-marble) 0%, var(--color-secondary) 100%);
}

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

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

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

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

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

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

.author-location {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.author-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */

.faq-section {
    padding: var(--space-5xl) 0;
    background: var(--color-secondary);
}

.faq-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    background: var(--color-white);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition-fast);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-q-number {
    font-weight: 400;
    color: var(--color-accent);
    font-size: 0.9rem;
    min-width: 30px;
}

.faq-q-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    padding-left: calc(var(--space-xl) + 30px + var(--space-md));
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ================================================================
   TRUST SECTION
   ================================================================ */

.trust-section {
    padding: var(--space-4xl) 0;
    background:
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-charcoal) 100%);
    color: var(--color-secondary);
}

.trust-section .section-number {
    color: var(--color-bronze);
}

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

.trust-section .section-subtitle {
    color: rgba(245, 240, 235, 0.7);
}

.trust-section .section-line {
    background: linear-gradient(90deg, transparent, var(--color-bronze), transparent);
}

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

.trust-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border: 1px solid rgba(139, 115, 85, 0.2);
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

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

.trust-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.trust-text {
    font-size: 0.95rem;
    color: rgba(245, 240, 235, 0.7);
    line-height: 1.7;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */

.contact-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(139, 115, 85, 0.06) 0%, transparent 50%),
        var(--color-secondary);
}

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

.contact-info-card {
    padding: var(--space-2xl);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.contact-info-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--color-marble);
}

.contact-detail-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.contact-live-counter {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-marble);
    border: 1px solid var(--color-border-light);
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success);
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
}

/* Form Styles */
.signup-form {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

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

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text);
    background: var(--color-marble);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
    background: var(--color-white);
}

.form-input.error {
    border-color: var(--color-error);
}

.form-error {
    display: block;
    font-size: 0.85rem;
    color: var(--color-error);
    margin-top: var(--space-xs);
    min-height: 0;
}

.form-consent,
.form-age-consent {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

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

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

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

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

.btn .spinner {
    animation: spin 1s linear infinite;
}

.form-message {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-align: center;
    border-radius: var(--radius-sm);
}

.form-message.success {
    background: rgba(74, 124, 89, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(74, 124, 89, 0.3);
}

.form-message.error {
    background: rgba(156, 64, 64, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(156, 64, 64, 0.3);
}

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

.site-footer {
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

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

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--color-accent);
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
    display: block;
}

.footer-logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-bronze);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

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

.footer-links a,
.footer-links span {
    font-size: 0.95rem;
    color: rgba(245, 240, 235, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact-links li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
}

.footer-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3), transparent);
    margin-bottom: var(--space-xl);
}

.footer-bottom-content {
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: rgba(245, 240, 235, 0.5);
    margin-bottom: var(--space-sm);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(245, 240, 235, 0.35);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */

.legal-page {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    min-height: 100vh;
    background: var(--color-secondary);
}

.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-3xl);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    text-align: center;
}

.legal-content .legal-date {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border-light);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border-light);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: var(--color-primary);
    font-weight: 600;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--space-2xl);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.legal-back-link:hover {
    color: var(--color-accent-dark);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

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

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

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

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

    .gallery-item-large {
        grid-row: span 1;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-secondary);
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border-light);
    }

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

    .nav-link-cta {
        text-align: center;
        margin-top: var(--space-md);
    }

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

    .about-divider-col {
        display: none;
    }

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

    .gallery-item-wide {
        grid-column: span 1;
    }

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

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

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

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

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

    .hero-columns-left,
    .hero-columns-right {
        display: none;
    }

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

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

    .hero-scroll-indicator {
        display: none;
    }

    .cookie-inner {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }

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

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

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

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

    .hero-ornament-frame {
        display: none;
    }

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

/* ================================================================
   PRINT STYLES
   ================================================================ */

@media print {
    .site-header,
    .cookie-banner,
    .social-proof-ticker,
    .hero-scroll-indicator,
    .mobile-toggle {
        display: none !important;
    }

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