:root {
    --bg-color: #070706;
    --panel-color: #11100d;
    --panel-soft: rgba(255, 255, 255, 0.06);
    --text-color: #f6f2e8;
    --muted-color: #b8aea0;
    --accent-color: #d8c36a;
    --accent-strong: #f0dc82;
    --line-color: rgba(216, 195, 106, 0.18);
    --cool-color: #d8cfc0;
    --wood-color: #b9824e;
    --wood-dark: #6f472b;
    --marble-color: #fff8ec;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background:
        radial-gradient(circle at 80% 8%, rgba(216, 195, 106, 0.12), transparent 30rem),
        radial-gradient(circle at 12% 22%, rgba(185, 130, 78, 0.13), transparent 28rem),
        var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--cool-color);
    outline-offset: 4px;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px clamp(18px, 5vw, 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 7, 6, 0.76);
    backdrop-filter: blur(14px);
    z-index: 1000;
    transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.sticky-header.scrolled {
    padding-block: 12px;
    background: rgba(7, 7, 6, 0.94);
    border-bottom-color: var(--line-color);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1rem;
    color: var(--accent-strong);
    text-decoration: none;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(246, 242, 232, 0.12), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
}

.site-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.site-nav a:hover {
    color: var(--accent-strong);
}

.language-switch {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.language-option {
    min-width: 34px;
    min-height: 30px;
    border: 0;
    border-radius: 6px;
    color: var(--muted-color);
    background: transparent;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.language-option.is-active {
    color: #070706;
    background: var(--accent-strong);
}

.nav-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: #070706 !important;
    background: var(--accent-strong);
    border-radius: 8px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-color);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--text-color);
}

.floating-book {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: #070706;
    background: var(--accent-strong);
    border: 1px solid rgba(7, 7, 6, 0.4);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 40px;
    align-items: end;
    padding: 132px clamp(22px, 8vw, 120px) 52px;
    position: relative;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0%, rgba(7, 7, 6, 0.7) 42%, rgba(7, 7, 6, 0.2) 100%),
        linear-gradient(0deg, rgba(7, 7, 6, 0.96), transparent 48%);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("assets/salon-01.jpeg");
    background-size: cover;
    background-position: center;
    filter: saturate(0.9) contrast(1.08);
}

.hero-content {
    max-width: 720px;
    align-self: center;
}

