:root {
    --bg: #0b0b09;
    --bg-2: #14130f;
    --panel: rgba(20, 19, 15, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.03);
    --text: #f3eee4;
    --muted: #b8b2a6;
    --border: rgba(200, 162, 74, 0.22);
    --border-strong: rgba(200, 162, 74, 0.34);
    --accent: #c8a24a;
    --accent-soft: rgba(200, 162, 74, 0.14);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --container: 1180px;
    --radius: 22px;
    --radius-sm: 14px;
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(200, 162, 74, 0.10), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(200, 162, 74, 0.08), transparent 30%),
        linear-gradient(180deg, #0b0b09 0%, #0f0e0b 48%, #0b0b09 100%);
    min-height: 100vh;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

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

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

a:hover {
    color: var(--text);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 1000;
    background: var(--accent);
    color: #0b0b09;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(11, 11, 9, 0.84);
    border-bottom: 1px solid rgba(200, 162, 74, 0.14);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid var(--border-strong);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(20, 19, 15, 0.96);
    color: var(--accent);
    font-family: var(--serif);
    font-size: 1.45rem;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand-mark--image {
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.brand-mark--image img {
    width: auto;
    height: clamp(30px, 3vw, 42px);
    max-width: min(240px, 34vw);
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-family: var(--serif);
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand-tagline {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.95rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted);
    font-size: 0.96rem;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.nav-link--login {
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 162, 74, 0.26);
    background: rgba(200, 162, 74, 0.05);
    color: var(--text);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.7rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    margin: 4px 0;
    background: var(--text);
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.98rem 1.35rem;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: linear-gradient(180deg, rgba(200, 162, 74, 0.16), rgba(200, 162, 74, 0.08));
    color: var(--text);
    font-weight: 600;
    font-size: 0.96rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button:hover {
    border-color: rgba(200, 162, 74, 0.5);
    transform: translateY(-1px);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.02);
}

.button--small {
    padding: 0.8rem 1.05rem;
    font-size: 0.92rem;
}

.page-hero,
.hero,
.section {
    position: relative;
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 700;
}

.hero h1,
.page-heading {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero p,
.page-lead,
.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 60ch;
}

.hero-actions,
.section-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-panel {
    position: relative;
    min-height: 540px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 18% 18%, rgba(200, 162, 74, 0.20), transparent 18%),
        radial-gradient(circle at 80% 24%, rgba(200, 162, 74, 0.08), transparent 22%),
        radial-gradient(circle at 54% 78%, rgba(200, 162, 74, 0.10), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, #15140f 0%, #0c0c09 70%);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-panel::before {
    background:
        linear-gradient(120deg, transparent 0 30%, rgba(200, 162, 74, 0.14) 50%, transparent 70%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent),
        linear-gradient(rgba(200, 162, 74, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 162, 74, 0.08) 1px, transparent 1px);
    background-size: auto, auto, 38px 38px, 38px 38px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.9;
    mask-image: linear-gradient(180deg, black 0%, black 70%, transparent 100%);
}

.hero-panel::after {
    background:
        radial-gradient(circle at 38% 30%, rgba(200, 162, 74, 0.18), transparent 20%),
        linear-gradient(rgba(200, 162, 74, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 162, 74, 0.10) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
    mask-image: radial-gradient(circle at 45% 35%, black 0%, transparent 72%);
    opacity: 0.5;
}

.hero-panel__content {
    position: relative;
    height: 100%;
    padding: 1.4rem;
}

.hero-panel__content::before,
.hero-panel__content::after {
    content: "";
    position: absolute;
    border-radius: 24px;
    pointer-events: none;
}

.hero-panel__content::before {
    inset: 12% 12% 20% 12%;
    border: 1px solid rgba(200, 162, 74, 0.18);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
    transform: rotate(-2deg);
}

.hero-panel__content::after {
    inset: 20% 18% 36% 22%;
    border: 1px solid rgba(200, 162, 74, 0.14);
    background: linear-gradient(180deg, rgba(11, 11, 9, 0.38), rgba(11, 11, 9, 0.1));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 50px rgba(0, 0, 0, 0.2);
}

.hero-panel__card {
    position: absolute;
    inset: auto 1.2rem 1.2rem 1.2rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(200, 162, 74, 0.24);
    border-radius: 20px;
    background: rgba(11, 11, 9, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-panel__lines {
    position: absolute;
    inset: 1.4rem 1.4rem auto 1.4rem;
    display: grid;
    gap: 0.9rem;
}

.hero-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(200, 162, 74, 0.04), rgba(200, 162, 74, 0.66), rgba(200, 162, 74, 0.04));
}

.hero-grid__note,
.trust-strip,
.cta-band {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius);
}

.trust-strip {
    margin-top: 1.8rem;
    padding: 1.25rem 1.4rem;
    color: var(--muted);
}

.trust-strip strong,
.section-heading strong {
    color: var(--text);
}

.section {
    padding: 3.5rem 0;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.section-heading h2,
.section-heading h3,
.cta-band h2,
.info-card h3,
.service-card h3,
.content-card h3,
.contact-card h3,
.page-section h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.03;
}

.section-heading h2,
.cta-band h2,
.page-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.grid {
    display: grid;
    gap: 1.15rem;
}

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

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

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

.info-card,
.service-card,
.content-card,
.contact-card,
.legal-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(20, 19, 15, 0.74);
    padding: 1.35rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.info-card p,
.service-card p,
.content-card p,
.contact-card p,
.legal-card p {
    color: var(--muted);
    margin: 0.8rem 0 0;
}

.info-card .label,
.service-card .label,
.content-card .label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
}

.cta-band {
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-band p {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

.page-hero {
    padding: 3.2rem 0 1.5rem;
}

.page-shell {
    display: grid;
    gap: 1.4rem;
}

.page-section {
    padding: 1rem 0 3rem;
}

.page-hero .page-shell {
    gap: 1rem;
}

.page-hero .eyebrow {
    margin-bottom: 0.3rem;
}

.page-hero .page-lead {
    margin: 0;
}

.service-card {
    min-height: 100%;
}

.service-index {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.2rem;
    align-items: start;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 162, 74, 0.36);
    background: linear-gradient(180deg, rgba(200, 162, 74, 0.18), rgba(200, 162, 74, 0.07));
    font-weight: 700;
    margin-top: 1rem;
}

.contact-link:hover {
    transform: translateY(-1px);
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.7rem;
}

.bullet-list li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--muted);
}

.bullet-list li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(200, 162, 74, 0.16);
    background: rgba(8, 8, 7, 0.85);
}

