:root {
    --yellow: #f5b400;
    --yellow-2: #ffc933;
    --yellow-dark: #c99200;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #242424;
    --muted: #6d6d6d;
    --text: #4a4a4a;
    --line: #e8e8e8;
    --light: #f4f4f2;
    --white: #fff;
    --head: "Oswald", sans-serif;
    --body: "Inter", sans-serif;
    --shadow: 0 18px 50px rgba(0, 0, 0, .12);
    --radius: 4px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body.nav-open { overflow: hidden; }

body {
    margin: 0;
    font-family: var(--body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--head); color: var(--dark); line-height: 1.15; margin: 0; letter-spacing: .02em; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; background: none; border: 0; }

.container { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--tight { padding: 80px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--dark); color: #cfcfcf; }

.eyebrow {
    display: inline-block;
    color: var(--yellow);
    font-family: var(--head);
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-lead { max-width: 560px; color: var(--muted); }

.section-head { margin-bottom: 50px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 26px;
    font-family: var(--head);
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: .3s ease;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.btn--yellow { background: var(--yellow); color: var(--dark); }
.btn--yellow:hover { background: var(--yellow-2); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--yellow); color: var(--dark); }
.btn--line { border-color: var(--white); color: var(--white); }
.btn--line:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn--whatsapp:hover { background: #1ebe57; color: #fff; }
.btn--whatsapp i { font-size: 1.15em; }

.topbar {
    background: var(--dark);
    color: #c5c5c5;
    font-size: 13px;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 42px;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 0;
}
.topbar__left, .topbar__right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a:hover { color: var(--yellow); }
.topbar i { color: var(--yellow); margin-right: 8px; }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 0 var(--line);
}
.header .container {
    width: min(1200px, calc(100% - 16px));
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark { width: 48px; height: 48px; flex: 0 0 48px; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong {
    font-family: var(--head);
    font-size: 20px;
    letter-spacing: .08em;
    color: var(--dark);
}
.logo__text em {
    font-style: normal;
    font-family: var(--head);
    font-size: 13px;
    letter-spacing: .28em;
    color: var(--yellow);
}
.logo--light .logo__text strong { color: var(--white); }

.nav { display: flex; gap: 18px; }
.nav a {
    font-family: var(--head);
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    padding: 8px 0;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: .3s;
}
.nav a:hover::after,
.nav a.is-active::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .btn { padding: 0 16px; font-size: 13px; letter-spacing: .04em; white-space: nowrap; }
.header__wa {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    flex: 0 0 44px;
    font-size: 20px;
}
.header__wa:hover { background: #1ebe57; color: #fff; }
.nav-cta { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; flex: 0 0 44px; }
.nav-toggle span {
    position: absolute;
    left: 11px;
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: .3s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 560px;
    background: #111;
    color: var(--white);
    overflow: hidden;
}
.hero__slide {
    display: none;
    position: relative;
    min-height: 560px;
}
.hero__slide.is-active { display: block; }
.hero__bg {
    position: absolute;
    inset: 0;
    background-color: #111;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 72%;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 28%, rgba(0,0,0,.35) 100%),
        linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.2) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
    max-width: 760px;
}
.hero h1,
.hero__title {
    color: var(--white);
    font-family: var(--head);
    font-size: clamp(42px, 6vw, 76px);
    text-transform: uppercase;
    margin: 0 0 18px;
    line-height: 1.15;
    letter-spacing: .02em;
}
.hero p { font-size: 18px; color: #e9e9e9; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.hero__nav {
    position: absolute;
    z-index: 3;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero__dot {
    width: 12px; height: 12px;
    border: 2px solid var(--white);
    border-radius: 50%;
}
.hero__dot.is-active { background: var(--yellow); border-color: var(--yellow); }
.hero__arrows {
    position: absolute;
    z-index: 3;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
}
.hero__arrows button {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.25);
}
.hero__arrows button:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

/* Features over hero */
.features { position: relative; z-index: 4; margin-top: -40px; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature {
    background: var(--white);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--yellow);
    transition: .35s ease;
}
.feature:hover { transform: translateY(-8px); }
.feature i {
    font-size: 28px;
    color: var(--yellow);
    margin-bottom: 14px;
}
.feature h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }

/* About */
.about__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}
.about__media { position: relative; }
.about__media img { width: 100%; height: 560px; object-fit: cover; }
.about__badge {
    position: absolute;
    left: -28px;
    bottom: 40px;
    width: 150px;
    height: 150px;
    background: var(--yellow);
    color: var(--dark);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--head);
    text-transform: uppercase;
    box-shadow: var(--shadow);
}
.about__badge strong { font-size: 52px; display: block; line-height: 1; }
.about__badge span { font-size: 13px; letter-spacing: .08em; }
.checklist { margin: 22px 0 28px; }
.checklist li { padding: 7px 0 7px 28px; position: relative; }
.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--yellow);
}