.eyebrow {
    color: var(--cool-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    max-width: 12ch;
    font-size: 5.8rem;
    line-height: 0.98;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.2rem;
    color: var(--muted-color);
    margin-bottom: 34px;
}

.hero-actions,
.booking-actions,
.quick-actions,
.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-stats {
    display: grid;
    gap: 12px;
    align-self: end;
}

.hero-stats div {
    padding: 18px;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(24px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
    display: block;
    color: var(--accent-strong);
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 12px;
}

.hero-stats span {
    color: var(--muted-color);
    font-size: 0.88rem;
}

.platform-logo {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.72rem !important;
    font-weight: 800;
    line-height: 1;
}

.booksy-logo {
    color: #10100e !important;
    background: #dde86a;
}

.google-logo {
    color: #1f1f1f !important;
    background: var(--marble-color);
}

.stat-stars {
    display: block;
    margin: 7px 0 4px;
    color: var(--accent-strong) !important;
    letter-spacing: 0.06em;
    text-shadow: 0 0 18px rgba(216, 195, 106, 0.28);
}

.cta-button,
.secondary-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.cta-button {
    color: #070706;
    background-color: var(--accent-strong);
    border: 1px solid var(--accent-strong);
}

.secondary-button {
    color: var(--text-color);
    border: 1px solid var(--line-color);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.secondary-link {
    color: var(--text-color);
    font-weight: 800;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 6px;
}

.cta-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.quick-booking {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin: -42px clamp(22px, 8vw, 120px) 0;
    padding: 24px;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(246, 242, 232, 0.16);
    border-radius: 8px;
    background: rgba(17, 17, 15, 0.82);
    backdrop-filter: blur(26px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.quick-booking h2 {
    font-size: 1.8rem;
    line-height: 1.15;
}

.services,
.team,
.spaces,
.experience,
.reviews,
.location,
.faq,
.booking {
    padding: 96px clamp(22px, 8vw, 120px);
}

.section-band {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(185, 130, 78, 0.06)),
        #0c0c0a;
}

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

.section-heading .eyebrow,
.services > .eyebrow {
    text-align: center;
}

.section-title {
    max-width: 780px;
    font-size: 3.3rem;
    line-height: 1.06;
    margin: 0 auto;
    text-align: center;
}

.align-left {
    margin-inline: 0;
    text-align: left;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item,
.experience-list article,
.team-card,
.reviews blockquote,
.faq article,
.location-card,
.plan-card {
    background: rgba(17, 17, 15, 0.86);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bento-item {
    min-height: 260px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.bento-item:hover,
.experience-list article:hover,
.team-card:hover,
.reviews blockquote:hover,
.faq article:hover {
    transform: translateY(-4px);
    background: #171713;
    border-color: rgba(216, 195, 106, 0.4);
}

.price,
.team-role {
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bento-item h3,
.experience-list h3,
.team-card h3,
.faq h3 {
    font-size: 1.32rem;
    line-height: 1.2;
    margin: 14px 0 12px;
}

.bento-large h3 {
    font-size: 2rem;
}

.bento-item p,
.experience-list p,
.booking-copy p,
.site-footer p,
.spaces-copy p,
.team-card p,
.reviews p,
.faq p,
.location-card p {
    color: var(--muted-color);
}

.bento-item a,
.team-card a {
    margin-top: auto;
    color: var(--accent-strong);
    font-weight: 800;
    text-decoration-color: rgba(216, 195, 106, 0.4);
    text-underline-offset: 6px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.parallax-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.team-parallax {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 8px;
    height: 430px;
    margin-bottom: 18px;
}

.team-showcase-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.team-showcase-left {
    display: flex;
    align-items: flex-end;
    min-width: 0;
    background:
        radial-gradient(circle at 78% 26%, rgba(216, 195, 106, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(7, 7, 6, 0.96), rgba(17, 17, 15, 0.9));
}

.team-showcase-left::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 7, 6, 0.7), transparent 48%, rgba(7, 7, 6, 0.62)),
        linear-gradient(0deg, rgba(7, 7, 6, 0.86), transparent 55%);
}

.showcase-copy {
    position: relative;
    z-index: 3;
    max-width: 340px;
    padding: 30px;
}

.showcase-copy span {
    display: inline-block;
    color: var(--cool-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.showcase-copy strong {
    display: block;
    font-size: 2rem;
    line-height: 1.05;
}

.showcase-barber {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: min(38%, 260px);
    max-height: 92%;
    object-fit: contain;
    object-position: bottom center;
    filter: saturate(0.96) contrast(1.06) drop-shadow(0 22px 42px rgba(0, 0, 0, 0.46));
}

.showcase-barber-one {
    right: 32%;
}

.showcase-barber-two {
    right: 7%;
}

.parallax-bg {
    position: absolute;
    inset: -12% 0;
    background-position: center;
    background-size: cover;
    will-change: transform;
}

.haircut-bg {
    background-image: url("assets/male-haircut-parallax.png");
}

.team-showcase-right::after,
.reviews-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 30%, rgba(216, 195, 106, 0.22), transparent 32%),
        linear-gradient(90deg, rgba(7, 7, 6, 0.8), transparent 55%, rgba(7, 7, 6, 0.42));
}

.parallax-card {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    max-width: 420px;
    padding: 22px;
    border: 1px solid rgba(246, 242, 232, 0.14);
    border-radius: 8px;
    background: rgba(7, 7, 6, 0.62);
    backdrop-filter: blur(24px);
    will-change: transform;
}

.parallax-card span,
.review-score span,
.review-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cool-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.parallax-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 1.12;
}

.team-card {
    padding: 22px;
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
}

.team-portrait {
    width: 86px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #070706;
    background:
        linear-gradient(135deg, var(--accent-strong), var(--cool-color));
    font-weight: 800;
    font-size: 1.5rem;
}

.team-photo {
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(216, 195, 106, 0.16), rgba(0, 0, 0, 0.2));
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.96) contrast(1.05);
}

.spaces {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
}

.spaces-copy p {
    max-width: 560px;
    margin-bottom: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}

.gallery-grid img,
.gallery-grid video {
    width: 100%;
    height: 168px;
    object-fit: cover;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    filter: saturate(0.95) contrast(1.03);
}

.gallery-grid .gallery-main {
    grid-row: span 2;
    height: 534px;
}

.video-scroll {
    position: relative;
    height: 320vh;
    background: #030303;
}

.video-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.scroll-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--video-scale, 1.08));
    filter: saturate(0.92) contrast(1.1) brightness(var(--video-brightness, 0.72));
    will-change: transform, filter;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.055;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.video-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 42%, rgba(216, 195, 106, 0.18), transparent 34%),
        linear-gradient(90deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.18) 48%, rgba(3, 3, 3, 0.76)),
        linear-gradient(180deg, rgba(3, 3, 3, 0.42), transparent 42%, rgba(3, 3, 3, 0.72));
}

