/* ============================================================
   B&C DARK — Premium Dark Theme
   Playfair Display + Inter
   ============================================================ */

:root {
    --bg:        #0A0906;
    --bg-1:      #111009;
    --bg-2:      #181512;
    --bg-3:      #201D19;
    --border:    rgba(255,255,255,0.07);
    --border-h:  rgba(196,154,60,0.4);
    --text:      #EDE6DA;
    --text-2:    #9E8E78;
    --text-3:    #665848;
    --gold:      #C49A3C;
    --gold-lt:   #E0B85A;
    --gold-dk:   #8A6420;
    --green-wa:  #25D366;
    --grad-gold: linear-gradient(90deg, #8A6420, #C49A3C, #E0B85A, #C49A3C, #8A6420);
    --shadow-sm: 0 2px 16px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.45);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.55);
    --ff-h:      'Playfair Display', serif;
    --ff-b:      'Inter', sans-serif;
    --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
    --z-nav:     50;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--ff-b);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

img, video, embed { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
sup { font-size: 0.55em; vertical-align: super; }

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

.eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-h2 {
    font-family: var(--ff-h);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 48px;
}


/* ---- CURSOR GLOW ---- */
#cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,60,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s;
    opacity: 0;
}

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---- NAVIGATION ---- */
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: var(--z-nav);
    padding: 22px 0;
    background: rgba(10,9,6,0);
    backdrop-filter: blur(0px);
    transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.5s;
}

#navbar.scrolled {
    background: rgba(10,9,6,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-2);
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.nav-cta {
    color: var(--text);
    border: 1px solid var(--border-h);
    padding: 8px 20px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: calc(var(--z-nav) + 1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.2s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--ff-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.2s;
}

.btn-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196,154,60,0.3);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border: 1px solid var(--border);
    color: var(--text-2);
    font-family: var(--ff-b);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, transform 0.3s var(--ease-out);
}

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

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 1.5px solid rgba(37,211,102,0.3);
    color: #22c55e;
    font-family: var(--ff-b);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.btn-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.2);
}


/* ---- HERO ---- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-text-panel {
    background: var(--bg);
    display: flex;
    align-items: center;
    padding: 120px 64px 80px 40px;
    position: relative;
    overflow: hidden;
}

.hero-text-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.hero-text-panel::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(196,154,60,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-text-inner {
    position: relative;
    max-width: 520px;
}

.hero-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 0.7s 0.1s var(--ease-out) forwards;
}

.hero-title {
    font-family: var(--ff-h);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 0.7s 0.24s var(--ease-out) forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
    opacity: 0;
    animation: heroFadeUp 0.7s 0.38s var(--ease-out) forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 0.7s 0.52s var(--ease-out) forwards;
}

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

.hero-media-panel {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
}

.hero-media-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    animation: heroScale 1.6s 0.2s var(--ease-out) forwards;
}

@keyframes heroScale {
    from { opacity: 0; transform: scale(1.15); }
    to   { opacity: 1; transform: scale(1.05); }
}

.hero-media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--bg) 0%, rgba(10,9,6,0.7) 8%, rgba(10,9,6,0.3) 20%, transparent 38%),
        linear-gradient(to top, rgba(10,9,6,0.4) 0%, transparent 30%);
    pointer-events: none;
}


/* ---- TICKER ---- */
.ticker {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-track span {
    display: inline-block;
    padding: 0 28px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-2);
}

.ticker-track .sep {
    padding: 0;
    font-size: 8px;
    color: var(--gold);
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ---- ABOUT ---- */
.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-top { margin-bottom: 64px; }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.about-left p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-2);
    font-weight: 300;
    margin-bottom: 18px;
}

.about-logo-wrap {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-logo-wrap img { height: 36px; opacity: 0.6; }

.about-tagline {
    font-family: var(--ff-h);
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.4;
    font-style: italic;
}

.about-right {
    display: flex;
    flex-direction: column;
}

.stat-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.stat-block:first-child { border-top: 1px solid var(--border); }

.stat-n {
    font-family: var(--ff-h);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-copy {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-copy strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.stat-copy span {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-2);
}


/* ---- SERVICES ---- */
.services {
    padding: 120px 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-head { margin-bottom: 56px; }

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

.svc-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 40px 28px 36px;
    cursor: default;
    transition: box-shadow 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,154,60,0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.svc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-h);
    background: var(--bg-3);
}

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

.svc-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.svc-n {
    font-family: var(--ff-h);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 1px;
}

.svc-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    transition: color 0.2s, transform 0.4s var(--ease-out);
}

