/* ============================================
   HEADER.CSS — Ooi Solutions (REDESIGNED)
   Full viewport menu, 2-col service grid
   3D animated entrance, full responsive
   ============================================ */

/* ── HEADER BAR ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: padding var(--duration-mid) ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(13, 31, 28, 0.92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.2);
}
.site-header.scrolled .header-logo {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.site-header.scrolled .header-logo img {
    height: 54px;
    transition: height 0.3s ease;
}

/* ── LOGO (always sticky & visible) ── */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s ease, width 0.4s ease;
}
.header-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* ── HEADER ACTIONS ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

/* ── CTA PILL ── */
.header-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(29, 124, 110, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.header-cta-pill.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.header-cta-pill:hover {
    background: var(--accent-hover);
    transform: translateY(-2px) scale(1.03);
}
.header-cta-pill svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.3s ease; }
.header-cta-pill:hover svg { transform: rotate(-10deg) scale(1.15); }

/* ── MENU TRIGGER ── */
.menu-trigger-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(29,124,110,0.4), 0 0 40px rgba(29,124,110,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease, background 0.3s ease;
    overflow: visible;
    min-height: 48px;
    visibility: visible !important;
    opacity: 1 !important;
}
.menu-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,124,110,0.4);
    gap: 8px;
    background: var(--accent-hover);
}

/* ── HAND ICON (SVG pointer/hand) ── */
.menu-hand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: background 0.3s ease;
}
.menu-hand-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    transform-origin: 70% 70%;
    animation: handWaveAlways 2.5s ease-in-out infinite;
}
.menu-trigger-btn:hover .menu-hand-icon {
    background: rgba(255,255,255,0.25);
}
@keyframes handWaveAlways {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* ── MENU TEXT — hidden by default, slides in on hover ── */
.menu-trigger-btn .menu-text {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(-8px);
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
}
.menu-trigger-btn:hover .menu-text {
    color: var(--white);
    opacity: 1;
    transform: translateX(0);
    max-width: 60px;
}

/* ── HAMBURGER ICON ── */
.hamburger-icon {
    width: 26px;
    height: 18px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
}
.ham-line {
    display: block !important;
    width: 100%;
    height: 3px;
    background: #fff !important;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
    box-shadow: 0 0 4px rgba(255,255,255,0.3);
    visibility: visible !important;
    opacity: 1 !important;
}
.menu-trigger-btn:hover .ham-line {
    background: var(--white);
}
.ham-line:nth-child(1) {
    animation: hamPulse1 3s ease-in-out infinite;
}
.ham-line:nth-child(2) {
    animation: hamPulse2 3s ease-in-out infinite 0.15s;
}
.ham-line:nth-child(3) {
    animation: hamPulse3 3s ease-in-out infinite 0.3s;
}

/* Subtle pulse animation — always running by default */
@keyframes hamPulse1 {
    0%, 80%, 100% { width: 100%; }
    85% { width: 70%; }
    90% { width: 100%; }
}
@keyframes hamPulse2 {
    0%, 80%, 100% { width: 100%; }
    83% { width: 85%; }
    88% { width: 100%; }
}
@keyframes hamPulse3 {
    0%, 80%, 100% { width: 100%; }
    86% { width: 60%; }
    92% { width: 100%; }
}

/* Hover — lines spread out with wiggle */
.menu-trigger-btn:hover .ham-line:nth-child(1) {
    transform: translateY(-2px);
    animation: hamHover1 0.5s ease-in-out;
}
.menu-trigger-btn:hover .ham-line:nth-child(2) {
    animation: hamHover2 0.5s ease-in-out;
}
.menu-trigger-btn:hover .ham-line:nth-child(3) {
    transform: translateY(2px);
    animation: hamHover3 0.5s ease-in-out;
}

@keyframes hamHover1 {
    0% { transform: translateY(0); }
    30% { transform: translateY(-4px) scaleX(0.8); }
    60% { transform: translateY(-1px) scaleX(1.05); }
    100% { transform: translateY(-2px); }
}
@keyframes hamHover2 {
    0% { transform: scaleX(1); }
    30% { transform: scaleX(0.6); }
    60% { transform: scaleX(1.1); }
    100% { transform: scaleX(1); }
}
@keyframes hamHover3 {
    0% { transform: translateY(0); }
    30% { transform: translateY(4px) scaleX(0.8); }
    60% { transform: translateY(1px) scaleX(1.05); }
    100% { transform: translateY(2px); }
}

/* Menu OPEN state — X shape */
.menu-trigger-btn.menu-open .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--white);
    animation: none;
}
.menu-trigger-btn.menu-open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    animation: none;
}
.menu-trigger-btn.menu-open .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--white);
    animation: none;
}
.menu-trigger-btn.menu-open .menu-text {
    opacity: 0;
    max-width: 0;
}
.menu-trigger-btn.menu-open .menu-hand-icon {
    opacity: 0;
    animation: none;
}

