@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600&display=swap");

:root {
    --ink: #111111;
    --ash: #ffffff;
    --fog: #ffffff;
    --acid: #0b0b0b;
    --ember: #d90429;
    --steel: #4b5563;
    --shadow: rgba(12, 12, 12, 0.12);
    --paper: #f5f5f5;
    --line: rgba(12, 12, 12, 0.1);
    --red-glow: rgba(217, 4, 41, 0.16);
    --street-wash: rgba(12, 12, 12, 0.05);
}

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

body {
    font-family: "Space Grotesk", sans-serif;
    background:
        radial-gradient(circle at top left, #ffffff 0%, #f7f7f7 55%, #efefef 100%);
    color: var(--ink);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.noise-layer {
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(
            0deg,
            rgba(12, 12, 12, 0.035) 0px,
            rgba(12, 12, 12, 0.035) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(12, 12, 12, 0.022) 0px,
            rgba(12, 12, 12, 0.022) 1px,
            transparent 1px,
            transparent 4px
        );
    opacity: 0.32;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    position: relative;
    z-index: 1;
    padding: 32px 6vw 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.site-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 6vw 0;
}

.brand {
    display: flex;
    gap: 16px;
    align-items: center;
}

.brand-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 16px;
    border: 2px solid var(--ink);
    box-shadow:
        0 18px 30px rgba(12, 12, 12, 0.18),
        0 0 0 6px rgba(255, 255, 255, 0.9);
    background: #ffffff;
    padding: 8px;
}

.brand-mark {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    letter-spacing: 4px;
    padding: 8px 14px;
    border: 2px solid var(--acid);
    color: var(--acid);
    box-shadow: 0 0 20px var(--red-glow);
}

.brand-name {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.brand-tagline {
    font-size: 13px;
    color: var(--steel);
}

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-nav a {
    position: relative;
    padding-bottom: 6px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--ink);
    transition: width 0.3s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    position: relative;
    isolation: isolate;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--ash);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(12, 12, 12, 0.12);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/static/images/banner.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.22;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.97),
        rgba(255, 255, 255, 0.92) 62%,
        rgba(217, 4, 41, 0.08)
    );
}

.hero-copy h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(44px, 6vw, 96px);
    line-height: 0.95;
    text-transform: uppercase;
    margin: 16px 0;
}

.hero-kicker {
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.hero-lead {
    font-size: 18px;
    color: var(--steel);
    max-width: 520px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    padding: 14px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.primary {
    background: linear-gradient(120deg, var(--ink), #2b2b2b);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(12, 12, 12, 0.2);
}

.ghost {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(12, 12, 12, 0.22);
}

.hero-card {
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 20px 60px var(--shadow);
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(12, 12, 12, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
}

.hero-card-inner {
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--steel);
    margin-top: 12px;
}

.card-title:first-of-type {
    margin-top: 0;
}

.card-highlight {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
}

.card-info {
    font-size: 15px;
    margin: 8px 0 6px;
}

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

.style-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.strip-item {
    background: var(--ash);
    padding: 20px;
    border-left: 4px solid var(--ink);
    box-shadow: 0 18px 36px rgba(12, 12, 12, 0.1);
    border: 1px solid var(--line);
}

.strip-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
}

.strip-text {
    color: var(--steel);
    margin-top: 8px;
}

.lookbook {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.look-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--line);
    padding: 18px;
    display: grid;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
    overflow: hidden;
}

.look-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(12, 12, 12, 0.08), transparent 62%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.look-card:hover::after {
    opacity: 1;
}

.look-visual {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.look-visual::before,
.look-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.9;
}

.look-visual--bolt {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
}

.look-visual--bolt::before {
    background: linear-gradient(120deg, transparent 20%, rgba(217, 4, 41, 0.75) 40%, transparent 65%);
    transform: skewX(-12deg);
}

.look-visual--bolt::after {
    background: repeating-linear-gradient(90deg, rgba(160, 0, 26, 0.35) 0px, rgba(160, 0, 26, 0.35) 2px, transparent 2px, transparent 8px);
    opacity: 0.4;
}

.look-visual--wave {
    background: radial-gradient(circle at 20% 20%, rgba(217, 4, 41, 0.45), transparent 55%), #ffffff;
}

.look-visual--wave::before {
    background: radial-gradient(circle at 70% 30%, rgba(217, 4, 41, 0.35), transparent 60%);
}

.look-visual--wave::after {
    background: repeating-linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0px, rgba(17, 17, 17, 0.08) 2px, transparent 2px, transparent 10px);
    opacity: 0.45;
}

.look-visual--grid {
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
}

.look-visual--grid::before {
    background: repeating-linear-gradient(45deg, rgba(217, 4, 41, 0.35) 0px, rgba(217, 4, 41, 0.35) 3px, transparent 3px, transparent 12px);
    opacity: 0.65;
}