.footer-inner {
    padding: 2rem 0 2.4rem;
    display: grid;
    gap: 1.2rem;
}

.brand--footer {
    align-items: flex-start;
}

.footer-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
}

.footer-nav a:hover {
    color: var(--text);
}

.footer-legal {
    margin: 0;
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.5;
}

.company-info {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.company-info p {
    margin: 0;
    color: var(--muted);
}

.legal-card {
    margin-top: 1.15rem;
}

.legal-card h3 {
    margin-top: 0;
}

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

.contact-box {
    display: grid;
    gap: 0.9rem;
}

.contact-email {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.muted {
    color: var(--muted);
}

.page-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.26), transparent);
    margin: 1.8rem 0;
}

.stack {
    display: grid;
    gap: 1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.pill {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 162, 74, 0.18);
    color: var(--muted);
    font-size: 0.84rem;
    background: rgba(255, 255, 255, 0.02);
}

.page-hero--split {
    padding-bottom: 2.5rem;
}

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

@media (max-width: 980px) {
    .hero-grid,
    .contact-panel,
    .grid--4,
    .grid--3 {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-panel {
        min-height: 440px;
    }
}

@media (max-width: 860px) {
    .brand-copy {
        display: none;
    }

    .site-nav {
        gap: 0.75rem;
    }
}

@media (max-width: 760px) {
    .header-inner {
        position: relative;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(11, 11, 9, 0.96);
        box-shadow: var(--shadow);
    }

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

    .nav-link,
    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero,
    .section,
    .page-hero {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-grid,
    .contact-panel,
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero h1,
    .page-heading {
        font-size: clamp(2.4rem, 12vw, 4.5rem);
    }

    .hero-panel {
        min-height: 340px;
    }

    .footer-nav {
        gap: 0.7rem 1rem;
    }
}

@media (max-width: 520px) {
    .brand-tagline {
        display: none;
    }

    .button {
        width: 100%;
    }

    .hero-actions,
    .section-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-panel__card {
        inset: auto 0.8rem 0.8rem 0.8rem;
    }

    .nav-link--login {
        width: 100%;
    }
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 42rem;
}

.hero-visual {
    position: relative;
    min-height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.5rem, 2vw, 1.5rem);
}

.visual-shell {
    position: relative;
    width: min(100%, 31rem);
    aspect-ratio: 1 / 1.03;
    isolation: isolate;
}

.visual-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.visual-glow--a {
    inset: 10% 12% auto auto;
    width: 13rem;
    height: 13rem;
    background: radial-gradient(circle, rgba(200, 162, 74, 0.38) 0%, rgba(200, 162, 74, 0.08) 36%, rgba(200, 162, 74, 0) 72%);
}

.visual-glow--b {
    inset: auto auto 14% 10%;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, rgba(200, 162, 74, 0.22) 0%, rgba(200, 162, 74, 0.06) 45%, rgba(200, 162, 74, 0) 74%);
}