/* ============================================
   FULLSCREEN MENU — FULL VIEWPORT
   ============================================ */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: var(--z-mobile-menu);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    perspective: 1200px;
}
.fullscreen-menu.active { opacity: 1; visibility: visible; }

.menu-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(250,250,250,0.08);
    border: 1px solid rgba(250,250,250,0.1);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.menu-close-btn:hover { background: rgba(250,250,250,0.15); transform: scale(1.05); }

.close-icon { width: 16px; height: 16px; position: relative; }
.close-icon::before, .close-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 100%; height: 2px; background: #fff; border-radius: 2px;
}
.close-icon::before { transform: translate(-50%,-50%) rotate(45deg); }
.close-icon::after { transform: translate(-50%,-50%) rotate(-45deg); }
.close-label {
    font-family: var(--font-primary);
    font-size: 0.72rem; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 0.12em;
}

/* ── MENU INNER: Split layout ── */
.menu-inner {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

/* ── LEFT PANEL ── */
.menu-left {
    flex: 1;
    padding: 80px 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    transform: translateX(-40px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s, opacity 0.6s ease 0.1s;
}
.fullscreen-menu.active .menu-left { transform: translateX(0); opacity: 1; }

.menu-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.label-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-green-dot);
    box-shadow: 0 0 8px rgba(74,222,128,0.4);
    animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(74,222,128,0.4); }
    50% { box-shadow: 0 0 16px rgba(74,222,128,0.7); }
}
.menu-section-label span:last-child {
    font-family: var(--font-primary);
    font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(250,250,250,0.35);
}

/* ── SERVICE GRID (2 columns) ── */
.menu-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--fg);
    padding: 10px 14px;
    border-radius: 12px;
    transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease, transform 0.3s ease;
    transform: translateX(-30px);
    opacity: 0;
}
.fullscreen-menu.active .service-item { transform: translateX(0); opacity: 1; }
.fullscreen-menu.active .service-item:nth-child(1) { transition-delay: 0.12s; }
.fullscreen-menu.active .service-item:nth-child(2) { transition-delay: 0.14s; }
.fullscreen-menu.active .service-item:nth-child(3) { transition-delay: 0.16s; }
.fullscreen-menu.active .service-item:nth-child(4) { transition-delay: 0.18s; }
.fullscreen-menu.active .service-item:nth-child(5) { transition-delay: 0.20s; }
.fullscreen-menu.active .service-item:nth-child(6) { transition-delay: 0.22s; }
.fullscreen-menu.active .service-item:nth-child(7) { transition-delay: 0.24s; }
.fullscreen-menu.active .service-item:nth-child(8) { transition-delay: 0.26s; }
.fullscreen-menu.active .service-item:nth-child(9) { transition-delay: 0.28s; }
.fullscreen-menu.active .service-item:nth-child(10) { transition-delay: 0.30s; }

.service-item:hover {
    background: rgba(29,124,110,0.1);
    padding-left: 22px;
    color: var(--accent-green-dot);
    transform: translateX(4px);
}
.green-circle {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-green-dot);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-item:hover .green-circle {
    transform: scale(1.5);
    box-shadow: 0 0 12px rgba(74,222,128,0.5);
}
.service-name {
    font-family: var(--font-primary);
    font-size: clamp(0.85rem, 1.4vw, 1.15rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-arrow {
    font-size: 1rem; opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--accent);
    flex-shrink: 0;
}
.service-item:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── BOTTOM: Nav + Contact ── */
.menu-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(250,250,250,0.06);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}
.fullscreen-menu.active .menu-bottom { transform: translateY(0); opacity: 1; }