.video-progress {
    position: absolute;
    left: clamp(22px, 8vw, 120px);
    right: clamp(22px, 8vw, 120px);
    bottom: 34px;
    height: 2px;
    background: rgba(246, 242, 232, 0.18);
    z-index: 3;
}

.video-progress span {
    display: block;
    width: calc(var(--scroll-progress, 0) * 100%);
    height: 100%;
    background: linear-gradient(90deg, var(--cool-color), var(--accent-strong));
    box-shadow: 0 0 22px rgba(216, 195, 106, 0.4);
}

.scroll-rail {
    position: relative;
    z-index: 2;
    display: flex;
    width: 300vw;
    transform: translate3d(calc(var(--scroll-progress, 0) * -200vw), 0, 0);
    will-change: transform;
}

.scroll-panel {
    width: 100vw;
    min-height: 100vh;
    padding: 130px clamp(22px, 8vw, 120px) 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scroll-panel:nth-child(2) {
    align-items: flex-end;
    text-align: right;
}

.scroll-panel:nth-child(3) {
    align-items: center;
    text-align: center;
}

.scroll-panel span {
    color: var(--cool-color);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.scroll-panel h2 {
    max-width: 780px;
    font-size: 6.5rem;
    line-height: 0.92;
    margin-bottom: 24px;
}

.scroll-panel p {
    max-width: 420px;
    color: var(--muted-color);
    font-size: 1.18rem;
    padding: 20px 22px;
    border: 1px solid rgba(246, 242, 232, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(22px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.experience {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.experience-list {
    display: grid;
    gap: 16px;
}

.experience-list article {
    padding: 30px;
}

.experience-list strong {
    color: var(--accent-strong);
    font-size: 0.85rem;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 18px;
    align-items: stretch;
}

.reviews-parallax {
    min-height: 520px;
}

.review-score {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    max-width: 330px;
    padding: 24px;
    border: 1px solid rgba(246, 242, 232, 0.14);
    border-radius: 8px;
    background: rgba(7, 7, 6, 0.72);
    backdrop-filter: blur(24px);
    will-change: transform;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.review-score strong {
    display: block;
    margin-top: 8px;
    color: var(--text-color);
    font-size: 4.1rem;
    line-height: 0.9;
}

.stars,
.review-stars {
    color: var(--accent-strong);
    letter-spacing: 0.08em;
    text-shadow: 0 0 22px rgba(216, 195, 106, 0.28);
}

.stars {
    margin-top: 8px;
    font-size: 1.25rem;
}

.review-score p {
    margin-top: 12px;
    color: var(--muted-color);
    font-weight: 800;
}

.google-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration-color: rgba(216, 195, 106, 0.4);
    text-underline-offset: 6px;
}

.reviews-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.reviews blockquote,
.faq article {
    padding: 30px;
}

.reviews p {
    max-width: 66ch;
    font-size: 1.2rem;
    line-height: 1.55;
    margin: 18px 0 22px;
}

.reviews cite {
    color: var(--accent-strong);
    font-style: normal;
    font-weight: 800;
}

.reviews blockquote {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(17, 17, 15, 0.9);
}

.reviews blockquote::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(216, 195, 106, 0.16), transparent 58%);
}

.review-stars {
    margin-top: 18px;
    font-size: 1rem;
}

.platform-mark {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
}

.google-mark {
    color: #1f1f1f;
    background: var(--marble-color);
}

.booksy-mark {
    color: #10100e;
    background: #dde86a;
}

.location {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
    gap: 22px;
    align-items: stretch;
}

.location-card {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card h2 {
    font-size: 2.3rem;
    line-height: 1.08;
    margin-bottom: 16px;
}

.location-actions {
    margin-top: 26px;
}

.plan-card {
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.plan-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: contain;
    border-radius: 8px;
    background: #050505;
}

.booking {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    background: linear-gradient(135deg, var(--panel-color), #0b0c0b 52%, #16110d);
}

.booking-copy p {
    max-width: 640px;
    font-size: 1.05rem;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px clamp(22px, 8vw, 120px);
    background: #070706;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.footer-brand p {
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gsap-reveal {
    opacity: 0;
    transform: translateY(28px);
}

@media (max-width: 1080px) {
    .hero-title {
        font-size: 4.6rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .scroll-panel h2 {
        font-size: 5rem;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        padding: 16px 22px 22px;
        background: rgba(7, 7, 6, 0.98);
        border-bottom: 1px solid var(--line-color);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .language-switch {
        position: absolute;
        top: 50%;
        right: 74px;
        transform: translateY(-50%);
    }

    .nav-cta {
        justify-content: center;
    }

    .hero,
    .quick-booking,
    .spaces,
    .experience,
    .reviews-layout,
    .location,
    .booking {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 94vh;
        padding-top: 108px;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(7, 7, 6, 0.78) 0%, rgba(7, 7, 6, 0.95) 72%),
            linear-gradient(90deg, rgba(7, 7, 6, 0.74), rgba(7, 7, 6, 0.28));
    }

    .hero-title {
        max-width: 10ch;
        font-size: 3.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-booking {
        margin-top: 0;
    }

    .quick-actions,
    .booking-actions {
        align-items: stretch;
    }

    .quick-actions a,
    .booking-actions a,
    .hero-actions a {
        width: 100%;
    }

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

    .bento-large {
        grid-column: auto;
        grid-row: auto;
    }

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

    .gallery-grid .gallery-main,
    .gallery-grid img,
    .gallery-grid video {
        height: 280px;
    }

    .team-parallax,
    .reviews-parallax {
        min-height: 380px;
        height: 380px;
    }

    .team-parallax {
        grid-template-columns: 1fr;
        height: auto;
    }

    .team-showcase-panel {
        min-height: 360px;
    }

    .parallax-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .video-scroll {
        height: 260vh;
    }

    .video-sticky {
        min-height: 560px;
    }

    .scroll-panel {
        padding-top: 110px;
    }

    .scroll-panel,
    .scroll-panel:nth-child(2),
    .scroll-panel:nth-child(3) {
        align-items: flex-start;
        text-align: left;
    }

    .scroll-panel h2 {
        max-width: 10ch;
        font-size: 4rem;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .sticky-header {
        padding-inline: 16px;
    }

    .logo {
        font-size: 0.86rem;
    }

    .floating-book {
        left: 16px;
        right: 16px;
        bottom: 14px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title,
    .location-card h2 {
        font-size: 2.15rem;
    }

    .services,
    .team,
    .spaces,
    .experience,
    .reviews,
    .location,
    .faq,
    .booking {
        padding-block: 64px;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .team-parallax,
    .reviews-parallax {
        min-height: 340px;
    }

    .team-showcase-panel {
        min-height: 320px;
    }

    .showcase-copy {
        padding: 22px;
    }

    .showcase-copy strong {
        font-size: 1.55rem;
    }

    .showcase-barber {
        width: 42%;
    }

    .showcase-barber-one {
        right: 35%;
    }

    .review-score {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .video-sticky {
        min-height: 520px;
    }

    .scroll-panel h2 {
        font-size: 3.1rem;
    }

    .scroll-panel p {
        max-width: min(100%, 360px);
        padding: 16px;
        font-size: 1rem;
    }

    .bento-item,
    .experience-list article,
    .reviews blockquote,
    .faq article,
    .location-card {
        padding: 24px;
    }
}