/* Services */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 36px 28px 30px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}
.service::before {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 0;
    background: var(--dark);
    transition: .35s ease;
    z-index: 0;
}
.service:hover::before { height: 100%; }
.service > * { position: relative; z-index: 1; }
.service:hover,
.service:hover h3,
.service:hover p,
.service:hover a { color: var(--white); }
.service i {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 18px;
    display: block;
}
.service h3 { font-size: 22px; text-transform: uppercase; margin-bottom: 10px; }
.service a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: var(--head);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--dark);
}
.service a:hover { color: var(--yellow); }

/* Process */
.process { background: var(--dark); color: #cfcfcf; }
.process .section-title { color: var(--white); }
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process__item { position: relative; padding-right: 10px; }
.process__num {
    font-family: var(--head);
    font-size: 56px;
    color: transparent;
    -webkit-text-stroke: 1px var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
}
.process__item h3 { color: var(--white); text-transform: uppercase; font-size: 22px; margin-bottom: 10px; }

/* Projects */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}
.filter-btn {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line);
    font-family: var(--head);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--dark);
}
.filter-btn.is-active,
.filter-btn:hover { background: var(--yellow); border-color: var(--yellow); }

.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.project {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.project img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform .7s ease;
}
.project:hover img { transform: scale(1.08); }
.project__cap {
    position: absolute;
    inset: auto 18px 18px 18px;
    background: var(--white);
    padding: 18px 20px;
    transform: translateY(18px);
    opacity: 0;
    transition: .4s ease;
}
.project:hover .project__cap { opacity: 1; transform: none; }
.project__cap span {
    color: var(--yellow);
    font-family: var(--head);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
}
.project__cap h3 { font-size: 20px; text-transform: uppercase; margin-top: 4px; }
.project.is-hidden { display: none; }

/* Counters */
.counters {
    position: relative;
    background: var(--dark) center/cover no-repeat;
    color: var(--white);
}
.counters::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.78);
}
.counters .container { position: relative; z-index: 1; }
.counters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.counter strong {
    display: block;
    font-family: var(--head);
    font-size: 56px;
    color: var(--yellow);
    line-height: 1;
}
.counter span {
    font-family: var(--head);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 14px;
}

/* Team */
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.member { overflow: hidden; background: var(--white); }
.member img { width: 100%; height: 320px; object-fit: cover; transition: .5s; }
.member:hover img { transform: scale(1.05); }
.member__info { padding: 20px 8px 0; }
.member__info h3 { text-transform: uppercase; font-size: 20px; }
.member__info span { color: var(--yellow); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--head); }

/* Testimonials */
.quotes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.quote {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 32px 28px;
    transition: .3s;
}
.quote:hover { border-color: var(--yellow); transform: translateY(-6px); }
.quote i { color: var(--yellow); font-size: 22px; margin-bottom: 14px; }
.quote p { font-style: italic; }
.quote strong { display: block; color: var(--dark); font-family: var(--head); letter-spacing: .06em; text-transform: uppercase; margin-top: 12px; }
.quote span { font-size: 13px; color: var(--muted); }

/* FAQ */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq__item {
    background: var(--white);
    border: 1px solid var(--line);
}
.faq__item[open] { border-color: var(--yellow); }
.faq__item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    font-family: var(--head);
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--dark);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    color: var(--yellow);
    font-size: 22px;
    line-height: 1;
    flex: 0 0 auto;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
    padding: 0 24px 22px;
    margin: 0;
    color: var(--text);
}

/* CTA */
.cta {
    position: relative;
    background: var(--dark) center/cover no-repeat;
    color: var(--white);
    text-align: center;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--white); font-size: clamp(32px, 4vw, 52px); text-transform: uppercase; margin-bottom: 16px; }
.cta p { max-width: 620px; margin: 0 auto 28px; }
.cta p a { color: var(--yellow); text-decoration: underline; }
.cta .cta-actions { justify-content: center; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}
.info-card .btn { margin-top: 10px; min-height: 44px; padding: 0 18px; font-size: 13px; }

/* Page banner */
.page-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background: var(--dark) center/cover no-repeat;
    color: var(--white);
    padding: 40px 0 50px;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-size: clamp(36px, 5vw, 58px); text-transform: uppercase; }