.menu-nav-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.menu-nav-links a {
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.82rem; font-weight: 700;
    color: rgba(250,250,250,0.4);
    text-transform: uppercase; letter-spacing: 0.06em;
    transition: color 0.2s ease; position: relative;
}
.menu-nav-links a:hover, .menu-nav-links a.active { color: var(--accent); }
.menu-nav-links a.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 2px; background: var(--accent); border-radius: 1px;
}

.menu-contact-info { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.menu-contact-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-primary); font-size: 0.72rem; font-weight: 600;
    color: rgba(250,250,250,0.35); text-decoration: none; transition: color 0.2s ease;
}
.menu-contact-link:hover { color: var(--accent); }
.menu-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.menu-locations { display: flex; gap: 6px; }
.location-tag {
    display: inline-flex; align-items: center;
    padding: 3px 9px; border-radius: var(--radius-full);
    background: rgba(29,124,110,0.12); color: var(--accent);
    font-family: var(--font-primary); font-size: 0.6rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── RIGHT PANEL ── */
.menu-right {
    flex: 0 0 38%;
    background: var(--accent);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px 40px;
    transform: translateX(40px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s, opacity 0.6s ease 0.15s;
}
.fullscreen-menu.active .menu-right { transform: translateX(0); opacity: 1; }

.hover-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.5s ease, transform 0.6s ease;
    transform: scale(1.08);
}
.hover-img.visible { opacity: 1; transform: scale(1); }

.menu-right::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(29,124,110,0.75) 0%, rgba(13,31,28,0.5) 100%);
    z-index: 1; pointer-events: none; transition: background 0.4s ease;
}
.menu-right.has-hover::after {
    background: linear-gradient(135deg, rgba(13,31,28,0.88) 0%, rgba(29,124,110,0.6) 100%);
}

.right-content {
    position: relative; z-index: 2; text-align: center;
    transform: scale(0.8) rotateY(8deg); opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s, opacity 0.6s ease 0.3s;
}
.fullscreen-menu.active .right-content { transform: scale(1) rotateY(0deg); opacity: 1; }

.cta-text {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900; text-transform: uppercase;
    color: var(--white); line-height: 1.05;
    margin-bottom: 28px; letter-spacing: -0.02em;
}
.menu-right.has-hover .cta-text { opacity: 0; }

