/* =====================================================
   DARK PREMIUM / NOIR OPULENCE
   Luxury dark theme with gold accents, serif headings,
   cinematic grain texture, Art Deco-inspired details
   ===================================================== */

/* === Variables === */
:root {
    --primary: #c8a96e;
    --primary-dark: #b8954f;
    --primary-light: #d4bb85;
    --primary-glow: rgba(200, 169, 110, 0.12);
    --text: #f0ece4;
    --text-light: #a39e93;
    --text-muted: #6b6560;
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --bg-card: #161616;
    --bg-elevated: #1a1a1a;
    --border: #2a2a2a;
    --border-light: #222222;
    --radius: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.7);
    --shadow-primary: 0 8px 32px rgba(200, 169, 110, 0.15);
    --shadow-gold: 0 0 40px rgba(200, 169, 110, 0.08);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1140px;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Grain Overlay === */
.grain {
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* === Scroll Animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.6s; }
.reveal-delay-6 { transition-delay: 0.72s; }

/* === Gold Divider === */
.gold-divider {
    height: 1px; border: none; margin: 0;
    background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
    opacity: 0.3;
}

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}
.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 600; color: var(--text);
    text-decoration: none; display: flex; align-items: center; gap: 0.6rem;
    letter-spacing: 0.01em;
    transition: color var(--transition);
}
.navbar-brand:hover { color: var(--primary); }
.navbar-logo { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem; font-weight: 400; color: var(--text-light);
    transition: all var(--transition);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0.25rem; left: 1.1rem; right: 1.1rem;
    height: 1px; background: var(--primary);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 0.45rem 1.3rem !important;
    font-weight: 500 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--primary) !important;
    color: var(--bg) !important;
}

/* Hamburger */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 20px; position: relative; padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 1px; background: var(--text-light);
    position: absolute; left: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); width: 70%; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* === Hero === */
.hero {
    position: relative;
    background: var(--bg);
    color: var(--text);
    padding: 0;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(200, 169, 110, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 60%, rgba(200, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(200, 169, 110, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 70%, var(--bg) 100%);
    pointer-events: none;
    z-index: 1;
}
/* Hero background image overlay */
.hero[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
}
.hero[style*="background-image"]::before {
    background:
        linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.9) 100%),
        radial-gradient(ellipse at 25% 40%, rgba(200, 169, 110, 0.08) 0%, transparent 55%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; padding: 10rem 0 8rem; }

/* Decorative diagonal line */
.hero-deco {
    position: absolute;
    top: 15%; right: 10%;
    width: 1px; height: 200px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    opacity: 0.2;
    transform: rotate(30deg);
    z-index: 1;
}
.hero-deco-2 {
    position: absolute;
    bottom: 20%; right: 8%;
    width: 1px; height: 120px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    opacity: 0.15;
    transform: rotate(-20deg);
    z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 0.5rem 1.5rem;
    font-size: 0.72rem; font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem; font-weight: 700; line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}
.hero h1 em, .hero h1 i {
    color: var(--primary);
    font-style: italic;
}
.hero-sub {
    font-size: 1.1rem; color: var(--text-light); margin-bottom: 3rem;
    line-height: 1.8; max-width: 540px;
    font-weight: 300;
}
.hero-buttons { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.hero-scroll svg {
    width: 28px; height: 28px; color: var(--primary); opacity: 0.5;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Decorative shapes */
.hero-shape {
    position: absolute;
    border: 1px solid rgba(200, 169, 110, 0.06);
    pointer-events: none;
}
.hero-shape-1 {
    width: 500px; height: 500px; top: -150px; right: -100px; z-index: 1;
    border-radius: 0;
    transform: rotate(45deg);
}
.hero-shape-2 {
    width: 300px; height: 300px; bottom: -80px; left: 5%; z-index: 1;
    border-radius: 0;
    transform: rotate(45deg);
    border-color: rgba(200, 169, 110, 0.04);
}
.hero-shape-3 {
    width: 1px; height: 300px; top: 10%; right: 25%; z-index: 1;
    border: none;
    background: linear-gradient(180deg, transparent, rgba(200, 169, 110, 0.08), transparent);
}

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent; cursor: pointer;
    transition: all var(--transition); text-align: center;
    position: relative;
}
.btn-primary {
    background: var(--primary); color: var(--bg); border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-light); border-color: var(--primary-light); color: var(--bg);
    box-shadow: var(--shadow-primary);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary); color: var(--bg);
    box-shadow: var(--shadow-primary);
    transform: translateY(-1px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.82rem; }
.btn-full { width: 100%; }
.hero .btn-primary {
    background: var(--primary); color: var(--bg); border-color: var(--primary);
}
.hero .btn-primary:hover {
    background: var(--primary-light); border-color: var(--primary-light);
    box-shadow: 0 8px 32px rgba(200, 169, 110, 0.25);
    transform: translateY(-2px);
}
.hero .btn-outline {
    background: transparent; color: var(--text); border-color: rgba(240,236,228,0.25);
}
.hero .btn-outline:hover {
    background: rgba(240,236,228,0.08); color: var(--text);
    border-color: rgba(240,236,228,0.4);
}

/* === Sections === */
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.section-label {
    display: inline-block;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}
.section-label::before,
.section-label::after {
    content: '';
    position: absolute; top: 50%;
    width: 1.25rem; height: 1px;
    background: var(--primary);
    opacity: 0.4;
}
.section-label::before { left: 0; }
.section-label::after { right: 0; }
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 600; margin-bottom: 0.75rem;
    letter-spacing: -0.01em; line-height: 1.2;
    color: var(--text);
}
.section-subtitle {
    color: var(--text-light); font-size: 1rem; line-height: 1.8;
}
.section-title-left {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 600; margin-bottom: 2rem;
    letter-spacing: -0.01em; line-height: 1.2;
    color: var(--text);
    position: relative; padding-bottom: 1.25rem;
}
.section-title-left::after {
    content: ''; display: block; width: 48px; height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin-top: 1rem;
}
.section-cta { text-align: center; margin-top: 3.5rem; }

