/* ========================================
   SOHO ATLANTA — LUXURY REAL ESTATE
   Premium CSS Architecture
   ======================================== */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    /* Core Palette */
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --black-elevated: #1a1a1a;
    --black-subtle: #1e1e1e;
    --dark-border: #2a2a2a;
    
    /* Gold System */
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --gold-dark: #b8944f;
    --gold-muted: rgba(201, 169, 110, 0.15);
    --gold-subtle: rgba(201, 169, 110, 0.08);
    --gold-glow: rgba(201, 169, 110, 0.3);
    
    /* Text */
    --white: #ffffff;
    --white-primary: rgba(255, 255, 255, 0.95);
    --white-secondary: rgba(255, 255, 255, 0.7);
    --white-tertiary: rgba(255, 255, 255, 0.45);
    --white-muted: rgba(255, 255, 255, 0.25);
    
    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;
    
    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1280px;
    --container-padding: clamp(20px, 4vw, 48px);
    
    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-out-quart);
    --transition-medium: 0.4s var(--ease-out-expo);
    --transition-slow: 0.7s var(--ease-out-expo);
    
    /* Borders */
    --border-subtle: 1px solid var(--dark-border);
    --border-gold: 1px solid var(--gold-muted);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

::selection {
    background-color: var(--gold);
    color: var(--black);
}

/* ---------- UTILITY ---------- */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.gold-text {
    color: var(--gold);
}

.title-italic {
    font-style: italic;
    color: var(--gold);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-label-light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white-primary);
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--white-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary svg {
    transition: transform var(--transition-medium);
}

.btn-primary-large {
    padding: 20px 48px;
    font-size: 14px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--white-muted);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--dark-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
    z-index: 1001;
}

.logo-soho {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--white);
}

.logo-atlanta {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    color: var(--gold);
    padding: 10px 24px;
    border: 1px solid var(--gold-muted);
    letter-spacing: 0.12em;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: all var(--transition-medium);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    text-align: center;
    margin-bottom: 60px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--white-secondary);
    padding: 16px 0;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    color: var(--gold);
    font-style: italic;
}

.mobile-menu-footer {
    text-align: center;
}

.mobile-menu-footer p {
    font-size: 12px;
    color: var(--white-tertiary);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-out-expo) forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.55) 75%,
        rgba(0, 0, 0, 0.92) 100%
    );
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding) clamp(60px, 10vh, 120px);
    width: 100%;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7.5vw, 88px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title-italic {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 300;
    color: var(--white-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.hero-stat-plus {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-tertiary);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    right: var(--container-padding);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-indicator span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-tertiary);
    writing-mode: vertical-lr;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 2s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* ========================================
   FEATURE STRIP
   ======================================== */
.feature-strip {
    position: relative;
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--black-soft);
    overflow: hidden;
}

.feature-strip-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, var(--gold-subtle) 0%, transparent 70%);
}

.feature-strip-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-strip-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.feature-strip-text {
    font-family: var(--font-accent);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 300;
    color: var(--white-secondary);
    line-height: 1.8;
}

.feature-strip-accent {
    flex-shrink: 0;
}

.accent-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    border: 1px solid var(--dark-border);
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-subtle);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.service-card-content {
    padding: 32px;
    background: var(--black-card);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    margin-bottom: 20px;
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-tertiary);
    line-height: 1.7;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.why-us-bg-pattern {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.why-us-left .section-title {
    margin-bottom: 20px;
}

.why-us-description {
    font-family: var(--font-accent);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 300;
    color: var(--white-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.why-us-image-wrapper {
    position: relative;
}

.why-us-image-wrapper img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.why-us-image-border {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid var(--gold-muted);
    pointer-events: none;
    transition: all var(--transition-medium);
}

.why-us-image-wrapper:hover .why-us-image-border {
    top: 12px;
    left: 12px;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-us-card {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--dark-border);
    transition: all var(--transition-fast);
}

.why-us-card:first-child {
    border-top: 1px solid var(--dark-border);
}

.why-us-card:hover {
    padding-left: 8px;
}

.why-us-card-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--gold-muted);
    flex-shrink: 0;
    line-height: 1;
    min-width: 40px;
    transition: color var(--transition-fast);
}

.why-us-card:hover .why-us-card-number {
    color: var(--gold);
}

.why-us-card-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.why-us-card-content p {
    font-size: 14px;
    font-weight: 300;
    color: var(--white-tertiary);
    line-height: 1.7;
}

/* ========================================
   GALLERY / PROPERTIES
   ======================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 4px 12px;
    margin-bottom: 12px;
}

.gallery-item-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-item-detail {
    font-size: 12px;
    font-weight: 400;
    color: var(--white-secondary);
    letter-spacing: 0.03em;
}

.gallery-item-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--gold);
    margin-top: 4px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--black-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 40px 32px;
    border: 1px solid var(--dark-border);
    background: var(--black-card);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    margin-bottom: 24px;
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 300;
    font-style: italic;
    color: var(--white-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.testimonial-author-role {
    font-size: 12px;
    font-weight: 300;
    color: var(--white-tertiary);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: var(--black);
}

.trust-divider {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.trust-divider-line {
    flex: 1;
    height: 1px;
    background: var(--dark-border);
}

.trust-divider-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-tertiary);
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--dark-border);
}

.trust-badge-abbr {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--white-primary);
    letter-spacing: 0.04em;
}

.trust-badge-name {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-tertiary);
    text-align: center;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.contact-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.contact-container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 640px;
}

.contact-description {
    font-family: var(--font-accent);
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 300;
    color: var(--white-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-phone-wrapper {
    margin-bottom: 40px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 36px;
    border: 1px solid var(--gold-muted);
    background: var(--gold-subtle);
    transition: all var(--transition-medium);
}

.contact-phone:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.contact-phone:hover .contact-phone-arrow {
    transform: translateX(4px);
    color: var(--gold);
}

.contact-phone-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-phone-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-tertiary);
}

.contact-phone-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.contact-phone-arrow {
    color: var(--white-tertiary);
    transition: all var(--transition-medium);
    margin-left: 8px;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--white-tertiary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

.contact-address-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-subtle) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: clamp(48px, 6vw, 80px) 0 32px;
    background: var(--black);
    border-top: 1px solid var(--dark-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 6vw, 80px);
    margin-bottom: 48px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 300;
    color: var(--white-tertiary);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 320px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 13px;
    font-weight: 300;
    color: var(--white-tertiary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-divider {
    height: 1px;
    background: var(--dark-border);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 12px;
    font-weight: 300;
    color: var(--white-tertiary);
}

.footer-legal {
    font-size: 11px;
    font-weight: 300;
    color: var(--white-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gallery-item-overlay {
        opacity: 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .feature-strip-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-phone {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
    }
    
    .contact-phone-arrow {
        display: none;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badge {
        padding: 16px 20px;
    }
    
    .trust-badge-abbr {
        font-size: 20px;
    }
    
    .why-us-image-wrapper {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   PRELOADER (subtle)
   ======================================== */
body {
    animation: bodyFadeIn 0.6s var(--ease-out-expo) forwards;
}

@keyframes bodyFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}