:root {
    --ink: #171916;
    --paper: #e9e7df;
    --muted: #696b65;
    --acid: #c7d44a;
    --white: #f8f8f4;
    --line: rgba(23, 25, 22, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
}

a { color: inherit; }

.hero {
    min-height: calc(100svh - 112px);
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 0 clamp(24px, 5vw, 80px);
    overflow: hidden;
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    width: 100%;
    height: 112px;
    margin: 0;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    border-bottom: 1px solid var(--line);
    background: rgba(233, 231, 223, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand {
    width: 100px;
    height: 72px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 108px;
    height: 108px;
    max-width: 108px;
    object-fit: contain;
}

.header-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}

.header-link span { margin-left: 10px; }

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 3vw, 48px);
}

.desktop-nav a {
    position: relative;
    padding: 10px 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 2px;
    background: var(--acid);
    transition: right .2s ease;
}

.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { right: 0; }

.header-tools {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.6vw, 42px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
}

.social-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.social-link .social-dot { fill: currentColor; stroke: none; }
.social-link:hover { color: var(--ink); }

.mobile-menu { display: none; }
.desktop-nav a.active,
.desktop-nav a[aria-current="location"] {
    color: var(--ink);
}

.desktop-nav a.active::after,
.desktop-nav a[aria-current="location"]::after {
    right: 0;
}

.mobile-menu nav a.active,
.mobile-menu nav a[aria-current="location"] {
    color: var(--ink);
    border-bottom-color: var(--acid);
}

.hero__content {
    width: min(100%, 1440px);
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
    align-items: center;
    gap: clamp(48px, 7vw, 116px);
    padding: clamp(48px, 6vh, 88px) 0;
}

.hero__copy { position: relative; z-index: 2; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 38px;
    height: 3px;
    background: var(--acid);
}

h1 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(66px, 7.4vw, 132px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}

h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px var(--ink);
}

.hero__intro {
    max-width: 570px;
    margin: 40px 0 0;
    color: var(--muted);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 42px;
}

.button {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 224px;
    padding: 18px 21px;
    background: var(--ink);
    color: var(--white);
    transition: background .2s ease, color .2s ease;
}

.button--primary:hover {
    background: var(--acid);
    color: var(--ink);
}

.button--text {
    padding-bottom: 6px;
    border-bottom: 1px solid var(--ink);
}

.hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 530px);
    padding: 0 30px 28px 0;
}

.hero__accent {
    position: absolute;
    top: -32px;
    right: -72px;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--acid);
}

.hero__photo {
    position: relative;
    z-index: 1;
    margin: 0;
    height: min(64vh, 690px);
    min-height: 480px;
    overflow: hidden;
    background: #d8d6cf;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 46%;
    filter: saturate(.82) contrast(1.03);
}

.hero__side-note {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: -76px;
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
}

.hero__badge {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 118px;
    height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    background: var(--ink);
    color: var(--white);
}

.hero__badge strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.hero__badge span {
    margin-top: 8px;
    color: #bfc0ba;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero__footer {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero__line { height: 1px; flex: 1; background: var(--line); }

@media (max-width: 900px) {
    .hero { min-height: auto; }
    .hero__content {
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 58px 0 72px;
    }
    .hero__copy { max-width: 700px; }
    .hero__visual { justify-self: center; }
    .hero__photo { height: 660px; }
}

@media (max-width: 1050px) {
    .site-header {
        width: 100%;
        height: 88px;
        margin: 0;
        padding: 0 24px;
        grid-template-columns: auto 1fr auto;
    }
    .desktop-nav { display: none; }
    .header-tools { justify-self: end; }
    .social-link { display: none; }
    .mobile-menu { display: block; }
    .mobile-menu summary {
        width: 42px;
        height: 42px;
        display: grid;
        align-content: center;
        gap: 7px;
        padding: 10px;
        border: 1px solid var(--line);
        cursor: pointer;
        list-style: none;
    }
    .mobile-menu summary::-webkit-details-marker { display: none; }
    .mobile-menu summary span { display: block; height: 1px; background: var(--ink); }
    .mobile-menu[open] summary span:first-child { transform: translateY(4px) rotate(45deg); }
    .mobile-menu[open] summary span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-menu nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        width: min(320px, calc(100vw - 48px));
        display: flex;
        flex-direction: column;
        padding: 18px 22px;
        border: 1px solid var(--line);
        border-top: 0;
        background: var(--paper);
        box-shadow: 0 18px 36px rgba(23, 25, 22, .10);
    }
    .mobile-menu nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .11em;
        text-decoration: none;
        text-transform: uppercase;
    }
    .mobile-menu nav a:last-child { border-bottom: 0; color: var(--muted); }
}

