/* ============================================================
   STRAIGHT LINE BUILDERS — design system v3
   Minimal / editorial / oversized type. GSAP handles motion;
   this file only sets the resting state (.reveal = hidden,
   GSAP animates to visible) and the big project slider.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --ink: #111214;
    --ink-soft: #54575C;
    --paper: #FFFFFF;
    --paper-alt: #F5F4F1;
    --line: rgba(17, 18, 20, 0.12);
    --line-strong: rgba(17, 18, 20, 0.35);
    --amber: #E8A33D;
    --amber-deep: #C97F1E;
    --stone: #9A9892;
    --maxw: 1320px;
    --edge: 48px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 .5em;
    letter-spacing: -0.015em;
}

p {
    margin: 0 0 1em;
    color: var(--ink-soft);
}

a {
    color: inherit;
}

em {
    font-family: 'Inter';
    font-style: italic;
    color: var(--amber-deep);
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--edge);
}

.eyebrow {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber-deep);
    display: flex;
    align-items: center;
    gap: .7em;
    margin-bottom: 1.2em;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--amber);
    display: inline-block;
}

/* ---------------- reveal utility ----------------
   Content is visible by default (progressive enhancement).
   A tiny inline head script adds .js to <html> only when
   JavaScript actually runs, which is what hides .reveal
   elements pending animation. If GSAP fails to load (CDN
   blocked, offline, etc.) a fallback below removes .js again
   after 2.5s so nothing stays permanently invisible. */
.mask {
    overflow: hidden;
    display: block;
}

.js-counted {
    font-variant-numeric: tabular-nums;
}

html.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .1s ease, transform .1s ease;
}

/* ---------------- header ---------------- */
header.site {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    backdrop-filter: blur(10px);
   
}

header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.brand-logo {
    height: 100%;
    width: auto;
    display: block;
    max-width: 290px;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
   
}
.foot-bottom span a {
    font-family: 'Inter';
    font-size: 12px;
    color: #9e9fa2;
    text-decoration: none;
}
.brand-logo-wrap .brand-logo {
    height: 100%;
    max-width: 260px;
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 6px;
}

nav.primary a {
    color: var(--ink);
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 1.1em;
    padding: 10px 18px 3px;
    position: relative;
}

nav.primary a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 1px;
    background: var(--amber-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

nav.primary a:hover::after,
nav.primary a.active::after {
    transform: scaleX(1);
}

nav.primary a.active {
    color: var(--amber-deep);
}

.nav-cta {
    margin-left: 8px;
    background: var(--ink);
    color: #fff !important;
    padding: 11px 22px !important;
    border-radius: 100px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--amber-deep);
}

.burger {
    display: none;
    background: none;
    border: 1px solid var(--line-strong);
    padding: 8px 12px;
    font-family: 'Inter';
    font-weight: 500;
}

body {
    padding-top: 88px;
}

/* ---------------- buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 100px;
    transition: .2s;
}

.btn-ink {
    background: var(--ink);
    color: #fff;
}

.btn-ink:hover {
    background: var(--amber-deep);
}

.btn-outline {
    color: var(--ink);
    border: 1.5px solid var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}

.btn-arrow::after {
    content: "→";
    display: inline-block;
    transition: transform .25s ease;
}

.btn:hover .btn-arrow::after {
    transform: translateX(4px);
}

/* ---------------- SIGNATURE: oversized display headline ---------------- */
.display {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(46px, 7.6vw, 124px);
    line-height: 0.98;
    margin: 0;
}

.display .ghost {
    color: transparent;
    -webkit-text-stroke: 1.4px var(--line-strong);
    font-weight: 700;
}

.display em {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    color: var(--ink);
}

.huge {
    font-size: clamp(52px, 9vw, 168px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 0.94;
}

/* ---------------- hero ---------------- */
.hero {
    padding: 74px 0 0;
}

.hero .kicker {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 22px;
}

.hero-line {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    font-size: clamp(40px, 4.6vw, 58px);
    line-height: 1.06;
    margin: 0;
    max-width: 1100px;
}

.hero-line em {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    color: var(--amber-deep);
}

.hero-sub {
    max-width: 460px;
    font-size: 17px;
    margin-top: 32px;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 56px;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
}

.hero-meta .coord {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ---------------- big project slider ---------------- */
.slider {
    position: relative;
    width: 100%;
}

.slider-view {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 480px;
    max-height: 820px;
    overflow: hidden;
    background: var(--ink);
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .92;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 45%);
}

.slide-cap {
    position: absolute;
    left: var(--edge);
    bottom: 34px;
    z-index: 3;
    color: #fff;
}

.slide-cap .num {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12.5px;
    letter-spacing: .14em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slide-cap h3 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: clamp(26px, 3.6vw, 46px);
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.slide-cap p {
    color: rgba(255, 255, 255, .75);
    font-size: 14.5px;
    margin: 0;
}

.slider-controls {
    position: absolute;
    right: var(--edge);
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 18px;
}

.slider-controls .count {
    font-family: 'Inter';
    font-size: 13px;
    color: #fff;
    letter-spacing: .05em;
}

.slider-controls button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
}

.slider-controls button:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.slider-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--amber);
    z-index: 5;
    width: 0;
    transition: width .6s ease;
}

