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

:root {
    --navy: #0a1f3f;
    --navy-900: #061226;
    --gold: #c9a84c;
    --gold-light: #d4af5a;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #171717;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }
.container--two-col { max-width: 1100px; }

.section { padding: 100px 0; }
.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
}

.divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: var(--gray-200);
}

/* ── HEADER ── */
.header {
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
}
.header__logo-text { letter-spacing: -0.01em; }
.header__nav { display: flex; align-items: center; }
.header__links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.header__link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gray-700);
    transition: color 0.2s var(--ease-out);
    position: relative;
}
.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.header__link:hover { color: var(--navy); }
.header__link:hover::after { width: 100%; }
.header__link--cta {
    color: var(--gold);
    font-weight: 500;
}
.header__link--cta::after { display: none; }
.header__link--cta:hover { color: var(--gold-light); }

.header__menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--navy);
}
.menu-icon { transition: opacity 0.2s, transform 0.3s var(--ease-out); }
.menu-icon--close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.header__menu-btn[aria-expanded="true"] .menu-icon--open { opacity: 0; transform: rotate(90deg); }
.header__menu-btn[aria-expanded="true"] .menu-icon--close { opacity: 1; transform: rotate(0); }
.header__menu-btn { position: relative; }

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    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(6,18,38,0.82) 0%, rgba(10,31,63,0.65) 50%, rgba(10,31,63,0.45) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero__headline {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.25s var(--ease-out);
}
.btn--gold {
    background: var(--gold);
    color: var(--navy-900);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; justify-content: center; }

/* ── SERVICES ── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 40px 32px;
    transition: all 0.3s var(--ease-out);
}
.card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(10,31,63,0.08);
}
.card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
}
.card--service { display: flex; flex-direction: column; }
.card__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.card__body {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}
.card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card__list li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding-left: 16px;
    position: relative;
}
.card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

/* ── ABOUT ── */
.about { background: var(--off-white); }
.about__media {
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 56px;
}
.about__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}
.stat__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ── WHY US ── */
.why-us { background: var(--navy); color: var(--white); }
.why-us .section__title { color: var(--white); }
.features { margin-top: 56px; display: flex; flex-direction: column; }
.feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.feature:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.feature__marker {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-top: 10px;
}
.feature__title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.feature__body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ── AREAS ── */
.areas__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 40px;
}
.areas__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.areas__tag {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 10px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    color: var(--gray-700);
    transition: all 0.2s var(--ease-out);
}
.areas__tag:hover {
    border-color: var(--gold);
    color: var(--navy);
    background: rgba(201,168,76,0.06);
}

/* ── CONTACT ── */
.contact { background: var(--off-white); }
.contact__info { padding-right: 56px; display: flex; flex-direction: column; justify-content: center; }
.contact__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.contact__detail-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact__detail a {
    color: var(--navy);
    border-bottom: 1px solid var(--gray-200);
    transition: border-color 0.2s;
}
.contact__detail a:hover { border-color: var(--gold); }
.contact__hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--gray-500);
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}
.contact__hours strong { color: var(--navy); font-weight: 500; }

.contact__form-wrap { max-width: 480px; }
.form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    padding: 40px;
}
.form__title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}
.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.form__input {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-900);
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
}
.form__input:focus { border-bottom-color: var(--gold); }
.form__input::placeholder { color: var(--gray-300); }
.form__select { cursor: pointer; }
.form__textarea { resize: vertical; min-height: 100px; }
.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: #16a34a;
}

/* ── FOOTER ── */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.5);
    padding: 56px 0;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-size: 0.85rem;
}
.footer__contact a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer__contact a:hover { color: var(--gold); }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── MOBILE NAV ── */
.header__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 96px 32px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    z-index: 50;
}
.header__links.open { transform: translateX(0); }
.header__links li { border-bottom: 1px solid var(--gray-100); }
.header__links li:last-child { border-bottom: none; }
.header__link {
    display: block;
    padding: 16px 0;
    font-size: 0.95rem;
}
.header__link::after { display: none; }
.header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,18,38,0.4);
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}
.header__overlay.active { opacity: 1; pointer-events: all; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__content { padding-left: 40px; }
    .contact__info { padding-right: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .header__links { display: flex; }
    .header__menu-btn { display: flex; }
    .header__nav { position: relative; }

    .hero__headline { font-size: clamp(2.5rem, 12vw, 3.5rem); }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }

    .services__grid { grid-template-columns: 1fr; }
    .card { padding: 32px 28px; }

    .container--two-col {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
    .about__media { aspect-ratio: 16/9; }
    .about__content { padding-left: 0; }
    .about__stats { gap: 24px; }

    .contact__info { padding-right: 0; }
    .form { padding: 28px; }

    .footer__inner { gap: 20px; }
    .footer__contact { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .header__inner { padding: 0 20px; }
    .about__stats { flex-direction: column; gap: 20px; }
    .hero__actions { gap: 12px; }
}

/* ── 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; }