/* === Page Header === */
.page-header {
    background: var(--bg-alt);
    padding: 10rem 0 4rem;
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 600; color: var(--text);
    letter-spacing: -0.01em;
}
.page-header p {
    color: var(--text-light); font-size: 1.05rem; margin-top: 0.75rem;
}

/* === Services === */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
    border-color: rgba(200, 169, 110, 0.15);
    box-shadow: var(--shadow-gold);
}
.service-card:hover::before { opacity: 0.6; }
.service-icon {
    font-size: 2rem; display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem;
    letter-spacing: 0;
    color: var(--text);
}
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.75; }
.services-grid-full { grid-template-columns: repeat(2, 1fr); }
.service-card-full { display: flex; flex-direction: column; }
.service-image {
    overflow: hidden; margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}
.service-image img {
    width: 100%; height: 240px; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.9);
}
.service-card:hover .service-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

/* === About === */
.about-preview {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-image {
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}
.about-image::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(200, 169, 110, 0.06);
    pointer-events: none;
}
.about-image img { width: 100%; height: 440px; object-fit: cover; filter: brightness(0.9); }
.about-content .section-label { padding: 0; }
.about-content .section-label::before,
.about-content .section-label::after { display: none; }
.about-content p {
    color: var(--text-light); line-height: 1.9; margin-bottom: 2rem;
    font-size: 1rem;
}
.values-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.value-tag {
    border: 1px solid var(--primary);
    color: var(--primary); padding: 0.4rem 1.1rem;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.about-full { margin-bottom: 3.5rem; }
.about-image-full {
    overflow: hidden; margin-bottom: 3rem;
    max-width: 700px;
    border: 1px solid var(--border);
}
.about-image-full img { width: 100%; height: 420px; object-fit: cover; filter: brightness(0.9); }
.about-text-full {
    max-width: 700px; color: var(--text-light); line-height: 1.9; font-size: 1.05rem;
}
.values-section { margin-top: 4rem; }
.values-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 600; margin-bottom: 2rem;
    color: var(--text);
}
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem;
}
.value-card {
    display: flex; align-items: center; gap: 1rem;
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 1.25rem 1.5rem; font-weight: 400;
    transition: all var(--transition);
    color: var(--text);
}
.value-card:hover {
    border-color: rgba(200, 169, 110, 0.2);
    box-shadow: var(--shadow-gold);
}
.value-check {
    color: var(--primary); font-weight: 700; font-size: 0.85rem;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--primary);
}

/* === Team === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-grid-full { grid-template-columns: repeat(3, 1fr); }
.team-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.team-card:hover {
    border-color: rgba(200, 169, 110, 0.15);
    box-shadow: var(--shadow-gold);
}
.team-photo {
    width: 120px; height: 120px; margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.team-card:hover .team-photo {
    border-color: rgba(200, 169, 110, 0.25);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.team-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 600;
    color: var(--primary);
    background: var(--bg-elevated);
}
.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem;
    color: var(--text);
}
.team-role {
    color: var(--primary); font-size: 0.8rem; font-weight: 400;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.team-bio {
    color: var(--text-light); font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.7;
}
.team-contacts { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.2rem; }
.team-contacts a { font-size: 0.82rem; }

/* === Locations === */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.location-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 2.25rem;
    transition: all var(--transition);
}
.location-card:hover {
    border-color: rgba(200, 169, 110, 0.15);
    box-shadow: var(--shadow-gold);
}
.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem;
    color: var(--text);
}
.location-address { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0.75rem; }
.location-detail { font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--text-light); }
.location-detail strong { color: var(--text); }
.locations-list { display: flex; flex-direction: column; gap: 2.5rem; }
.location-full {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}
.location-full:hover { border-color: rgba(200, 169, 110, 0.15); box-shadow: var(--shadow-gold); }
.location-info { padding: 2.5rem; }
.location-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem;
    color: var(--text);
}
.location-details p { margin-bottom: 0.6rem; font-size: 0.95rem; color: var(--text-light); }
.location-details strong { color: var(--text); }
.location-hours { margin-top: 1rem; }
.location-hours p { color: var(--text-light); }
.location-map { min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: brightness(0.85) contrast(1.1) saturate(0); }