.slider-drag-hint {
    position: absolute;
    top: 34px;
    left: var(--edge);
    z-index: 3;
    color: rgba(255, 255, 255, .6);
    font-family: 'Inter';
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ---------------- section rhythm ---------------- */
section {
    padding: 130px 0;
}

.on-ink {
    background: var(--ink);
    color: #fff;
}

.on-ink p {
    color: #B6B8BB;
}

.on-ink h2,
.on-ink h3,
.on-ink h4 {
    color: #fff;
}

.on-alt {
    background: var(--paper-alt);
}

.center {
    text-align: center;
}

.section-head {
    max-width: 680px;
    margin-bottom: 64px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.lead {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 580px;
    font-weight: 400;
}

.on-ink .lead {
    color: #C4C6C8;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
}

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

/* ---------------- feature photo ---------------- */
.feature-photo {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
    display: block;
}

/* ---------------- info columns ---------------- */
.info-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
}

.info-cols .col {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.info-cols .col h4 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 12px;
}

.info-cols .col p {
    font-size: 15px;
}

/* ---------------- principle blocks (flat, no borders, big number) ---------------- */
.principle {
    background: var(--paper);
    padding: 56px 40px;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.principle:nth-child(2) {
    background: var(--ink);
    color: #fff;
}

.principle:nth-child(1),
.principle:nth-child(3) {
    background: var(--paper);
}

.principle .idx {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 64px;
    line-height: 1;
    color: var(--line-strong);
}

.principle:nth-child(2) .idx {
    color: rgba(255, 255, 255, .22);
}

.principle h4 {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 24px;
    margin: 0;
}

.principle p {
    font-size: 14.5px;
    margin: 14px 0 0;
    max-width: 260px;
}

/* ---------------- stats ---------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 0 28px 0 0;
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.stat:first-child {
    border-left: none;
    padding-left: 0;
}

.stat .num {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: clamp(40px, 4.6vw, 68px);
    color: var(--ink);
    letter-spacing: -0.02em;
}

.stat .label {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 10px;
}

/* ---------------- services / cards (line-based, not boxed) ---------------- */
.svc-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    padding: 44px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}

.svc-row:last-child {
    border-bottom: 1px solid var(--line);
}

.svc-row .svc-num {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 20px;
    color: var(--stone);
}

.svc-row h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.svc-row p {
    font-size: 15px;
    max-width: 440px;
}

.step {
    display: flex;
    gap: 28px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.step:last-child {
    border-bottom: 1px solid var(--line);
}

.step .idx {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    color: var(--amber-deep);
    padding-top: 3px;
    min-width: 56px;
}

.step h4 {
    font-size: 19px;
    margin-bottom: 6px;
}

.step p {
    font-size: 15px;
    margin: 0;
    max-width: 560px;
}

.card {
    padding: 0;
}

.card .num {
    font-family: 'Inter';
    font-weight: 600;
    color: var(--amber-deep);
    font-size: 12.5px;
    letter-spacing: .08em;
}

.card h3 {
    font-size: 19px;
    margin: 16px 0 10px;
}

.card p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ---------------- ownership arc block ---------------- */
.arc-block {
    position: relative;
    text-align: center;
    padding: 70px 0 0;
}

.arc-block .arc-top,
.arc-block .arc-bottom {
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--ink-soft);
}

.arc-mark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 38px auto;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 20px;
}

/* ---------------- testimonial ---------------- */
.testi {
    padding: 0;
}