.page-banner__lead {
    max-width: 640px;
    margin: 14px 0 0;
    color: #ececec;
    font-size: 18px;
    line-height: 1.45;
}
.breadcrumb { color: #ddd; font-size: 14px; margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--yellow); }

/* Contact */
.contact__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
}
.info-card {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.info-card > i {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    background: var(--yellow);
    color: var(--dark);
    flex: 0 0 52px;
}
.info-card h3 { text-transform: uppercase; font-size: 16px; margin-bottom: 4px; }

.form {
    background: var(--light);
    padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: block; font-size: 13px; margin-bottom: 16px; font-weight: 600; color: var(--dark); }
.form input,
.form select,
.form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #ddd;
    background: var(--white);
    min-height: 50px;
    padding: 12px 14px;
    font: inherit;
    font-size: 16px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus { outline: 2px solid var(--yellow); border-color: var(--yellow); }
.alert { padding: 14px 16px; margin-bottom: 18px; }
.alert--ok { background: #e8f6e8; color: #1c6b1c; }
.alert--err { background: #fdecec; color: #8a1f1f; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* Footer */
.footer { background: #0d0d0d; color: #bdbdbd; }
.footer__main { padding: 80px 0 40px; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .8fr 1fr;
    gap: 40px;
}
.footer__mini { margin-top: 18px; }
.footer h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 18px;
}
.footer p { margin: 18px 0 0; }
.footer li { margin-bottom: 8px; }
.footer a { overflow-wrap: anywhere; }
.footer a:hover { color: var(--yellow); }
.footer__contact i { color: var(--yellow); width: 18px; margin-right: 8px; }
.footer__bottom { border-top: 1px solid #222; }
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 0;
    font-size: 13px;
}
.footer__bottom a { margin-left: 16px; }

.float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    font-family: var(--head);
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}
.float-wa:hover { background: #1ebe57; color: #fff; }
.float-wa i { font-size: 22px; }

.legal { max-width: 820px; }
.legal h2 { font-size: 28px; margin: 32px 0 12px; text-transform: uppercase; }

.landing-copy { max-width: 820px; }
.landing-copy .section-title { margin-bottom: 18px; }
.landing-copy .landing-audience { max-width: none; margin-top: 48px; }
.landing-copy .audience__grid { margin-top: 24px; }
.price-wrap { margin-top: 36px; overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; text-align: left; }
.price-table th {
    font-family: var(--head);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 14px;
    padding: 12px 14px;
    border-bottom: 2px solid var(--dark);
}
.price-table td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table tr:hover td { background: var(--light); }
.price-note { font-size: 14px; color: var(--muted); margin-top: 16px; }
.shots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.shot img { width: 100%; height: 280px; object-fit: cover; }
.shot figcaption { padding: 14px 4px 0; }
.shot span {
    color: var(--yellow);
    font-family: var(--head);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
}
.shot strong {
    display: block;
    font-family: var(--head);
    text-transform: uppercase;
    font-size: 18px;
    color: var(--dark);
    margin-top: 4px;
}
.landing-more { margin-top: 28px; }
.landing-more a {
    font-family: var(--head);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
}
.chip-links { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-links a,
.chip-links span {
    border: 1px solid var(--line);
    padding: 12px 18px;
    font-family: var(--head);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 14px;
}
.chip-links a:hover { background: var(--yellow); border-color: var(--yellow); }

.audience__grid,
.zone-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.audience-card,
.zone-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 28px 24px;
}
.section--light .audience-card,
.section--light .zone-card { background: var(--white); }
.audience-card h3,
.zone-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.audience-card p,
.zone-card p { margin: 0 0 8px; color: var(--muted); }
.audience-card a,
.zone-card a {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--head);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--dark);
}
.audience-card a:hover,
.zone-card a:hover { color: var(--yellow-dark); }

.problem-card i {
    display: block;
    color: var(--yellow-dark);
    font-size: 22px;
    margin-bottom: 12px;
}

@media (hover: none) {
    .project__cap { opacity: 1; transform: none; }
    .feature:hover,
    .quote:hover,
    .member:hover img,
    .project:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

@media (max-width: 1180px) {
    .header__budget { display: none; }
    .header__wa { display: grid; }
}

@media (max-width: 1100px) {
    .features__grid,
    .services__grid,
    .projects__grid,
    .quotes__grid,
    .footer__grid,
    .audience__grid,
    .zone-cards { grid-template-columns: 1fr 1fr; }
    .process__grid,
    .team__grid,
    .counters__grid { grid-template-columns: 1fr 1fr; }
    .about__grid,
    .contact__grid { grid-template-columns: 1fr; }
    .about__badge { left: 16px; }
    .about__media img { height: 420px; }
}

@media (max-width: 1024px) {
    .container { width: min(1200px, calc(100% - 32px)); }
    .section { padding: 64px 0; }
    .section--tight { padding: 48px 0; }
    .section-head { margin-bottom: 32px; }
    .section-title { font-size: clamp(26px, 7vw, 40px); }
    .eyebrow { letter-spacing: .14em; font-size: 13px; }

    .topbar { display: none; }

    .header .container { width: min(1200px, calc(100% - 12px)); }
    .header__inner { min-height: 64px; gap: 10px; }
    .logo__mark { width: 40px; height: 40px; flex-basis: 40px; }
    .logo__text strong { font-size: 16px; }
    .logo__text em { font-size: 11px; letter-spacing: .18em; }

    .nav-toggle { display: block; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 8px 20px 28px;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
        max-height: min(80vh, 640px);
        overflow-y: auto;
        z-index: 120;
    }
    .nav.is-open { display: flex; }
    .nav a {
        color: var(--dark) !important;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }
    .nav a::after { display: none; }
    .nav-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 18px;
    }
    .nav-cta .btn { width: 100%; letter-spacing: .04em; }

    .hero__content {
        padding: 36px 0 40px;
        min-height: 70svh;
        justify-content: flex-end;
        max-width: none;
    }
    .hero h1,
    .hero__title { font-size: clamp(28px, 8.4vw, 44px); margin-bottom: 12px; }
    .hero p { font-size: 16px; }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero__actions .btn {
        width: 100%;
        letter-spacing: .04em;
        white-space: normal;
        min-height: 48px;
    }
    .hero__nav,
    .hero__arrows { display: none; }

    .features { margin-top: 0; padding: 28px 0 8px; }
    .feature { padding: 24px 20px; }
    .feature:hover { transform: none; }

    .about__media img { height: 280px; }
    .about__badge {
        width: 112px;
        height: 112px;
        left: 12px;
        bottom: 12px;
    }
    .about__badge strong { font-size: 36px; }

    .cta { background-attachment: scroll; }
    .cta h2 { font-size: clamp(26px, 7vw, 40px); }
    .cta-actions,
    .cta .cta-actions {
        flex-direction: column;
        align-items: stretch;
        width: min(420px, 100%);
        margin-inline: auto;
    }
    .cta-actions .btn { width: 100%; letter-spacing: .04em; white-space: normal; }

    .page-banner {
        min-height: 0;
        padding: 28px 0 32px;
    }
    .page-banner h1 { font-size: clamp(26px, 8vw, 40px); }
    .page-banner__lead { font-size: 16px; margin-top: 10px; }

    .features__grid,
    .services__grid,
    .projects__grid,
    .quotes__grid,
    .footer__grid,
    .process__grid,
    .team__grid,
    .counters__grid,
    .audience__grid,
    .zone-cards,
    .form-row,
    .shots { grid-template-columns: 1fr; }

    .filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        margin-inline: -16px;
        padding-inline: 16px;
    }
    .filter-btn { flex: 0 0 auto; }

    .project { min-height: 0; }
    .project img { height: 240px; }
    .member img { height: 240px; }
    .shot img { height: 220px; }
    .counter strong { font-size: 42px; }
    .process__num { font-size: 44px; }

    .faq__item summary {
        font-size: 16px;
        padding: 16px;
        letter-spacing: .02em;
    }
    .faq__item p { padding: 0 16px 16px; }

    .form { padding: 22px 16px; }
    .form .btn { width: 100%; letter-spacing: .04em; white-space: normal; }
    .info-card { gap: 12px; padding: 16px 0; }
    .info-card > i { width: 44px; height: 44px; flex-basis: 44px; }
    .info-card .btn { width: 100%; }

    .footer__main { padding: 48px 0 28px; }
    .footer__bottom-inner { justify-content: center; text-align: center; }
    .footer__bottom a { margin-left: 0; margin-right: 14px; }

    .float-wa {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .float-wa span { display: none; }

    .price-table { min-width: 520px; }
    .chip-links a,
    .chip-links span { width: 100%; text-align: center; }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .features__grid,
    .services__grid,
    .projects__grid,
    .quotes__grid,
    .team__grid,
    .process__grid,
    .counters__grid { grid-template-columns: 1fr 1fr; }
    .hero__actions { flex-direction: row; }
    .hero__actions .btn { width: auto; flex: 1; }
    .cta-actions,
    .cta .cta-actions { flex-direction: row; width: auto; }
    .cta-actions .btn { width: auto; }
    .chip-links a,
    .chip-links span { width: auto; }
}

@media (max-width: 480px) {
    .container { width: min(1200px, calc(100% - 24px)); }
    .header .container { width: min(1200px, calc(100% - 8px)); }
    .section { padding: 48px 0; }
    .hero__content { padding: 28px 0 32px; min-height: 52svh; }
    .about__media img { height: 220px; }
    .btn { font-size: 14px; padding: 12px 16px; }
}