/* === Contact === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info h2, .contact-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600; margin-bottom: 2rem;
    color: var(--text);
}
.contact-item {
    display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 2rem;
}
.contact-icon {
    font-size: 1.1rem; line-height: 1;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}
.contact-item div { padding-top: 0.2rem; }
.contact-item div strong {
    display: block; font-size: 0.7rem; font-weight: 500;
    color: var(--primary); margin-bottom: 0.3rem;
    text-transform: uppercase; letter-spacing: 0.12em;
}
.contact-item div a, .contact-item div p {
    font-size: 0.95rem; margin: 0; color: var(--text);
    font-weight: 400;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-size: 0.72rem; font-weight: 500; color: var(--text-light);
    letter-spacing: 0.1em; text-transform: uppercase;
}
.form-group input, .form-group textarea {
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.95rem; font-family: var(--font-body);
    transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-feedback {
    margin-top: 1rem; padding: 1rem 1.25rem;
    border: 1px solid; font-size: 0.9rem;
    font-weight: 400;
}
.form-feedback.success { background: rgba(16, 185, 129, 0.08); color: #6ee7b7; border-color: rgba(16, 185, 129, 0.2); }
.form-feedback.error { background: rgba(239, 68, 68, 0.08); color: #fca5a5; border-color: rgba(239, 68, 68, 0.2); }

/* === CTA Section === */
.cta-section {
    background: var(--bg-alt);
    color: var(--text);
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 169, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    text-align: center; max-width: 560px; margin: 0 auto;
    position: relative; z-index: 2;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 600; margin-bottom: 1rem;
}
.cta-inner p { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1.05rem; font-weight: 300; }

/* === Prose (privacy, custom pages) === */
.prose {
    max-width: 700px; line-height: 1.9; color: var(--text-light); font-size: 1.05rem;
}
.prose h2, .prose h3 {
    font-family: var(--font-display);
    color: var(--text); margin: 2.5rem 0 0.75rem;
}
.page-image {
    margin-bottom: 2.5rem; overflow: hidden;
    max-width: 700px; border: 1px solid var(--border);
}
.page-image img { width: 100%; filter: brightness(0.9); }

/* === Empty state === */
.empty-state {
    color: var(--text-muted); font-style: italic; text-align: center; padding: 4rem 0;
    font-size: 1.05rem;
}

/* === WhatsApp FAB === */
.whatsapp-fab {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition);
    animation: fab-appear 0.5s ease 1s both;
}
.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}
@keyframes fab-appear {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* === Footer === */
.site-footer {
    background: var(--bg); color: var(--text-light);
    padding: 0;
    position: relative;
}
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
    opacity: 0.2;
}
.site-footer .container { padding-top: 4rem; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 3.5rem; margin-bottom: 3rem;
}
.footer-brand h3 {
    font-family: var(--font-display);
    color: var(--text); font-size: 1.3rem; margin-bottom: 0.75rem;
    font-weight: 600;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.25rem; }
.footer-vat { font-size: 0.82rem; opacity: 0.4; }
.site-footer h4 {
    color: var(--primary); font-size: 0.7rem; margin-bottom: 1.25rem;
    font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: var(--text-light); font-size: 0.88rem; transition: all var(--transition); }
.site-footer a:hover { color: var(--primary); }
.site-footer li { font-size: 0.88rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
    color: var(--text-muted); width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.footer-social a:hover {
    color: var(--primary); border-color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid var(--border); padding: 1.5rem 0;
    text-align: center; font-size: 0.82rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--primary); }

/* === Responsive === */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-inner { padding: 8rem 0 6rem; }
    .hero { min-height: 85vh; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr 1fr; }
    .about-preview { grid-template-columns: 1fr; gap: 3rem; }
    .about-image img { height: 320px; }
    .team-grid, .team-grid-full { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }
    .location-full { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section { padding: 5rem 0; }
    .page-header { padding: 8rem 0 3rem; }
    .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 640px) {
    .hamburger { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 80px; left: 0; right: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.85rem 1.25rem; width: 100%;
        color: var(--text-light) !important;
        font-size: 0.85rem;
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover { color: var(--primary) !important; }
    .nav-cta {
        text-align: center; margin-top: 0.5rem;
    }
    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-inner { padding: 7rem 0 5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.8rem; }
    .section-title-left { font-size: 1.6rem; }
    .services-grid, .services-grid-full { grid-template-columns: 1fr; }
    .team-grid, .team-grid-full { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 6.5rem 0 2.5rem; }
    .page-header h1 { font-size: 1.8rem; }
    .container { padding: 0 1.25rem; }
    .hero-shape { display: none; }
    .hero-deco, .hero-deco-2 { display: none; }
}