.svc-card:hover .svc-icon { color: var(--gold-lt); transform: rotate(8deg) scale(1.1); }

.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 {
    font-family: var(--ff-h);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-2);
    font-weight: 300;
}


/* ---- PROJECTS ---- */
.projects {
    padding: 120px 0;
    background: var(--bg);
}

.projects-head { margin-bottom: 48px; }

.proj-video-wrap {
    position: relative;
    margin-bottom: 72px;
    overflow: hidden;
    background: var(--bg-2);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.proj-video-wrap video {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    display: block;
}

.proj-video-label {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text);
    background: rgba(10,9,6,0.7);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border: 1px solid var(--border);
}

.plans-heading {
    font-family: var(--ff-h);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-2);
    margin-bottom: 32px;
}

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

.plan-card {
    background: var(--bg-1);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: default;
    transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.3s;
}

.plan-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--border-h);
}

.plan-embed-wrap {
    height: 300px;
    overflow: hidden;
    background: var(--bg-3);
}

.plan-embed-wrap embed {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.plan-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.plan-tag-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.plan-title-text {
    font-family: var(--ff-h);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.plan-btn {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
    white-space: nowrap;
}

.plan-btn:hover { color: var(--gold-lt); transform: translateX(3px); }


/* ---- TEAM ---- */
.team {
    padding: 120px 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
}

.team-head { margin-bottom: 64px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 24px;
}

.team-card {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.team-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-2);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s var(--ease-out), filter 0.4s;
    filter: grayscale(20%);
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.team-photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.team-photo--placeholder span {
    font-family: var(--ff-h);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-3);
    letter-spacing: 4px;
}

.team-card figcaption {
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.3s;
}

.team-card:hover figcaption { border-color: var(--border-h); }

.team-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.4;
}

.team-role {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-2);
    letter-spacing: 0.3px;
}


/* ---- CONTACT ---- */
.contact {
    padding: 120px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.contact-h2 { margin-bottom: 16px; }

.contact-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 40px;
    max-width: 400px;
}

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

.contact-details {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted, #aaa);
    line-height: 1.5;
}
.contact-details li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold, #c9a84c);
}
.contact-details a {
    color: inherit;
    text-decoration: none;
}
.contact-details a:hover {
    color: var(--gold, #c9a84c);
}

.contact-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo-block {
    text-align: center;
    padding: 64px 48px;
    border: 1px solid var(--border);
    background: var(--bg-1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-logo-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(196,154,60,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-logo-block img {
    height: 80px;
    margin: 0 auto 20px;
    opacity: 0.7;
    position: relative;
}

.contact-logo-block p {
    font-family: var(--ff-h);
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.5;
    font-style: italic;
    position: relative;
}


/* ---- FOOTER ---- */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 56px 0 36px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo { height: 40px; opacity: 0.4; filter: brightness(10); }
.footer-company { font-family: var(--ff-h); font-size: 1rem; color: var(--text-3); }

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-3);
    cursor: pointer;
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-lt); }

.footer-copy {
    font-size: 11px;
    color: var(--text-3);
    opacity: 0.5;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    width: 100%;
    text-align: center;
}


/* ---- BUTTON RIPPLE ---- */
.btn-primary,
.btn-ghost,
.btn-wa {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transform: scale(0);
    animation: rippleAnim 0.55s var(--ease-out) forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-text-panel { padding: 120px 40px 60px; }
    .hero-media-panel { height: 50vh; }
    .hero-media-overlay {
        background:
            linear-gradient(to bottom, rgba(10,9,6,0.5) 0%, transparent 20%, transparent 80%, rgba(10,9,6,0.4) 100%);
    }
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .contact-inner { grid-template-columns: 1fr; gap: 56px; }
    .contact-visual { display: none; }
    .plans-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(280px, 75vw);
        background: rgba(16,14,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px 32px;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        border-left: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 13px; }

    .about, .services, .projects, .contact, .team { padding: 80px 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .services-grid { grid-template-columns: 1fr; }

    .hero-text-panel { padding: 100px 24px 60px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
    .contact-btns { flex-direction: column; }
    .btn-wa { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
    .stat-block { grid-template-columns: 1fr; gap: 8px; }
    .stat-n { font-size: 2.8rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .ticker-track { animation: none; }
    [data-reveal] { opacity: 1; transform: none; }
}