.look-visual--grid::after {
    background: radial-gradient(circle at 70% 70%, rgba(160, 0, 26, 0.45), transparent 60%);
}

.look-visual--flame {
    background: linear-gradient(160deg, #ffffff, #f3f4f6);
}

.look-visual--flame::before {
    background: radial-gradient(circle at 30% 70%, rgba(217, 4, 41, 0.75), transparent 55%);
}

.look-visual--flame::after {
    background: radial-gradient(circle at 65% 25%, rgba(160, 0, 26, 0.5), transparent 55%);
}

.look-body h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.look-body p {
    color: var(--steel);
    margin-top: 6px;
}

.barber-spotlight {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(0, 1.45fr);
    gap: 24px;
    align-items: stretch;
}

.spotlight-card {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 26px 60px rgba(12, 12, 12, 0.12);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.spotlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(12, 12, 12, 0.06), transparent 62%),
        repeating-linear-gradient(
            90deg,
            rgba(12, 12, 12, 0.035) 0px,
            rgba(12, 12, 12, 0.035) 1px,
            transparent 1px,
            transparent 8px
        );
    opacity: 0.65;
}

.spotlight-card > * {
    position: relative;
    z-index: 1;
}

.spotlight-badge {
    align-self: flex-start;
    padding: 7px 12px;
    border: 1px solid rgba(12, 12, 12, 0.2);
    background: rgba(12, 12, 12, 0.05);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 600;
}

.spotlight-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(34px, 4.2vw, 54px);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 0.95;
}

.spotlight-lead {
    color: var(--steel);
    font-size: 16px;
    max-width: 46ch;
}

.spotlight-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.spotlight-actions {
    margin-top: 6px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.spotlight-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.spotlight-cut {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(12, 12, 12, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 220px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spotlight-cut:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 56px rgba(12, 12, 12, 0.14);
}

.spotlight-media {
    flex: 1;
    min-height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.spotlight-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.04), rgba(12, 12, 12, 0.48));
    mix-blend-mode: multiply;
}

.spotlight-media--fade { background-image: url("/static/images/corte.jpg"); }
.spotlight-media--texture { background-image: url("/static/images/corte2.jpg"); }
.spotlight-media--lines { background-image: url("/static/images/corte2.jpg"); background-position: 62% center; }
.spotlight-media--studio { background-image: url("/static/images/banner.jpg"); background-position: 40% center; }

.spotlight-meta {
    padding: 12px 14px 14px;
    display: grid;
    gap: 4px;
    border-top: 1px solid var(--line);
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(
            0deg,
            var(--street-wash) 0px,
            var(--street-wash) 1px,
            transparent 1px,
            transparent 6px
        );
}

.spotlight-meta h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spotlight-meta p {
    color: var(--steel);
    font-size: 13.5px;
}

.portfolio {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-head .eyebrow {
    color: var(--ember);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
}

.section-head h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 4vw, 60px);
    margin-top: 10px;
}

.cuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
}

.cut-card {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(12, 12, 12, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: riseIn 0.8s ease forwards;
    opacity: 0;
}

.cut-card:nth-child(1) { animation-delay: 0.05s; }
.cut-card:nth-child(2) { animation-delay: 0.12s; }
.cut-card:nth-child(3) { animation-delay: 0.2s; }
.cut-card:nth-child(4) { animation-delay: 0.28s; }
.cut-card:nth-child(5) { animation-delay: 0.36s; }
.cut-card:nth-child(6) { animation-delay: 0.44s; }

.cut-card:hover {
    transform: translateY(-6px);
    border-color: rgba(12, 12, 12, 0.3);
    box-shadow: 0 28px 60px rgba(12, 12, 12, 0.16);
}

.cut-media {
    flex: 1;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
}

.cut-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.08), rgba(12, 12, 12, 0.58)),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 0px,
            rgba(255, 255, 255, 0.12) 2px,
            transparent 2px,
            transparent 10px
        );
    mix-blend-mode: multiply;
}

.cut-media--fade { background-image: url("/static/images/corte.jpg"); }
.cut-media--texture { background-image: url("/static/images/corte2.jpg"); }
.cut-media--samurai { background-image: url("/static/images/banner.jpg"); }
.cut-media--lines { background-image: url("/static/images/corte2.jpg"); background-position: 60% center; }
.cut-media--studio { background-image: url("/static/images/banner.jpg"); background-position: 35% center; }
.cut-media--classic { background-image: url("/static/images/corte.jpg"); background-position: 40% center; }

.cut-meta {
    padding: 16px 18px 18px;
    display: grid;
    gap: 6px;
    border-top: 1px solid var(--line);
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(
            0deg,
            var(--street-wash) 0px,
            var(--street-wash) 1px,
            transparent 1px,
            transparent 6px
        );
}

