:root {
    --bg:#050505;
    --panel:#101010;
    --text:#f7f7f2;
    --muted:#b5b5af;
    --yellow:#ffd31a;
    --orange:#ff7a00;
    --line:#282828;
    --max:1180px
}
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,Arial,sans-serif;
    line-height:1.55
}
a {
    color:inherit;
    text-decoration:none
}
img {
    display:block;
    width:100%;
    height:100%;
    object-fit:cover
}
.site-header {
    height:86px;
    display:flex;
    align-items:center;
    gap:34px;
    padding:0 max(24px,calc((100vw - var(--max))/2));
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(5,5,5,.9);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.07)
}
.brand,.footer-brand {
    display:flex;
    align-items:center;
    gap:10px
}
.brand-mark {
    font:italic 800 30px/1 'Barlow Condensed',sans-serif;
    letter-spacing:-3px;
    color:white
}
.brand-mark::first-letter {
    color:white
}
.brand-word {
    font:italic 800 23px/1 'Barlow Condensed',sans-serif;
    white-space:nowrap
}
.brand-word b {
    color:white
}
.brand-word em {
    font-style:normal;
    color:var(--yellow)
}
.nav {
    display:flex;
    gap:28px;
    margin-left:auto
}
.nav a {
    font-size:.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em
}
.nav a:hover {
    color:var(--yellow)
}
.menu-toggle {
    display:none;
    background:none;
    border:0;
    color:white;
    font-size:1.6rem
}
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    background:linear-gradient(90deg,var(--yellow),var(--orange));
    color:#050505;
    text-transform:uppercase;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.05em;
    border:0;
    transform:skew(-5deg);
    transition:.2s
}
.btn:hover {
    transform:skew(-5deg) translateY(-2px);
    filter:brightness(1.07)
}
.btn-small {
    min-height:42px;
    padding:0 18px
}
.btn-ghost {
    background:transparent;
    border:1px solid #4b4b4b;
    color:white
}
.hero {
    max-width:var(--max);
    margin:auto;
    min-height:680px;
    display:grid;
    grid-template-columns:44% 56%;
    position:relative;
    border-left:1px solid var(--line);
    border-right:1px solid var(--line)
}
.hero-copy {
    padding:92px 48px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:radial-gradient(circle at 10% 20%,rgba(255,122,0,.08),transparent 30%)
}
.eyebrow {
    text-transform:uppercase;
    color:var(--yellow);
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.18em;
    margin:0 0 18px
}
.hero h1,.section-heading h2,.cta h2 {
    font:italic 800 clamp(4rem,8vw,7.5rem)/.82 'Barlow Condensed',sans-serif;
    text-transform:uppercase;
    letter-spacing:-.035em;
    margin:0
}
.hero h1 span {
    color:var(--yellow)
}
.hero-text {
    max-width:430px;
    color:#d6d6d1;
    font-size:1.05rem;
    margin:30px 0
}
.hero-actions {
    display:flex;
    gap:12px;
    flex-wrap:wrap
}
.hero-image {
    background:linear-gradient(90deg,rgba(5,5,5,.2),transparent 30%),url('../images/deco/hero.webp') center/cover no-repeat;
    min-height:680px;
    clip-path:polygon(7% 0,100% 0,100% 100%,0 100%)
}
.geo-label {
    position:absolute;
    right:-112px;
    top:48%;
    transform:rotate(90deg);
    font-size:.68rem;
    letter-spacing:.3em;
    color:#aaa
}
.services {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    max-width:var(--max);
    margin:auto;
    border:1px solid var(--line)
}
.section-dark {
    background:#0b0b0b
}
.services article {
    padding:34px 28px;
    border-right:1px solid var(--line)
}
.services article:last-child {
    border-right:0
}
.services span {
    color:var(--yellow);
    font:800 1.1rem 'Barlow Condensed'
}
.services h2 {
    font:800 1.5rem 'Barlow Condensed';
    text-transform:uppercase;
    margin:14px 0 8px
}
.services p {
    font-size:.88rem;
    color:var(--muted);
    margin:0
}
.results {
    max-width:var(--max);
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr repeat(4,1fr);
    background:linear-gradient(90deg,var(--yellow),#ffae00);
    color:#080808
}
.results>div {
    padding:30px;
    border-right:1px solid rgba(0,0,0,.25);
    display:flex;
    flex-direction:column
}
.results-title {
    font:italic 800 2rem 'Barlow Condensed';
    text-transform:uppercase;
    justify-content:center
}
.results strong {
    font:800 2.4rem 'Barlow Condensed';
    line-height:1
}
.results span {
    font-size:.75rem;
    text-transform:uppercase;
    font-weight:700;
    margin-top:8px
}
.section-pad {
    max-width:var(--max);
    margin:auto;
    padding:110px 34px
}
.section-heading {
    max-width:650px;
    margin-bottom:50px
}
.section-heading h2 {
    font-size:clamp(3.5rem,7vw,6.3rem)
}
.section-heading>p:last-child {
    color:var(--muted);
    max-width:520px
}
.package-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}
.package-card {
    border:1px solid var(--line);
    padding:34px;
    background:#0c0c0c;
    min-height:430px;
    display:flex;
    flex-direction:column
}
.package-card.featured {
    border-color:var(--yellow);
    background:linear-gradient(180deg,rgba(255,211,26,.08),#0c0c0c)
}
.package-label {
    font-size:.72rem;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--yellow);
    font-weight:800
}
.package-card h3 {
    font:800 2.2rem/1 'Barlow Condensed';
    text-transform:uppercase;
    margin:12px 0 20px
}
.package-card ul {
    padding-left:18px;
    color:#c9c9c3
}
.package-card li {
    margin:8px 0
}
.package-card a {
    margin-top:auto
}
.text-link {
    color:var(--yellow);
    font-weight:800;
    text-transform:uppercase;
    font-size:.78rem;
    letter-spacing:.07em
}
.work-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px
}
.work figure {
    height:330px;
    margin:0;
    position:relative;
    overflow:hidden;
    clip-path:polygon(8% 0,100% 0,92% 100%,0 100%)
}
.work figure:after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(transparent 50%,rgba(0,0,0,.85))
}
.work figcaption {
    position:absolute;
    left:24px;
    bottom:22px;
    z-index:2;
    font:800 1.35rem 'Barlow Condensed';
    text-transform:uppercase
}
.area-list {
    display:flex;
    flex-wrap:wrap;
    gap:12px
}
.area-list span {
    padding:16px 20px;
    border:1px solid #363636;
    background:#0c0c0c;
    font:800 1.2rem 'Barlow Condensed';
    text-transform:uppercase
}
.cta {
    max-width:var(--max);
    margin:auto;
    background:linear-gradient(110deg,var(--yellow),var(--orange));
    color:#080808;
    padding:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px
}
.cta h2 {
    font-size:clamp(3.2rem,6vw,5.3rem)
}
.cta p {
    max-width:700px
}
.cta .eyebrow {
    color:#080808
}
.btn-dark {
    background:#080808;
    color:white;
    min-width:240px
}
.reveal {
    opacity:0;
    transform:translateY(26px);
    transition:.7s ease
}
.reveal.visible {
    opacity:1;
    transform:none
}
@media(max-width:900px) {
    .site-header {
        height:72px;
        padding:0 18px
    }
    .nav {
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:72px;
        background:#090909;
        padding:24px;
        flex-direction:column
    }
    .nav.open {
        display:flex
    }
    .menu-toggle {
        display:block;
        margin-left:auto
    }
    .site-header>.btn {
        display:none
    }
    .hero {
        grid-template-columns:1fr;
        min-height:auto;
        border:0
    }
    .hero-copy {
        padding:70px 24px 40px
    }
    .hero h1 {
        font-size:clamp(4rem,18vw,6.7rem)
    }
    .hero-image {
        min-height:470px;
        clip-path:none
    }
    .geo-label {
        display:none
    }
    .services {
        grid-template-columns:1fr 1fr;
        border-left:0;
        border-right:0
    }
    .services article:nth-child(2) {
        border-right:0
    }
    .services article {
        border-bottom:1px solid var(--line)
    }
    .results {
        grid-template-columns:1fr 1fr
    }
    .results-title {
        grid-column:1/-1
    }
    .package-grid,.work-grid {
        grid-template-columns:1fr 1fr
    }
    .cta {
        margin:0;
        padding:54px 24px;
        flex-direction:column;
        align-items:flex-start
    }
    .section-pad {
        padding:80px 24px
    }
}
@media(max-width:560px) {
    .brand-word {
        font-size:19px
    }
    .services,.package-grid,.work-grid,.results {
        grid-template-columns:1fr
    }
    .services article {
        border-right:0
    }
    .work figure {
        height:360px
    }
    .results-title {
        grid-column:auto
    }
    .hero-image {
        min-height:380px
    }
    .hero-actions .btn {
        width:100%
    }
    .cta {
        padding:48px 22px
    }
}
/* Wide-screen layout and fixed campaign pricing */
:root {
    --max:1600px
}
.site-header {
    padding-left:clamp(22px,3vw,64px);
    padding-right:clamp(22px,3vw,64px)
}
.hero,.services,.results,.section-pad,.cta {
    width:calc(100% - clamp(24px,4vw,72px));
    max-width:var(--max)
}
.hero {
    grid-template-columns:minmax(460px,42%) 1fr;
    min-height:760px
}
.hero-copy {
    padding:110px clamp(42px,5vw,92px) 90px
}
.hero-image {
    min-height:760px
}
.section-pad {
    padding:120px clamp(30px,4vw,74px)
}
.services article {
    padding:42px clamp(24px,2.4vw,42px)
}
.results>div {
    padding:36px clamp(24px,2.6vw,44px)
}
.package-grid {
    gap:24px
}
.package-card {
    position:relative;
    min-height:590px;
    padding:42px clamp(28px,2.4vw,42px)
}
.package-card h3 {
    font-size:2.65rem;
    margin-bottom:14px
}
.package-price {
    font:italic 800 clamp(3.2rem,4.2vw,5rem)/.9 'Barlow Condensed',sans-serif;
    color:var(--yellow);
    margin:6px 0 12px;
    letter-spacing:-.035em
}
.package-price span {
    font-size:.52em;
    vertical-align:top;
    margin-right:4px;
    color:#fff
}
.package-note {
    color:var(--muted);
    margin:0 0 20px;
    min-height:48px
}
.package-card ul {
    margin:0 0 28px
}
.package-card li {
    margin:10px 0
}
.popular-tag {
    position:absolute;
    top:0;
    right:0;
    background:var(--yellow);
    color:#050505;
    padding:8px 14px;
    font-size:.66rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.1em
}
.pricing-footnote {
    max-width:980px;
    margin:30px auto 0;
    text-align:center;
    color:#8f8f89;
    font-size:.82rem
}
@media(min-width:1700px) {
    .hero h1 {
        font-size:8rem
    }
    .hero-text {
        font-size:1.15rem
    }
    .services h2 {
        font-size:1.75rem

    }
    .work figure {
        height:390px
    }
}
@media(max-width:900px) {
    .hero,.services,.results,.section-pad,.cta {
        width:100%
    }
    .hero {
        grid-template-columns:1fr;
        min-height:auto
    }
    .hero-image {
        min-height:470px
    }
    .package-card {
        min-height:auto
    }
    .package-note {
        min-height:0
    }
}
/* True full-bleed layout */
html,body {
    width:100%;
    max-width:none;
    overflow-x:hidden
}
.site-header {
    width:100%;
    max-width:none;
    padding-left:clamp(22px,3vw,64px);
    padding-right:clamp(22px,3vw,64px)
}
.hero,.services,.results,.section-pad,.cta {
    width:100%;
    max-width:none;
    margin-left:0;
    margin-right:0;
}
.hero {
    border-left:0;
    border-right:0;
    grid-template-columns:minmax(430px,40%) 1fr
}
.hero-copy {
    padding-left:clamp(42px,6vw,120px);
    padding-right:clamp(36px,5vw,90px)
}
.services {
    border-left:0;
    border-right:0
}
.section-pad {
    padding-left:clamp(32px,6vw,120px);
    padding-right:clamp(32px,6vw,120px)
}
.results {
    border-radius:0
}
.cta {
    padding-left:clamp(34px,6vw,120px);
    padding-right:clamp(34px,6vw,120px)
}
.package-grid {
    grid-template-columns:repeat(3,minmax(0,1fr))
}
.work-grid {
    grid-template-columns:repeat(4,minmax(0,1fr))
}
@media(min-width:1500px) {
    .hero {
        min-height:820px
    }
    .hero-image {
        min-height:820px
    }
    .hero h1 {
        font-size:clamp(6rem,7.5vw,9rem)
    }
    .package-card {
        min-height:620px
    }
}
@media(max-width:900px) {
    .hero,.services,.results,.section-pad,.cta {
        width:100%;
        max-width:none
    }
    .section-pad {
        padding-left:24px;
        padding-right:24px
    }
}
.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.brand:hover .logo {
    transform: scale(1.03);
    opacity: 0.92;
}
@media (max-width: 768px) {
    .logo {
        height: 55px;
        max-width: 220px;
    }
}