@media (max-width: 560px) {
    .site-header { height: 78px; margin: 0; padding: 0 20px; gap: 12px; }
    .hero { padding: 0 20px; }
    .brand { width: 84px; height: 56px; overflow: hidden; }
    .brand img { width: 90px; height: 90px; }
    .header-tools { display: none; }
    .header-link { font-size: 10px; letter-spacing: .08em; }
    .hero__content { gap: 52px; padding: 46px 0 58px; }
    .eyebrow { margin-bottom: 23px; font-size: 9px; }
    h1 { font-size: clamp(58px, 18vw, 82px); line-height: .86; }
    .hero__intro { margin-top: 30px; font-size: 15px; line-height: 1.65; }
    .hero__actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 32px; }
    .button--primary { width: 100%; }
    .hero__visual { width: calc(100% - 10px); padding: 0 18px 22px 0; }
    .hero__accent { top: -22px; right: -30px; }
    .hero__photo { height: 520px; min-height: 0; }
    .hero__side-note { display: none; }
    .hero__badge { width: 96px; height: 96px; padding: 14px; }
    .hero__badge strong { font-size: 29px; }
    .hero__footer { min-height: 86px; gap: 14px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}

.site-footer {
    margin-top: clamp(70px, 10vw, 150px);
    padding: 0 clamp(24px, 5vw, 80px);
    background: var(--ink);
    color: var(--white);
}

.footer__main {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1fr 1.25fr .65fr;
    align-items: center;
    gap: clamp(36px, 6vw, 100px);
}

