/* ══════════════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black:  #0a0a0a;
    --white:  #fafafa;
    --g100:   #f2f2f2;
    --g200:   #e4e4e4;
    --g300:   #c8c8c8;
    --g500:   #888888;
    --g700:   #444444;
    --ease:   cubic-bezier(0.4, 0, 0.2, 1);
    --t:      0.28s;
    --ts:     0.55s;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 800;
}

/* ══════════════════════════════════════════
   CURSOR (desktop only)
══════════════════════════════════════════ */
#cur      { width:8px; height:8px; background:var(--black); border-radius:50%; position:fixed; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); transition:width .2s,height .2s; display:none; }
#cur-ring { width:38px; height:38px; border:1.5px solid rgba(10,10,10,.3); border-radius:50%; position:fixed; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:width .18s,height .18s,border-color .18s; display:none; }

@media (pointer: fine) {
    #cur, #cur-ring { display: block; }
    body { cursor: none; }
    a, button, [onclick], .p-card, .p-item, .f-tab, .svc-item, .svc-card, select { cursor: none; }
    body.chov #cur      { width: 14px; height: 14px; }
    body.chov #cur-ring { width: 54px; height: 54px; border-color: rgba(10,10,10,.5); }
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    background: rgba(250, 250, 250, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t);
}
nav.scrolled { border-bottom-color: var(--g200); }

.nav-logo {
    display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
}
.nav-logo-img {
    height: 36px; width: auto; display: block;
}

.ft-logo-img {
    height: 40px; width: auto; display: block; margin-bottom: 16px;
    filter: invert(1);
}

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

.nav-links a {
    font-size: 13.5px; font-weight: 500; color: var(--g700);
    text-decoration: none; letter-spacing: .01em;
    transition: color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }

.nav-cta {
    background: var(--black) !important; color: var(--white) !important;
    padding: 9px 20px; border-radius: 100px;
    transition: background var(--t), transform var(--t) !important;
}
.nav-cta:hover { background: var(--g700) !important; transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--black); transition: var(--t);
    border-radius: 2px;
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity var(--ts) var(--ease), transform var(--ts) var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }

.label {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--g500);
}

.btn {
    display: inline-block; padding: 15px 30px;
    font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600;
    letter-spacing: .03em; border-radius: 100px;
    cursor: pointer; transition: all var(--t) var(--ease);
    text-decoration: none; border: none;
}
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--g700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--black); border: 1.5px solid var(--g300); }
.btn-ghost:hover { border-color: var(--black); transform: translateY(-2px); }

hr.divider { border: none; border-top: 1px solid var(--g200); max-width: 1360px; margin: 0 auto; }

/* ══════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════ */
.page-hero { padding: 144px 48px 72px; max-width: 1360px; margin: 0 auto; }

.page-hero h1 {
    font-size: clamp(48px, 7.5vw, 108px); font-weight: 900;
    letter-spacing: -.045em; line-height: .94; margin-top: 18px;
}
.page-hero h1 em { font-style: italic; font-weight: 300; }
.page-hero p { font-size: 17px; color: var(--g500); margin-top: 22px; max-width: 460px; line-height: 1.7; }

/* ══════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════ */
.hero { padding: 160px 48px 96px; max-width: 1360px; margin: 0 auto; }

.hero-badge { opacity: 0; animation: fadeUp .7s var(--ease) .15s forwards; }