/* =========================================================
   MOBILE / TABLET REFINEMENTS
   ========================================================= */

/* Better anchor positioning below sticky header */
section[id] {
    scroll-margin-top: 90px;
}

/* Prevent long words / labels causing overflow */
.hero-copy,
.package-card,
.cta,
.services article {
    min-width: 0;
}

/* -------------------------
   TABLET / MOBILE
   ------------------------- */

@media (max-width: 900px) {

    /* HEADER */
    .site-header {
        height: 72px;
        padding: 0 20px;
        gap: 16px;
    }

    .brand {
        position: relative;
        z-index: 22;
    }

    .logo {
        height: 40px;
        max-width: 180px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        cursor: pointer;
        position: relative;
        z-index: 22;
    }

    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 20px;
        margin: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(5, 5, 5, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 21;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.85rem;
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .site-header > .btn {
        display: none;
    }


    /* HERO */
    .hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .hero-copy {
        padding: 68px 24px 52px;
    }

    .hero h1 {
        font-size: clamp(4rem, 16vw, 6.5rem);
        line-height: 0.84;
        max-width: 100%;
    }

    .hero-text {
        max-width: 600px;
        margin: 26px 0 30px;
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        min-height: 480px;
        clip-path: none;
        background-position: center;
    }


    /* SERVICES */
    .services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services article {
        padding: 32px 24px;
    }

    .services article:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .services article:nth-child(even) {
        border-right: 0;
    }


    /* RESULTS */
    .results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .results-title {
        grid-column: 1 / -1;
    }

    .results > div {
        min-height: 120px;
        padding: 28px 24px;
    }

    .results strong {
        font-size: 2.2rem;
    }


    /* GENERAL SECTIONS */
    .section-pad {
        padding: 82px 24px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: clamp(3.6rem, 11vw, 5.7rem);
        line-height: 0.87;
    }


    /* PACKAGES */
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .package-card {
        min-height: 0;
        padding: 32px 26px;
    }

    .package-card:last-child {
        grid-column: 1 / -1;
    }

    .package-note {
        min-height: 0;
    }

    .package-price {
        font-size: clamp(3.4rem, 8vw, 4.4rem);
    }


    /* WORK / GALLERY */
    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .work figure {
        height: 360px;
        clip-path: none;
    }


    /* AREA TAGS */
    .area-list {
        gap: 10px;
    }

    .area-list span {
        padding: 14px 17px;
        font-size: 1.05rem;
    }


    /* CTA */
    .cta {
        padding: 62px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta h2 {
        font-size: clamp(3.7rem, 11vw, 5.5rem);
        line-height: 0.86;
    }

    .cta .btn-dark {
        min-width: 0;
    }


    /* FOOTER */
}


/* -------------------------
   PHONE
   ------------------------- */

@media (max-width: 600px) {

    section[id] {
        scroll-margin-top: 72px;
    }

    /* HEADER */
    .site-header {
        padding: 0 16px;
    }

    .logo {
        height: 36px;
        max-width: 160px;
    }


    /* HERO */
    .hero-copy {
        padding: 58px 20px 42px;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 18vw, 5.6rem);
    }

    .hero h1 br {
        display: none;
    }

    .hero-text {
        font-size: 0.97rem;
        margin: 24px 0 28px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image {
        min-height: 370px;
    }


    /* SERVICES */
    .services {
        grid-template-columns: 1fr;
    }

    .services article,
    .services article:nth-child(odd),
    .services article:nth-child(even) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .services article:last-child {
        border-bottom: 0;
    }


    /* RESULTS */
    .results {
        grid-template-columns: 1fr 1fr;
    }

    .results-title {
        grid-column: 1 / -1;
        min-height: auto !important;
    }

    .results > div {
        padding: 24px 18px;
        min-height: 110px;
    }

    .results > div:nth-child(even) {
        border-right: 1px solid rgba(0, 0, 0, 0.25);
    }

    .results > div:nth-child(odd):not(.results-title) {
        border-right: 0;
    }

    .results strong {
        font-size: 2rem;
    }

    .results span {
        font-size: 0.69rem;
    }


    /* GENERAL */
    .section-pad {
        padding: 68px 20px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2 {
        font-size: clamp(3.4rem, 16vw, 5rem);
    }

    .section-heading h2 br {
        display: none;
    }


    /* PACKAGES */
    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card,
    .package-card:last-child {
        grid-column: auto;
    }

    .package-card {
        padding: 30px 24px;
    }

    .package-card h3 {
        font-size: 2.25rem;
    }

    .package-price {
        font-size: 4rem;
    }

    .package-card .btn,
    .package-card .text-link {
        width: 100%;
    }

    .package-card .text-link {
        display: block;
        padding: 14px 0;
    }

    .popular-tag {
        font-size: 0.6rem;
        padding: 7px 11px;
    }

    .pricing-footnote {
        margin-top: 24px;
        text-align: left;
    }


    /* WORK */
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work figure {
        height: min(110vw, 430px);
    }


    /* AREAS */
    .area-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .area-list span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        padding: 12px;
        text-align: center;
        font-size: 1rem;
    }


    /* CTA */
    .cta {
        padding: 54px 20px;
        gap: 28px;
    }

    .cta h2 {
        font-size: clamp(3.5rem, 16vw, 5rem);
    }

    .cta .btn-dark {
        width: 100%;
    }


    /* FOOTER */


    /* WHATSAPP */
}


/* -------------------------
   VERY SMALL PHONES
   ------------------------- */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-heading h2,
    .cta h2 {
        font-size: 3.3rem;
    }

    .area-list {
        grid-template-columns: 1fr;
    }

    .package-price {
        font-size: 3.5rem;
    }
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 9990;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 211, 26, 0.35);
    border-radius: 50%;

    background: #050505;
    color: var(--yellow);

    font-size: 16px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(12px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--yellow);
    color: #050505;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .back-to-top {
        right: 14px;
        bottom: 78px;

        width: 50px;
        height: 50px;

        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}