.footer__identity { display: flex; align-items: center; gap: 20px; }
.footer__identity div { display: flex; flex-direction: column; gap: 8px; }
.footer__identity strong { font-family: "Barlow Condensed", sans-serif; font-size: 22px; letter-spacing: .02em; text-transform: uppercase; }
.footer__identity span, .footer__contact span { color: #a6a8a1; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer__mark { width: 62px; height: 62px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #474942; color: var(--acid); font-family: "Barlow Condensed", sans-serif; font-size: 25px; font-weight: 700; text-decoration: none; }
.footer__statement { max-width: 520px; margin: 0; color: #c8c9c3; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.65; }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__contact span { margin-bottom: 5px; }
.footer__contact a { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.footer__contact a:hover { color: var(--acid); }

.footer__legal {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid #393b36;
    color: #91938c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer__legal p { margin: 0; }
.footer__legal nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: clamp(18px, 3vw, 42px); }
.footer__legal a { text-decoration: none; }
.footer__legal a:hover { color: var(--white); }

.legal-page { width: min(100% - 40px, 900px); margin: 80px auto 120px; }
.legal-page__back { display: inline-block; margin-bottom: 54px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.legal-page h1 { font-size: clamp(54px, 8vw, 90px); line-height: .9; }
.legal-page__updated { margin: 24px 0 55px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.legal-page section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-page h2 { margin: 0 0 15px; font-family: "Barlow Condensed", sans-serif; font-size: 30px; text-transform: uppercase; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 15px; line-height: 1.8; }
.legal-page strong { color: var(--ink); }

@media (max-width: 800px) {
    .footer__main { grid-template-columns: 1fr; min-height: auto; padding: 70px 0; }
    .footer__statement { max-width: 600px; }
    .footer__legal { align-items: flex-start; flex-direction: column; padding: 28px 0; }
    .footer__legal nav { justify-content: flex-start; }
}
.services {
    padding: clamp(90px, 12vw, 180px) clamp(24px, 5vw, 80px);
    background: var(--white);
}

.services__heading {
    width: min(100%, 1440px);
    margin: 0 auto clamp(64px, 8vw, 110px);
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    align-items: end;
    gap: clamp(50px, 9vw, 150px);
}

.services__heading .eyebrow { margin-bottom: 25px; }

.services h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(64px, 7.5vw, 120px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}

.services h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px var(--ink);
}

.services__heading > p {
    max-width: 570px;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.services__list {
    width: min(100%, 1440px);
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 125px 132px;
    align-items: center;
    gap: clamp(22px, 4vw, 64px);
    min-height: 170px;
    padding: 30px 24px 30px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .25s ease, background .25s ease;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--acid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.service-item:hover { padding-left: 24px; }
.service-item:hover::before { transform: scaleX(1); }
.service-item > * { position: relative; z-index: 1; }

.service-item__number {
    color: var(--muted);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.service-item h3 {
    margin: 0 0 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(31px, 3vw, 46px);
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1;
    text-transform: uppercase;
}

.service-item p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.service-item__tag {
    min-width: 150px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-align: right;
    text-transform: uppercase;
}

.service-item:hover p,
.service-item:hover .service-item__number,
.service-item:hover .service-item__tag { color: rgba(23, 25, 22, .7); }


.service-item__price {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    color: var(--ink) !important;
    white-space: nowrap;
}

.service-item__price small,
.service-item__price span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.service-item__price strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.service-item__action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 16px;
    border: 1px solid var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.service-item__action:hover,
.service-item:hover .service-item__action {
    background: var(--ink);
    color: var(--white);
}
.services__footer {
    width: min(100%, 1440px);
    margin: 42px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.services__footer p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .services__heading { grid-template-columns: 1fr; align-items: start; }
    .service-item { grid-template-columns: 42px 1fr auto; min-height: 0; padding: 30px 0; }
    .service-item__price { grid-column: 2; justify-content: flex-start; }
    .service-item__action { grid-column: 3; grid-row: 1 / span 2; }
    .service-item:hover { padding-left: 14px; }
    

.services__footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
    .services { padding-left: 20px; padding-right: 20px; }
    .services h2 { font-size: clamp(58px, 18vw, 82px); }
    .services__heading > p { font-size: 15px; }
    .service-item { grid-template-columns: 30px 1fr; gap: 14px; }
    .service-item p { font-size: 12px; }
    .service-item__action { grid-column: 2; grid-row: auto; width: 100%; }
    .service-item__price { grid-column: 2; }
    .services__footer .button { width: 100%; }
}
.about {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
    min-height: 820px;
    overflow: hidden;
    background: #d7d8cf;
}

.about::after {
    content: "DJM";
    position: absolute;
    right: -15px;
    bottom: -75px;
    color: rgba(23, 25, 22, .045);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(230px, 29vw, 500px);
    font-weight: 700;
    line-height: .8;
    pointer-events: none;
}

.about__visual {
    position: relative;
    min-height: 820px;
    padding: clamp(42px, 5vw, 76px) 0 clamp(42px, 5vw, 76px) clamp(24px, 5vw, 80px);
}

.about__image {
    width: 100%;
    height: 100%;
    min-height: 670px;
    overflow: hidden;
    background: #c5c7bf;
}

.about__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 42%;
    filter: saturate(.76) contrast(1.04);
}

.about__caption {
    position: absolute;
    right: 0;
    bottom: clamp(42px, 5vw, 76px);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    background: var(--ink);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about__caption span:last-child { color: #a8aaa3; }

.about__content {
    position: relative;
    z-index: 1;
    align-self: center;
    max-width: 780px;
    padding: clamp(80px, 10vw, 150px) clamp(24px, 8vw, 140px);
}

.about__content .eyebrow { margin-bottom: 30px; }

.about h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(66px, 7vw, 118px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}

.about h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px var(--ink);
}

.about__lead {
    max-width: 620px;
    margin: 42px 0 16px;
    font-size: clamp(18px, 1.65vw, 24px);
    font-weight: 600;
    line-height: 1.5;
}

.about__text {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.about blockquote {
    margin: 34px 0;
    padding: 4px 0 4px 24px;
    border-left: 4px solid var(--acid);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(23px, 2.2vw, 34px);
    font-weight: 500;
    line-height: 1.25;
}

.about__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 38px;
    padding: 25px 0;
    border-top: 1px solid rgba(23, 25, 22, .16);
    border-bottom: 1px solid rgba(23, 25, 22, .16);
}

.about__facts div { display: flex; flex-direction: column; gap: 8px; }
.about__facts dt { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about__facts dd { margin: 0; font-size: 11px; font-weight: 700; text-transform: uppercase; }

@media (max-width: 960px) {
    .about { grid-template-columns: 1fr; }
    .about__visual { min-height: 680px; padding-right: clamp(24px, 5vw, 80px); }
    .about__image { min-height: 580px; }
    .about__content { max-width: 820px; padding-top: 30px; }
}

@media (max-width: 560px) {
    .about__visual { min-height: 510px; padding: 20px; }
    .about__image { min-height: 470px; }
    .about__content { padding: 65px 20px 85px; }
    .about h2 { font-size: clamp(58px, 18vw, 82px); }
    .about__lead { margin-top: 32px; }
    .about__facts { grid-template-columns: 1fr; gap: 18px; }
    .about__facts div { display: grid; grid-template-columns: 1fr 1fr; }
    .about__caption { right: 20px; bottom: 20px; }
}
.locations {
    padding: clamp(90px, 12vw, 180px) clamp(24px, 5vw, 80px);
    background: var(--paper);
}

.locations__heading {
    width: min(100%, 1440px);
    margin: 0 auto clamp(60px, 8vw, 105px);
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    align-items: end;
    gap: clamp(50px, 9vw, 150px);
}

.locations__heading .eyebrow { margin-bottom: 25px; }

.locations h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(64px, 7.5vw, 120px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}

.locations h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px var(--ink);
}

.locations__heading > p {
    max-width: 560px;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.locations__grid {
    width: min(100%, 1440px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.location-card {
    min-height: 720px;
    display: flex;
    flex-direction: column;
    padding: clamp(25px, 3vw, 44px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(248, 248, 244, .48);
}

.location-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.location-card__top p { margin: 0; }
.location-card__body { flex: 1; padding: clamp(40px, 5vw, 72px) 0 35px; }

.location-card h3 {
    margin: 0 0 32px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(36px, 3.4vw, 54px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: .92;
    text-transform: uppercase;
}

.location-card h3 em { color: var(--muted); font-style: normal; font-weight: 500; }
.location-card address, .location-card__body > p { color: var(--muted); font-size: 13px; font-style: normal; line-height: 1.8; }

.location-card__map {
    height: 190px;
    margin: 0 0 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #d2d3cc;
}

.location-card__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(1) contrast(.92);
    transition: filter .25s ease;
}

.location-card__map:hover iframe,
.location-card__map:focus-within iframe {
    filter: grayscale(.15) contrast(1);
}
.location-card__actions { display: flex; flex-direction: column; gap: 10px; }

.location-card__actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 17px;
    border: 1px solid var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.location-card__actions a:hover { background: var(--ink); color: var(--white); }
.location-card__actions .location-card__whatsapp { background: var(--ink); color: var(--white); }
.location-card__actions .location-card__whatsapp:hover { background: var(--acid); color: var(--ink); }

.location-card--online { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.location-card--online::before { content: ""; position: absolute; top: -90px; right: -90px; width: 230px; aspect-ratio: 1; border-radius: 50%; background: var(--acid); }
.location-card--online > * { position: relative; z-index: 1; }
.location-card--online .location-card__top { border-color: #41433d; color: #a6a8a1; }
.location-card--online h3 em, .location-card--online .location-card__body > p { color: #b7b9b2; }
.location-card__status { display: inline-block; margin-bottom: 18px; color: var(--acid); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.location-card__notice { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; padding: 16px; border-left: 3px solid var(--acid); background: rgba(255,255,255,.05); }
.location-card__notice strong { color: var(--acid); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.location-card__notice span { color: #b7b9b2; font-size: 11px; line-height: 1.55; }
.location-card--online .location-card__actions a { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.location-card--online .location-card__actions a:hover { background: var(--white); border-color: var(--white); }

@media (max-width: 1000px) {
    .locations__heading { grid-template-columns: 1fr; align-items: start; }
    .locations__grid { grid-template-columns: 1fr 1fr; }
    .location-card--online { grid-column: 1 / -1; min-height: 480px; }
}

@media (max-width: 650px) {
    .locations { padding-left: 20px; padding-right: 20px; }
    .locations h2 { font-size: clamp(58px, 18vw, 82px); }
    .locations__heading > p { font-size: 15px; }
    .locations__grid { grid-template-columns: 1fr; }
    .location-card, .location-card--online { grid-column: auto; min-height: 520px; }
}
.contact-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr);
    gap: clamp(55px, 9vw, 150px);
    align-items: center;
    padding: clamp(90px, 12vw, 180px) clamp(24px, 5vw, 80px);
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.contact-section::before {
    content: "";
    position: absolute;
    left: -130px;
    bottom: -170px;
    width: 390px;
    aspect-ratio: 1;
    border: 1px solid rgba(199, 212, 74, .34);
    border-radius: 50%;
}

.contact-section__intro { position: relative; z-index: 1; max-width: 650px; }
.contact-section .eyebrow { color: #aeb0aa; }

.contact-section h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(70px, 8vw, 130px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .8;
    text-transform: uppercase;
}

.contact-section h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px var(--white);
}

.contact-section__intro > p:not(.eyebrow):not(.contact-section__note) {
    max-width: 520px;
    margin: 38px 0 0;
    color: #b9bbb5;
    font-size: 16px;
    line-height: 1.8;
}

.contact-section__details {
    margin: 48px 0 0;
    border-top: 1px solid #41433d;
}

.contact-section__details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid #41433d;
}

.contact-section__details span { color: #878a83; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-section__details strong { font-size: 10px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

.contact-section__note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 26px 0 0;
    color: #8f918b;
    font-size: 10px;
    line-height: 1.65;
}

.contact-section__note i { width: 8px; height: 8px; margin-top: 4px; flex: 0 0 auto; border-radius: 50%; background: var(--acid); }

.contact-panel {
    position: relative;
    z-index: 1;
    padding: clamp(30px, 4.5vw, 65px);
    background: var(--paper);
    color: var(--ink);
}

.contact-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.contact-panel__head span { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel__head h3 { margin: 8px 0 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(34px, 3.2vw, 50px); font-weight: 600; line-height: 1; text-transform: uppercase; }
.contact-panel__head > strong { color: var(--acid); font-family: "Barlow Condensed", sans-serif; font-size: 28px; }

.contact-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    padding: 40px 0;
}

.field { display: flex; flex-direction: column; gap: 10px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid #b9bbb3;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font: 13px "Manrope", sans-serif;
}

.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #999b94; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--ink); box-shadow: 0 2px 0 var(--acid); }

.contact-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.contact-panel__footer p { margin: 0; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-panel__footer button { min-width: 190px; display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; padding: 16px 18px; border: 0; background: #b9bbb3; color: #696b65; font: 700 9px "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; cursor: not-allowed; }

@media (max-width: 1000px) {
    .contact-section { grid-template-columns: 1fr; }
    .contact-section__intro { max-width: 760px; }
}

@media (max-width: 560px) {
    .contact-section { padding: 80px 20px; }
    .contact-section h2 { font-size: clamp(62px, 20vw, 90px); }
    .contact-panel { padding: 30px 22px; }
    .contact-panel__grid { grid-template-columns: 1fr; }
    .field--wide { grid-column: auto; }
    .contact-panel__footer { align-items: stretch; flex-direction: column; }
    .contact-panel__footer button { width: 100%; }
    .contact-section__details div { align-items: flex-start; flex-direction: column; }
    .contact-section__details strong { text-align: left; }
}
.social-feature {
    display: grid;
    grid-template-columns: minmax(340px, .8fr) minmax(420px, 1.2fr);
    align-items: center;
    gap: clamp(55px, 10vw, 170px);
    padding: clamp(90px, 12vw, 180px) clamp(24px, 8vw, 150px);
    background: #d7d8cf;
}

.social-feature__copy { max-width: 650px; }
.social-feature__copy .eyebrow { margin-bottom: 28px; }

.social-feature h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(66px, 7vw, 116px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .82;
    text-transform: uppercase;
}

.social-feature h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1.5px var(--ink);
}

.social-feature__copy > p:not(.eyebrow) {
    max-width: 520px;
    margin: 36px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.social-feature__profile {
    max-width: 480px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
    padding: 18px 20px;
    border: 1px solid rgba(23, 25, 22, .22);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.social-feature__profile:hover { background: var(--ink); color: var(--white); }
.social-feature__profile > span:nth-child(2) { display: flex; flex-direction: column; gap: 5px; }
.social-feature__profile small { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.social-feature__profile:hover small { color: #aaaca5; }
.social-feature__profile strong { font-size: 12px; letter-spacing: .06em; }

.social-feature__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--acid);
    color: var(--ink);
}

.social-feature__icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.social-feature__icon .social-dot { fill: currentColor; stroke: none; }

.social-feature__post {
    width: min(100%, 610px);
    justify-self: center;
    padding: clamp(18px, 3vw, 34px);
    background: var(--paper);
    box-shadow: 24px 24px 0 var(--acid);
}

.social-feature__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.social-feature__label strong { color: var(--ink); }
.social-feature__post .instagram-media { width: 100% !important; min-width: 0 !important; max-width: 540px !important; margin: 24px auto 0 !important; border: 0 !important; background: var(--white) !important; }
.social-feature__post blockquote > a { min-height: 380px; display: grid; place-items: center; padding: 30px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-align: center; text-decoration: none; text-transform: uppercase; }

@media (max-width: 960px) {
    .social-feature { grid-template-columns: 1fr; }
    .social-feature__copy { max-width: 760px; }
    .social-feature__post { justify-self: start; }
}

@media (max-width: 560px) {
    .social-feature { padding: 80px 20px 100px; }
    .social-feature h2 { font-size: clamp(60px, 19vw, 86px); }
    .social-feature__post { width: calc(100% - 12px); padding: 12px; box-shadow: 12px 12px 0 var(--acid); }
    .social-feature__label { align-items: flex-start; flex-direction: column; gap: 7px; padding: 8px 5px 15px; }
}
.video-feature {
    padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 150px);
    background: var(--ink);
    color: var(--white);
}

.video-feature__heading {
    display: grid;
    grid-template-columns: minmax(360px, 1.2fr) minmax(280px, .65fr);
    align-items: end;
    gap: clamp(40px, 8vw, 130px);
    margin-bottom: clamp(45px, 6vw, 82px);
}

.video-feature .eyebrow { margin-bottom: 26px; color: #bfc0ba; }
.video-feature .eyebrow span { background: var(--acid); }
.video-feature h2 { margin: 0; font-family: "Barlow Condensed", sans-serif; font-size: clamp(66px, 7.4vw, 126px); font-weight: 600; letter-spacing: -.035em; line-height: .82; text-transform: uppercase; }
.video-feature h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.3px var(--white); }
.video-feature__intro { max-width: 530px; justify-self: end; }
.video-feature__intro p { margin: 0; color: #bfc0ba; font-size: 15px; line-height: 1.8; }
.video-feature__intro strong { color: var(--white); font-weight: 600; }
.video-feature__intro a { display: inline-flex; gap: 16px; margin-top: 30px; padding-bottom: 8px; border-bottom: 1px solid var(--acid); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

.video-feature__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #080908; box-shadow: 22px 22px 0 var(--acid); }
.video-feature__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-feature__caption { display: flex; justify-content: space-between; gap: 24px; margin: 42px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.video-feature__caption span { color: #999b95; }
.video-feature__caption strong { font-weight: 700; }

@media (max-width: 850px) {
    .video-feature__heading { grid-template-columns: 1fr; align-items: start; }
    .video-feature__intro { max-width: 650px; justify-self: start; }
}

@media (max-width: 560px) {
    .video-feature { padding: 80px 20px 95px; }
    .video-feature h2 { font-size: clamp(59px, 18vw, 84px); }
    .video-feature__frame { box-shadow: 11px 11px 0 var(--acid); }
    .video-feature__caption { margin-top: 30px; }
}