.visual-grid {
    position: absolute;
    inset: 0;
    border-radius: 1.75rem;
    background:
        linear-gradient(rgba(200, 162, 74, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 162, 74, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 40%, rgba(200, 162, 74, 0.08), transparent 42%);
    background-size: 2.15rem 2.15rem, 2.15rem 2.15rem, 100% 100%;
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.1) 88%);
}

.visual-panel {
    position: absolute;
    border: 1px solid rgba(200, 162, 74, 0.22);
    border-radius: 1.35rem;
    background:
        linear-gradient(145deg, rgba(21, 19, 15, 0.96), rgba(10, 10, 8, 0.88)),
        linear-gradient(180deg, rgba(200, 162, 74, 0.08), rgba(200, 162, 74, 0));
    box-shadow:
        0 0 0 1px rgba(200, 162, 74, 0.05) inset,
        0 22px 40px rgba(0, 0, 0, 0.46),
        0 0 40px rgba(200, 162, 74, 0.08);
}

.visual-panel::before,
.visual-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.visual-panel::before {
    background:
        linear-gradient(rgba(200, 162, 74, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 162, 74, 0.08) 1px, transparent 1px);
    background-size: 1.35rem 1.35rem;
    opacity: 0.28;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

.visual-panel::after {
    border: 1px solid rgba(200, 162, 74, 0.08);
    inset: 0.5rem;
}

.visual-panel--back {
    inset: 9% 7% 15% 17%;
    transform: rotate(-9deg);
    opacity: 0.55;
}

.visual-panel--mid {
    inset: 21% 23% 11% 9%;
    transform: rotate(6deg);
    opacity: 0.85;
}

.visual-panel--front {
    inset: 13.5% 11.5% 12.5% 12.5%;
    overflow: hidden;
}

.visual-panel__frame,
.visual-panel__line,
.visual-node,
.visual-axis,
.visual-tag {
    position: absolute;
}

.visual-panel__frame {
    inset: 1.05rem;
    border: 1px solid rgba(200, 162, 74, 0.24);
    border-radius: 1rem;
}

.visual-panel__frame--inner {
    inset: 2.35rem 1.55rem 4.1rem;
    border-color: rgba(200, 162, 74, 0.15);
    background:
        linear-gradient(to right, transparent 49.5%, rgba(200, 162, 74, 0.12) 50%, transparent 50.5%),
        linear-gradient(to bottom, transparent 49.5%, rgba(200, 162, 74, 0.12) 50%, transparent 50.5%);
    background-size: 100% 100%, 100% 100%;
    opacity: 0.55;
}

.visual-panel__line {
    background: linear-gradient(90deg, rgba(200, 162, 74, 0), rgba(200, 162, 74, 0.92), rgba(200, 162, 74, 0));
    box-shadow: 0 0 12px rgba(200, 162, 74, 0.32);
}

.visual-panel__line--h {
    left: 16%;
    right: 16%;
    top: 50%;
    height: 1px;
}

.visual-panel__line--v {
    top: 16%;
    bottom: 16%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(200, 162, 74, 0), rgba(200, 162, 74, 0.92), rgba(200, 162, 74, 0));
}