@media (max-width: 560px) {

    #sw-whatsapp-widget-root .chat-launcher {
        right: 14px !important;
        bottom: 14px !important;

        width: 50px !important;
        height: 50px !important;

        min-width: 50px !important;
        min-height: 50px !important;

        padding: 4px !important;
        gap: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 50% !important;
    }

    #sw-whatsapp-widget-root .chat-launcher-icon {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
        min-height: 40px !important;

        flex: 0 0 40px !important;

        display: grid !important;
        place-items: center !important;

        border-radius: 50% !important;

        font-size: 21px !important;
    }

    #sw-whatsapp-widget-root .chat-launcher-text {
        display: none !important;
    }

}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    width: 100%;
    max-width: none;

    display: block;

    margin: 0;

    padding: 0;

    border-top: 1px solid var(--line);

    background:
        linear-gradient(
            180deg,
            #0a0a0a 0%,
            #050505 100%
        );

    color: var(--muted);
}


/* MAIN */

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: start;
    gap: clamp(60px, 10vw, 180px);
    padding:
        70px
        clamp(34px, 6vw, 120px)
        60px;
}


/* BRAND */

.footer-brand-block {
    max-width: 540px;
}

.footer-logo-link {
    display: inline-flex;

    margin-bottom: 22px;
}