.cut-meta h3 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cut-meta p {
    color: var(--steel);
    font-size: 14.5px;
}

.whatsapp-cta {
    border: 1px solid var(--line);
    background:
        linear-gradient(120deg, rgba(12, 12, 12, 0.08), rgba(12, 12, 12, 0.02)),
        radial-gradient(circle at top right, rgba(217, 4, 41, 0.12), transparent 60%);
    box-shadow: 0 26px 60px rgba(12, 12, 12, 0.12);
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.28) 0px,
        rgba(255, 255, 255, 0.28) 2px,
        transparent 2px,
        transparent 14px
    );
    mix-blend-mode: screen;
    opacity: 0.55;
}

.whatsapp-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    display: grid;
    gap: 12px;
}

.whatsapp-inner h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 0.96;
    text-transform: uppercase;
}

.whatsapp-lead {
    color: var(--steel);
    font-size: 16.5px;
    max-width: 62ch;
}

.whatsapp-actions {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(0, 1.5fr);
    gap: 24px;
    align-items: stretch;
}

.location-card {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(12, 12, 12, 0.12);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 38px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-address {
    color: var(--steel);
    font-size: 15.5px;
    max-width: 42ch;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.map-frame {
    border: 1px solid var(--line);
    box-shadow: 0 26px 64px rgba(12, 12, 12, 0.14);
    min-height: 360px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 2px solid rgba(12, 12, 12, 0.18);
    mix-blend-mode: multiply;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
    filter: grayscale(100%) contrast(105%);
}

.barber-info h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.barber-info p {
    color: var(--steel);
    margin-top: 8px;
    font-size: 15px;
}

.tag-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.tag-row span {
    padding: 6px 10px;
    border: 1px solid rgba(12, 12, 12, 0.24);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink);
    background: rgba(12, 12, 12, 0.04);
}

.cta {
    background:
        linear-gradient(120deg, rgba(12, 12, 12, 0.08), rgba(12, 12, 12, 0.02)),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.35) 0px,
            rgba(255, 255, 255, 0.35) 2px,
            transparent 2px,
            transparent 12px
        );
    padding: 40px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px var(--shadow);
}

.cta-inner h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    margin-bottom: 12px;
}

.cta-inner p {
    color: var(--steel);
    margin-bottom: 20px;
}

.cta-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.detail-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--steel);
}

.detail-value {
    font-size: 16px;
    margin-top: 6px;
}

.team-portfolio {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-tab {
    border: 1px solid var(--line);
    background: #ffffff;
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(12, 12, 12, 0.28);
    box-shadow: 0 14px 30px rgba(12, 12, 12, 0.12);
}

.team-tab.is-active {
    border-color: var(--ink);
    box-shadow:
        0 18px 36px rgba(12, 12, 12, 0.14),
        inset 0 -3px 0 var(--ember);
}

.team-panels {
    position: relative;
}

.team-panel {
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(12, 12, 12, 0.14);
    padding: 22px;
    display: none;
    flex-direction: column;
    gap: 18px;
}

.team-panel.is-active {
    display: flex;
}

.team-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.team-identity {
    display: flex;
    align-items: center;
    gap: 14px;
}

.team-avatar {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid var(--ink);
    box-shadow:
        0 16px 32px rgba(12, 12, 12, 0.16),
        0 0 0 6px rgba(255, 255, 255, 0.92);
}

.team-role {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--steel);
}

.team-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 0.95;
    text-transform: uppercase;
}

.team-ig {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--ember);
    border-bottom: 1px solid rgba(217, 4, 41, 0.35);
    padding-bottom: 2px;
}

.team-ig:hover {
    border-bottom-color: var(--ember);
}

.team-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.team-social {
    border: 1px solid var(--line);
    background: rgba(12, 12, 12, 0.03);
    padding: 6px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-social:hover {
    transform: translateY(-2px);
    border-color: rgba(12, 12, 12, 0.32);
    box-shadow: 0 12px 24px rgba(12, 12, 12, 0.12);
}

.team-social-platform {
    color: var(--steel);
}

.team-social-handle {
    color: var(--ember);
}

.team-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.team-media-card {
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 12, 12, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 12, 12, 0.26);
    box-shadow: 0 26px 56px rgba(12, 12, 12, 0.16);
}

.team-media {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #0b0b0b;
}

video.team-media {
    height: 220px;
}

.team-media-meta {
    padding: 12px 14px 14px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    border-top: 1px solid var(--line);
    background:
        linear-gradient(0deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(
            0deg,
            var(--street-wash) 0px,
            var(--street-wash) 1px,
            transparent 1px,
            transparent 6px
        );
}

.team-media-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14.5px;
}