.hero h1 {
    font-size: clamp(56px, 8.5vw, 124px);
    font-weight: 900; letter-spacing: -0.045em;
    line-height: .94; margin: 28px 0 0; max-width: 1000px;
    opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero h1 em { font-style: italic; font-weight: 300; }

.hero-foot {
    margin-top: 52px;
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-copy { max-width: 420px; font-size: 17px; color: var(--g700); line-height: 1.72; }
.hero-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   HOME — STATS
══════════════════════════════════════════ */
.stats-bar { background: var(--black); padding: 76px 48px; }
.stats-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }

.stat { opacity: 0; animation: fadeUp .6s var(--ease) forwards; }
.stat:nth-child(1) { animation-delay: .1s; }
.stat:nth-child(2) { animation-delay: .2s; }
.stat:nth-child(3) { animation-delay: .3s; }
.stat:nth-child(4) { animation-delay: .4s; }

.stat-n { font-size: clamp(40px,5vw,64px); font-weight: 900; color: var(--white); letter-spacing: -.04em; line-height: 1; }
.stat-l { font-size: 13px; color: var(--g500); margin-top: 8px; letter-spacing: .02em; }

/* ══════════════════════════════════════════
   HOME — SECTIONS
══════════════════════════════════════════ */
.section { padding: 112px 48px; max-width: 1360px; margin: 0 auto; }

.sec-hd {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 56px; gap: 40px; flex-wrap: wrap;
}
.sec-hd h2 { font-size: clamp(34px,4.5vw,58px); max-width: 600px; }

/* ══════════════════════════════════════════
   PORTFOLIO GRID (HOME — masonry)
══════════════════════════════════════════ */
.p-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }

.p-card {
    position: relative; overflow: hidden; border-radius: 14px;
    cursor: pointer; aspect-ratio: 4/3; background: var(--g100);
}
.p-card:nth-child(1) { grid-column: span 7; }
.p-card:nth-child(2) { grid-column: span 5; }
.p-card:nth-child(3) { grid-column: span 5; }
.p-card:nth-child(4) { grid-column: span 7; }

