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

:root {
    --navy: #0A1628;
    --navy-light: #132240;
    --gold: #C8A45C;
    --gold-light: #D4B76E;
    --gold-pale: #F5EDD8;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray-50: #FAFAF9;
    --gray-100: #F5F5F4;
    --gray-200: #E7E5E4;
    --gray-300: #D6D3D1;
    --gray-400: #A8A29E;
    --gray-500: #78716C;
    --gray-600: #57534E;
    --gray-700: #44403C;
    --gray-800: #292524;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(200, 164, 92, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.nav-logo-icon {
    color: var(--gold);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s var(--ease-smooth);
}

.nav-phone:hover {
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(10, 22, 40, 0.72) 50%,
        rgba(10, 22, 40, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-accent-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 28px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-title-line:first-child {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 0;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1;
}

.hero-scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200, 164, 92, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── SECTION COMMON ── */
.services, .about, .why-us, .contact {
    padding: 120px 0;
}

.divider-section {
    padding: 80px 0;
    background: var(--navy);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 64px;
}

/* ── SERVICES ── */
.services {
    background: var(--white);
}

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

.service-card {
    padding: 44px 36px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-line {
    width: 32px;
    height: 1px;
    background: var(--gray-300);
    margin-bottom: 24px;
    transition: width 0.4s var(--ease-out), background 0.3s var(--ease-smooth);
}

.service-card:hover .service-card-line {
    width: 48px;
    background: var(--gold);
}

.service-icon {
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.75;
}

/* ── ABOUT ── */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    min-width: 28px;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.value-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ── DIVIDER ── */
.divider-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── WHY US ── */
.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 80px;
    border: 1px solid var(--gray-200);
}

.why-stat {
    padding: 48px 40px;
    border-right: 1px solid var(--gray-200);
    transition: background 0.3s var(--ease-smooth);
}

.why-stat:last-child {
    border-right: none;
}

.why-stat:hover {
    background: var(--off-white);
}

.why-stat-accent {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
}

.why-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.why-stat-number {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.5;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--gray-200);
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-600);
    transition: background 0.25s var(--ease-smooth);
}

.why-feature:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
}

.why-feature:hover {
    background: var(--off-white);
}

.why-feature-check {
    color: var(--gold);
    flex-shrink: 0;
}

/* ── MAP ── */
.map-section {
    background: var(--off-white);
    padding: 100px 0;
}

.map-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.map-info {
    padding: 64px 56px;
    background: var(--white);
}

.map-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.map-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.map-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.map-detail-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.6;
}

.map-link {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.map-link:hover {
    color: var(--gold);
}

.map-frame {
    min-height: 420px;
    background: var(--gray-200);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ── CONTACT ── */
.contact {
    background: var(--white);
}

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

.contact-body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-direct-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    padding: 20px 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
}

.contact-direct-item:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.contact-direct-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.contact-direct-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--navy);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--navy);
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    resize: none;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-textarea {
    line-height: 1.7;
}

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

.form-group:focus-within .form-label {
    color: var(--gold);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--navy);
    margin-top: 8px;
}

.form-success svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
    background: var(--navy);
    padding: 72px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--gold);
}

.footer-logo span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
    letter-spacing: 0.02em;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-copy {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .about-grid {
        gap: 48px;
    }

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

    .why-feature:nth-child(odd) {
        border-right: none;
    }

    .map-inner {
        grid-template-columns: 1fr;
    }

    .map-frame {
        min-height: 300px;
    }

    .map-frame iframe {
        min-height: 300px;
    }

    .contact-grid {
        gap: 56px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-menu .nav-phone {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-content {
        padding: 100px 24px 60px;
    }

    .services, .about, .why-us, .contact {
        padding: 80px 0;
    }

    .section-subtitle {
        margin-bottom: 48px;
    }

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

    .service-card:nth-child(3) {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 360px;
    }

    .about-image-accent {
        display: none;
    }

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

    .why-stat {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .why-stat:last-child {
        border-bottom: none;
    }

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

    .map-info {
        padding: 48px 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .nav-inner {
        padding: 0 20px;
    }

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

    .btn {
        justify-content: center;
        width: 100%;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