/* ── CTA BUTTONS ── */
.menu-cta-buttons {
    display: flex; flex-direction: column; gap: 10px;
    align-items: center; margin-bottom: 28px;
}
.menu-cta-primary, .menu-cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-full);
    font-family: var(--font-primary); font-size: 0.78rem;
    font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.06em; text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-cta-primary {
    background: var(--white); color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.menu-cta-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.menu-cta-secondary {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.menu-cta-secondary:hover { border-color: #fff; transform: translateY(-2px); }
.menu-cta-primary svg, .menu-cta-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }
.menu-right.has-hover .menu-cta-buttons { opacity: 0; }

/* ── SOCIALS ── */
.menu-socials {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: relative; z-index: 2; transition: opacity 0.3s ease;
}
.menu-right.has-hover .menu-socials { opacity: 0; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; background: rgba(255,255,255,0.08);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.social-link:hover {
    background: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.95);
    transform: translateY(-3px);
}
.social-link svg { width: 16px; height: 16px; fill: var(--white); }
.social-link:hover svg { fill: var(--accent); }

.hover-label {
    position: absolute; bottom: 36px; left: 28px; right: 28px;
    z-index: 3; color: #fff;
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em;
    opacity: 0; transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hover-label.visible { opacity: 1; transform: translateY(0); }


/* ============================================
   RESPONSIVE — HEADER
   ============================================ */

/* ── Tablets ── */
@media (max-width: 991px) {
    .menu-right { flex: 0 0 36%; }
    .menu-services-grid { gap: 2px 14px; }
    .service-name { font-size: clamp(0.8rem, 1.3vw, 1rem); }
    .menu-left { padding: 72px 32px 24px; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .site-header { padding: 12px 14px; }
    .header-logo img { height: 52px; }
    .header-cta-pill { display: none; }
    .menu-trigger-btn { padding: 10px 16px; gap: 6px; min-height: 46px; }
    .menu-hand-icon { width: 30px; height: 30px; }
    .menu-hand-icon svg { width: 18px; height: 18px; }
    .hamburger-icon { width: 22px; height: 16px; }
    .ham-line { height: 2.5px; box-shadow: 0 0 3px rgba(255,255,255,0.4); }

    /* Stack vertically: top = right panel (short), bottom = left panel (scrollable) */
    .menu-inner { flex-direction: column-reverse; }
    .menu-right {
        flex: 0 0 auto;
        min-height: 180px;
        padding: 24px 20px;
    }
    .menu-left {
        flex: 1;
        padding: 24px 20px 20px;
    }
    .menu-close-btn { top: 12px; right: 12px; padding: 8px 16px; }

    /* Single column on mobile */
    .menu-services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-name { font-size: clamp(0.78rem, 4vw, 0.92rem); }
    .service-item { padding: 8px 10px; gap: 8px; }
    .green-circle { width: 7px; height: 7px; }

    /* CTA in right panel */
    .cta-text { font-size: 1.5rem; margin-bottom: 16px; }
    .menu-cta-buttons { flex-direction: row; gap: 8px; margin-bottom: 16px; }
    .menu-cta-primary, .menu-cta-secondary { padding: 9px 18px; font-size: 0.7rem; }
    .social-link { width: 34px; height: 34px; }
    .social-link svg { width: 14px; height: 14px; }
    .menu-socials { gap: 8px; }

    /* Nav links */
    .menu-nav-links { gap: 4px 14px; }
    .menu-nav-links a { font-size: 0.75rem; }
    .menu-contact-info { gap: 8px; }
    .menu-contact-link { font-size: 0.65rem; }
    .location-tag { font-size: 0.55rem; padding: 2px 7px; }
}

/* ── Small Mobile ── */
@media (max-width: 479px) {
    .site-header { padding: 10px 10px; }
    .header-logo img { height: 48px; }
    .menu-trigger-btn { padding: 8px 14px; min-height: 42px; }
    .menu-trigger-btn .menu-text { font-size: 0.72rem; }
    .hamburger-icon { width: 20px; height: 14px; }
    .ham-line { height: 2.5px; }
    .menu-hand-icon { width: 26px; height: 26px; }
    .menu-hand-icon svg { width: 16px; height: 16px; }
    .menu-trigger-btn.menu-open .ham-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .menu-trigger-btn.menu-open .ham-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    .menu-right { min-height: 150px; padding: 20px 16px; }
    .cta-text { font-size: 1.2rem; margin-bottom: 12px; }
    .menu-cta-primary, .menu-cta-secondary { padding: 8px 14px; font-size: 0.65rem; }
    .social-link { width: 30px; height: 30px; }
    .social-link svg { width: 12px; height: 12px; }

    .menu-left { padding: 20px 14px 16px; }
    .service-name { font-size: 0.76rem; }
    .service-item { padding: 7px 8px; gap: 6px; }

    .menu-nav-links a { font-size: 0.7rem; }
    .menu-contact-link { font-size: 0.6rem; }
    .menu-close-btn { top: 8px; right: 8px; padding: 7px 12px; }
    .close-label { font-size: 0.65rem; }
}

/* ── Very Small (320px) ── */
@media (max-width: 359px) {
    .menu-right { min-height: 130px; }
    .cta-text { font-size: 1rem; }
    .menu-cta-buttons { flex-direction: column; gap: 6px; }
    .service-name { font-size: 0.72rem; }
}

/* ── Large Desktop / 4K ── */
@media (min-width: 1400px) {
    .site-header { padding: 20px 48px; }
    .header-logo img { height: 78px; }
    .header-cta-pill { padding: 11px 26px; font-size: 0.78rem; }
    .menu-trigger-btn { padding: 12px 22px; }

    .menu-left { padding: 100px 64px 40px; }
    .menu-services-grid { gap: 6px 28px; }
    .service-name { font-size: clamp(1rem, 1.6vw, 1.3rem); }
    .menu-right { flex: 0 0 40%; padding: 100px 48px 48px; }
    .cta-text { font-size: clamp(2.4rem, 4vw, 3.8rem); }
    .menu-cta-primary, .menu-cta-secondary { padding: 14px 34px; font-size: 0.85rem; }
    .social-link { width: 46px; height: 46px; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
    .label-dot { animation: none; }
    .ham-line { animation: none !important; }
    .service-item, .menu-bottom, .right-content, .menu-left, .menu-right {
        transform: none; opacity: 1; transition: none;
    }
    .header-cta-pill { transition: opacity 0.1s ease; }
}
