@font-face {
    font-family: "PaintCans";
    src: url("../fonts/PaintCans.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Sprayerz";
    src: url("../fonts/Sprayerz.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue";
    src: url("../fonts/google/BebasNeue-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/google/SpaceGrotesk-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/google/SpaceGrotesk-500.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/google/SpaceGrotesk-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "JetBrains Mono";
    src: url("../fonts/google/JetBrainsMono-400.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "JetBrains Mono";
    src: url("../fonts/google/JetBrainsMono-700.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg: #050806;
    --bg-elevated: rgba(13, 17, 13, 0.86);
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-strong: rgba(255, 255, 255, 0.07);
    --bg-glow: rgba(163, 255, 90, 0.16);
    --text: #f5f8f2;
    --text-soft: rgba(245, 248, 242, 0.78);
    --text-muted: rgba(245, 248, 242, 0.56);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(163, 255, 90, 0.28);
    --accent: #a3ff5a;
    --accent-strong: #d7ffaf;
    --accent-dark: #10170d;
    --danger: #ff855f;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.34);
    --shadow-glow: 0 0 0 1px rgba(163, 255, 90, 0.05), 0 18px 48px rgba(163, 255, 90, 0.06);
    --display-font: "Bebas Neue", sans-serif;
    --graffiti-font: "PaintCans", "Bebas Neue", sans-serif;
    --tag-font: "Sprayerz", "PaintCans", "Bebas Neue", sans-serif;
    --wildstyle-font: "Bebas Neue", sans-serif;
    --body-font: "Space Grotesk", sans-serif;
    --mono-font: "JetBrains Mono", monospace;
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --header-height: 92px;
    --shell-width: 1240px;
    --content-card-padding: 24px;
    --content-card-gap: 12px;
    --content-card-title-size: clamp(1.65rem, 2.5vw, 2.35rem);
    --collection-media-ratio: 1 / 0.72;
    --tone-green-soft: rgba(163, 255, 90, 0.058);
    --tone-green-faint: rgba(163, 255, 90, 0.026);
    --tone-green-mist: rgba(163, 255, 90, 0.014);
    --tone-warm-soft: rgba(138, 94, 58, 0.066);
    --tone-warm-faint: rgba(112, 76, 46, 0.038);
    --surface-panel:
        radial-gradient(circle at top left, rgba(163, 255, 90, 0.052), transparent 30%),
        radial-gradient(circle at top right, rgba(138, 94, 58, 0.058), transparent 32%),
        linear-gradient(180deg, rgba(13, 16, 13, 0.965) 0%, rgba(8, 10, 8, 0.985) 100%);
    --surface-panel-strong:
        radial-gradient(circle at top left, rgba(163, 255, 90, 0.068), transparent 28%),
        radial-gradient(circle at top right, rgba(138, 94, 58, 0.074), transparent 28%),
        linear-gradient(135deg, rgba(14, 18, 14, 0.98) 0%, rgba(8, 10, 9, 0.985) 100%);
    --surface-panel-soft:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(163, 255, 90, 0.018));
    --surface-panel-grid:
        linear-gradient(90deg, rgba(163, 255, 90, 0.026), transparent 28%, transparent 72%, rgba(138, 94, 58, 0.032)),
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 10%, var(--tone-green-soft), transparent 32%),
        radial-gradient(circle at 78% 12%, var(--tone-warm-soft), transparent 30%),
        radial-gradient(circle at 52% 54%, var(--tone-green-faint), transparent 44%),
        radial-gradient(circle at 86% 78%, var(--tone-green-faint), transparent 30%),
        radial-gradient(circle at 24% 82%, var(--tone-warm-faint), transparent 32%),
        linear-gradient(180deg, #090d0a 0%, #050705 100%);
    color: var(--text);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.65), transparent 90%);
    opacity: 0.35;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(163, 255, 90, 0.014), rgba(163, 255, 90, 0.006) 36%, rgba(128, 88, 54, 0.024) 100%);
    opacity: 0.22;
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

iframe {
    border: 0;
}

[hidden] {
    display: none !important;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.screen-reader-text--focusable:focus {
    top: 20px;
    left: 20px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 16px;
    clip: auto;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    z-index: 1000001;
}

.site-shell {
    width: min(calc(100% - 40px), var(--shell-width));
    margin: 0 auto;
}

.site-main {
    padding-top: calc(var(--header-height) + 28px);
}

.site-section {
    padding: 0 0 96px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    margin-bottom: 28px;
}

.section-header__copy {
    max-width: 700px;
}

.section-header--ecosystem {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 22px;
    margin-bottom: 0;
}

.section-header--ecosystem .section-header__copy {
    width: min(100%, 1080px);
    max-width: 1080px;
    justify-self: center;
    text-align: center;
}

.section-header--ecosystem .section-heading {
    width: 100%;
    max-width: none;
}

.section-header--ecosystem .section-kicker {
    justify-content: center;
}

.section-header--ecosystem .section-copy {
    margin-inline: auto;
    max-width: 48ch;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.section-heading,
.page-title,
.wp-block-search__label {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(2.8rem, 5vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-copy,
.page-lede {
    margin: 14px 0 0;
    max-width: 62ch;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.base-lockup {
    margin-top: clamp(0.25rem, 0.9vw, 0.55rem);
    max-width: min(100%, 520px);
}

.section-header--base {
    justify-content: center;
}

.section-header--base .section-header__copy {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    justify-items: center;
    text-align: center;
}

.section-header--base .section-kicker {
    justify-content: center;
}

.section-header--base .section-copy {
    margin-inline: auto;
    max-width: 38ch;
}

.section-header--base .base-lockup {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-inline: auto;
}

.section-header--base .base-lockup__title {
    margin-inline: auto;
}

.base-lockup__title {
    margin: 0;
    position: relative;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: clamp(0.6rem, 1.5vw, 1.15rem);
    width: max-content;
    max-width: 100%;
    line-height: 0.88;
    overflow: visible;
}

.base-lockup__title::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    bottom: 0.15rem;
    width: 62%;
    height: 1rem;
    background: linear-gradient(90deg, rgba(163, 255, 90, 0.18), rgba(163, 255, 90, 0));
    filter: blur(12px);
    pointer-events: none;
    opacity: 0.34;
}

.base-lockup__line {
    width: max-content;
    max-width: none;
}

.base-lockup__line--primary {
    font-size: clamp(3rem, 6.4vw, 5.3rem);
    letter-spacing: 0.018em;
}

.base-lockup__line--secondary {
    margin-top: 0;
    margin-left: clamp(0.15rem, 0.55vw, 0.35rem);
    padding-left: 0;
    font-size: clamp(3rem, 6.4vw, 5.3rem);
    letter-spacing: 0.03em;
    line-height: 0.88;
}

.link-arrow,
.button-primary,
.button-secondary,
.site-header__cta,
.footer-chip,
.age-gate__button,
.wp-element-button,
button:not(.site-header__toggle),
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--accent);
    color: #050806;
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

.button-secondary,
.footer-chip,
.age-gate__button--decline,
.site-navigation a,
.link-arrow.link-arrow--ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    box-shadow: none;
}

.link-arrow {
    min-height: 44px;
    padding: 10px 18px;
}

.button-primary:hover,
.button-secondary:hover,
.site-header__cta:hover,
.footer-chip:hover,
.age-gate__button:hover,
.link-arrow:hover,
.wp-element-button:hover,
button:not(.site-header__toggle):hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover {
    transform: translateY(-2px);
}

.button-primary:hover,
.site-header__cta:hover,
.age-gate__button--confirm:hover,
.wp-element-button:hover,
button:not(.site-header__toggle):hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button.alt:hover {
    background: var(--accent-strong);
    box-shadow: 0 18px 40px rgba(163, 255, 90, 0.12);
}

.button-secondary:hover,
.footer-chip:hover,
.age-gate__button--decline:hover,
.link-arrow.link-arrow--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    border-bottom: 1px solid rgba(163, 255, 90, 0.12);
    background:
        radial-gradient(circle at left top, rgba(163, 255, 90, 0.035), transparent 34%),
        radial-gradient(circle at right top, rgba(138, 94, 58, 0.04), transparent 28%),
        linear-gradient(180deg, rgba(8, 11, 8, 0.84), rgba(7, 9, 8, 0.9));
    backdrop-filter: blur(18px);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled {
    background:
        radial-gradient(circle at left top, rgba(163, 255, 90, 0.045), transparent 32%),
        radial-gradient(circle at right top, rgba(138, 94, 58, 0.05), transparent 30%),
        linear-gradient(180deg, rgba(8, 11, 8, 0.94), rgba(7, 9, 8, 0.96));
    border-color: rgba(163, 255, 90, 0.22);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.admin-bar .site-header {
    top: 32px;
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: var(--header-height);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    text-decoration: none;
    transition: filter 0.22s ease;
}

.site-brand__mark {
    flex: none;
    width: 62px;
    height: 62px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(163, 255, 90, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.site-brand__mark img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    transition: filter 0.22s ease, transform 0.22s ease;
}

.site-brand__mark--fallback {
    color: var(--accent);
    font-family: var(--display-font);
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.site-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.site-brand__title {
    color: var(--text);
    font-family: var(--display-font);
    font-size: 2.22rem;
    line-height: 0.88;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition: color 0.22s ease, text-shadow 0.22s ease;
}

.site-brand__subtitle {
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.22s ease, text-shadow 0.22s ease;
}

.site-brand:hover,
.site-brand:focus-visible {
    filter: brightness(1.03);
}

.site-brand:hover .site-brand__mark,
.site-brand:focus-visible .site-brand__mark {
    border-color: rgba(163, 255, 90, 0.34);
    background: linear-gradient(180deg, rgba(163, 255, 90, 0.2) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow:
        0 0 0 1px rgba(163, 255, 90, 0.08),
        0 0 12px rgba(163, 255, 90, 0.1),
        0 18px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.site-brand:hover .site-brand__mark img,
.site-brand:focus-visible .site-brand__mark img {
    filter:
        drop-shadow(0 0 4px rgba(163, 255, 90, 0.18))
        drop-shadow(0 0 8px rgba(163, 255, 90, 0.1));
    transform: scale(1.02);
}

.site-brand:hover .site-brand__title,
.site-brand:focus-visible .site-brand__title {
    color: #f8fff2;
    text-shadow:
        0 0 6px rgba(163, 255, 90, 0.1),
        0 0 12px rgba(163, 255, 90, 0.05);
}

.site-brand:hover .site-brand__subtitle,
.site-brand:focus-visible .site-brand__subtitle {
    color: rgba(215, 255, 175, 0.92);
    text-shadow: 0 0 6px rgba(163, 255, 90, 0.08);
}

.site-navigation {
    justify-self: center;
}

.menu-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-navigation a {
    min-height: 50px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.site-header__cta {
    min-height: 56px;
    padding: 16px 32px;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
}

.site-navigation .current-menu-item > a,
.site-navigation .current-menu-parent > a,
.site-navigation .current-menu-ancestor > a,
.site-navigation .current_page_item > a,
.site-navigation .current_page_parent > a,
.site-navigation a:hover,
.site-navigation a:focus-visible {
    border-color: var(--line-strong);
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
}

.site-header__toggle {
    display: none;
    width: 52px;
    height: 52px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.site-header__toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-open .site-header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.home-hero {
    position: relative;
    padding: 42px 0 52px;
}

.home-hero__card,
.info-card,
.story-card,
.wall-card,
.spotlight-card,
.contact-card,
.map-shell,
.post-content,
.post-aside,
.empty-card,
.page-hero__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-panel);
    box-shadow: var(--shadow-soft);
    min-height: 100%;
}

.home-hero__card {
    min-height: 640px;
    padding: clamp(28px, 4vw, 40px);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(170px, 0.3fr) minmax(320px, 0.8fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: stretch;
    background: var(--surface-panel-strong);
}

.home-hero__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--surface-panel-grid);
    background-size: auto, 88px 88px, 88px 88px;
    opacity: 0.5;
    pointer-events: none;
}

.home-hero__card::after,
.spotlight-card::after,
.map-shell::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(163, 255, 90, 0.08), transparent 72%);
    pointer-events: none;
}

.home-hero__intro {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-hero__headline-row {
    min-width: 0;
}

.home-hero__headline-copy {
    min-width: 0;
}

.home-hero__news-rail {
    min-width: 0;
}

.hero-lockup__lower {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: clamp(12px, 2vw, 22px);
}

.home-hero__portrait {
    margin: 0;
    flex: none;
    width: clamp(92px, 8vw, 118px);
    align-self: flex-end;
    transition: transform 0.24s ease, filter 0.24s ease;
}

.home-hero__portrait img {
    width: clamp(92px, 8vw, 118px);
    align-self: flex-end;
    margin-left: 10px;
    transform: translateY(-12px);
}

.home-hero__sidebar {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: clamp(18px, 3vw, 34px);
    border-left: 1px solid rgba(163, 255, 90, 0.14);
}

.hero-news-rail {
    position: relative;
    min-height: 100%;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: clamp(18px, 2vw, 24px) clamp(14px, 1.6vw, 18px);
    border: 1px solid rgba(163, 255, 90, 0.12);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(163, 255, 90, 0.08), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.02);
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.03),
        0 14px 26px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.hero-news-rail::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 16px;
    width: 1px;
    background: linear-gradient(180deg, rgba(163, 255, 90, 0.45), rgba(163, 255, 90, 0.04));
    box-shadow: 0 0 12px rgba(163, 255, 90, 0.12);
    pointer-events: none;
}

.hero-news-rail__header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    padding-left: 18px;
}

.hero-news-rail__eyebrow {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-news-rail__archive {
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.hero-news-rail__archive:hover {
    color: var(--accent);
}

.hero-news-rail__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.hero-news-rail__item {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 0 0 12px 18px;
    border-bottom: 1px solid rgba(163, 255, 90, 0.1);
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.hero-news-rail__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hero-news-rail__item::before {
    content: "";
    position: absolute;
    top: 6px;
    left: -1px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow:
        0 0 8px rgba(163, 255, 90, 0.3),
        0 0 16px rgba(163, 255, 90, 0.12);
}

.hero-news-rail__item:hover {
    transform: translateX(3px);
    border-color: rgba(163, 255, 90, 0.2);
}

.hero-news-rail__count {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-news-rail__title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.14;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hero-news-rail__item:hover .hero-news-rail__title {
    color: var(--accent-strong);
    text-shadow: 0 0 10px rgba(163, 255, 90, 0.08);
}

.hero-news-rail__meta {
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-news-rail__empty {
    position: relative;
    z-index: 1;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

.home-hero__eyebrow {
    margin-bottom: 18px;
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-glow,
.section-heading {
    text-shadow: none !important;
    transition: text-shadow 0.4s ease, filter 0.4s ease;
}

.section-glow:hover,
.section-heading:hover {
    text-shadow:
        0 0 6px rgba(57, 255, 20, 0.34),
        0 0 14px rgba(57, 255, 20, 0.14),
        0 0 24px rgba(57, 255, 20, 0.07) !important;
    filter: brightness(1.08);
}

.hero-lockup {
    margin-top: clamp(1rem, 2.2vw, 1.75rem);
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    align-items: start;
    gap: clamp(1.1rem, 2.4vw, 1.8rem);
    max-width: min(100%, 640px);
    overflow: visible;
}

.hero-title {
    margin: 0;
    position: relative;
    display: grid;
    justify-items: start;
    gap: clamp(0.14rem, 0.5vw, 0.34rem);
    padding: clamp(0.75rem, 1.15vw, 1.05rem) clamp(0.5rem, 0.9vw, 0.85rem) clamp(1rem, 1.5vw, 1.4rem) 0;
    font-family: var(--display-font);
    font-size: clamp(4rem, 9.4vw, 7.3rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    width: min(100%, 600px);
    max-width: min(100%, 600px);
    min-height: clamp(11.8rem, 15vw, 13.4rem);
    overflow: visible;
}

.hero-title::before {
    content: "";
    position: absolute;
    left: 0.3rem;
    bottom: 0.3rem;
    width: 66%;
    height: 1.3rem;
    background: linear-gradient(90deg, rgba(163, 255, 90, 0.16), rgba(163, 255, 90, 0));
    filter: blur(14px);
    pointer-events: none;
    opacity: 0.28;
}

.hero-title::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    bottom: 0;
    width: 56%;
    border-top: 2px solid rgba(163, 255, 90, 0.18);
    border-radius: 999px;
    filter: blur(0.4px);
    pointer-events: none;
    opacity: 0.5;
}

.stroke {
    color: transparent;
    -webkit-text-stroke: 1.8px var(--accent);
}

.brother-text,
.hood-text,
.legal-420-text,
.legal-legal-text {
    display: block;
    position: relative;
    width: fit-content;
    max-width: 100%;
    transition:
        color 0.24s ease,
        text-shadow 0.24s ease,
        -webkit-text-stroke-color 0.24s ease,
        opacity 0.24s ease;
    transform-origin: left center;
}

.graffiti-word {
    display: inline-block;
    isolation: isolate;
    width: max-content;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
}

.brother-text {
    z-index: 2;
    font-family: var(--wildstyle-font);
    font-weight: 900;
    font-size: clamp(3.35rem, 7.7vw, 5.95rem);
    letter-spacing: 0.012em;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.84;
    transform: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    text-shadow:
        0.02em 0.022em 0 rgba(0, 0, 0, 0.54),
        0.045em 0.055em 0 rgba(0, 0, 0, 0.72);
    -webkit-text-stroke: 0.02em rgba(0, 0, 0, 0.1);
    width: max-content;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
    will-change: text-shadow, -webkit-text-stroke-color;
    padding: 0.08em 0.2em 0.14em 0.06em;
    margin: -0.08em -0.2em -0.14em -0.06em;
}

.hood-text {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    margin-top: -0.06em;
    padding-left: clamp(0.45rem, 1.1vw, 0.95rem);
    font-family: var(--wildstyle-font);
    font-weight: 900;
    font-size: clamp(2.78rem, 6.35vw, 4.9rem);
    letter-spacing: 0.016em;
    text-transform: uppercase;
    line-height: 0.82;
    transform: none;
    opacity: 0.98;
    color: rgba(163, 255, 90, 0.12);
    -webkit-text-stroke: 2px var(--accent);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    text-shadow:
        0 0 10px rgba(163, 255, 90, 0.08),
        0.02em 0.022em 0 rgba(0, 0, 0, 0.4);
    width: max-content;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
    will-change: text-shadow, -webkit-text-stroke-color;
    padding: 0.08em 0.2em 0.14em 0.06em;
    margin: -0.08em -0.2em -0.14em -0.06em;
}

.legal-fumes-wrap {
    justify-self: start;
    align-self: start;
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: clamp(0.75rem, 1.6vw, 1.2rem);
    row-gap: 0.08rem;
    align-items: end;
    min-width: clamp(210px, 15vw, 260px);
    padding: 1.05rem 1rem 0.9rem;
    margin-bottom: 0;
    margin-left: clamp(0.2rem, 0.9vw, 0.55rem);
    transform: none;
    border: 1px solid rgba(163, 255, 90, 0.18);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(163, 255, 90, 0.03));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 42px rgba(0, 0, 0, 0.26);
    line-height: 0.88;
    transition: box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.legal-fumes-wrap::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: -0.8rem;
    border-top: 1px solid rgba(163, 255, 90, 0.24);
    opacity: 0.95;
    pointer-events: none;
}

.legal-420-text {
    grid-column: 1;
    font-family: var(--display-font);
    font-weight: 900;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.legal-legal-text {
    grid-column: 1;
    margin-top: -0.04em;
    font-family: var(--display-font);
    font-weight: 900;
    font-size: clamp(2rem, 3.8vw, 2.7rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-tag-signature {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: start;
    font-family: var(--tag-font);
    font-size: clamp(1rem, 1.45vw, 1.24rem);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.98);
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.06),
        0.03em 0.04em 0 rgba(0, 0, 0, 0.55);
    transition: color 0.22s ease, text-shadow 0.22s ease, filter 0.22s ease;
    transform: none;
    pointer-events: none;
    white-space: nowrap;
}

.hero-title:hover .brother-text,
.hero-title:hover .hood-text,
.hero-lockup__lower:hover .legal-420-text,
.hero-lockup__lower:hover .legal-legal-text,
.legal-fumes-wrap:hover .legal-420-text,
.legal-fumes-wrap:hover .legal-legal-text {
    text-shadow:
        0 0 5px rgba(57, 255, 20, 0.24),
        0 0 10px rgba(57, 255, 20, 0.08),
        0.05em 0.06em 0 rgba(0, 0, 0, 0.55);
    filter: brightness(1.05);
}

.hero-lockup__lower:hover .legal-fumes-wrap {
    border-color: rgba(163, 255, 90, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 42px rgba(0, 0, 0, 0.26),
        0 0 22px rgba(163, 255, 90, 0.08);
}

.legal-fumes-wrap:hover .hero-tag-signature {
    color: var(--accent-strong);
    text-shadow:
        0 0 5px rgba(163, 255, 90, 0.22),
        0 0 12px rgba(163, 255, 90, 0.1),
        0.03em 0.04em 0 rgba(0, 0, 0, 0.55);
    filter: brightness(1.03);
}

.hero-lockup__lower:hover .home-hero__portrait,
.home-hero__portrait:hover {
    transform: translateY(-1px);
}

.hero-lockup__lower:hover .home-hero__portrait img,
.home-hero__portrait:hover img {
    filter:
        drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28))
        drop-shadow(0 0 10px rgba(163, 255, 90, 0.18))
        drop-shadow(0 0 20px rgba(163, 255, 90, 0.08));
}

.brother-text::before,
.brother-text::after,
.hood-text::before,
.hood-text::after,
.legal-420-text::before,
.legal-420-text::after,
.legal-legal-text::before,
.legal-legal-text::after {
    position: absolute;
    inset: 0;
    font-family: var(--display-font);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    visibility: hidden;
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
}

.brother-text::before,
.brother-text::after {
    content: attr(data-text);
    font-family: var(--wildstyle-font);
    font-size: clamp(3.35rem, 7.7vw, 5.95rem);
    line-height: 0.84;
    letter-spacing: 0.012em;
}

.hood-text::before,
.hood-text::after {
    content: attr(data-text);
    font-family: var(--wildstyle-font);
    font-size: clamp(2.78rem, 6.35vw, 4.9rem);
    line-height: 0.82;
    letter-spacing: 0.016em;
    margin-top: 0;
}

.legal-420-text::before,
.legal-420-text::after {
    content: "420";
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    line-height: 1;
}

.legal-legal-text::before,
.legal-legal-text::after {
    content: "LEGAL";
    font-size: clamp(2rem, 3.8vw, 2.7rem);
    margin-top: -0.04em;
    line-height: 1;
}

.hood-text::after,
.legal-legal-text::after {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
}

.hero-title:hover .brother-text,
.hero-title:hover .hood-text,
.hero-lockup__lower:hover .legal-420-text,
.hero-lockup__lower:hover .legal-legal-text,
.legal-fumes-wrap:hover .legal-420-text,
.legal-fumes-wrap:hover .legal-legal-text {
    animation: none;
}

.hero-title:hover .brother-text::before,
.hero-title:hover .brother-text::after,
.hero-title:hover .hood-text::before,
.hero-title:hover .hood-text::after,
.hero-lockup__lower:hover .legal-420-text::before,
.hero-lockup__lower:hover .legal-420-text::after,
.hero-lockup__lower:hover .legal-legal-text::before,
.hero-lockup__lower:hover .legal-legal-text::after,
.legal-fumes-wrap:hover .legal-420-text::before,
.legal-fumes-wrap:hover .legal-420-text::after,
.legal-fumes-wrap:hover .legal-legal-text::before,
.legal-fumes-wrap:hover .legal-legal-text::after {
    visibility: hidden;
    animation: none;
}

.hero-title:hover .hood-text,
.hero-lockup__lower:hover .legal-legal-text,
.legal-fumes-wrap:hover .legal-legal-text {
    -webkit-text-stroke-color: var(--accent-strong);
}

.hero-title:hover .hood-text {
    filter: none;
    text-shadow:
        0 0 8px rgba(163, 255, 90, 0.24),
        0 0 18px rgba(163, 255, 90, 0.12),
        0.02em 0.022em 0 rgba(0, 0, 0, 0.4);
}

.hero-lockup__lower:hover .legal-legal-text,
.legal-fumes-wrap:hover .legal-legal-text {
    filter:
        brightness(1.08)
        drop-shadow(0 0 8px rgba(163, 255, 90, 0.18))
        drop-shadow(0 0 18px rgba(163, 255, 90, 0.08));
}

.hero-title:hover .brother-text {
    filter: none;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.16),
        0 0 14px rgba(163, 255, 90, 0.12),
        0.02em 0.022em 0 rgba(0, 0, 0, 0.54),
        0.045em 0.055em 0 rgba(0, 0, 0, 0.72);
}

.hero-lockup__lower:hover .legal-420-text,
.legal-fumes-wrap:hover .legal-420-text {
    filter:
        brightness(1.06)
        drop-shadow(0 0 8px rgba(163, 255, 90, 0.16))
        drop-shadow(0 0 18px rgba(163, 255, 90, 0.06));
}

.home-hero__lede {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    width: min(100%, 39ch);
    max-width: 39ch;
    margin: 16px 0 0 clamp(0.2rem, 0.9vw, 0.55rem);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: rgba(245, 249, 243, 0.94);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.72;
    letter-spacing: 0.01em;
    text-wrap: pretty;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(22px, 2.6vw, 30px);
    padding-top: 0;
}

.home-hero__sidebar .hero-metrics {
    margin-top: clamp(18px, 2.4vw, 26px);
    padding-top: 0;
}

.home-hero__sidebar .metric-card {
    min-height: 136px;
    padding: 14px 16px;
}

.home-hero__sidebar .metric-card__value {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.home-hero__sidebar .metric-card__label {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
}

.metric-card {
    display: grid;
    grid-template-rows: auto 1rem auto;
    row-gap: 6px;
    align-content: start;
    padding: 16px 18px;
    border: 1px solid rgba(163, 255, 90, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.metric-card__value {
    display: block;
    grid-row: 1;
    font-family: var(--display-font);
    font-size: clamp(1.65rem, 4.8vw, 2.45rem);
    line-height: 0.88;
    letter-spacing: 0.045em;
}

.metric-card__stars {
    display: block;
    grid-row: 2;
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-shadow:
        0 0 4px rgba(163, 255, 90, 0.24),
        0 0 10px rgba(163, 255, 90, 0.12);
}

.metric-card__label {
    display: block;
    grid-row: 3;
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-panel__eyebrow,
.story-card__eyebrow,
.wall-card__eyebrow,
.spotlight-card__eyebrow,
.page-meta,
.detail-item__label {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-panel__title {
    margin: 8px 0 0;
    font-family: var(--display-font);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-panel__text {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.hero-panel__stack {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.8vw, 20px);
}

.hero-panel__title--find-us {
    display: flex;
    flex-wrap: wrap;
    gap: 0.16em;
    align-items: baseline;
    margin-top: 2px;
    font-size: clamp(2.45rem, 4.8vw, 4.7rem);
    line-height: 0.82;
    overflow: visible;
}

.hero-panel__title-line {
    display: inline-block;
    font-family: var(--wildstyle-font);
    width: max-content;
    max-width: none;
    overflow: visible;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    will-change: text-shadow, -webkit-text-stroke-color, color;
    padding: 0.08em 0.2em 0.14em 0.06em;
    margin: -0.08em -0.2em -0.14em -0.06em;
    transition:
        color 0.24s ease,
        text-shadow 0.24s ease,
        -webkit-text-stroke-color 0.24s ease,
        opacity 0.24s ease;
}

.hero-panel__title--find-us:hover .hero-panel__title-line {
    text-shadow:
        0 0 6px rgba(163, 255, 90, 0.22),
        0 0 16px rgba(163, 255, 90, 0.1);
}

.hero-panel__title--find-us:hover .hero-panel__title-line.stroke {
    -webkit-text-stroke-color: var(--accent-strong);
    text-shadow:
        0 0 8px rgba(163, 255, 90, 0.24),
        0 0 18px rgba(163, 255, 90, 0.12),
        0.02em 0.022em 0 rgba(0, 0, 0, 0.4);
}

.hero-panel__blocks {
    display: grid;
    gap: 14px;
}

.hero-panel__brand {
    margin-top: 0;
    min-height: clamp(150px, 18vw, 210px);
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0;
    width: 100%;
    padding: 24px 20px;
    border: 1px solid rgba(163, 255, 90, 0.12);
    border-radius: 26px;
    background:
        radial-gradient(circle at center, rgba(163, 255, 90, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(163, 255, 90, 0.012)),
        rgba(8, 11, 8, 0.46);
    text-decoration: none;
    text-align: center;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, filter 0.24s ease;
}

.hero-panel__brand--wide {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 1040px;
    margin-top: clamp(14px, 2vw, 24px);
    min-height: clamp(180px, 20vw, 240px);
    padding: clamp(18px, 2vw, 24px);
}

.hero-panel__brand:hover {
    border-color: rgba(163, 255, 90, 0.24);
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.03),
        0 0 24px rgba(163, 255, 90, 0.06),
        0 0 44px rgba(163, 255, 90, 0.035);
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.hero-panel__brand-lockup {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 24px);
    justify-items: center;
}

.hero-panel__brand-mark {
    width: min(100%, clamp(300px, 34vw, 430px));
    aspect-ratio: 577 / 433;
    height: auto;
    min-height: 0;
    display: grid;
    place-items: center;
    justify-self: center;
    align-self: center;
    padding: 18px 26px;
    border: 1px solid rgba(163, 255, 90, 0.14);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(163, 255, 90, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.04),
        0 10px 28px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.hero-panel__brand--wide .hero-panel__brand-mark {
    width: min(100%, clamp(220px, 24vw, 360px));
    padding: clamp(8px, 1vw, 12px) clamp(12px, 1.4vw, 16px);
}

.hero-panel__brand--wide .hero-panel__brand-mark--subbrand {
    width: min(100%, clamp(236px, 25.2vw, 382px));
    aspect-ratio: 597 / 418;
    padding: clamp(6px, 0.8vw, 10px) clamp(8px, 1vw, 12px);
}

.hero-panel__brand-mark--subbrand-fallback {
    color: #070807;
}

.hero-panel__brand-mark img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 8px rgba(163, 255, 90, 0.08));
    transition: filter 0.24s ease, transform 0.24s ease;
}

.hero-panel__brand:hover .hero-panel__brand-mark {
    border-color: rgba(163, 255, 90, 0.28);
    background: linear-gradient(180deg, rgba(163, 255, 90, 0.14), rgba(255, 255, 255, 0.03));
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.06),
        0 0 20px rgba(163, 255, 90, 0.12),
        0 0 42px rgba(163, 255, 90, 0.08),
        0 14px 30px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.hero-panel__brand:hover .hero-panel__brand-mark img {
    filter:
        brightness(1.08)
        drop-shadow(0 0 8px rgba(163, 255, 90, 0.36))
        drop-shadow(0 0 18px rgba(163, 255, 90, 0.2))
        drop-shadow(0 0 32px rgba(163, 255, 90, 0.12));
    transform: none;
}

.hero-panel__brand-mark--fallback {
    color: var(--accent);
    font-family: var(--display-font);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    letter-spacing: 0.08em;
}

.hero-info-block {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.hero-info-block__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(163, 255, 90, 0.16);
    border-radius: 20px;
    color: var(--accent);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(163, 255, 90, 0.015)),
        rgba(255, 255, 255, 0.02);
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.03),
        0 0 14px rgba(163, 255, 90, 0.05),
        0 0 28px rgba(163, 255, 90, 0.03);
}

.hero-info-block__icon svg {
    width: 26px;
    height: 26px;
}

.hero-info-block__content {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.hero-info-block__eyebrow {
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-info-block__value {
    font-family: var(--body-font);
    font-size: clamp(1.3rem, 2vw, 2.05rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-info-block__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.hero-info-block__meta a {
    color: var(--accent);
    text-decoration: none;
}

.hero-info-block__meta a:hover {
    color: var(--accent-strong);
}

.hero-info-block--hours .hero-info-block__content {
    gap: 14px;
}

.hero-hours-list {
    display: grid;
    gap: 10px;
}

.hero-hours-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(163, 255, 90, 0.12);
}

.hero-hours-list__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hero-hours-list__item strong,
.hero-hours-list__item span {
    font-family: var(--display-font);
    line-height: 0.98;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-hours-list__item strong {
    font-size: clamp(1.3rem, 1.7vw, 1.7rem);
}

.hero-hours-list__item span {
    color: var(--accent);
    font-size: clamp(1.15rem, 1.55vw, 1.55rem);
    text-align: right;
    white-space: nowrap;
    text-shadow:
        0 0 8px rgba(163, 255, 90, 0.12),
        0 0 18px rgba(163, 255, 90, 0.04);
}

@keyframes glitch-shake-vandal {
    0% {
        transform: translate(0);
    }
    25% {
        transform: translate(-0.4px, 0.2px);
    }
    50% {
        transform: translate(0.4px, -0.2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes glitch-layer1-vandal {
    0% {
        transform: translate(-0.8px, 0);
        opacity: 0.4;
    }
    50% {
        transform: translate(0.4px, 0.4px);
        opacity: 0.5;
    }
    100% {
        transform: translate(-0.8px, 0);
        opacity: 0.4;
    }
}

@keyframes glitch-layer2-vandal {
    0% {
        transform: translate(0.8px, 0);
        opacity: 0.4;
    }
    50% {
        transform: translate(-0.4px, -0.4px);
        opacity: 0.5;
    }
    100% {
        transform: translate(0.8px, 0);
        opacity: 0.4;
    }
}

.ticker-strip {
    margin-bottom: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(163, 255, 90, 0.18);
    border-bottom: 1px solid rgba(163, 255, 90, 0.18);
    background: linear-gradient(90deg, rgba(163, 255, 90, 0.18), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.ticker-strip__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation: ticker 22s linear infinite;
}

.ticker-strip__track span {
    padding-right: 28px;
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-25%);
    }
}

.intro-grid,
.story-grid,
.wall-grid,
.base-grid,
.navigation-grid {
    display: grid;
    gap: 20px;
}

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

.info-card {
    display: grid;
    align-content: start;
    gap: var(--content-card-gap);
    padding: var(--content-card-padding);
}

.intro-grid .info-card {
    gap: 10px;
    padding: 22px 20px 20px;
}

.info-card__meta {
    margin-bottom: 8px;
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.intro-grid .info-card__meta {
    margin-bottom: 4px;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.info-card h3,
.story-card h3,
.wall-card h3,
.spotlight-copy h3,
.contact-card h3,
.navigation-card h3 {
    margin: 0 0 12px;
    font-family: var(--display-font);
    font-size: var(--content-card-title-size);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.intro-grid .info-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 1.8vw, 1.95rem);
    line-height: 0.92;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.info-card p,
.story-card p,
.wall-card p,
.spotlight-copy p,
.contact-card p,
.navigation-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.65;
}

.intro-grid .info-card p {
    font-size: 0.94rem;
    line-height: 1.58;
}

.ecosystem-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-content: start;
    width: 100%;
    justify-self: stretch;
    padding-top: 2px;
    border: 1px solid rgba(163, 255, 90, 0.14);
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(163, 255, 90, 0.04), transparent 26%),
        linear-gradient(135deg, rgba(11, 15, 11, 0.98), rgba(6, 9, 6, 0.985));
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.03),
        0 18px 38px rgba(0, 0, 0, 0.2);
}

.info-card--overview {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px 14px;
    min-height: 0;
    height: 100%;
    padding: 22px 20px 24px;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.info-card--overview:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(163, 255, 90, 0),
        rgba(163, 255, 90, 0.16) 18%,
        rgba(163, 255, 90, 0.16) 82%,
        rgba(163, 255, 90, 0)
    );
}

.info-card__index {
    display: grid;
    place-items: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    border: 1px solid rgba(163, 255, 90, 0.22);
    border-radius: 16px;
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.18), transparent 58%),
        linear-gradient(180deg, rgba(16, 25, 13, 0.96), rgba(7, 10, 7, 0.98));
    color: var(--accent);
    font-family: var(--display-font);
    font-size: clamp(1.35rem, 1.5vw, 1.7rem);
    line-height: 1;
    letter-spacing: 0.06em;
    text-shadow:
        0 0 10px rgba(163, 255, 90, 0.12),
        0 0 20px rgba(163, 255, 90, 0.04);
}

.info-card__content {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
}

.info-card--overview h3 {
    margin: 0;
    font-size: clamp(1.08rem, 1.05vw, 1.32rem);
    line-height: 0.94;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.info-card--overview p {
    font-size: 0.84rem;
    line-height: 1.45;
}

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

.story-grid--home {
    align-items: start;
}

.story-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.story-card__media {
    aspect-ratio: var(--collection-media-ratio);
    display: grid;
    place-items: center;
    padding: 14px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(163, 255, 90, 0.14), rgba(255, 255, 255, 0.02));
}

.story-card__media > img,
.wall-card__media > img,
.navigation-card > img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: contain !important;
    object-position: center center !important;
    align-self: stretch;
    justify-self: stretch;
}

.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card__body {
    display: grid;
    gap: var(--content-card-gap);
    padding: var(--content-card-padding);
    height: 100%;
}

.story-card__meta-line,
.wall-card__meta-line {
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-card__footer {
    margin-top: auto;
    padding-top: 4px;
}

.empty-card {
    padding: 32px;
}

.base-note {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.base-note {
    margin: 12px 4px 0;
    color: var(--text);
    font-family: var(--display-font);
    font-size: clamp(1.2rem, 2.2vw, 1.9rem);
    line-height: 0.96;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    text-align: center;
}

.wall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.wall-grid--feature {
    grid-template-columns: minmax(0, 1fr);
}

.wall-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.story-card--home,
.wall-card--home {
    width: min(100%, 360px);
    justify-self: center;
    border-color: rgba(163, 255, 90, 0.14);
    border-radius: 34px;
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(16, 23, 13, 0.98), rgba(6, 9, 6, 0.985));
    box-shadow:
        0 0 0 1px rgba(163, 255, 90, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.42),
        0 0 34px rgba(163, 255, 90, 0.09);
}

.story-card--home::before,
.wall-card--home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(163, 255, 90, 0.04), transparent 20%),
        linear-gradient(90deg, rgba(163, 255, 90, 0.025), transparent 30%, transparent 70%, rgba(163, 255, 90, 0.025));
    pointer-events: none;
}

.wall-card__media,
.story-card--visual .story-card__media {
    aspect-ratio: var(--collection-media-ratio);
    display: grid;
    place-items: center;
    padding: 14px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.08), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(11, 16, 11, 0.82));
}

.story-card--home .story-card__media,
.wall-card--home .wall-card__media {
    aspect-ratio: 0.82 / 1.08;
    margin: 14px 14px 0;
    padding: 16px;
    border: 1px solid rgba(163, 255, 90, 0.24);
    border-radius: 26px;
    border-bottom: 1px solid rgba(163, 255, 90, 0.24);
    box-shadow:
        inset 0 0 0 1px rgba(163, 255, 90, 0.05),
        0 0 24px rgba(163, 255, 90, 0.1);
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.2), transparent 48%),
        linear-gradient(180deg, rgba(18, 28, 14, 0.95), rgba(7, 10, 7, 0.98));
}

.wall-card--feature {
    width: min(100%, 1180px);
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    align-items: stretch;
}

.wall-card--feature .wall-card__media {
    aspect-ratio: 1.34 / 0.92;
    margin: 14px 0 14px 14px;
    padding: 18px;
    height: calc(100% - 28px);
}

.wall-card--feature .wall-card__body {
    align-content: center;
    gap: 12px;
    padding: 28px 28px 32px 18px;
}

.wall-card--feature h3 {
    font-size: clamp(2.2rem, 4vw, 3.9rem);
    margin-bottom: 6px;
}

.wall-card--feature p {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.68;
}

.wall-card--feature .story-card__footer {
    padding-top: 12px;
}

.story-card--home .story-card__media > img {
    filter: none;
}

.wall-card--art-sale .wall-card__media {
    background:
        radial-gradient(circle at top, rgba(138, 94, 58, 0.18), transparent 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(11, 16, 11, 0.82));
}

.wall-card--art-sale.wall-card--home .wall-card__media {
    background:
        radial-gradient(circle at top, rgba(255, 137, 72, 0.2), transparent 46%),
        linear-gradient(180deg, rgba(26, 18, 12, 0.96), rgba(9, 8, 6, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(255, 137, 72, 0.06),
        0 0 24px rgba(163, 255, 90, 0.08);
}

.wall-card--art-sale .wall-card__media > img {
    filter: none;
}

.wall-card--merch.wall-card--home .wall-card__media {
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.26), transparent 42%),
        linear-gradient(180deg, rgba(14, 28, 12, 0.96), rgba(5, 8, 5, 0.99));
}

.wall-card__media > img,
.story-card--visual .story-card__media > img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: contain !important;
    object-position: center center !important;
    filter: grayscale(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.wall-card:hover .wall-card__media img,
.story-card--visual:hover .story-card__media img {
    transform: scale(1.02);
    filter: grayscale(0);
}

.wall-card--art-sale:hover .wall-card__media img {
    filter: none;
}

.wall-card__body {
    display: grid;
    gap: var(--content-card-gap);
    padding: var(--content-card-padding);
    height: 100%;
}

.story-card--home .story-card__body,
.wall-card--home .wall-card__body {
    gap: 10px;
    padding: 20px 20px 24px;
}

.story-card--home h3,
.wall-card--home h3 {
    margin-bottom: 2px;
    font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.story-card--home p,
.wall-card--home p {
    font-size: 0.92rem;
    line-height: 1.55;
}

.story-card--home .story-card__eyebrow,
.wall-card--home .wall-card__eyebrow {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(163, 255, 90, 0.18);
}

.story-card--home .story-card__meta-line,
.wall-card--home .wall-card__meta-line {
    color: rgba(245, 248, 242, 0.68);
}

.story-card--home .story-card__footer,
.wall-card--home .story-card__footer {
    padding-top: 8px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 20px;
}

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

.spotlight-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.spotlight-media {
    min-height: 0;
    aspect-ratio: var(--collection-media-ratio);
    display: grid;
    place-items: center;
    max-height: none;
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border-right: 1px solid var(--line);
}

.spotlight-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.spotlight-media .merch-preview-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.merch-preview-fallback {
    min-height: 100%;
    display: grid;
    place-items: center;
    color: var(--text);
    font-family: var(--display-font);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.12em;
}

.spotlight-copy {
    padding: calc(var(--content-card-padding) + 2px);
    display: grid;
    align-content: start;
    gap: calc(var(--content-card-gap) + 2px);
}

.spotlight-price {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 10px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 500;
}

.base-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.base-grid--stacked {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-list--compact {
    width: min(100%, 1140px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.contact-card {
    display: grid;
    align-content: start;
    gap: var(--content-card-gap);
    padding: var(--content-card-padding);
}

.contact-list--compact .contact-card {
    gap: 10px;
    min-height: 0;
    padding: 18px 20px 20px;
}

.contact-list--compact .contact-card::before {
    left: 20px;
    top: 16px;
    width: min(150px, calc(100% - 40px));
    opacity: 0.72;
}

.contact-list--compact .contact-card__label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.contact-list--compact .contact-card h3 {
    margin-bottom: 6px;
    max-width: none;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 0.94;
    text-wrap: pretty;
    word-break: break-word;
}

.contact-list--compact .contact-card p {
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-list--compact .contact-card .link-arrow {
    min-height: 46px;
    padding: 10px 18px;
}

.contact-card::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 18px;
    width: min(180px, calc(100% - 44px));
    height: 1px;
    background: linear-gradient(90deg, rgba(163, 255, 90, 0.34), rgba(163, 255, 90, 0));
    box-shadow: 0 0 8px rgba(163, 255, 90, 0.08);
    pointer-events: none;
}

.contact-card__label {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card a {
    text-decoration: none;
}

.map-shell {
    padding: 14px;
}

.map-shell--feature {
    width: min(100%, 940px);
    justify-self: center;
}

.map-shell::after {
    width: 120px;
    height: 120px;
    opacity: 0.6;
}

.map-shell--consent {
    display: grid;
    gap: 10px;
}

.map-shell--consent iframe {
    display: none;
}

.map-shell.has-third-party-consent iframe {
    display: block;
}

.map-shell.has-third-party-consent .map-shell__placeholder {
    display: none;
}

.map-shell__placeholder {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    align-content: end;
    min-height: 210px;
    padding: clamp(16px, 2.4vw, 22px);
    border: 1px solid rgba(163, 255, 90, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(163, 255, 90, 0.014)),
        radial-gradient(circle at top left, rgba(163, 255, 90, 0.06), transparent 34%);
}

.map-shell--feature .map-shell__placeholder {
    justify-items: center;
    align-content: center;
    text-align: center;
}

.map-shell__placeholder h3,
.map-shell__placeholder p {
    margin: 0;
}

.map-shell__placeholder p {
    max-width: 42rem;
    color: var(--text-soft);
}

.map-shell__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.map-shell iframe {
    width: 100%;
    min-height: 340px;
    border-radius: 22px;
    filter: saturate(0) contrast(1.05) brightness(0.96);
}

.map-shell--feature iframe {
    min-height: 360px;
}

.map-shell > .link-arrow {
    margin: 6px 6px 0;
}

.page-hero {
    padding: 26px 0 34px;
}

.page-hero__panel {
    padding: clamp(28px, 4vw, 48px);
    background: var(--surface-panel-strong);
}

.page-hero--compact .page-hero__panel {
    padding-block: 30px;
}

.page-meta {
    margin-top: 18px;
}

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

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
    gap: 20px;
}

.post-story-layout {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.post-story-layout--with-media {
    grid-template-columns: minmax(240px, 0.52fr) minmax(0, 0.88fr);
    align-items: start;
}

.post-story-layout--visual {
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.82fr);
}

.post-story-media {
    position: relative;
    overflow: hidden;
    align-self: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(13, 16, 13, 0.965), rgba(8, 10, 8, 0.985));
    box-shadow: var(--shadow-soft);
}

.post-story-media::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(163, 255, 90, 0.08), transparent 72%);
    pointer-events: none;
}

.post-story-media figure,
.post-story-media .wp-block-image {
    margin: 0;
}

.post-story-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: contain;
    object-position: center;
    border-radius: 22px;
}

.post-story-media--visual {
    max-width: 430px;
}

.post-content--story {
    align-content: start;
}

.post-content__head {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.post-content__eyebrow {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.post-content__title {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.94;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.post-content__meta {
    color: var(--text-muted);
    font-family: var(--mono-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.post-content__lede {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.65;
}

.post-media {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
}

.post-media--visual {
    display: grid;
    place-items: center;
    padding: 18px;
    background:
        radial-gradient(circle at top, rgba(163, 255, 90, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(11, 16, 11, 0.88));
}

.post-media--visual img {
    object-fit: contain;
    object-position: center;
}

.post-content {
    padding: clamp(24px, 4vw, 42px);
}

.post-content > :first-child {
    margin-top: 0;
}

.post-content > :last-child {
    margin-bottom: 0;
}

.post-content h2,
.post-content h3,
.post-content h4,
.wp-block-quote cite {
    font-family: var(--display-font);
    line-height: 0.96;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.post-content h2 {
    margin: 40px 0 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.post-content h3 {
    margin: 32px 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.post-content p,
.post-content li,
.post-content blockquote {
    color: var(--text-soft);
    font-size: 1.02rem;
}

.post-content a {
    color: var(--accent);
}

.post-content ul,
.post-content ol {
    padding-left: 1.2rem;
}

.post-content li + li {
    margin-top: 10px;
}

.post-content blockquote,
.wp-block-quote {
    margin: 34px 0;
    padding: 20px 22px;
    border-left: 3px solid var(--accent);
    border-radius: 0 22px 22px 0;
    background: var(--surface-panel-soft);
}

.post-content .wp-block-image {
    margin: 28px auto;
    width: fit-content;
    max-width: min(100%, 520px);
}

.post-content img,
.post-content .wp-block-image img {
    width: auto;
    max-width: min(100%, 520px);
    max-height: 680px;
    margin-inline: auto;
    border-radius: 22px;
}

.post-aside {
    padding: 24px;
    align-self: start;
    display: grid;
    gap: 18px;
    align-content: start;
    justify-items: start;
}

.post-aside .button-primary,
.post-aside .button-secondary {
    width: min(100%, 240px);
    min-height: 52px;
    padding: 14px 20px;
    justify-self: start;
    align-self: start;
}

.detail-stack {
    display: grid;
    gap: 14px;
}

.detail-item {
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-panel-soft);
}

.detail-item__value {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-weight: 600;
}

.navigation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.navigation-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-panel);
    text-decoration: none;
}

.navigation-card__label {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.navigation-card__title {
    margin-top: 10px;
    font-family: var(--display-font);
    font-size: 2rem;
    line-height: 0.95;
    text-transform: uppercase;
}

.pagination-shell {
    margin-top: 28px;
}

.pagination-shell .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-shell .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-panel-soft);
    color: var(--text);
    text-decoration: none;
}

.pagination-shell .page-numbers.current {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.vandal-footer-bar {
    position: relative;
    margin-top: 26px;
    padding: 0 0 30px;
}

.vandal-footer-bar__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-panel-strong);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.vandal-footer-bar:hover .vandal-footer-bar__inner,
.vandal-footer-bar:focus-within .vandal-footer-bar__inner {
    border-color: rgba(163, 255, 90, 0.24);
    box-shadow:
        0 0 0 1px rgba(163, 255, 90, 0.05),
        0 0 18px rgba(163, 255, 90, 0.08);
    background:
        radial-gradient(circle at top left, rgba(163, 255, 90, 0.078), transparent 28%),
        radial-gradient(circle at top right, rgba(138, 94, 58, 0.08), transparent 28%),
        linear-gradient(135deg, rgba(15, 19, 15, 0.985) 0%, rgba(8, 10, 9, 0.985) 100%);
}

.footer-brand-column {
    display: grid;
    gap: 18px;
    align-content: start;
}

.footer-brand-block,
.footer-stamp-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand-block--subbrand {
    gap: 14px;
    align-items: center;
}

.footer-brand-mark {
    width: 62px;
    height: 62px;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: var(--surface-panel-soft);
    display: grid;
    place-items: center;
    overflow: hidden;
    text-decoration: none;
}

.footer-brand-mark img {
    width: 76%;
    height: 76%;
    object-fit: contain;
}

.footer-brand-mark span {
    color: var(--accent);
    font-family: var(--display-font);
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.footer-brand-mark--secondary {
    width: 70px;
    height: 60px;
}

.footer-brand-mark--secondary span {
    font-size: 1.72rem;
    letter-spacing: 0.05em;
    line-height: 1;
}

.footer-brand-mark--subbrand {
    width: 70px;
    height: 70px;
    flex: none;
    background: var(--surface-panel-soft);
}

.footer-brand-mark--subbrand-image {
    width: 62px;
    height: 62px;
    padding: 6px;
    border-radius: 20px;
}

.footer-brand-mark--subbrand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.footer-brand-copy--subbrand {
    display: grid;
    gap: 4px;
}

.footer-brand-title--subbrand {
    font-size: 1.62rem;
    line-height: 0.94;
    letter-spacing: 0.04em;
}

.footer-sexycbd-lockup {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.08em;
    line-height: 0.78;
    white-space: nowrap;
    transform: rotate(-3deg);
}

.footer-brand-mark--subbrand:not(.footer-brand-mark--subbrand-image) .footer-sexycbd-lockup {
    display: grid;
    justify-items: center;
    gap: 2px;
    line-height: 0.82;
    transform: rotate(-3deg) scale(0.76);
    transform-origin: center;
}

.footer-brand-mark--subbrand:not(.footer-brand-mark--subbrand-image) .footer-sexycbd-lockup__tag {
    font-size: 1.62rem;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 3px var(--accent);
}

.footer-brand-mark--subbrand:not(.footer-brand-mark--subbrand-image) .footer-sexycbd-lockup__cbd {
    font-size: 2rem;
    letter-spacing: 0.01em;
    -webkit-text-stroke: 4px var(--accent);
    transform: none;
}

.footer-sexycbd-lockup__tag,
.footer-sexycbd-lockup__cbd {
    color: #070807;
    text-shadow:
        0 0 1px rgba(163, 255, 90, 0.85),
        0 0 10px rgba(163, 255, 90, 0.18);
    paint-order: stroke fill;
}

.footer-sexycbd-lockup__tag {
    font-family: var(--tag-font);
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
    letter-spacing: 0.03em;
    -webkit-text-stroke: 4px var(--accent);
}

.footer-sexycbd-lockup__cbd {
    font-family: var(--display-font);
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    -webkit-text-stroke: 6px var(--accent);
    transform: translateY(1px);
}

.footer-brand-column,
.footer-brand-copy,
.footer-link-column,
.footer-stamp-block {
    min-width: 0;
}

.footer-brand-title {
    font-family: var(--display-font);
    font-size: 2rem;
    line-height: 0.92;
    letter-spacing: 0.03em;
    text-transform: center;
}

.footer-brand-subtitle,
.footer-stamp-copy {
    color: var(--text-muted);
}

.footer-link-column {
    display: grid;
    gap: 14px;
}

.footer-meta-label,
.footer-stamp-code {
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-link-group,
.footer-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-panel-soft);
    color: var(--text-soft);
    font-family: var(--mono-font);
    font-size: 0.74rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 0.22s ease, color 0.22s ease;
}

.footer-contact-item span {
    color: var(--text);
}

.footer-contact-item:hover {
    border-color: var(--line-strong);
    color: var(--accent);
}

.footer-stamp-block {
    justify-self: end;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.age-gate__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 10%, rgba(163, 255, 90, 0.11), transparent 36%),
        radial-gradient(circle at 78% 12%, rgba(138, 94, 58, 0.08), transparent 30%),
        rgba(4, 6, 5, 0.92);
    backdrop-filter: blur(14px);
}

.age-gate__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 34px;
    background: var(--surface-panel-strong);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
    text-align: center;
}

.age-gate__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-family: var(--mono-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.age-gate__title {
    margin: 0 0 16px;
    font-family: var(--display-font);
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.age-gate__text {
    margin: 0 auto;
    max-width: 34ch;
    color: var(--text-soft);
}

.age-gate__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

body.age-gate-page {
    min-height: 100vh;
    overflow: hidden;
}

body.age-gate-page .age-gate {
    position: relative;
    min-height: 100vh;
}

body.age-gate-open {
    overflow: hidden;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.woocommerce main#primary,
.woocommerce-page main#primary {
    padding-left: 0;
    padding-right: 0;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    margin-bottom: 16px;
    border-radius: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--text);
    font-family: var(--display-font);
    font-size: 2rem;
    line-height: 0.95;
}

.woocommerce ul.products li.product .price {
    color: var(--accent);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.woocommerce div.product div.images {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
}

.woocommerce div.product div.summary {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-soft);
}

.woocommerce div.product .product_title {
    font-family: var(--display-font);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--accent);
    font-family: var(--display-font);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.woocommerce div.product form.cart .quantity .qty {
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    margin: 0 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

@media (max-width: 1100px) {
    .home-hero__card,
    .spotlight-grid,
    .base-grid,
    .post-layout,
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .post-story-layout--with-media {
        grid-template-columns: 1fr;
    }

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

    .section-header--ecosystem {
        grid-template-columns: 1fr;
    }

    .ecosystem-overview {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: stretch;
        padding-top: 0;
    }

    .info-card--overview:nth-child(2n)::after {
        display: none;
    }

    .info-card--overview:nth-child(n + 3) {
        border-top: 1px solid rgba(163, 255, 90, 0.12);
    }

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

    .wall-grid--feature {
        grid-template-columns: 1fr;
    }

    .wall-card--feature {
        width: min(100%, 760px);
        grid-template-columns: 1fr;
    }

    .wall-card--feature .wall-card__media {
        margin: 14px 14px 0;
        height: auto;
    }

    .wall-card--feature .wall-card__body {
        padding: 22px 22px 28px;
    }

    .home-hero__card {
        min-height: 0;
    }

    .home-hero__sidebar {
        padding-left: 0;
        padding-top: 26px;
        border-left: 0;
        border-top: 1px solid rgba(163, 255, 90, 0.14);
    }

    .hero-news-rail {
        min-height: 0;
    }

    .hero-panel__title--find-us {
        font-size: clamp(2.35rem, 8.6vw, 4rem);
    }

    .home-hero__sidebar .hero-metrics {
        margin-top: 22px;
        padding-top: 0;
    }

    .hero-panel__brand {
        margin-top: 0;
        min-height: 150px;
    }

    .hero-panel__brand--wide {
        max-width: 880px;
        min-height: 188px;
        padding: 18px 18px;
    }

    .home-hero__portrait {
        width: clamp(88px, 11vw, 108px);
    }

    .hero-lockup__lower {
        gap: 16px;
    }

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

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

    .spotlight-media {
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .vandal-footer-bar__inner {
        grid-template-columns: 1fr;
    }

    .footer-stamp-block {
        justify-self: start;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 980px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner {
        grid-template-columns: auto auto auto;
    }

    .site-header__toggle {
        display: inline-flex;
    }

    .site-navigation {
        position: fixed;
        top: calc(var(--header-height) + 18px);
        left: 20px;
        right: 20px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 30px;
        background: rgba(6, 9, 7, 0.98);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

    .nav-open .site-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-list {
        flex-direction: column;
        align-items: stretch;
    }

    .site-navigation a {
        width: 100%;
        justify-content: center;
    }

    .site-header__cta {
        display: none;
    }

    .home-hero__portrait {
        width: min(104px, 24vw);
    }

    .hero-lockup__lower {
        gap: 14px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 80px;
    }

    .site-shell {
        width: min(calc(100% - 28px), var(--shell-width));
    }

    .site-main {
        padding-top: calc(var(--header-height) + 20px);
    }

    .site-header__inner {
        gap: 14px;
    }

    .site-brand__mark {
        width: 48px;
        height: 48px;
    }

    .site-brand__title {
        font-size: 1.7rem;
    }

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

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

    .intro-grid .info-card__meta,
    .intro-grid .info-card h3 {
        white-space: normal;
    }

    .ecosystem-overview {
        grid-template-columns: 1fr;
    }

    .info-card--overview {
        padding: 18px 16px;
        border-top: 1px solid rgba(163, 255, 90, 0.12);
    }

    .info-card--overview:first-child {
        border-top: 0;
    }

    .info-card--overview::after {
        display: none;
    }

    .info-card--overview h3 {
        white-space: normal;
    }

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

    .home-hero {
        padding-top: 20px;
    }

    .home-hero__card {
        padding: 24px 22px;
    }

    .hero-panel__stack {
        gap: 18px;
    }

    .hero-news-rail {
        gap: 14px;
        padding: 18px 16px;
    }

    .hero-news-rail::before {
        left: 14px;
    }

    .hero-news-rail__header,
    .hero-news-rail__item,
    .hero-news-rail__empty {
        padding-left: 16px;
    }

    .hero-panel__title--find-us {
        font-size: clamp(2.1rem, 12.8vw, 3.35rem);
    }

    .home-hero__sidebar .hero-metrics {
        margin-top: 18px;
        padding-top: 0;
    }

    .hero-panel__brand {
        min-height: 132px;
        padding: 20px 16px;
    }

    .hero-panel__brand--wide {
        max-width: 100%;
        min-height: 138px;
        padding: 16px 14px;
    }

    .hero-panel__brand-lockup {
        gap: 12px;
    }

    .hero-panel__brand-mark {
        width: min(100%, 260px);
        aspect-ratio: 577 / 433;
        padding: 16px 20px;
    }

    .hero-panel__brand--wide .hero-panel__brand-mark {
        width: min(100%, 190px);
        padding: 10px 12px;
    }

    .hero-panel__brand--wide .hero-panel__brand-mark--subbrand {
        width: min(100%, 202px);
        padding: 8px 10px;
    }

    .hero-info-block {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-info-block__icon {
        width: 56px;
        height: 56px;
    }

    .hero-hours-list__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-hours-list__item span {
        text-align: left;
    }

    .hero-lockup {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1rem;
        max-width: 100%;
    }

    .hero-title {
        gap: 0.18rem;
        padding: 0.8rem 0.25rem 0.9rem 0;
        max-width: 100%;
    }

    .brother-text {
        font-size: clamp(3.7rem, 14vw, 5.75rem);
    }

    .hood-text {
        padding-left: 0.38rem;
        margin-top: -0.04em;
        font-size: clamp(3.05rem, 11.4vw, 4.7rem);
    }

    .legal-fumes-wrap {
        min-width: 0;
        column-gap: 0.7rem;
        margin-bottom: 0;
        justify-self: start;
    }

    .hero-lockup__lower {
        gap: 12px;
        align-items: center;
    }

    .home-hero__portrait {
        width: min(86px, 24vw);
    }

    .hero-tag-signature {
        font-size: clamp(0.84rem, 4.1vw, 1rem);
    }

    .home-hero__lede {
        width: 100%;
        max-width: none;
        margin: 18px 0 0;
        padding: 0;
    }

    .legal-420-text {
        font-size: clamp(1.45rem, 8vw, 2rem);
    }

    .legal-legal-text {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        padding-top: 26px;
    }

    .story-grid,
    .archive-grid,
    .wall-grid,
    .navigation-grid {
        grid-template-columns: 1fr;
    }

    .age-gate__dialog {
        padding: 28px 22px;
    }

    .age-gate__button,
    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .post-aside .button-primary,
    .post-aside .button-secondary {
        width: 100%;
        max-width: none;
    }

    .not-found-actions {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