.team-media-kind {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--steel);
}

.team-empty {
    border: 1px dashed rgba(12, 12, 12, 0.2);
    padding: 18px;
    background: rgba(12, 12, 12, 0.02);
    color: var(--steel);
}

.services {
    --services-bg: #050608;
    --services-surface: rgba(18, 20, 26, 0.88);
    --services-line: rgba(212, 175, 55, 0.28);
    --services-gold: #d4af37;
    --services-red: #b0122b;
    --services-ink: #f7f4ee;
    --services-muted: #c7c2b8;
    position: relative;
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        radial-gradient(circle at 12% 18%, rgba(176, 18, 43, 0.22), transparent 58%),
        radial-gradient(circle at 85% 12%, rgba(212, 175, 55, 0.14), transparent 62%),
        linear-gradient(135deg, #030406 0%, #0b0e13 55%, #0a0c11 100%);
    color: var(--services-ink);
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(5, 6, 8, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.services::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 6px
    );
    opacity: 0.18;
    mix-blend-mode: screen;
}

.services-shell {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.services-head {
    max-width: 760px;
    display: grid;
    gap: 10px;
}

.services-kicker {
    color: var(--services-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
}

.services h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-lead {
    color: var(--services-muted);
    font-size: 16px;
    max-width: 62ch;
}

.services-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: clamp(18px, 3vw, 36px);
    align-items: stretch;
}

.services-list {
    list-style: none;
    padding: clamp(18px, 3vw, 30px);
    margin: 0;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        var(--services-surface);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    display: grid;
}

.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px 2px;
    border-bottom: 1px solid var(--services-line);
}

.service-row:last-child {
    border-bottom: none;
}

.service-info {
    display: grid;
    gap: 4px;
}

.service-name {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--services-ink);
}

.service-desc {
    color: var(--services-muted);
    font-size: 13.5px;
    letter-spacing: 0.4px;
}

.service-price {
    font-weight: 700;
    font-size: clamp(15px, 2vw, 20px);
    color: var(--services-gold);
    text-align: right;
    min-width: 128px;
}

.services-art {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background:
        radial-gradient(circle at 70% 18%, rgba(176, 18, 43, 0.26), transparent 60%),
        linear-gradient(180deg, rgba(12, 14, 20, 0.95), rgba(7, 9, 14, 0.98));
    min-height: 320px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 28px 60px rgba(0, 0, 0, 0.55);
}

.art-sun {
    position: absolute;
    width: clamp(140px, 18vw, 220px);
    height: clamp(140px, 18vw, 220px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #e23a4e, var(--services-red));
    top: 8%;
    right: 10%;
    box-shadow:
        0 0 40px rgba(176, 18, 43, 0.45),
        0 0 80px rgba(176, 18, 43, 0.25);
    opacity: 0.9;
}

.art-fuji {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -6%;
    height: 58%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
    clip-path: polygon(50% 6%, 100% 100%, 0% 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    filter: drop-shadow(0 -6px 18px rgba(212, 175, 55, 0.16));
}

.art-fuji::after {
    content: "";
    position: absolute;
    left: 28%;
    right: 28%;
    top: -6%;
    height: 26%;
    background: linear-gradient(180deg, rgba(245, 241, 232, 0.9), rgba(245, 241, 232, 0.55));
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.art-sakura {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffd1dc, #ff8fa3 70%, rgba(255, 143, 163, 0.4));
    box-shadow:
        14px 6px 0 -2px rgba(255, 182, 193, 0.9),
        -12px 8px 0 -3px rgba(255, 182, 193, 0.85),
        6px -12px 0 -3px rgba(255, 182, 193, 0.85);
    opacity: 0.8;
}

.art-sakura--one {
    top: 18%;
    left: 16%;
    transform: scale(1.1) rotate(12deg);
}

.art-sakura--two {
    bottom: 22%;
    right: 18%;
    transform: scale(0.9) rotate(-8deg);
    opacity: 0.72;
}

.site-footer {
    padding: 20px 6vw 36px;
    color: var(--steel);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

@keyframes riseIn {
    from {
        transform: translateY(16px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 760px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-card {
        padding: 20px;
    }

    .card-highlight {
        font-size: 30px;
    }

    .look-card {
        padding: 16px;
    }

    .spotlight-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

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

    .team-panel {
        padding: 18px;
    }

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

    .services-art {
        min-height: 240px;
    }

    .team-tabs {
        flex-direction: column;
    }

    .team-tab {
        width: 100%;
        text-align: left;
    }

    .team-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .team-avatar {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }

    .team-panel-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

    .team-media,
    video.team-media {
        height: 200px;
    }

    .whatsapp-cta {
        padding: 30px;
    }

    .cta {
        padding: 28px;
    }
}
