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

:root {
    --navy-950: #0a1628;
    --navy-900: #0f1f36;
    --navy-800: #1a2744;
    --navy-700: #243656;
    --navy-600: #2e4468;
    --gold-500: #c9a84c;
    --gold-400: #d4b965;
    --gold-300: #e0ca85;
    --gold-600: #b08d2e;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --white: #ffffff;
    --text-light: #e8e4dc;
    --text-muted: #a8a49c;
    --text-dark: #1a1a1a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 200;
    font-weight: 600;
}
.skip-link:focus {
    top: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}
.btn--gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-light:hover {
    background: var(--white);
    color: var(--navy-950);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* SECTION HEADER */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

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

.section-title--accent {
    color: var(--gold-500);
}

.section-header--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    line-height: 1.7;
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background var(--transition);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.nav__logo-text--accent {
    color: var(--gold-500);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--gold-500);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--gold-400);
    color: var(--navy-950);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(26, 39, 68, 0.85) 50%,
        rgba(10, 22, 40, 0.88) 100%
    );
}

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

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero__title--accent {
    color: var(--gold-500);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: var(--cream-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
    border-color: rgba(201, 168, 76, 0.3);
}

.service-card__icon {
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--navy-900);
    overflow: hidden;
}

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

.about__image-wrap {
    position: relative;
}

.about__image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.about__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-500);
    border-radius: 12px;
    z-index: 0;
}

.about__stats {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--navy-800);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    padding: 20px 32px;
    z-index: 2;
}

.about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-500);
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.3);
}

.about__eyebrow {
    color: var(--gold-500);
}

.about__title {
    color: var(--white);
    margin-bottom: 20px;
}

.about__text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.about__feature-icon {
    flex-shrink: 0;
}

/* ========== GALLERY ========== */
.gallery {
    padding: 100px 0;
    background: var(--cream-100);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
    margin-top: 56px;
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item:nth-child(2) {
    grid-column: span 5;
}

.gallery__item:nth-child(3) {
    grid-column: span 5;
}

.gallery__item:nth-child(4) {
    grid-column: span 4;
}

.gallery__item:nth-child(5) {
    grid-column: span 4;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--cream-50);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

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

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.93) 0%, rgba(26, 39, 68, 0.88) 100%);
}

.cta-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--navy-900);
}

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

.contact__title {
    color: var(--white);
    margin-bottom: 16px;
}

.contact__text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 4px;
}

.contact__detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact__detail-value a {
    color: var(--text-light);
    transition: color var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold-500);
}

.contact__form-wrap {
    background: var(--navy-800);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 40px;
}

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

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.contact__input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

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

.contact__input:focus {
    border-color: var(--gold-500);
    background: rgba(201, 168, 76, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact__select option {
    background: var(--navy-800);
    color: var(--white);
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.contact__success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--gold-400);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact__success[hidden] {
    display: none;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer__logo-text--accent {
    color: var(--gold-500);
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer__links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold-500);
}

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

.footer__phone,
.footer__email {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--gold-500);
}

.footer__address {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== MOBILE MENU ========== */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__link {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link--cta {
        margin-top: 12px;
        text-align: center;
        border-bottom: none;
    }
}

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

    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image img {
        height: 400px;
    }

    .about__image-accent {
        display: none;
    }

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

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item:nth-child(n) {
        grid-column: span 1;
    }

    .gallery__item img {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__trust {
        flex-direction: column;
        gap: 16px;
    }

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

    .about__stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        padding: 24px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }

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

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
