/* ============================================
   EMM Real Estate — Luxury Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #141414;
    --black-elevated: #1a1a1a;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --gold-dark: #b08d4f;
    --gold-muted: rgba(201, 169, 110, 0.15);
    --gold-subtle: rgba(201, 169, 110, 0.08);
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-04: rgba(255, 255, 255, 0.04);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.15);
    --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* --- 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;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white-70);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 48px; }
}

@media (min-width: 1024px) {
    .container { padding: 0 64px; }
}

/* --- Typography --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-title.text-left {
    text-align: left;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

@media (min-width: 768px) {
    .section-header { margin-bottom: 96px; }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.5s var(--transition-smooth);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    transition: transform 0.4s var(--transition-smooth);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary.btn-large {
    padding: 20px 48px;
    font-size: 0.9rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border: 1px solid var(--white-15);
    color: var(--white-90);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.5s var(--transition-smooth);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.6s var(--transition-smooth);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-container { padding: 0 48px; }
}

@media (min-width: 1024px) {
    .nav-container { padding: 0 64px; }
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-70);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    transition: all 0.4s var(--transition-smooth) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
    z-index: 1001;
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
}

.hamburger-line {
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.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(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transform: translateY(30px);
    transition: transform 0.6s var(--transition-smooth);
}

.mobile-menu.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white-70);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 14px 36px;
    margin-top: 16px;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 12s ease-out;
}

.hero.loaded .hero-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.55) 40%,
        rgba(10, 10, 10, 0.3) 70%,
        rgba(10, 10, 10, 0.5) 100%
    );
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 24px;
    padding-top: 80px;
}

@media (min-width: 768px) {
    .hero-content { padding: 0 48px; padding-top: 80px; }
}

@media (min-width: 1024px) {
    .hero-content { padding: 0 64px; padding-top: 80px; }
}

@media (min-width: 1400px) {
    .hero-content { max-width: 880px; }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--white-50);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--white-08);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-30);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--white-08);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

@media (max-width: 767px) {
    .hero-scroll-indicator { display: none; }
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-30);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* --- Feature Strip --- */
.feature-strip {
    padding: 80px 0;
    background: var(--black);
    border-bottom: 1px solid var(--white-04);
}

@media (min-width: 768px) {
    .feature-strip { padding: 100px 0; }
}

.feature-strip-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .feature-strip-container { padding: 0 48px; gap: 48px; }
}

.strip-decoration {
    flex-shrink: 0;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .strip-decoration { display: none; }
}

.strip-text {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--white-50);
    text-align: center;
}

.strip-text em {
    font-style: italic;
    color: var(--gold);
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--black);
}

@media (min-width: 768px) {
    .services { padding: 140px 0; }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { gap: 28px; }
}

.service-card {
    position: relative;
    padding: 44px 36px;
    background: var(--black-card);
    border: 1px solid var(--white-04);
    transition: all 0.6s var(--transition-smooth);
    overflow: hidden;
}

.service-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.6s var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold-muted);
    background: var(--black-elevated);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.service-card:hover .service-card-border {
    opacity: 1;
}

.service-icon {
    margin-bottom: 28px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    opacity: 1;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--white-30);
    line-height: 1.75;
}

.service-card-number {
    position: absolute;
    bottom: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--white-04);
    line-height: 1;
    transition: color 0.6s var(--transition-smooth);
}

.service-card:hover .service-card-number {
    color: var(--gold-muted);
}

/* --- Why Us --- */
.why-us {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .why-us { padding: 160px 0; }
}

.why-us-bg {
    position: absolute;
    inset: 0;
}

.why-us-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.9) 45%,
        rgba(10, 10, 10, 0.75) 100%
    );
}

@media (max-width: 1023px) {
    .why-us-overlay {
        background: linear-gradient(
            to bottom,
            rgba(10, 10, 10, 0.97) 0%,
            rgba(10, 10, 10, 0.9) 50%,
            rgba(10, 10, 10, 0.95) 100%
        );
    }
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.why-us-left .section-tag {
    justify-content: flex-start;
}

.why-us-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 480px;
}

.btn-primary.inline {
    display: inline-flex;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s var(--transition-smooth);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-muted);
    transform: translateX(8px);
}

.why-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-subtle);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.why-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.why-card-content p {
    font-size: 0.88rem;
    color: var(--white-30);
    line-height: 1.7;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--black);
}

@media (min-width: 768px) {
    .gallery { padding: 140px 0; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-large {
    aspect-ratio: auto;
}

@media (min-width: 1024px) {
    .gallery-item-large {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.2) 40%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    transform: translateY(12px);
    transition: transform 0.5s var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 4px 12px;
    margin-bottom: 8px;
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--white-50);
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: var(--black-light);
    border-top: 1px solid var(--white-04);
    border-bottom: 1px solid var(--white-04);
}

@media (min-width: 768px) {
    .testimonials { padding: 140px 0; }
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s var(--transition-smooth);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-card { padding: 64px 48px; }
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white-70);
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold-muted);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-muted);
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--white-30);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--white-08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-08);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}

.testimonial-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* --- Trust Badges --- */
.trust {
    padding: 72px 0;
    background: var(--black);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--white-04);
    transition: all 0.4s var(--transition-smooth);
}

.trust-badge:hover {
    border-color: var(--gold-muted);
    background: var(--white-04);
}

.trust-icon {
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 0.75rem;
    color: var(--white-30);
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--black);
}

@media (min-width: 768px) {
    .contact { padding: 140px 0; }
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contact-decoration {
    position: absolute;
    top: -30px;
    right: -20px;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .contact-decoration { display: none; }
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    border: 1px solid var(--gold-muted);
    background: var(--gold-subtle);
    transition: all 0.5s var(--transition-smooth);
    margin-bottom: 48px;
}

.contact-phone:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.phone-icon {
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.phone-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-30);
    margin-bottom: 4px;
}

.phone-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.phone-arrow {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.4s var(--transition-smooth);
}

.contact-phone:hover .phone-arrow {
    transform: translateX(4px);
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 640px) {
    .contact-hours {
        flex-direction: row;
        justify-content: center;
    }
}

.hours-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hours-day {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-50);
    margin-bottom: 4px;
}

.hours-time {
    font-size: 0.85rem;
    color: var(--white-30);
}

.hours-divider {
    width: 1px;
    height: 36px;
    background: var(--white-08);
    display: none;
}

@media (min-width: 640px) {
    .hours-divider { display: block; }
}

/* --- Final CTA --- */
.final-cta {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .final-cta { padding: 200px 0; }
}

.final-cta-bg {
    position: absolute;
    inset: 0;
}

.final-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.final-cta-title em {
    font-style: italic;
    color: var(--gold);
}

.final-cta-desc {
    font-size: 1.05rem;
    color: var(--white-50);
    line-height: 1.8;
    margin-bottom: 48px;
}

/* --- Footer --- */
.footer {
    padding: 72px 0 0;
    background: var(--black);
    border-top: 1px solid var(--white-04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--white-30);
    line-height: 1.75;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-rating span {
    font-size: 0.8rem;
    color: var(--white-30);
    margin-left: 8px;
}

.footer-links-group h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-50);
    margin-bottom: 24px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group li,
.footer-links-group a {
    font-size: 0.88rem;
    color: var(--white-30);
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--white-04);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--white-15);
}

.footer-legal {
    font-size: 0.72rem !important;
    color: var(--white-08) !important;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* --- Focus States --- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--white-08);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--white-15);
}