/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #0A1628;
    --navy-light: #132238;
    --navy-dark: #060F1C;
    --gold: #D4A017;
    --gold-light: #E8B930;
    --gold-dark: #B8860B;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --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;
    --gray-900: #1C1917;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
    --shadow-md: 0 4px 20px rgba(10,22,40,0.10);
    --shadow-lg: 0 12px 40px rgba(10,22,40,0.14);
    --shadow-xl: 0 24px 60px rgba(10,22,40,0.18);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
.text-gold { color: var(--gold); }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}
.section-header--center { text-align: center; }
.section-header--center .section-tag { padding-left: 0; }
.section-header--center .section-header { justify-content: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}
.btn--white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn--white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,160,23,0.15);
    transition: all 0.3s ease;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}
.nav__logo-icon { flex-shrink: 0; }
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s ease;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero__geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.hero__geo--1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
}
.hero__geo--2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -80px;
    left: 10%;
}
.hero__geo--3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 30%;
    left: 5%;
    opacity: 0.03;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero__stats {
    display: flex;
    gap: 32px;
    align-items: center;
}
.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero__stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}
.hero__image {
    position: relative;
    height: 600px;
}
.hero__image-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--navy);
}
.hero__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__image-card {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero__image-card svg { color: var(--gold); flex-shrink: 0; }
.hero__image-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}
.hero__image-card span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card--dark {
    background: var(--navy);
    border-color: var(--navy);
}
.service-card--dark h3 { color: var(--white); }
.service-card--dark p { color: rgba(255,255,255,0.65); }
.service-card--dark .service-card__link { color: var(--gold); }
.service-card__geo {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.06;
    transition: all 0.4s ease;
}
.service-card:hover .service-card__geo {
    transform: scale(2.5);
    opacity: 0.1;
}
.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(212,160,23,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-card--dark .service-card__icon {
    background: rgba(212,160,23,0.2);
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.service-card__link:hover { gap: 12px; }

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__images {
    position: relative;
    height: 600px;
}
.about__img-main {
    width: 75%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}
.about__img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about__experience-badge {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about__exp-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.about__exp-text {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.about__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about__value-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(212,160,23,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about__value strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.about__value span {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== AREAS ===== */
.areas {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,160,23,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212,160,23,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.areas .section-title { color: var(--white); }
.areas .section-desc { color: rgba(255,255,255,0.6); }
.areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.area-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}
.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.area-card:hover img { transform: scale(1.1); }
.area-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}
.area-card:hover .area-card__overlay {
    background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, rgba(10,22,40,0.1) 100%);
}
.area-card__overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.area-card__overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-card--gold {
    background: var(--navy);
    border-color: var(--navy);
}
.testimonial-card--gold .testimonial-card__text { color: rgba(255,255,255,0.8); }
.testimonial-card--gold .testimonial-card__author strong { color: var(--white); }
.testimonial-card--gold .testimonial-card__author span { color: rgba(255,255,255,0.5); }
.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-card__text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-card__author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}
.testimonial-card__author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta__geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta__geo--1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    opacity: 0.05;
    top: -150px;
    left: -100px;
}
.cta__geo--2 {
    width: 250px;
    height: 250px;
    background: var(--gold);
    opacity: 0.04;
    bottom: -80px;
    right: 10%;
}
.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}
.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212,160,23,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact__detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.contact__detail span,
.contact__detail a {
    font-size: 0.9rem;
    color: var(--gray-500);
}
.contact__detail a:hover { color: var(--gold); }
.contact__form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 24px;
    background: rgba(5,150,105,0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(5,150,105,0.2);
}
.form-success.show { display: flex; }
.form-success strong { color: #059669; font-size: 1rem; }
.form-success span { color: var(--gray-600); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer__brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}
.footer__links h4,
.footer__contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__links li a,
.footer__contact li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color 0.3s ease;
}
.footer__links li a:hover { color: var(--gold); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 16px;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__grid { gap: 40px; }
    .hero__image { height: 480px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .areas__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(10,22,40,0.98);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(212,160,23,0.15);
    }
    .nav__links.open { transform: translateY(0); }
    .nav__toggle { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__image { height: 400px; order: -1; }
    .hero__image-accent { left: -10px; bottom: -20px; width: 160px; }
    .hero__image-card { right: -10px; top: 20px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .hero__stats { gap: 20px; }
    .hero__stat-num { font-size: 1.8rem; }
    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .about__images { height: 400px; }
    .services__grid { grid-template-columns: 1fr; }
    .areas__grid { grid-template-columns: 1fr; }
    .area-card { height: 220px; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .contact__form-wrap { padding: 28px; }
    .contact__form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .service-card { padding: 28px 24px; }
}
