/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2a2a2a;
    background: #faf9f6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --navy: #1a2f5a;
    --navy-deep: #111f3d;
    --navy-light: #243d6e;
    --gold: #c8a45a;
    --gold-light: #d4b76e;
    --gold-pale: #f5ecd7;
    --cream: #faf9f6;
    --cream-dark: #f0ece4;
    --text: #2a2a2a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 47, 90, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.logo-mark {
    color: var(--gold);
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-primary {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.logo-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.logo--footer { color: var(--white); }

/* ===== NAV ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.nav-link--cta {
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 600;
}
.nav-link--cta:hover {
    background: var(--gold-light);
    color: var(--navy-deep);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 120px 0 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(36, 61, 110, 0.4) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
}
.hero-title .gold {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    gap: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}
.hero-image {
    position: relative;
}
.hero-image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    aspect-ratio: 680/860;
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-accent-card {
    position: absolute;
    bottom: -24px;
    left: -32px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.accent-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}
.accent-card-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--cream);
}
.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold);
    color: var(--navy-deep);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 90, 0.3);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-eyebrow--gold { color: var(--gold); }
.section-header { margin-bottom: 64px; }
.section-header--centered { text-align: center; }
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}
.section-header--centered .section-subtitle { margin: 0 auto; }

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(26, 47, 90, 0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26, 47, 90, 0.1);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    color: var(--gold);
}
.service-card-title {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200, 164, 90, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--navy);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 16px 40px rgba(200, 164, 90, 0.3);
}
.badge-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}
.badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}
.about-content { padding: 20px 0; }
.about-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 20px;
}
.about-stats {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stat { flex: 1; }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 0;
    background: var(--cream-dark);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.why-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid rgba(26, 47, 90, 0.05);
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26, 47, 90, 0.08);
}
.why-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.06;
    line-height: 1;
}
.why-card-title {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 14px;
    padding-right: 80px;
}
.why-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    background: var(--navy);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 47, 90, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.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--large {
    grid-column: span 7;
    grid-row: span 2;
}
.gallery-item--large img { aspect-ratio: 640/480; }
.gallery-item:not(.gallery-item--large) img { aspect-ratio: 400/300; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 164, 90, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 440px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail {
    display: flex;
    gap: 20px;
}
.contact-detail-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: var(--radius-sm);
    color: var(--gold);
    flex-shrink: 0;
}
.contact-detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-detail-value {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
}
.contact-link:hover { color: var(--gold); }

/* ===== FORM ===== */
.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(26, 47, 90, 0.08);
    border: 1px solid rgba(26, 47, 90, 0.05);
}
.form-title {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid rgba(26, 47, 90, 0.1);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input::placeholder { color: var(--text-light); opacity: 0.6; }
.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.15);
    background: var(--white);
}
.form-select { cursor: pointer; 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='%231a2f5a' stroke-width='2.5' 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: 44px;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(200, 164, 90, 0.1);
    border: 1px solid rgba(200, 164, 90, 0.3);
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 16px;
}
.form-success svg { color: var(--gold); flex-shrink: 0; }

/* ===== MAP ===== */
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    padding: 80px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}
.footer-link {
    color: var(--gold);
    transition: color var(--transition);
}
.footer-link:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    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: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s 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; }

/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-link--cta {
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { gap: 40px; }
    .about-container { gap: 60px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 80px; }
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { order: -1; }
    .hero-image-frame { aspect-ratio: 4/3; }
    .hero-accent-card { left: 16px; bottom: -16px; }
    .hero-trust { gap: 20px; flex-wrap: wrap; }
    .hero-wave svg { height: 50px; }

    .services { padding: 72px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 72px 0; }
    .about-container { grid-template-columns: 1fr; gap: 80px; }
    .about-img-secondary { right: 0; bottom: -24px; }
    .about-experience-badge { right: 16px; top: -12px; }

    .why-us { padding: 72px 0; }
    .why-grid { grid-template-columns: 1fr; }

    .gallery { padding: 72px 0; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-item--large img { aspect-ratio: 16/9; }

    .cta-banner { padding: 72px 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text { margin: 0 auto; }
    .cta-actions { justify-content: center; }

    .contact { padding: 72px 0; }
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 32px 24px; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 1.8rem; }
    .service-card { padding: 28px 24px; }
    .why-card { padding: 32px 24px; }
    .why-card-title { padding-right: 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: span 1; }
    .contact-form-wrap { padding: 24px 20px; }
}