.visual-node {
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: #c8a24a;
    box-shadow:
        0 0 0 0.34rem rgba(200, 162, 74, 0.11),
        0 0 1rem rgba(200, 162, 74, 0.42);
}

.visual-node--one { left: 23%; top: 23%; }
.visual-node--two { right: 22%; top: 23%; }
.visual-node--three { left: 23%; bottom: 23%; }
.visual-node--four { right: 22%; bottom: 23%; }

.visual-axis {
    border-top: 1px solid rgba(200, 162, 74, 0.18);
    border-right: 1px solid rgba(200, 162, 74, 0.18);
    opacity: 0.9;
}

.visual-axis--one {
    width: 22%;
    height: 17%;
    right: 11%;
    top: 19%;
    border-radius: 0 1rem 0 0;
}

.visual-axis--two {
    width: 17%;
    height: 21%;
    left: 13%;
    bottom: 16%;
    border-radius: 0 0 0 1rem;
    transform: rotate(180deg);
}

.visual-tag {
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 162, 74, 0.32);
    background: rgba(10, 10, 8, 0.76);
    color: #f6f1e7;
    font-size: 0.64rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    z-index: 3;
}

.visual-tag--top-left { top: 1.2rem; left: 1.2rem; }

.visual-tag--top-right { top: 1.2rem; right: 1.2rem; }

.visual-tag--bottom-left { left: 1.2rem; bottom: 1.2rem; }

.visual-tag--bottom-right { right: 1.2rem; bottom: 1.2rem; }



@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 24rem;
        justify-content: center;
    }

    .visual-shell {
        width: min(100%, 31rem);
    }
}

@media (max-width: 640px) {
    .hero {
        padding-bottom: 2rem;
    }

    .hero-visual {
        min-height: 18.5rem;
        padding-inline: 0;
    }

    .visual-shell {
        width: min(100%, 24.5rem);
        aspect-ratio: 1 / 0.98;
    }

    .visual-glow--a,
    .visual-glow--b,
    .visual-panel--back,
    .visual-panel--mid,
    .visual-axis {
        display: none;
    }

    .visual-panel--front {
        inset: 11% 7% 10% 7%;
    }

    .visual-panel__frame {
        inset: 0.85rem;
    }

    .visual-panel__frame--inner {
        inset: 2rem 1.15rem 3.55rem;
    }

    .visual-tag {
        font-size: 0.58rem;
        letter-spacing: 0.22em;
        padding: 0.34rem 0.62rem;
    }

    .visual-tag--top-left { top: 0.85rem; left: 0.85rem; }
    .visual-tag--top-right { top: 0.85rem; right: 0.85rem; }
    .visual-tag--bottom-left { left: 0.85rem; bottom: 0.85rem; }
    .visual-tag--bottom-right { right: 0.85rem; bottom: 0.85rem; }

    .visual-node {
        width: 0.54rem;
        height: 0.54rem;
    }

    .visual-node--one { left: 24%; top: 24%; }
    .visual-node--two { right: 24%; top: 24%; }
    .visual-node--three { left: 24%; bottom: 24%; }
    .visual-node--four { right: 24%; bottom: 24%; }
}
