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

:root {
    --navy-deep: #0a1628;
    --navy-mid: #0f2035;
    --navy-light: #162d4a;
    --gold: #c9a84c;
    --gold-light: #f0d68a;
    --gold-dark: #a07e2e;
    --white: #ffffff;
    --off-white: #f5f0e8;
    --gray-light: #b8b5ad;
    --gray-mid: #6b6b6b;
    --gray-dark: #2a2a2a;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

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

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-light);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav__link--cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

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

.nav__link--cta:hover {
    opacity: 0.9;
    color: var(--navy-deep) !important;
}

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

.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__link--cta {
    font-family: var(--font-body);
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
    padding: 14px 36px;
    border-radius: 4px;
    margin-top: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    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(
        to right,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.75) 50%,
        rgba(10, 22, 40, 0.5) 100%
    );
}

.hero__overlay-gold {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(201, 168, 76, 0.05) 0%,
        transparent 40%,
        transparent 60%,
        rgba(10, 22, 40, 0.4) 100%
    );
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero__accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.hero__scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-light);
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ============ SECTION COMMON ============ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

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

.section-title-accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ SERVICES ============ */
.services {
    padding: 120px 0;
    background: var(--navy-deep);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

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

.service-card {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--featured {
    border-color: rgba(201, 168, 76, 0.25);
    background: linear-gradient(145deg, rgba(201, 168, 76, 0.08), var(--navy-mid));
}

.service-card--featured::before {
    opacity: 1;
}

.service-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.925rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-card__features li {
    font-size: 0.85rem;
    color: var(--gray-light);
    padding-left: 20px;
    position: relative;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ============ WHY US ============ */
.why-us {
    padding: 120px 0;
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.why-us__images {
    position: relative;
}

.why-us__img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.why-us__img-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.why-us__img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--navy-mid);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.why-us__img-accent img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.why-us__badge-float {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}

.why-us__content {
    position: relative;
    z-index: 1;
}

.why-us__content .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.why-us__content .section-desc {
    margin: 0;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.why-list__item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.why-list__num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    min-width: 48px;
}

.why-list__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.why-list__text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============ GALLERY ============ */
.gallery {
    padding: 120px 0;
    background: var(--navy-deep);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    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.05);
}

.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: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery__item-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery__item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    min-height: 500px;
}

.gallery__item--large img {
    min-height: 500px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    min-height: 240px;
}

.gallery__item--wide {
    grid-column: 7 / 13;
    min-height: 240px;
}

.gallery__item--wide img {
    min-height: 240px;
}

/* ============ PROCESS ============ */
.process {
    padding: 120px 0;
    background: var(--navy-mid);
    position: relative;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process__step {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.process__step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}

.process__step-line {
    position: absolute;
    top: 48px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.3;
}

.process__step:last-child .process__step-line {
    display: none;
}

.process__step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.process__step-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 100px 0;
    background: var(--navy-deep);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.testimonials__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials__quote {
    margin-bottom: 32px;
}

.testimonials__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
}

.testimonials__meta {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ============ CTA ============ */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.92), rgba(10, 22, 40, 0.7));
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.cta__title {
    margin-bottom: 20px;
}

.cta__text {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

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

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

.contact__info .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact__info .section-desc {
    margin: 0;
}

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

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

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

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

.contact__detail-value {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

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

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

/* Contact Form */
.contact__form-wrap {
    background: var(--navy-deep);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    padding: 48px;
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form__input::placeholder {
    color: var(--gray-mid);
}

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

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__select option {
    background: var(--navy-mid);
    color: var(--white);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.form__success.show {
    display: flex;
}

.form__success p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ============ MAP ============ */
.map {
    position: relative;
    height: 300px;
}

.map__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.8);
}

.map__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map__card {
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 40px 48px;
    text-align: center;
}

.map__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.map__address {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

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

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

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

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

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

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 20px;
}

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

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

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer__bottom a {
    color: var(--gray-light);
    transition: var(--transition);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us__layout {
        gap: 48px;
    }
    
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process__step-line {
        display: none;
    }
    
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__burger {
        display: flex;
    }
    
    .hero__content {
        padding: 120px 24px 100px;
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .hero__stat-num {
        font-size: 1.25rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .why-us__layout {
        grid-template-columns: 1fr;
    }
    
    .why-us__images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-us__img-accent {
        right: -20px;
        bottom: -20px;
        width: 200px;
    }
    
    .why-us__img-accent img {
        height: 200px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }
    
    .gallery__item--large img {
        min-height: 300px;
    }
    
    .gallery__item--wide {
        grid-column: 1 / -1;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-wrap {
        padding: 32px 24px;
    }
    
    .cta__actions {
        flex-direction: column;
    }
    
    .cta__actions .btn {
        justify-content: center;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero__stat-divider {
        display: none;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--wide {
        grid-column: 1;
    }
}

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