.p-card .bg  { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.p-card:hover .bg { transform: scale(1.05); }

.p-card .ov {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
    opacity: 0; transition: opacity var(--ts) var(--ease);
}
.p-card:hover .ov { opacity: 1; }

.p-card .ci {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
    color: var(--white); opacity: 0; transform: translateY(8px);
    transition: all var(--ts) var(--ease);
}
.p-card:hover .ci { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   SHARED CARD LABELS
══════════════════════════════════════════ */
.ci-cat { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g300); margin-bottom: 6px; }
.ci-ttl { font-size: clamp(16px,1.8vw,22px); font-weight: 700; letter-spacing: -.02em; }

/* project BG colors */
.bg-a { background: #15152a; }
.bg-b { background: #1e1e1e; }
.bg-c { background: #0f2318; }
.bg-d { background: #221212; }
.bg-e { background: #0a1a2a; }
.bg-f { background: #1a1a10; }

.pv   { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pv-t { font-size: clamp(28px,4.5vw,72px); font-weight: 900; letter-spacing: -.04em; color: rgba(255,255,255,.13); }

/* ══════════════════════════════════════════
   HOME — SERVICES PREVIEW
══════════════════════════════════════════ */
.svc-grid-home {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2px; background: var(--g200); border-radius: 18px; overflow: hidden;
}
.svc-item {
    background: var(--white); padding: 44px 38px;
    cursor: pointer; transition: background var(--t);
}
.svc-item:hover { background: var(--g100); }

.svc-num  { font-size: 11.5px; font-weight: 700; color: var(--g300); letter-spacing: .1em; margin-bottom: 22px; }
.svc-ico  { width: 44px; height: 44px; background: var(--black); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-ico svg { width: 21px; height: 21px; stroke: white; fill: none; stroke-width: 1.6; }
.svc-name { font-size: 19px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.svc-desc { font-size: 13.5px; color: var(--g500); line-height: 1.6; }

/* ══════════════════════════════════════════
   HOME — TESTIMONIALS
══════════════════════════════════════════ */
.testi-wrap  { background: var(--g100); padding: 112px 48px; }
.testi-inner { max-width: 1360px; margin: 0 auto; }
.testi-hd    { margin-bottom: 56px; }
.testi-hd h2 { font-size: clamp(32px,4vw,52px); margin-top: 16px; max-width: 560px; }
.testi-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.t-card { background: var(--white); border-radius: 18px; padding: 38px; }

.stars { display: flex; gap: 4px; margin-bottom: 22px; }
.star  {
    width: 14px; height: 14px; background: var(--black);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.t-text   { font-size: 15px; line-height: 1.75; color: var(--g700); margin-bottom: 28px; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-av     { width: 44px; height: 44px; border-radius: 50%; background: var(--g200); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.t-name   { font-size: 14.5px; font-weight: 700; letter-spacing: -.01em; }
.t-role   { font-size: 12.5px; color: var(--g500); }

/* ══════════════════════════════════════════
   HOME — CTA BAND
══════════════════════════════════════════ */
.cta-band { padding: 120px 48px; text-align: center; max-width: 860px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(40px,6vw,84px); font-weight: 900; letter-spacing: -.045em; line-height: .96; margin-bottom: 28px; }
.cta-band h2 em { font-style: italic; font-weight: 300; }
.cta-band p    { font-size: 17px; color: var(--g500); margin-bottom: 36px; }
.cta-band .btn { font-size: 15px; padding: 17px 38px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--black); color: var(--white); padding: 76px 48px 40px; }
.ft-inner { max-width: 1360px; margin: 0 auto; }

.ft-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
    padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.ft-brand h3 { font-size: 22px; font-weight: 900; letter-spacing: -.04em; margin-bottom: 14px; }
.ft-brand p  { font-size: 13.5px; color: var(--g500); line-height: 1.7; max-width: 260px; }

.ft-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g500); margin-bottom: 22px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-col a  { font-size: 13.5px; color: var(--g300); text-decoration: none; transition: color var(--t); }
.ft-col a:hover { color: var(--white); }

.ft-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.ft-bot p { font-size: 12.5px; color: var(--g500); }

/* ══════════════════════════════════════════
   PORTFOLIO PAGE — FILTERS
══════════════════════════════════════════ */
.f-tabs { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 48px; max-width: 1360px; margin: 0 auto 44px; }

.f-tab {
    padding: 9px 20px; border-radius: 100px; font-size: 12.5px; font-weight: 600;
    cursor: pointer; border: 1.5px solid var(--g200); background: transparent;
    color: var(--g700); font-family: 'Inter', sans-serif;
    transition: all var(--t); letter-spacing: .01em;
}
.f-tab:hover { border-color: var(--black); color: var(--black); }
.f-tab.active { background: var(--black); color: var(--white); border-color: var(--black); }

.p-full { padding: 0 48px 112px; max-width: 1360px; margin: 0 auto; }
.p-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.p-item {
    position: relative; overflow: hidden; border-radius: 14px;
    background: var(--g100); cursor: pointer; aspect-ratio: 4/3;
    transition: transform var(--t) var(--ease);
}
.p-item:hover { transform: translateY(-5px); }

.p-item .ov {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
    opacity: 0; transition: opacity var(--ts) var(--ease);
}
.p-item:hover .ov { opacity: 1; }

.p-item .ci {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 22px;
    color: var(--white); opacity: 0; transform: translateY(6px);
    transition: all var(--ts) var(--ease);
}
.p-item:hover .ci { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   PROJECT MODAL
══════════════════════════════════════════ */
.m-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.58); z-index: 1200;
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}
.m-overlay.open { display: flex; animation: fadeIn .28s var(--ease); }

.modal {
    background: var(--white); border-radius: 22px;
    max-width: 860px; width: 90%; max-height: 90vh; overflow-y: auto;
    position: relative; animation: slideUp .38s var(--ease);
}
.m-head { aspect-ratio: 16/7; border-radius: 22px 22px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.m-body { padding: 44px 48px; }

.m-close {
    position: absolute; top: 16px; right: 16px;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(0,0,0,.55); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px; font-family: 'Inter', sans-serif;
    transition: background var(--t);
}
.m-close:hover { background: rgba(0,0,0,.8); }

.m-cat  { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--g500); margin-bottom: 10px; }
.m-ttl  { font-size: clamp(26px,3.5vw,42px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 22px; }
.m-desc { font-size: 15.5px; color: var(--g700); line-height: 1.75; margin-bottom: 36px; }

.m-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding-top: 28px; border-top: 1px solid var(--g200); }
.m-lbl  { font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--g500); margin-bottom: 6px; }
.m-val  { font-size: 14.5px; font-weight: 700; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.svc-full { padding: 0 48px 112px; max-width: 1360px; margin: 0 auto; }

.svc-full-grid {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 2px; background: var(--g200); border-radius: 20px; overflow: hidden;
}
.svc-card { background: var(--white); padding: 52px 46px; transition: background var(--t); }
.svc-card:hover { background: var(--g100); }

.svc-card-ico { width: 54px; height: 54px; background: var(--black); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.svc-card-ico svg { width: 25px; height: 25px; stroke: white; fill: none; stroke-width: 1.5; }

.svc-card h3  { font-size: clamp(20px,2.2vw,26px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 14px; }
.svc-card > p { font-size: 14.5px; color: var(--g700); line-height: 1.72; margin-bottom: 28px; }

.inc { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.inc li {
    font-size: 13px; color: var(--g700);
    display: flex; align-items: center; gap: 10px;
}
.inc li::before {
    content: ''; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
    background: var(--black)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E")
        no-repeat center / 10px;
}

.svc-cta { text-align: center; padding: 72px 0 0; }
.svc-cta h3 { font-size: clamp(26px,3.5vw,46px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; }
.svc-cta p  { font-size: 15px; color: var(--g500); margin-bottom: 28px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-lay {
    padding: 0 48px 112px; max-width: 1360px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start;
}
.about-photo {
    aspect-ratio: 3/4; background: var(--g100); border-radius: 20px;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    position: sticky; top: 96px;
}
.about-ph-txt { font-size: 72px; font-weight: 900; color: var(--g200); letter-spacing: -.06em; }

.about-txt .label { margin-bottom: 18px; }
.about-txt h2 { font-size: clamp(30px,3.8vw,50px); margin-bottom: 28px; }
.about-txt p  { font-size: 15.5px; color: var(--g700); line-height: 1.8; margin-bottom: 22px; }

.sk-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 40px; }
.sk-item { padding: 18px 22px; background: var(--g100); border-radius: 12px; }
.sk-name { font-size: 13px; font-weight: 700; margin-bottom: 9px; }
.sk-bar  { height: 3px; background: var(--g200); border-radius: 100px; overflow: hidden; }
.sk-fill { height: 100%; background: var(--black); border-radius: 100px; width: 0; transition: width 1.5s var(--ease); }

.why-band  { background: var(--black); color: var(--white); padding: 80px 48px; }
.why-inner { max-width: 1360px; margin: 0 auto; }
.why-band .label { color: var(--g500); margin-bottom: 16px; }
.why-band h2 { font-size: clamp(30px,4vw,54px); max-width: 560px; line-height: 1.05; margin-bottom: 52px; }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.why-item { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.why-item h4 { font-size: 17px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.why-item p  { font-size: 13.5px; color: var(--g500); line-height: 1.65; }

.about-cta { text-align: center; padding: 96px 48px; max-width: 680px; margin: 0 auto; }
.about-cta h3 { font-size: clamp(26px,3.5vw,46px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.about-cta p  { font-size: 15px; color: var(--g500); margin-bottom: 28px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-lay {
    padding: 0 48px 112px; max-width: 1360px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start;
}
.ct-info h2 { font-size: clamp(32px,4.5vw,58px); margin-bottom: 20px; line-height: 1.05; }
.ct-info h2 em { font-style: italic; font-weight: 300; }
.ct-info > p { font-size: 16px; color: var(--g700); line-height: 1.75; margin-bottom: 44px; }

.ct-detail { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--g200); }
.ct-detail:last-of-type { border-bottom: none; }
.ct-ico { width: 44px; height: 44px; background: var(--g100); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-ico svg { width: 19px; height: 19px; stroke: var(--black); fill: none; stroke-width: 1.6; }
.ct-lbl { font-size: 11.5px; color: var(--g500); font-weight: 600; letter-spacing: .05em; margin-bottom: 2px; }
.ct-val { font-size: 14.5px; font-weight: 700; }

.ct-form { background: var(--g100); border-radius: 22px; padding: 44px; }
.ct-form h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 28px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp { margin-bottom: 18px; }
.f-grp label {
    display: block; font-size: 11.5px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--g700); margin-bottom: 7px;
}
.f-grp input,
.f-grp textarea,
.f-grp select {
    width: 100%; padding: 13px 16px;
    background: var(--white); border: 1.5px solid var(--g200);
    border-radius: 10px; font-family: 'Inter', sans-serif;
    font-size: 14.5px; color: var(--black); outline: none;
    transition: border-color var(--t);
}
.f-grp input:focus,
.f-grp textarea:focus,
.f-grp select:focus { border-color: var(--black); }
.f-grp textarea { resize: vertical; min-height: 110px; }

.f-submit {
    width: 100%; padding: 17px;
    background: var(--black); color: var(--white);
    border: none; border-radius: 11px;
    font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 600;
    cursor: pointer; transition: all var(--t);
    letter-spacing: .03em; margin-top: 6px;
}
.f-submit:hover { background: var(--g700); transform: translateY(-2px); }

.f-ok { display: none; text-align: center; padding: 40px 0; }
.f-ok.show { display: block; }
.f-ok-ico { width: 60px; height: 60px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.f-ok-ico svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2.5; }
.f-ok h4 { font-size: 21px; margin-bottom: 10px; }
.f-ok p  { color: var(--g500); font-size: 14.5px; }

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes fadeUp  { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

/* ══════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .stats-inner      { grid-template-columns: repeat(2,1fr); }
    .p-grid           { grid-template-columns: repeat(6,1fr); }
    .p-card:nth-child(1), .p-card:nth-child(2) { grid-column: span 6; }
    .p-card:nth-child(3), .p-card:nth-child(4) { grid-column: span 3; }
    .svc-grid-home    { grid-template-columns: repeat(2,1fr); }
    .testi-grid       { grid-template-columns: repeat(2,1fr); }
    .ft-top           { grid-template-columns: 1fr 1fr; gap: 36px; }
    .p-full-grid      { grid-template-columns: repeat(2,1fr); }
    .svc-full-grid    { grid-template-columns: 1fr; }
    .about-lay        { grid-template-columns: 1fr; gap: 40px; }
    .about-photo      { aspect-ratio: 16/9; position: static; }
    .contact-lay      { grid-template-columns: 1fr; }
    .why-grid         { grid-template-columns: repeat(2,1fr); }
    .m-meta           { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
    nav { padding: 0 24px; }

    .nav-links {
        display: none; position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 16px 24px 24px; gap: 0;
        border-bottom: 1px solid var(--g200);
        box-shadow: 0 8px 30px rgba(0,0,0,.08);
    }
    .nav-links.open { display: flex; }
    .nav-links li   { border-bottom: 1px solid var(--g100); }
    .nav-links a    { display: block; padding: 15px 0; font-size: 15px; }
    .nav-cta { background: transparent !important; color: var(--black) !important; border-radius: 0; padding: 15px 0; }
    .hamburger { display: flex; }

    .hero       { padding: 112px 24px 64px; }
    .page-hero  { padding: 108px 24px 56px; }
    .hero-foot  { flex-direction: column; align-items: flex-start; }

    .section    { padding: 80px 24px; }
    .stats-bar  { padding: 56px 24px; }
    .stats-inner{ gap: 28px; }

    .p-grid { display: flex; flex-direction: column; }

    .svc-grid-home  { grid-template-columns: 1fr; }
    .testi-grid     { grid-template-columns: 1fr; }
    .testi-wrap     { padding: 80px 24px; }
    .cta-band       { padding: 80px 24px; }

    footer { padding: 56px 24px 36px; }
    .ft-top { grid-template-columns: 1fr; gap: 36px; }

    .f-tabs     { padding: 0 24px; }
    .p-full     { padding: 0 24px 80px; }
    .p-full-grid{ grid-template-columns: 1fr; }

    .svc-full   { padding: 0 24px 80px; }
    .about-lay  { padding: 0 24px 80px; }
    .contact-lay{ padding: 0 24px 80px; }

    .sk-grid  { grid-template-columns: 1fr; }
    .why-band { padding: 64px 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-cta{ padding: 72px 24px; }

    .ct-form  { padding: 28px 20px; }
    .f-row    { grid-template-columns: 1fr; }

    .m-body   { padding: 28px 22px; }
    .m-meta   { grid-template-columns: 1fr; }
}