.testi .quote {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 21px;
    line-height: 1.45;
    margin-bottom: 20px;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.on-ink .testi .quote {
    color: #fff;
}

.testi .who {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12.5px;
    color: var(--amber-deep);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ---------------- footer ---------------- */
footer {
    background: #000;
    color: #B6B8BB;
    padding: 90px 0 30px;
}

footer h5 {
    font-family: 'Inter';
    color: var(--amber);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer a {
    text-decoration: none;
    color: #B6B8BB;
    font-size: 15px;
}

footer a:hover {
    color: var(--amber);
}

footer .fgrid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 40px;
}

footer .flinks {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 56px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-family: 'Inter';
    font-size: 12px;
    color: #6F7175;
}

.social {
    display: flex;
    gap: 14px;
}

.social a {
    border: 1px solid rgba(255, 255, 255, .22);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
}

.social a:hover {
    border-color: var(--amber);
}

/* ---------------- page hero (inner pages) ---------------- */
.page-hero {
    padding: 76px 0 60px;
}

.breadcrumb {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12px;
    color: var(--stone);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.breadcrumb a {
    color: var(--stone);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--amber-deep);
}

/* ---------------- misc ---------------- */
.tag-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.tag-row span {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12.5px;
    border: 1px solid var(--line);
    padding: 8px 14px;
    color: var(--ink-soft);
    border-radius: 100px;
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 0;
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-row button {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13.5px;
    background: none;
    border: 1px solid var(--line);
    padding: 11px 20px;
    cursor: pointer;
    color: var(--ink-soft);
    border-radius: 100px;
    transition: .2s;
}

.filter-row button.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.sheet {
    background: #fff;
    overflow: hidden;
}

.sheet-img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.titleblock {
    padding: 20px 4px 0;
    font-family: 'Inter';
    font-size: 12px;
    color: var(--stone);
}

.titleblock h4 {
    font-family: 'Poppins';
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 4px;
}

.titleblock .meta {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .04em;
}

.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--line);
}

.job-row:last-child {
    border-bottom: 1px solid var(--line);
}

.job-row h4 {
    font-size: 21px;
    margin-bottom: 6px;
}

.job-row .meta {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 12.5px;
    color: var(--stone);
    letter-spacing: .02em;
    text-transform: uppercase;
}

.value-card {
    border-left: 2px solid var(--amber);
    padding-left: 22px;
}

.value-card h4 {
    font-size: 19px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 15px;
}

form.contact-form {
    display: grid;
    gap: 20px;
}

form.contact-form .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

form.contact-form label {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 8px;
}

form.contact-form input,
form.contact-form textarea,
form.contact-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    padding: 12px 2px;
    font-family: 'Inter';
    font-size: 15px;
    color: var(--ink);
    border-radius: 0;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
    outline: none;
    border-color: var(--amber-deep);
}

form.contact-form button {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    margin-top: 12px;
}

.contact-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.contact-info-row:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-info-row .k {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 11px;
    color: var(--amber-deep);
    letter-spacing: .06em;
    text-transform: uppercase;
    min-width: 96px;
    padding-top: 2px;
}

.contact-info-row a {
    text-decoration: none;
    color: var(--ink);
}

.contact-info-row a:hover {
    color: var(--amber-deep);
}

.map-frame {
    border: 1px solid var(--line);
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 340px;
    display: block;
    filter: grayscale(.25) contrast(1.03);
}

/* ---------------- responsive ---------------- */
@media (max-width: 980px) {
    :root {
        --edge: 22px;
    }

    nav.primary {
        display: none;
    }

    .burger {
        display: block;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .info-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }

    .stat {
        border-left: none;
        padding-left: 0;
    }

    footer .fgrid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    form.contact-form .row2 {
        grid-template-columns: 1fr;
    }

    .job-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    footer .flinks {
        gap: 3px;
    }
    .svc-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .slider-view {
        height: 56vh;
    }

    .slide-cap h3 {
        font-size: 24px;
        padding: 0 40px 0 0;
    }

    section {
        padding: 80px 0;
    }
    .slide-cap {
        bottom: 113px;
        
    }
}
/* =========================================
   TABLET / IPAD
========================================= */

@media (max-width: 1024px) {

    .site {
        position: relative;
        z-index: 9999;
        background: #fff;
    }

    .site .wrap {
        width: calc(100% - 40px);
        min-height: 80px;
        margin: 0 auto;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand-logo {
        width: 160px;
        height: auto;
    }

    /* Hide desktop navigation */
    .primary {
        display: none;

        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 14px;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .primary.active {
        display: flex;
    }

    .primary a {
        display: flex;
        align-items: center;

        width: 100%;
        padding: 15px 12px;

        font-size: 16px;
        text-decoration: none;
    }

    .primary a::after {
        display: none;
    }

    .primary .nav-cta {
        justify-content: center;
        margin-top: 8px;
    }

    /* Burger */
    .burger {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 48px;
        height: 48px;

        padding: 0;

        background: transparent;
        border: 1px solid #111;
        border-radius: 50%;

        font-size: 11px;
        font-weight: 600;

        cursor: pointer;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .site .wrap {
        width: calc(100% - 30px);
        min-height: 70px;
    }

    .brand-logo {
        width: 140px;
    }

    .primary {
        left: 15px;
        right: 15px;

        padding: 10px;

        border-radius: 12px;
    }

    .primary a {
        padding: 14px 10px;
        font-size: 15px;
    }

    .burger {
        width: 44px;
        height: 44px;

        font-size: 10px;
    }
       .brand-logo {
        width: 240px;
    }
    .hero .kicker {
        font-size: 20px;
    }
    .foot-bottom {
        flex-wrap: wrap;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site .wrap {
        width: calc(100% - 24px);
    }

    .brand-logo {
        width: 240px;
    }
    .hero .kicker {
        font-size: 20px;
    }
    .burger {
        width: 42px;
        height: 42px;
    }

    .primary {
        left: 12px;
        right: 12px;
    }
    .foot-bottom {
        flex-wrap: wrap;
    }
}
button:focus,
button:active,
.menu-btn:focus,
.menu-btn:active {
    color: #000;
    outline: none;
}
.nl-wrap {
    display: none!important;
    opacity: 0!important;
    visibility: hidden!important;
}

iframe#nl-badge-frame {
    display: none;
}