.footer-logo {
    display: block;

    width: auto;
    height: 58px;

    max-width: 240px;

    object-fit: contain;
}

.footer-tagline {
    max-width: 430px;

    margin: 0;

    color: #d0d0ca;

    font-size: 1rem;

    line-height: 1.6;
}


/* LINKS */

.footer-links-block {
    justify-self: end;

    width: 100%;
    max-width: 320px;
}

.footer-heading {
    margin: 0 0 18px;

    color: var(--yellow);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 0;
}

.footer-links a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 44px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .07);

    color: #f4f4ef;

    font-family:
        'Barlow Condensed',
        sans-serif;

    font-size: 1.15rem;
    font-weight: 700;

    text-transform: uppercase;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.footer-links a::before {
    content: "→";

    position: absolute;
    left: 0;

    color: var(--yellow);

    opacity: 0;

    transform: translateX(-8px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.footer-links a:hover {
    padding-left: 22px;

    color: var(--yellow);
}

.footer-links a:hover::before {
    opacity: 1;

    transform: translateX(0);
}


/* BOTTOM STRIP */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding:
        22px
        clamp(34px, 6vw, 120px);

    border-top:
        1px solid
        rgba(255, 255, 255, .07);

    color: #777;

    font-size: .75rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #aaa;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .06em;

    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: var(--yellow);
}


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

@media (max-width: 700px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 44px;

        padding:
            54px
            20px
            46px;
    }

    .footer-links-block {
        justify-self: start;

        max-width: none;
    }

    .footer-logo {
        height: 52px;

        max-width: 220px;
    }

    .footer-tagline {
        font-size: .95rem;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        padding:
            22px
            20px
            100px;
    }

}