
/* =========================================================================
   CUDDYBUILT v2 // design system tokens
   ========================================================================= */
:root {
    --shop-000: #07090a;
    --shop-050: #0d1012;
    --shop-100: #14181b;
    --shop-200: #1c2126;
    --shop-300: #262d33;
    --shop-400: #3a434b;
    --shop-500: #5a6670;
    --shop-600: #8a949c;
    --shop-700: #b8c0c6;
    --shop-800: #e0e4e7;
    --shop-900: #f5f7f8;

    --signal: #ff9d2e;
    --signal-bright: #ffb35c;
    --signal-deep: #d97706;
    --signal-dim: rgba(255, 157, 46, 0.18);

    --current: #5ed3f4;
    --current-deep: #0891b2;

    --live: #4ade80;
    --live-dim: rgba(74, 222, 128, 0.18);

    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    --font-display: 'Fraunces', Georgia, serif;

    --gap-x: clamp(1.25rem, 2vw, 2rem);
    --rule: 1px;
    --max-w: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--signal); color: var(--shop-000); }

html {
    background: var(--shop-000);
    color: var(--shop-800);
    font-family: var(--font-mono);
    font-size: clamp(13px, 0.85vw + 10px, 15px);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(255,255,255,0.012) 119px, rgba(255,255,255,0.012) 120px),
        repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px),
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 157, 46, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 80%, rgba(94, 211, 244, 0.04) 0%, transparent 50%),
        var(--shop-000);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.4;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================================
   Top utility bar
   ========================================================================= */
.utility-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--shop-000);
    border-bottom: var(--rule) solid var(--shop-200);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--shop-500);
}

.utility-bar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.55rem var(--gap-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.utility-bar__group { display: flex; align-items: center; gap: 1.5rem; }
.utility-bar__group--right { font-variant-numeric: tabular-nums; }
.utility-bar__item { white-space: nowrap; display: inline-flex; align-items: center; gap: 0.45rem; }
.utility-bar__item span:first-child { color: var(--shop-400); }

@media (max-width: 720px) {
    .utility-bar__inner { font-size: 0.65rem; }
    .utility-bar__hide-mobile { display: none; }
    .utility-bar__group { gap: 0.9rem; }
}

/* =========================================================================
   Nav
   ========================================================================= */
.nav {
    position: sticky;
    top: 32px;
    z-index: 49;
    background: var(--shop-000);
    border-bottom: var(--rule) solid var(--shop-200);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1rem var(--gap-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--shop-900);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.logo__bracket {
    color: var(--signal);
    font-weight: 400;
}

.logo__cursor {
    display: inline-block;
    width: 0.55em;
    height: 1em;
    background: var(--signal);
    margin-left: 0.15em;
    animation: blink 1.06s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* =========================================================================
   Navigation - clean two-mode architecture.

   Architecture:
   - <nav> contains the desktop horizontal nav (.nav__desktop-links).
     Hidden on mobile.
   - <aside class="mdrawer"> is a body-level mobile-only drawer.
     Hidden on desktop. Slides in from right when triggered.

   No shared elements. No display:contents tricks. No flex containers
   doing double duty.
   ========================================================================= */

/* ----- DESKTOP NAV LINKS ----- */

.nav__desktop-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    margin: 0 0 0 auto;
    padding: 0;
    align-items: center;
}

.nav__desktop-links > li {
    position: relative;
}

.nav__desktop-links a {
    color: var(--shop-700);
    transition: color 0.15s ease;
    position: relative;
    padding: 0.25rem 0;
    text-decoration: none;
}

.nav__desktop-links a:hover { color: var(--signal); }

.nav__desktop-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav__desktop-links a:hover::after { transform: scaleX(1); }

/* Dropdown trigger button - styled like a link */
.nav__desktop-links .nav__dropdown-trigger {
    background: transparent;
    border: none;
    padding: 0.25rem 0;
    color: var(--shop-700);
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.15s ease;
}

.nav__desktop-links .nav__dropdown-trigger:hover { color: var(--signal); }

.nav__desktop-links .nav__chevron {
    transition: transform 0.18s ease;
}

.nav__desktop-links .nav__has-dropdown:hover .nav__chevron,
.nav__desktop-links .nav__has-dropdown:focus-within .nav__chevron {
    transform: rotate(180deg);
}

/* Dropdown panel - shown on hover/focus */
.nav__desktop-links .nav__dropdown {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 0;
    min-width: 320px;
    background: var(--shop-050);
    border: 1px solid var(--shop-300);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 100;
}

.nav__desktop-links .nav__has-dropdown:hover .nav__dropdown,
.nav__desktop-links .nav__has-dropdown:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav__desktop-links .nav__dropdown-label {
    display: block;
    padding: 0 1.25rem 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed var(--shop-300);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav__desktop-links .nav__dropdown a {
    display: block;
    padding: 0.7rem 1.25rem;
    color: var(--shop-800);
    transition: background 0.15s ease, color 0.15s ease;
}

.nav__desktop-links .nav__dropdown a::after { display: none; }

.nav__desktop-links .nav__dropdown a:hover {
    background: var(--shop-100);
    color: var(--signal);
}

.nav__desktop-links .nav__dropdown-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav__desktop-links .nav__dropdown-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--shop-500);
    margin-top: 0.18rem;
}

/* Hide desktop nav on mobile */
@media (max-width: 880px) {
    .nav__desktop-links { display: none !important; }
}

/* ----- HAMBURGER TOGGLE ----- */

.nav__toggle {
    display: none !important;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--shop-300);
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    color: var(--shop-700);
    transition: border-color 0.15s ease, color 0.15s ease;
}

.nav__toggle:hover,
.nav__toggle:active {
    border-color: var(--signal);
    color: var(--signal);
}

.nav__toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
}

@media (max-width: 880px) {
    .nav__toggle { display: flex !important; }
}

/* ----- DESKTOP CTA ----- */

.nav__cta {
    padding: 0.55rem 1.1rem;
    background: var(--signal);
    color: var(--shop-000);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
    text-transform: uppercase;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav__cta:hover {
    background: var(--signal-bright);
    box-shadow: 0 0 24px var(--signal-dim);
    color: var(--shop-000);
}

@media (max-width: 880px) {
    .nav__cta { display: none !important; }
}

/* ----- MOBILE DRAWER ----- */

/* Hidden entirely on desktop */
.mdrawer,
.mdrawer__backdrop {
    display: none !important;
}

@media (max-width: 880px) {
    /* Backdrop */
    .mdrawer__backdrop {
        display: block !important;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 80;
    }

    body.menu-open .mdrawer__backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* The drawer itself */
    .mdrawer {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(420px, 88vw);
        height: 100vh;
        background: var(--shop-050);
        border-left: 1px solid var(--shop-300);
        box-shadow: -10px 0 40px -10px rgba(0, 0, 0, 0.5);
        z-index: 90;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    body.menu-open .mdrawer {
        transform: translateX(0);
    }

    /* Drawer header - sticky inside drawer */
    .mdrawer__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--shop-300);
        background: var(--shop-100);
        flex-shrink: 0;
    }

    .mdrawer__label {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        color: var(--shop-500);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mdrawer__label::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--live);
    }

    /* X close button */
    .mdrawer__close {
        display: flex;
        appearance: none;
        background: transparent;
        border: 1px solid var(--shop-300);
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--shop-700);
        transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
        position: relative;
        flex-shrink: 0;
        padding: 0;
    }

    .mdrawer__close:hover,
    .mdrawer__close:active {
        border-color: var(--signal);
        color: var(--signal);
        background: var(--signal-dim);
    }

    .mdrawer__close::before,
    .mdrawer__close::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 1.5px;
        background: currentColor;
        top: 50%;
        left: 50%;
    }

    .mdrawer__close::before { transform: translate(-50%, -50%) rotate(45deg); }
    .mdrawer__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

    /* Drawer nav links */
    .mdrawer__nav {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        min-height: 0;
        padding: 0.5rem 0;
    }

    .mdrawer__link {
        display: block;
        padding: 1rem 1.5rem;
        font-family: var(--font-mono);
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--shop-800);
        border-bottom: 1px solid var(--shop-200);
        transition: color 0.15s ease, background 0.15s ease, padding-left 0.18s ease;
        text-decoration: none;
    }

    .mdrawer__link:hover,
    .mdrawer__link:active {
        color: var(--signal);
        background: var(--shop-100);
        padding-left: 1.85rem;
    }

    .mdrawer__link--sub {
        background: var(--shop-100);
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--shop-700);
    }

    .mdrawer__link-desc {
        display: block;
        font-size: 0.75rem;
        color: var(--shop-500);
        margin-top: 0.2rem;
        font-weight: 400;
    }

    .mdrawer__group-label {
        padding: 1.25rem 1.5rem 0.6rem;
        font-family: var(--font-mono);
        font-size: 0.65rem;
        color: var(--shop-500);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        background: var(--shop-100);
        border-top: 1px solid var(--shop-300);
        border-bottom: 1px solid var(--shop-200);
    }

    /* Collapsible groups (native <details>) */
    .mdrawer__group {
        border-bottom: 1px solid var(--shop-200);
    }

    .mdrawer__group[open] {
        background: var(--shop-100);
    }

    .mdrawer__group-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        font-family: var(--font-mono);
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--shop-800);
        cursor: pointer;
        list-style: none;
        user-select: none;
        transition: color 0.15s ease, background 0.15s ease;
    }

    /* Hide default disclosure marker */
    .mdrawer__group-summary::-webkit-details-marker {
        display: none;
    }
    .mdrawer__group-summary::marker {
        display: none;
        content: '';
    }

    .mdrawer__group-summary:hover,
    .mdrawer__group-summary:active {
        color: var(--signal);
        background: var(--shop-100);
    }

    .mdrawer__group[open] .mdrawer__group-summary {
        color: var(--signal);
        border-bottom: 1px solid var(--shop-200);
    }

    .mdrawer__group-chevron {
        flex-shrink: 0;
        transition: transform 0.2s ease;
        color: var(--shop-500);
    }

    .mdrawer__group[open] .mdrawer__group-chevron {
        transform: rotate(180deg);
        color: var(--signal);
    }

    .mdrawer__group-body {
        background: var(--shop-100);
    }

    /* Override sub link border - the group already has bottom border */
    .mdrawer__group-body .mdrawer__link--sub:last-child {
        border-bottom: none;
    }

    /* Drawer footer */
    .mdrawer__footer {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid var(--shop-300);
        background: var(--shop-100);
        gap: 0.85rem;
        flex-shrink: 0;
    }

    .mdrawer__contact {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 0.75rem;
        align-items: baseline;
        font-size: 0.85rem;
    }

    .mdrawer__contact-label {
        font-family: var(--font-mono);
        font-size: 0.65rem;
        color: var(--shop-500);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .mdrawer__contact a {
        color: var(--shop-800);
        font-family: var(--font-mono);
        text-decoration: none;
        transition: color 0.15s ease;
    }

    .mdrawer__contact a:hover,
    .mdrawer__contact a:active {
        color: var(--signal);
    }

    .mdrawer__cta {
        margin-top: 0.5rem;
        padding: 0.95rem 1.25rem;
        background: var(--signal);
        color: var(--shop-000);
        font-family: var(--font-mono);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        transition: background 0.18s ease, box-shadow 0.18s ease;
    }

    .mdrawer__cta:hover,
    .mdrawer__cta:active {
        background: var(--signal-bright);
        color: var(--shop-000);
        box-shadow: 0 0 24px var(--signal-dim);
    }

    .mdrawer__meta {
        display: flex;
        justify-content: space-between;
        font-family: var(--font-mono);
        font-size: 0.65rem;
        color: var(--shop-500);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-top: 0.5rem;
        padding-top: 0.85rem;
        border-top: 1px dashed var(--shop-300);
    }

    /* Lock body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }
}


/* =========================================================================
   Hero - editorial layout. Massive H1 dominates the top, supporting
   content + info card share a row below.
   ========================================================================= */
.hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 5rem) var(--gap-x) clamp(4rem, 7vw, 6rem);
    position: relative;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3.5vw, 3.5rem);
    min-height: clamp(560px, 75vh, 800px);
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--shop-500);
    animation: fade-in 0.8s ease 0.1s backwards;
}

.hero__meta-line {
    flex: 0 0 60px;
    height: 1px;
    background: var(--signal);
}

.hero__h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 12vw, 11rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--shop-900);
    font-variation-settings: 'opsz' 144;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__h1-line {
    display: block;
    animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.hero__h1-line:nth-child(1) { animation-delay: 0.15s; }
.hero__h1-line:nth-child(2) { animation-delay: 0.3s; }

.hero__h1-accent {
    color: var(--signal);
    font-style: italic;
    font-weight: 300;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: end;
}

.hero__col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 50ch;
}

.hero__lead {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.65;
    color: var(--shop-700);
    animation: fade-in 1s ease 0.6s backwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    animation: fade-in 1s ease 0.75s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.6rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.btn--primary { background: var(--signal); color: var(--shop-000); }
.btn--primary:hover { background: var(--signal-bright); box-shadow: 0 0 32px var(--signal-dim); transform: translateY(-1px); }

.btn--secondary { background: transparent; color: var(--shop-800); border: var(--rule) solid var(--shop-400); }
.btn--secondary:hover { border-color: var(--signal); color: var(--signal); }

.btn__arrow { transition: transform 0.18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

@media (max-width: 1000px) {
    .hero__row { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__col { max-width: 100%; }
}

@media (max-width: 560px) {
    .hero__inner { min-height: auto; gap: 1.75rem; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; padding: 1rem 1.2rem; }
}

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

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero info card on the right - workshop instrument panel feel */
.hero__card {
    position: relative;
    border: var(--rule) solid var(--shop-300);
    background:
        linear-gradient(135deg, var(--shop-050) 0%, var(--shop-100) 100%);
    padding: 1.75rem;
    animation: fade-in 1s ease 0.8s backwards;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .hero__card { max-width: 600px; }
}

@media (max-width: 560px) {
    .hero__card { padding: 1.25rem; }
}

/* Subtle scanning glow */
.hero__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 157, 46, 0.04) 50%,
        transparent 100%);
    background-size: 100% 200%;
    animation: card-scan 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes card-scan {
    0%, 100% { background-position: 0 -100%; opacity: 0; }
    50% { background-position: 0 100%; opacity: 1; }
}

/* Bracket corners on the card */
.hero__card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    z-index: 2;
    pointer-events: none;
}
.hero__card-corner--tl { top: -1px; left: -1px; border-top: 2px solid var(--signal); border-left: 2px solid var(--signal); }
.hero__card-corner--tr { top: -1px; right: -1px; border-top: 2px solid var(--signal); border-right: 2px solid var(--signal); }
.hero__card-corner--bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--signal); border-left: 2px solid var(--signal); }
.hero__card-corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--signal); border-right: 2px solid var(--signal); }

.hero__card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--shop-500);
    position: relative;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero__card-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--shop-000);
    background: var(--signal);
    padding: 0.25rem 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero__card-pulse {
    width: 6px;
    height: 6px;
    background: var(--shop-000);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero__card-clock {
    color: var(--shop-600);
    font-variant-numeric: tabular-nums;
}

.hero__card-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    padding: 0.7rem 0;
    font-size: 0.78rem;
    color: var(--shop-700);
    line-height: 1.55;
    position: relative;
}

.hero__card-row + .hero__card-row {
    border-top: var(--rule) solid var(--shop-200);
}

.hero__card-row span:first-child {
    color: var(--shop-500);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 0.2rem;
}

.hero__card-row strong {
    color: var(--signal);
    font-weight: 500;
    background: var(--signal-dim);
    padding: 0 0.3em;
}

@media (max-width: 480px) {
    .hero__card-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}

/* Stack chips */
.hero__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.hero__card-tags em {
    font-style: normal;
    font-size: 0.68rem;
    padding: 0.15rem 0.45rem;
    background: var(--shop-200);
    border: 1px solid var(--shop-300);
    color: var(--shop-700);
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    animation: chip-flicker 4.5s ease-in-out infinite;
}

.hero__card-tags em:nth-child(1) { animation-delay: 0s; }
.hero__card-tags em:nth-child(2) { animation-delay: 0.4s; }
.hero__card-tags em:nth-child(3) { animation-delay: 0.8s; }
.hero__card-tags em:nth-child(4) { animation-delay: 1.2s; }
.hero__card-tags em:nth-child(5) { animation-delay: 1.6s; }
.hero__card-tags em:nth-child(6) { animation-delay: 2.0s; }
.hero__card-tags em:nth-child(7) { animation-delay: 2.4s; }
.hero__card-tags em:nth-child(8) { animation-delay: 2.8s; }

/* The "+ more" chip styled distinctly */
.hero__card-tags-more {
    background: transparent !important;
    border-color: var(--signal) !important;
    color: var(--signal) !important;
    border-style: dashed !important;
    animation: none !important;
}

@keyframes chip-flicker {
    0%, 90%, 100% { border-color: var(--shop-300); color: var(--shop-700); }
    93% { border-color: var(--signal); color: var(--signal); }
}

.hero__card-foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: var(--rule) dashed var(--shop-300);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--shop-500);
}

.hero__card-bar {
    flex: 1;
    height: 4px;
    background: var(--shop-200);
    overflow: hidden;
    position: relative;
}

.hero__card-bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--signal) 50%,
        transparent 100%);
    width: 30%;
    animation: bar-sweep 3s linear infinite;
}

@keyframes bar-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.hero__card-foot-label {
    color: var(--signal);
}

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

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

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================================================
   Section header pattern
   ========================================================================= */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(4rem, 7vw, 7rem) var(--gap-x);
    position: relative;
}

.section__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    border-bottom: var(--rule) solid var(--signal);
    padding-bottom: 1.5rem;
}

.section__label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--shop-500);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section__label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--signal);
}

.section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--shop-900);
    font-variation-settings: 'opsz' 144;
}

.section__sub {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--shop-600);
    max-width: 60ch;
    line-height: 1.6;
}

.section__index {
    font-size: 0.72rem;
    color: var(--shop-500);
    letter-spacing: 0.08em;
    text-align: right;
    line-height: 1.7;
    white-space: nowrap;
}

.section__index strong {
    display: block;
    color: var(--shop-700);
    font-weight: 500;
}

@media (max-width: 720px) {
    .section__head { grid-template-columns: 1fr; }
    .section__index { text-align: left; }
}

/* =========================================================================
   Trust strip
   ========================================================================= */
.trust-strip {
    border-top: var(--rule) solid var(--shop-200);
    border-bottom: var(--rule) solid var(--shop-200);
    background: var(--shop-050);
    overflow: hidden;
}

.trust-strip__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2.5rem var(--gap-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-right: 1.5rem;
    border-right: var(--rule) solid var(--shop-200);
}

.trust-stat:last-child { border-right: none; }

.trust-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1;
    color: var(--signal);
    letter-spacing: -0.03em;
    font-variation-settings: 'opsz' 144;
}

.trust-stat__num span {
    color: var(--shop-700);
    font-size: 0.5em;
    margin-left: 0.1em;
    font-weight: 400;
}

.trust-stat__label {
    font-size: 0.72rem;
    color: var(--shop-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-stat__detail {
    font-size: 0.78rem;
    color: var(--shop-700);
    margin-top: 0.4rem;
    line-height: 1.5;
}

@media (max-width: 880px) {
    .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
    .trust-stat { padding-right: 0.75rem; }
    .trust-stat:nth-child(2n) { border-right: none; }
    .trust-stat:nth-child(1), .trust-stat:nth-child(2) {
        border-bottom: var(--rule) solid var(--shop-200);
        padding-bottom: 1.5rem;
    }
}

/* =========================================================================
   Services grid
   ========================================================================= */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rule);
    background: var(--shop-200);
    border: var(--rule) solid var(--shop-200);
}

.service {
    background: var(--shop-050);
    padding: 2rem 1.75rem;
    position: relative;
    transition: background 0.25s ease;
    cursor: pointer;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

a.service:hover { color: inherit; }
a.service:hover .service__title { color: var(--signal); }

@media (max-width: 580px) {
    .service { padding: 1.5rem 1.25rem; min-height: 200px; }
    .service__num { font-size: 0.65rem; }
    .service__icon { width: 30px; height: 30px; margin-bottom: 1rem; }
    .service__title { font-size: 1.3rem; }
    .service__desc { font-size: 0.8rem; }
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service:hover { background: var(--shop-100); }
.service:hover::before { transform: scaleX(1); }

.service__num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.1em;
}

.service__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.25rem;
    color: var(--signal);
    transition: transform 0.3s ease;
}

.service:hover .service__icon { transform: scale(1.1) rotate(-5deg); }

.service__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    font-variation-settings: 'opsz' 144;
    letter-spacing: -0.02em;
}

.service__desc {
    font-size: 0.85rem;
    color: var(--shop-600);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.service__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--shop-500);
    text-transform: uppercase;
}

.service__tags span {
    padding: 0.2rem 0.5rem;
    background: var(--shop-100);
    border: 1px solid var(--shop-300);
}

.service:hover .service__tags span { border-color: var(--shop-400); color: var(--shop-700); }

@media (max-width: 980px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services { grid-template-columns: 1fr; } }

/* =========================================================================
   Approach
   ========================================================================= */
.approach {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.approach__pull {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.2;
    color: var(--shop-900);
    font-weight: 400;
    letter-spacing: -0.015em;
    font-variation-settings: 'opsz' 144;
    position: sticky;
    top: 120px;
}

.approach__pull em {
    font-style: italic;
    color: var(--signal);
    font-weight: 300;
}

.approach__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--shop-700);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 60ch;
}

.approach__body p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 4em;
    float: left;
    line-height: 0.85;
    margin: 0.05em 0.1em 0 0;
    color: var(--signal);
    font-weight: 300;
    font-style: italic;
}

.approach__note {
    color: var(--shop-500);
    font-size: 0.92em;
    padding-top: 1rem;
    border-top: 1px solid var(--shop-200);
    margin-top: 0.5rem;
}

.approach__note strong {
    color: var(--shop-700);
    display: block;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

@media (max-width: 880px) {
    .approach { grid-template-columns: 1fr; }
    .approach__pull { position: relative; top: auto; }
}

@media (max-width: 480px) {
    .approach__body p:first-child::first-letter {
        font-size: 3em;
        margin: 0 0.08em 0 0;
    }
}

/* =========================================================================
   Site cards (universal base for owned, rented, inmate, client)
   Type-led brand plates. Visual on top, solid description bar on bottom.
   ========================================================================= */
.site-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

@media (max-width: 540px) {
    .site-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

.site {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--shop-300);
    background: var(--shop-100);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Rental cards (homepage rentals section) have more content - drop fixed ratio,
   let them grow naturally based on overlay content. */
#rentals .site {
    aspect-ratio: auto;
    min-height: 460px;
}

#rentals .site .site__visual {
    min-height: 220px;
    flex: 1 1 220px;
}

.site:hover {
    border-color: var(--signal);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px -8px rgba(255, 157, 46, 0.18);
}

/* Visual area: top portion of card, takes available space */
.site__visual {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site__visual-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.035em;
    font-variation-settings: 'opsz' 144;
    color: var(--shop-900);
    pointer-events: none;
}

/* Description bar: solid block at the bottom, separated by border */
.site__overlay {
    flex-shrink: 0;
    background: var(--shop-100);
    border-top: 1px solid var(--shop-300);
    padding: 0.7rem 0.95rem 0.85rem;
    position: relative;
    z-index: 4;
}

.site__name {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--shop-900);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.18rem;
}

.site__desc {
    font-size: 0.68rem;
    color: var(--shop-600);
    line-height: 1.45;
}

.site__status {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 5;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.5rem;
    background: rgba(7,9,10,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--shop-300);
    color: var(--shop-600);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
}

.site__status::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: currentColor;
}

.site__status--owned { color: var(--signal); border-color: rgba(255,157,46,0.4); }
.site__status--rented { color: var(--shop-600); }
.site__status--available { color: var(--live); border-color: rgba(74,222,128,0.4); }
.site__status--available::before { animation: pulse-dot 2s ease-in-out infinite; }
.site__status--client { color: var(--current); border-color: rgba(94,211,244,0.35); }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============ Per-site visual treatments ============ */
/* Approach: typography-led brand plates. Each site shows its name as the hero,
   with subtle niche-flavored texture as background. No icon-illustration. */

/* PerkHit - loyalty rewards. Warm coffee tones, italic display name. */
.site--perkhit .site__visual {
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 200, 130, 0.12) 0 80px, transparent 100px),
        radial-gradient(circle 2.5px at 18px 18px, rgba(255, 200, 130, 0.18) 99%, transparent 100%) 0 0 / 36px 36px,
        linear-gradient(135deg, #2a1810 0%, #43251a 100%);
}
.site--perkhit .site__visual-text {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 500;
    color: #fff5e6;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* QRBars - QR codes + business cards. Dark + amber finder square accent. */
.site--qrbars .site__visual {
    background:
        radial-gradient(circle 2px at 12px 12px, rgba(255, 157, 46, 0.08) 99%, transparent 100%) 0 0 / 24px 24px,
        var(--shop-100);
}
.site--qrbars::before {
    content: '';
    position: absolute;
    top: 14px; left: 14px;
    width: 32px; height: 32px;
    background: var(--signal);
    box-shadow:
        inset 0 0 0 6px var(--shop-100),
        inset 0 0 0 11px var(--signal);
    z-index: 2;
}
.site--qrbars::after {
    content: '';
    position: absolute;
    bottom: 14px; right: 14px;
    width: 18px; height: 18px;
    background: var(--signal);
    box-shadow:
        inset 0 0 0 3px var(--shop-100),
        inset 0 0 0 6px var(--signal);
    z-index: 2;
    opacity: 0.5;
}
.site--qrbars .site__visual-text {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--shop-900);
    letter-spacing: -0.03em;
    z-index: 3;
}

/* WestSide3D - 3D printing. Electric green + purple cyberpunk aesthetic. */
.site--westside3d .site__visual {
    background:
        /* Subtle layer-line texture in green */
        repeating-linear-gradient(0deg,
            rgba(74, 222, 128, 0.04) 0 1px,
            transparent 1px 6px),
        /* Purple glow at bottom */
        radial-gradient(ellipse 90% 45% at 50% 85%, rgba(168, 85, 247, 0.22) 0%, transparent 70%),
        /* Green glow at top */
        radial-gradient(ellipse 90% 45% at 50% 15%, rgba(74, 222, 128, 0.16) 0%, transparent 70%),
        /* Deep purple-black base */
        linear-gradient(180deg, #0a0612 0%, #060309 50%, #0a0612 100%);
}
/* Electric green print-head laser line */
.site--westside3d::before {
    content: '';
    position: absolute;
    top: 26%;
    left: 0; right: 0;
    height: 1.5px;
    background: #4ade80;
    box-shadow:
        0 0 14px #4ade80,
        0 0 28px rgba(74, 222, 128, 0.5);
    opacity: 0.85;
    z-index: 2;
}
/* Purple electric line near bottom */
.site--westside3d::after {
    content: '';
    position: absolute;
    bottom: 24%;
    left: 0; right: 0;
    height: 1px;
    background: #c084fc;
    box-shadow:
        0 0 12px #a855f7,
        0 0 24px rgba(168, 85, 247, 0.5);
    opacity: 0.75;
    z-index: 2;
}
.site--westside3d .site__visual-text {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #f5f5fa;
    text-shadow:
        0 0 20px rgba(74, 222, 128, 0.45),
        0 0 40px rgba(168, 85, 247, 0.25);
    z-index: 3;
}

/* DankSpot - cannabis chat community. Deep green, italic. */
.site--dankspot .site__visual {
    background:
        repeating-linear-gradient(90deg,
            transparent 0 60px,
            rgba(74, 222, 128, 0.04) 60px 61px),
        radial-gradient(ellipse at 50% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #0a1a12 0%, #051008 100%);
}
.site--dankspot::before,
.site--dankspot::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.15);
    z-index: 2;
}
.site--dankspot::before { width: 8px; height: 8px; top: 25%; left: 18%; }
.site--dankspot::after { width: 5px; height: 5px; top: 22%; left: 22%; }
.site--dankspot .site__visual-text {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    color: rgba(140, 240, 170, 0.95);
    font-style: italic;
    font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* Bail bonds - shared treatment. Certificate/document feel with proper text breathing room.
   Inner amber frame, subtle radial vignette behind text, "Bail Bonds" subtitle below text. */
.site--bail .site__visual {
    background:
        /* Soft warm vignette behind the text */
        radial-gradient(ellipse 65% 38% at 50% 50%, rgba(255, 157, 46, 0.07) 0%, transparent 75%),
        /* Subtle horizontal document lines */
        repeating-linear-gradient(0deg,
            transparent 0 32px,
            rgba(255, 255, 255, 0.022) 32px 33px),
        /* Cross-hatch texture */
        repeating-linear-gradient(45deg,
            transparent 0 50px,
            rgba(255, 157, 46, 0.015) 50px 51px),
        /* Base warm dark gradient */
        linear-gradient(135deg, #14100a 0%, #211810 100%);
}
/* Certificate-style inner frame */
.site--bail::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px;
    right: 12px; bottom: 12px;
    border: 1px solid rgba(255, 157, 46, 0.22);
    z-index: 1;
    pointer-events: none;
}
.site--bail .site__visual-text {
    font-family: var(--font-mono);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    color: #f5e7cc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
    padding: 0 1.5rem;
    z-index: 2;
    text-shadow: 0 0 24px rgba(255, 157, 46, 0.3);
}
/* Bail Bonds subtitle below the county name, with decorative divider line */
.site--bail .site__visual-text::after {
    content: 'Bail Bonds';
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.4em;
    color: rgba(245, 231, 204, 0.55);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin: 0.95em auto 0;
    padding-top: 0.85em;
    border-top: 1.5px solid rgba(255, 157, 46, 0.7);
    width: fit-content;
    /* Second decorative line above via box-shadow */
    box-shadow: 0 -5px 0 -3.7px rgba(255, 157, 46, 0.7);
}

/* Inmate locator - shared. Dark, monospace, subtle search-grid feel. */
.site--inmate .site__visual {
    background:
        radial-gradient(circle 1.5px at 12px 12px, rgba(94, 211, 244, 0.12) 99%, transparent 100%) 0 0 / 24px 24px,
        linear-gradient(135deg, #0a1218 0%, #14181f 100%);
}
.site--inmate::before {
    content: '◀ LOCATE ▶';
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: rgba(94, 211, 244, 0.5);
    z-index: 2;
}
.site--inmate .site__visual-text {
    font-family: var(--font-mono);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--shop-900);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 2rem;
}

/* Oakdale DMV - vintage California license plate aesthetic. */
.site--oakdaledmv .site__visual {
    background:
        repeating-linear-gradient(0deg,
            transparent 0 40px,
            rgba(0,0,0,0.04) 40px 41px),
        linear-gradient(180deg, #f5e8c8 0%, #e8d4a0 100%);
}
.site--oakdaledmv::before {
    content: 'CALIFORNIA';
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    color: #8b1a1a;
    font-weight: 700;
    z-index: 2;
    font-variation-settings: 'opsz' 14;
}
.site--oakdaledmv::after {
    content: 'DMV';
    position: absolute;
    bottom: 12%;
    right: 14%;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: #8b1a1a;
    letter-spacing: 0.3em;
    z-index: 2;
}
.site--oakdaledmv .site__visual-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    color: #1a3a8b;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-variation-settings: 'opsz' 144;
}

/* SoccerDC - clean dark green pitch. */
.site--soccerdc .site__visual {
    background:
        radial-gradient(circle at 50% 50%, transparent 0 56px, rgba(255,255,255,0.18) 56px 57px, transparent 58px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0 3px, transparent 4px),
        repeating-linear-gradient(90deg,
            #1f3525 0 24px,
            #1a2d1f 24px 48px);
}
.site--soccerdc .site__visual-text {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: var(--shop-900);
    font-weight: 600;
}

/* Coming Soon - blueprint scaffolding. */
.site--soon .site__visual {
    background:
        repeating-linear-gradient(0deg,
            transparent 0 24px,
            rgba(255,157,46,0.08) 24px 25px),
        repeating-linear-gradient(90deg,
            transparent 0 24px,
            rgba(255,157,46,0.08) 24px 25px),
        linear-gradient(135deg, #14181b 0%, #0d1012 100%);
}
.site--soon::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px dashed rgba(255,157,46,0.4);
    z-index: 2;
}
.site--soon .site__visual-text {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--shop-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-style: italic;
    font-weight: 400;
    z-index: 3;
}
.site--soon-alt .site__visual {
    background:
        repeating-linear-gradient(0deg,
            transparent 0 24px,
            rgba(94,211,244,0.08) 24px 25px),
        repeating-linear-gradient(90deg,
            transparent 0 24px,
            rgba(94,211,244,0.08) 24px 25px),
        linear-gradient(135deg, #14181b 0%, #0d1012 100%);
}
.site--soon-alt::before {
    border-color: rgba(94,211,244,0.4);
}

.site__status--soon {
    color: var(--shop-500);
    border-color: var(--shop-400);
    border-style: dashed;
}

/* Warren's Masonry - brick wall, refined for legibility. */
.site--masonry .site__visual {
    background:
        linear-gradient(335deg, #6b3a1f 22px, transparent 23px),
        linear-gradient(155deg, #6b3a1f 22px, transparent 23px),
        linear-gradient(335deg, #6b3a1f 22px, transparent 23px),
        linear-gradient(155deg, #6b3a1f 22px, transparent 23px),
        #2a1810;
    background-size: 56px 56px;
    background-position: 0 0, 0 0, 28px 28px, 28px 28px;
}
.site--masonry .site__visual-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    color: #fff5e6;
    background: rgba(20, 12, 8, 0.92);
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255,200,130,0.3);
    line-height: 1;
    letter-spacing: -0.015em;
}

/* ImgTurn - rotating geometric. Three angled bars suggesting transformation. */
.site--imgturn .site__visual {
    background: linear-gradient(135deg, #14181b 0%, #1f2530 100%);
    overflow: hidden;
}
.site--imgturn::before,
.site--imgturn::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    z-index: 1;
    opacity: 0.5;
}
.site--imgturn::before {
    background: var(--current);
    top: 30%;
    left: -50px;
    transform: rotate(-15deg);
}
.site--imgturn::after {
    background: var(--signal);
    bottom: 30%;
    right: -50px;
    transform: rotate(-15deg);
}
.site--imgturn .site__visual-text {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--shop-900);
    transform: rotate(-3deg);
    z-index: 3;
}

/* New Creation Graphics - print shop with an ethereal cream/light feel.
   Soft radiating light rays from above, warm halo glow behind text. */
.site--newcreation .site__visual {
    background:
        /* Diagonal light rays - left side */
        repeating-linear-gradient(105deg,
            transparent 0 32px,
            rgba(255, 220, 150, 0.16) 32px 34px,
            transparent 34px 64px),
        /* Diagonal light rays - right side */
        repeating-linear-gradient(75deg,
            transparent 0 32px,
            rgba(255, 220, 150, 0.16) 32px 34px,
            transparent 34px 64px),
        /* Center halo glow behind text */
        radial-gradient(ellipse 55% 35% at 50% 55%, rgba(255, 230, 180, 0.5) 0%, transparent 75%),
        /* Soft golden top wash */
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 240, 200, 0.6) 0%, transparent 65%),
        /* Cream paper base with warm gradient */
        linear-gradient(180deg, #fff5dc 0%, #f0d8a0 100%);
    overflow: hidden;
}
/* CMYK color marks - prominent in corners */
.site--newcreation::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px;
    width: 14px; height: 14px;
    box-shadow:
        20px 0 0 0 #ec008c,
        40px 0 0 0 #fff200,
        60px 0 0 0 #1a1a1a;
    background: #00aeef;
    z-index: 3;
}
/* Registration crosshair in another corner */
.site--newcreation::after {
    content: '';
    position: absolute;
    bottom: 14px; right: 14px;
    width: 18px; height: 18px;
    background:
        linear-gradient(0deg, transparent 49%, #1a1a1a 49% 51%, transparent 51% 100%),
        linear-gradient(90deg, transparent 49%, #1a1a1a 49% 51%, transparent 51% 100%);
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    z-index: 3;
}
.site--newcreation .site__visual-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    color: #2a1810;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-shadow: 0 0 24px rgba(255, 240, 200, 0.8);
    z-index: 2;
}

/* Soul Patch Tattoo - bold flash style. Black with thin amber frame accent. */
.site--soulpatch .site__visual {
    background:
        radial-gradient(ellipse at 50% 60%, rgba(255,157,46,0.06) 0%, transparent 60%),
        repeating-linear-gradient(45deg,
            transparent 0 22px,
            rgba(255,255,255,0.015) 22px 23px),
        #050607;
}
.site--soulpatch::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    right: 16px; bottom: 16px;
    border: 1px solid var(--signal);
    z-index: 2;
    opacity: 0.4;
}
.site--soulpatch::after {
    content: '';
    position: absolute;
    top: 22px; left: 22px;
    right: 22px; bottom: 22px;
    border: 1px solid var(--signal);
    z-index: 2;
    opacity: 0.2;
}
.site--soulpatch .site__visual-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: #f5f5f0;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 3;
}

/* Section spacing override for the four showcase sections */
.showcase {
    padding: clamp(3rem, 6vw, 5rem) var(--gap-x);
}
.showcase:not(:first-of-type) {
    padding-top: 0;
}

/* =========================================================================
   Testimonials / quotes
   ========================================================================= */
.quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.quote {
    position: relative;
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 3.5rem 1.75rem 1.75rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.quote:hover {
    border-color: var(--signal);
    transform: translateY(-3px);
}

.quote__mark {
    position: absolute;
    top: 0.4rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--signal);
    font-weight: 300;
    font-style: italic;
    font-variation-settings: 'opsz' 144;
    pointer-events: none;
    user-select: none;
}

.quote__body {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.55;
    color: var(--shop-800);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
    font-variation-settings: 'opsz' 14;
}

.quote__by {
    border-top: var(--rule) solid var(--shop-300);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.quote__name {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--shop-900);
    letter-spacing: -0.01em;
}

.quote__role {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--shop-500);
}

@media (max-width: 980px) {
    .quotes { grid-template-columns: 1fr; gap: 1rem; }
}

/* =========================================================================
   Toolbox
   ========================================================================= */
.toolbox {
    background: linear-gradient(180deg, var(--shop-000) 0%, var(--shop-050) 100%);
    border-top: var(--rule) solid var(--shop-200);
    border-bottom: var(--rule) solid var(--shop-200);
}

.toolbox__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--rule);
    background: var(--shop-200);
    border: var(--rule) solid var(--shop-200);
}

@media (max-width: 540px) {
    .toolbox__grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
}

.tool {
    background: var(--shop-050);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: background 0.2s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tool:hover { background: var(--shop-100); }

.tool__name {
    font-size: 0.78rem;
    color: var(--shop-800);
    font-weight: 500;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.tool__use {
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.tool::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--signal);
    transition: width 0.25s ease, left 0.25s ease;
}

.tool:hover::after { width: 100%; left: 0; }

/* =========================================================================
   Closing
   ========================================================================= */
.closing {
    text-align: center;
    padding: clamp(4rem, 10vw, 10rem) var(--gap-x);
    border-top: var(--rule) solid var(--shop-200);
    position: relative;
}

@media (max-width: 480px) {
    .closing .btn { display: flex; justify-content: center; }
}

.closing__mark {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--shop-500);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.closing__h {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    color: var(--shop-900);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    font-variation-settings: 'opsz' 144;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.closing__h em {
    font-style: italic;
    font-weight: 300;
    color: var(--signal);
}

.closing__p {
    color: var(--shop-700);
    max-width: 50ch;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================================================
   Footer - clean console aesthetic
   ========================================================================= */

.footer {
    background: var(--shop-050);
    border-top: var(--rule) solid var(--shop-200);
    color: var(--shop-600);
    font-size: 0.84rem;
    margin-top: 4rem;
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem var(--gap-x) 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* --- Brand column --- */

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer__logo {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--shop-900);
    letter-spacing: -0.01em;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    width: fit-content;
}

.footer__logo .logo__bracket {
    color: var(--signal);
}

.footer__logo .logo__cursor {
    display: inline-block;
    width: 0.45rem;
    height: 0.95rem;
    background: var(--signal);
    margin-left: 0.18rem;
    animation: blink 1.2s steps(2, end) infinite;
    transform: translateY(0.05rem);
}

.footer__tagline {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--shop-600);
    margin: 0;
    max-width: 32ch;
}

.footer__hours {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--shop-300);
    background: var(--shop-100);
    width: fit-content;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.footer__hours-label {
    color: var(--shop-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.65rem;
    border-right: 1px solid var(--shop-300);
    padding-right: 0.6rem;
}

.footer__hours-value {
    color: var(--shop-800);
}

/* --- Link columns --- */

.footer__col-h {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--shop-700);
    letter-spacing: 0.08em;
    margin: 0 0 1.1rem 0;
    text-transform: lowercase;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer__list a {
    color: var(--shop-600);
    text-decoration: none;
    transition: color 0.15s ease, padding-left 0.18s ease;
    display: inline-block;
    font-size: 0.85rem;
}

.footer__list a:hover {
    color: var(--signal);
    padding-left: 0.25rem;
}

/* --- Bottom strip --- */

.footer__bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.25rem var(--gap-x);
    border-top: var(--rule) solid var(--shop-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    color: var(--shop-500);
}

.footer__copyright {
    color: var(--shop-500);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer__legal a {
    color: var(--shop-600);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer__legal a:hover {
    color: var(--signal);
}

.footer__legal-sep {
    color: var(--shop-400);
    user-select: none;
}

/* --- Responsive --- */

@media (max-width: 960px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem var(--gap-x) 2rem;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.85rem;
        padding: 1rem var(--gap-x) 1.25rem;
    }
    .footer__legal {
        font-size: 0.7rem;
    }
}

/* =========================================================================
   About page - additions to the design system
   ========================================================================= */

/* Current page indicator in nav */
.nav__link--current { color: var(--signal) !important; }
.nav__link--current::after { transform: scaleX(1) !important; }

/* About hero - replaces the info card with a 4-stat grid */
.hero--about .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--shop-300);
    border: 1px solid var(--shop-300);
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
}

.about-stat {
    background: var(--shop-050);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.25s ease;
}

.about-stat:hover { background: var(--shop-100); }

.about-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
    color: var(--signal);
    letter-spacing: -0.03em;
    font-variation-settings: 'opsz' 144;
}

.about-stat__num span {
    color: var(--shop-700);
    font-size: 0.5em;
    margin-left: 0.05em;
    font-weight: 400;
}

.about-stat__label {
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .hero--about .about-stats { max-width: 600px; }
}

/* Timeline */
.timeline {
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--shop-200);
}

.timeline__item {
    display: grid;
    grid-template-columns: 13rem 1fr;
    gap: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: calc(14rem - 5px);
    top: 2rem;
    width: 11px;
    height: 11px;
    background: var(--shop-100);
    border: 2px solid var(--shop-400);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.25s ease;
}

.timeline__item:hover::before {
    border-color: var(--signal);
    background: var(--signal);
    box-shadow: 0 0 0 4px var(--signal-dim);
}

.timeline__item--milestone::before {
    border-color: var(--signal);
    background: var(--signal);
    box-shadow: 0 0 0 3px var(--signal-dim);
}

.timeline__item--current::before {
    border-color: var(--live);
    background: var(--live);
    box-shadow: 0 0 0 4px var(--live-dim);
    animation: pulse-dot 2s ease-in-out infinite;
}

.timeline__year {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--shop-700);
    letter-spacing: 0.02em;
    padding-top: 1.6rem;
    text-align: right;
    padding-right: 1.5rem;
}

.timeline__item--milestone .timeline__year,
.timeline__item--current .timeline__year {
    color: var(--signal);
}

.timeline__body {
    padding-left: 1rem;
    padding-top: 1rem;
}

.timeline__head {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    font-variation-settings: 'opsz' 144;
}

.timeline__body p {
    color: var(--shop-700);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 60ch;
}

@media (max-width: 720px) {
    .timeline { padding-left: 0; }
    .timeline::before {
        left: 9px;
    }
    .timeline__item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding-left: 2rem;
        padding-bottom: 2rem;
    }
    .timeline__item::before {
        left: 4px;
        top: 1rem;
    }
    .timeline__year {
        padding-top: 0;
        padding-right: 0;
        text-align: left;
        font-size: 0.8rem;
        color: var(--shop-500);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }
    .timeline__body {
        padding-left: 0;
        padding-top: 0.3rem;
    }
}

/* Principles grid - "What working together looks like" */
.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

.principle {
    background: var(--shop-050);
    padding: 2rem 1.75rem;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease;
}

.principle:hover { background: var(--shop-100); }

.principle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--signal);
    transition: width 0.3s ease;
}

.principle:hover::before { width: 100%; }

.principle__num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.principle__head {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
    font-variation-settings: 'opsz' 144;
}

.principle p {
    color: var(--shop-600);
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .principles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .principles { grid-template-columns: 1fr; }
    .principle { min-height: auto; padding: 1.5rem 1.25rem; }
}

/* Limits list - "What I will not take on" */
.limits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.limits__item {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    color: var(--shop-700);
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative;
    transition: border-color 0.25s ease;
}

.limits__item:hover { border-color: var(--signal); }

.limits__item::before {
    content: '\00d7';
    position: absolute;
    top: 1.4rem;
    left: 1.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--signal);
    font-size: 1.2rem;
    line-height: 1;
}

.limits__item strong {
    display: block;
    color: var(--shop-900);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.005em;
}

/* Workshop grid - "Where the work happens" */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

.workshop-item {
    background: var(--shop-050);
    padding: 1.75rem;
    transition: background 0.25s ease;
}

.workshop-item:hover { background: var(--shop-100); }

.workshop-item__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.workshop-item__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 500;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.85rem;
    font-variation-settings: 'opsz' 144;
}

.workshop-item__value a {
    border-bottom: 1px solid var(--shop-400);
    transition: all 0.2s ease;
}

.workshop-item__value a:hover {
    color: var(--signal);
    border-bottom-color: var(--signal);
}

.workshop-item__note {
    color: var(--shop-600);
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 880px) {
    .workshop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .workshop-grid { grid-template-columns: 1fr; }
    .workshop-item { padding: 1.25rem 1.1rem; }
}

/* =========================================================================
   Pricing page - additions to the design system
   ========================================================================= */

/* Pricing hero TLDR card (replaces homepage info card) */
.pricing-tldr {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
    position: relative;
}

.pricing-tldr__head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
}

.pricing-tldr__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-tldr__list li {
    padding-left: 1.1rem;
    position: relative;
    font-size: 0.85rem;
    color: var(--shop-700);
    line-height: 1.55;
}

.pricing-tldr__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal);
}

.pricing-tldr__list strong {
    color: var(--signal);
    font-weight: 500;
}

@media (max-width: 1000px) {
    .pricing-tldr { max-width: 600px; }
}

/* Jump nav under hero - quick scroll to each section */
.jump-nav {
    background: rgba(13, 16, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--shop-200);
    border-bottom: 1px solid var(--shop-200);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: 84px;
    z-index: 47;
}

.jump-nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.85rem var(--gap-x);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    white-space: nowrap;
}

.jump-nav__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.jump-nav a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--shop-700);
    transition: color 0.15s ease;
    padding: 0.15rem 0;
    border-bottom: 1px solid transparent;
    flex-shrink: 0;
}

.jump-nav a:hover {
    color: var(--signal);
    border-bottom-color: var(--signal);
}

@media (max-width: 720px) {
    .jump-nav { top: 78px; }
    .jump-nav__inner { gap: 1.1rem; }
    .jump-nav__label { font-size: 0.65rem; }
    .jump-nav a { font-size: 0.72rem; }
}

/* Pricing grid - default 3 columns */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

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

@media (max-width: 1100px) {
    .pricing-grid--four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        background: transparent;
        border: none;
    }
    .pricing-grid--four { grid-template-columns: 1fr; }
}

/* Pricing card - individual tier */
.pricing-card {
    background: var(--shop-050);
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: background 0.25s ease;
    position: relative;
}

@media (max-width: 880px) {
    .pricing-card {
        border: 1px solid var(--shop-300);
    }
}

.pricing-card:hover { background: var(--shop-100); }

.pricing-card--featured {
    background: linear-gradient(180deg, var(--shop-100) 0%, var(--shop-050) 100%);
    box-shadow: inset 0 2px 0 0 var(--signal);
}

.pricing-card--featured:hover {
    background: linear-gradient(180deg, var(--shop-200) 0%, var(--shop-100) 100%);
}

.pricing-card--compact {
    padding: 1.75rem 1.5rem;
}

.pricing-card__badge {
    position: absolute;
    top: -1px;
    right: 1.25rem;
    background: var(--signal);
    color: var(--shop-000);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
}

.pricing-card__num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.pricing-card__name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    font-variation-settings: 'opsz' 144;
}

.pricing-card__sub {
    font-size: 0.82rem;
    color: var(--shop-600);
    margin-bottom: 1.5rem;
    line-height: 1.45;
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: var(--signal);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
    font-variation-settings: 'opsz' 144;
}

.pricing-card__period {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--shop-500);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.pricing-card__setup {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-600);
    margin-top: -0.85rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.65rem;
    background: var(--shop-100);
    border-left: 2px solid var(--signal);
    line-height: 1.4;
}

.pricing-card__features {
    list-style: none;
    padding: 1.25rem 0;
    border-top: 1px solid var(--shop-300);
    border-bottom: 1px solid var(--shop-300);
    margin-bottom: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-card__features li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.85rem;
    color: var(--shop-700);
    line-height: 1.5;
}

.pricing-card__features li::before {
    content: '\002713';
    position: absolute;
    left: 0;
    color: var(--signal);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: transparent;
    color: var(--shop-800);
    border: 1px solid var(--shop-400);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.18s ease;
    text-align: center;
}

.pricing-card__cta:hover {
    border-color: var(--signal);
    color: var(--signal);
    background: var(--signal-dim);
}

.pricing-card--featured .pricing-card__cta {
    background: var(--signal);
    color: var(--shop-000);
    border-color: var(--signal);
}

.pricing-card--featured .pricing-card__cta:hover {
    background: var(--signal-bright);
    border-color: var(--signal-bright);
    box-shadow: 0 0 24px var(--signal-dim);
}

/* Fine print list */
.fineprint {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

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

.fineprint__item {
    padding: 1.25rem 1.5rem;
    background: var(--shop-050);
    border: 1px solid var(--shop-300);
    border-left: 3px solid var(--signal);
    color: var(--shop-700);
    font-size: 0.88rem;
    line-height: 1.6;
    transition: background 0.2s ease;
}

.fineprint__item:hover {
    background: var(--shop-100);
}

.fineprint__item strong {
    display: block;
    color: var(--shop-900);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: -0.005em;
}

/* =========================================================================
   Process page - additions to the design system
   ========================================================================= */

/* Process hero TLDR card - timing summary */
.process-tldr {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
    position: relative;
}

.process-tldr__head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
}

.process-tldr__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--shop-200);
    font-size: 0.82rem;
}

.process-tldr__row:last-of-type {
    border-bottom: none;
}

.process-tldr__label {
    color: var(--shop-600);
    line-height: 1.4;
}

.process-tldr__value {
    font-family: var(--font-mono);
    color: var(--shop-800);
    font-weight: 600;
    letter-spacing: -0.005em;
    white-space: nowrap;
}

.process-tldr__value--accent {
    color: var(--signal);
}

.process-tldr__foot {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: var(--rule) dashed var(--shop-300);
    font-size: 0.72rem;
    color: var(--shop-500);
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 1000px) {
    .process-tldr { max-width: 600px; }
}

/* Steps - the main 7-step process list */
.steps {
    list-style: none;
    counter-reset: step;
    position: relative;
    padding-left: 0;
}

/* Vertical guide line on the left */
.steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 32px;
    bottom: 32px;
    width: 1px;
    background: var(--shop-200);
    z-index: 0;
}

.step {
    position: relative;
    padding: 0 0 2.25rem 5.5rem;
    margin-bottom: 0.5rem;
}

.step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Big amber number disc on the left */
.step__num {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: var(--shop-100);
    border: 1px solid var(--shop-300);
    color: var(--shop-700);
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.25s ease;
}

.step:hover .step__num {
    background: var(--shop-200);
    border-color: var(--signal);
    color: var(--signal);
    box-shadow: 0 0 0 4px var(--signal-dim);
}

/* The milestone (sign-and-start) and launch steps get amber styling by default */
.step--milestone .step__num,
.step--launch .step__num {
    background: var(--signal);
    border-color: var(--signal);
    color: var(--shop-000);
    box-shadow: 0 0 0 3px var(--signal-dim);
}

.step--launch .step__num {
    background: var(--live);
    border-color: var(--live);
    box-shadow: 0 0 0 3px var(--live-dim);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

.step__body {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.step:hover .step__body {
    border-color: var(--signal);
    background: var(--shop-100);
}

.step--milestone .step__body {
    border-left: 3px solid var(--signal);
}

.step--launch .step__body {
    border-left: 3px solid var(--live);
}

.step__head {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
    font-variation-settings: 'opsz' 144;
}

.step__lead {
    color: var(--shop-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 60ch;
}

.step__detail {
    border-top: 1px dashed var(--shop-300);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
}

.step__detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.step__detail p {
    color: var(--shop-700);
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 65ch;
}

.step__time {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding: 0.45rem 0.75rem;
    background: var(--shop-100);
    border: 1px solid var(--shop-300);
}

.step__time-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.step__time-value {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--signal);
    font-weight: 600;
}

@media (max-width: 720px) {
    .steps::before {
        left: 22px;
        top: 24px;
    }
    .step {
        padding-left: 4rem;
    }
    .step__num {
        width: 46px;
        height: 46px;
        font-size: 0.85rem;
    }
    .step__body {
        padding: 1.25rem 1.1rem;
    }
}

/* Expectations grid - "What you can expect" */
.expectations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

.expectation {
    background: var(--shop-050);
    padding: 2rem 1.75rem;
    transition: background 0.25s ease;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.expectation:hover { background: var(--shop-100); }

.expectation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--signal);
    transition: width 0.3s ease;
}

.expectation:hover::before { width: 100%; }

.expectation__icon {
    width: 32px;
    height: 32px;
    color: var(--signal);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.expectation:hover .expectation__icon {
    transform: scale(1.1);
}

.expectation__icon svg {
    width: 100%;
    height: 100%;
}

.expectation__head {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.65rem;
    font-variation-settings: 'opsz' 144;
}

.expectation p {
    color: var(--shop-600);
    font-size: 0.86rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .expectations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .expectations { grid-template-columns: 1fr; }
    .expectation { min-height: auto; padding: 1.5rem 1.25rem; }
}

/* Needs list - "What I need from you" */
.needs {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.needs__item {
    padding: 1.4rem 1.5rem 1.4rem 3.4rem;
    background: var(--shop-050);
    border: 1px solid var(--shop-300);
    color: var(--shop-700);
    font-size: 0.92rem;
    line-height: 1.6;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.needs__item:hover {
    border-color: var(--signal);
    background: var(--shop-100);
}

.needs__item::before {
    content: '\2192';
    position: absolute;
    top: 1.4rem;
    left: 1.5rem;
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--signal);
    font-size: 1.05rem;
    line-height: 1.3;
}

.needs__item strong {
    display: block;
    color: var(--shop-900);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    letter-spacing: -0.005em;
}

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

/* FAQ - accordion style */
.faq {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--shop-300);
}

.faq__item {
    border-bottom: 1px solid var(--shop-300);
    background: var(--shop-050);
    transition: background 0.2s ease;
}

.faq__item:last-child { border-bottom: none; }

.faq__item:hover {
    background: var(--shop-100);
}

.faq__item[open] {
    background: var(--shop-100);
}

.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--shop-800);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.005em;
    transition: color 0.2s ease;
    user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--signal); }

.faq__item[open] .faq__q {
    color: var(--signal);
    border-bottom: 1px dashed var(--shop-300);
}

.faq__q-text {
    flex: 1;
}

/* Plus/minus toggle indicator */
.faq__q-toggle {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
    transition: transform 0.25s ease;
}

.faq__q-toggle::before,
.faq__q-toggle::after {
    content: '';
    position: absolute;
    background: currentColor;
    top: 50%;
    left: 50%;
    transition: transform 0.25s ease;
}

/* Horizontal line of plus */
.faq__q-toggle::before {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}
/* Vertical line of plus */
.faq__q-toggle::after {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
}

/* When open, vertical line rotates so it disappears (becomes horizontal too = single line = minus) */
.faq__item[open] .faq__q-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq__a {
    padding: 1.25rem 1.75rem 1.5rem;
    color: var(--shop-700);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 75ch;
}

@media (max-width: 580px) {
    .faq__q {
        padding: 1.1rem 1.1rem 1.1rem 1.25rem;
        font-size: 0.88rem;
    }
    .faq__a {
        padding: 1rem 1.25rem 1.25rem;
        font-size: 0.88rem;
    }
}

/* =========================================================================
   Service detail pages - additions to the design system
   ========================================================================= */

/* Breadcrumb under nav */
.breadcrumb {
    border-bottom: 1px solid var(--shop-200);
    background: var(--shop-050);
}

.breadcrumb__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.75rem var(--gap-x);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--shop-500);
}

.breadcrumb a {
    color: var(--shop-600);
    transition: color 0.15s ease;
}

.breadcrumb a:hover {
    color: var(--signal);
}

.breadcrumb__sep {
    color: var(--shop-400);
}

.breadcrumb__current {
    color: var(--shop-800);
    font-weight: 600;
}

/* Service hero TLDR card */
.service-tldr {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
    position: relative;
}

.service-tldr__head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
}

.service-tldr__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--shop-200);
    font-size: 0.82rem;
}

.service-tldr__row:last-of-type {
    border-bottom: none;
}

.service-tldr__label {
    color: var(--shop-600);
    line-height: 1.4;
}

.service-tldr__value {
    font-family: var(--font-mono);
    color: var(--shop-800);
    font-weight: 600;
    letter-spacing: -0.005em;
    white-space: nowrap;
    text-align: right;
}

.service-tldr__value--accent {
    color: var(--signal);
}

@media (max-width: 1000px) {
    .service-tldr { max-width: 600px; }
}

/* Features grid - "What is included" */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

.feature-card {
    background: var(--shop-050);
    padding: 1.85rem 1.6rem;
    transition: background 0.25s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover { background: var(--shop-100); }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--signal);
    transition: width 0.3s ease;
}

.feature-card:hover::before { width: 100%; }

.feature-card__icon {
    width: 28px;
    height: 28px;
    color: var(--signal);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.12);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__head {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.55rem;
    font-variation-settings: 'opsz' 144;
}

.feature-card p {
    color: var(--shop-600);
    font-size: 0.84rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; padding: 1.5rem 1.25rem; }
}

/* Project types - cards with numbered list of common project shapes */
.project-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.project-type {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem 1.6rem;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease;
    display: flex;
    flex-direction: column;
}

.project-type:hover {
    border-color: var(--signal);
    background: var(--shop-100);
}

.project-type__num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    transition: color 0.25s ease;
}

.project-type:hover .project-type__num {
    color: var(--signal);
}

.project-type__head {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.65rem;
    font-variation-settings: 'opsz' 144;
}

.project-type p {
    color: var(--shop-600);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.project-type__price {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--signal);
    font-weight: 600;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--shop-300);
    letter-spacing: -0.005em;
}

@media (max-width: 980px) {
    .project-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .project-types { grid-template-columns: 1fr; }
}

/* Stack grid - 4-column technology showcase */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

.stack-group {
    background: var(--shop-050);
    padding: 1.75rem 1.5rem;
    transition: background 0.25s ease;
}

.stack-group:hover {
    background: var(--shop-100);
}

.stack-group__head {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--signal);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--shop-300);
    font-weight: 600;
}

.stack-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stack-group li {
    color: var(--shop-700);
    font-size: 0.8rem;
    line-height: 1.5;
}

.stack-group strong {
    color: var(--shop-900);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.85rem;
}

.stack-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--shop-050);
    border: 1px solid var(--shop-300);
    border-left: 3px solid var(--signal);
    color: var(--shop-700);
    font-size: 0.88rem;
    line-height: 1.55;
}

.stack-note a {
    color: var(--signal);
    border-bottom: 1px solid var(--signal);
    padding-bottom: 1px;
    transition: color 0.15s ease;
}

.stack-note a:hover {
    color: var(--signal-bright);
}

@media (max-width: 980px) {
    .stack-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Related services grid - 3 cards at the bottom */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.related-card {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem 1.6rem;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    border-color: var(--signal);
    background: var(--shop-100);
    transform: translateY(-3px);
}

.related-card__num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    transition: color 0.25s ease;
}

.related-card:hover .related-card__num {
    color: var(--signal);
}

.related-card__head {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.6rem;
    font-variation-settings: 'opsz' 144;
}

.related-card p {
    color: var(--shop-600);
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.related-card__arrow {
    align-self: flex-end;
    color: var(--signal);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.related-card:hover .related-card__arrow {
    transform: translateX(4px);
}

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

/* =========================================================================
   404 page - terminal-style error card
   ========================================================================= */

.error-card {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
    position: relative;
    font-family: var(--font-mono);
}

.error-card__head {
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-card__head::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

.error-card__body {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--shop-700);
    white-space: pre-wrap;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.error-card__cmd {
    color: var(--current);
}

.error-card__path {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    padding: 0 0.3em;
}

.error-card__status {
    color: #ef4444;
    font-weight: 600;
}

.error-card__hint {
    color: var(--shop-500);
    font-style: italic;
}

.error-card__suggest {
    color: var(--signal);
    margin-top: 0.5rem;
    display: inline-block;
}

.error-card__body a {
    color: var(--signal);
    border-bottom: 1px dashed var(--signal);
    padding-bottom: 1px;
    transition: all 0.15s ease;
}

.error-card__body a:hover {
    background: var(--signal-dim);
    border-bottom-style: solid;
}

@media (max-width: 1000px) {
    .error-card { max-width: 600px; }
}

@media (max-width: 480px) {
    .error-card__body { font-size: 0.72rem; }
}

/* =========================================================================
   Portfolio page - filterable property catalog
   ========================================================================= */

.portfolio-tldr {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
    position: relative;
}

.portfolio-tldr__head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
}

.portfolio-tldr__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--shop-200);
    font-size: 0.82rem;
}

.portfolio-tldr__row:last-of-type { border-bottom: none; }

.portfolio-tldr__label { color: var(--shop-600); line-height: 1.4; }

.portfolio-tldr__value {
    font-family: var(--font-mono);
    color: var(--shop-800);
    font-weight: 600;
    letter-spacing: -0.005em;
    white-space: nowrap;
    text-align: right;
}

.portfolio-tldr__value--accent { color: var(--signal); }

@media (max-width: 1000px) {
    .portfolio-tldr { max-width: 600px; }
}

/* Sticky filter bar under hero */
.portfolio-filters {
    background: rgba(13, 16, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--shop-200);
    border-bottom: 1px solid var(--shop-200);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: 84px;
    z-index: 47;
}

.portfolio-filters__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.85rem var(--gap-x);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    white-space: nowrap;
}

.portfolio-filters__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.portfolio-filter {
    appearance: none;
    background: transparent;
    border: 1px solid var(--shop-300);
    color: var(--shop-700);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.85rem;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.portfolio-filter:hover {
    color: var(--signal);
    border-color: var(--signal);
}

.portfolio-filter--active {
    background: var(--signal);
    border-color: var(--signal);
    color: var(--shop-000);
}

.portfolio-filter__count {
    font-size: 0.65rem;
    background: var(--shop-200);
    color: var(--shop-700);
    padding: 0.1rem 0.4rem;
    transition: all 0.18s ease;
}

.portfolio-filter--active .portfolio-filter__count {
    background: var(--shop-900);
    color: var(--shop-000);
}

@media (max-width: 720px) {
    .portfolio-filters { top: 78px; }
    .portfolio-filters__inner { gap: 0.5rem; }
    .portfolio-filter { font-size: 0.72rem; padding: 0.4rem 0.7rem; }
}

/* Section spacing for portfolio */
.section--portfolio { padding-top: 2rem; }

.portfolio-section {
    margin-bottom: 4rem;
    transition: opacity 0.3s ease;
}

.portfolio-section:last-child { margin-bottom: 0; }

.portfolio-section.is-hidden {
    display: none;
}

/* The grid of portfolio cards */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 980px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* Individual portfolio card */
.portfolio-card {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.6rem 1.5rem;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--signal);
    background: var(--shop-100);
    transform: translateY(-2px);
}

.portfolio-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px dashed var(--shop-300);
}

.portfolio-card__num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
}

.portfolio-card__status {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border: 1px solid;
}

.portfolio-card__status--live {
    color: var(--live);
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(74, 222, 128, 0.08);
}

.portfolio-card__status--rented {
    color: var(--shop-500);
    border-color: var(--shop-300);
    background: var(--shop-100);
}

.portfolio-card__status--available {
    color: var(--signal);
    border-color: rgba(255, 157, 46, 0.4);
    background: var(--signal-dim);
}

.portfolio-card__status--coming {
    color: var(--current);
    border-color: rgba(94, 211, 244, 0.4);
    background: rgba(94, 211, 244, 0.08);
}

.portfolio-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    font-variation-settings: 'opsz' 144;
}

.portfolio-card__url {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--shop-500);
    margin-bottom: 0.85rem;
    word-break: break-all;
}

.portfolio-card__desc {
    color: var(--shop-700);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.portfolio-card__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.portfolio-card__tags li {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    background: var(--shop-100);
    border: 1px solid var(--shop-200);
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.04em;
}

.portfolio-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: transparent;
    color: var(--shop-800);
    border: 1px solid var(--shop-400);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.18s ease;
    text-align: center;
    margin-top: auto;
}

.portfolio-card__cta:hover {
    border-color: var(--signal);
    color: var(--signal);
    background: var(--signal-dim);
}

.portfolio-card__cta--disabled {
    color: var(--shop-500);
    border-color: var(--shop-300);
    cursor: not-allowed;
    pointer-events: none;
}


/* =========================================================================
   Contact page
   ========================================================================= */

.contact-tldr {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem;
    align-self: end;
    animation: fade-in 1s ease 0.8s backwards;
    position: relative;
}

.contact-tldr__head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: var(--rule) dashed var(--shop-300);
}

.contact-tldr__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--shop-200);
    font-size: 0.82rem;
}

.contact-tldr__row:last-of-type { border-bottom: none; }

.contact-tldr__label { color: var(--shop-600); line-height: 1.4; }

.contact-tldr__value {
    font-family: var(--font-mono);
    color: var(--shop-800);
    font-weight: 600;
    letter-spacing: -0.005em;
    text-align: right;
}

.contact-tldr__value--accent { color: var(--signal); }

@media (max-width: 1000px) {
    .contact-tldr { max-width: 600px; }
}

/* Contact methods - 3 cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--shop-200);
    border: 1px solid var(--shop-200);
}

@media (max-width: 880px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        background: transparent;
        border: none;
    }
}

.contact-method {
    background: var(--shop-050);
    padding: 2rem 1.75rem;
    transition: background 0.25s ease;
    position: relative;
}

@media (max-width: 880px) {
    .contact-method { border: 1px solid var(--shop-300); }
}

.contact-method:hover { background: var(--shop-100); }

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--signal);
    transition: width 0.3s ease;
}

.contact-method:hover::before { width: 100%; }

.contact-method__icon {
    width: 32px;
    height: 32px;
    color: var(--signal);
    margin-bottom: 1.25rem;
}

.contact-method__icon svg { width: 100%; height: 100%; }

.contact-method__head {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--shop-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    font-variation-settings: 'opsz' 144;
}

.contact-method__primary {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--signal);
    margin-bottom: 0.85rem;
    word-break: break-all;
}

.contact-method__primary a {
    color: inherit;
    border-bottom: 1px dashed var(--signal);
    padding-bottom: 1px;
    transition: all 0.15s ease;
}

.contact-method__primary a:hover {
    color: var(--signal-bright);
    border-bottom-style: solid;
}

.contact-method__sub {
    color: var(--shop-600);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Quick start mailto cards - 3x3 grid */
.contact-quickstart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 880px) {
    .contact-quickstart { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .contact-quickstart { grid-template-columns: 1fr; }
}

.contact-quickstart__card {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.6rem 1.5rem;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.contact-quickstart__card:hover {
    border-color: var(--signal);
    background: var(--shop-100);
    transform: translateY(-2px);
    color: inherit;
}

.contact-quickstart__num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--shop-500);
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    transition: color 0.25s ease;
}

.contact-quickstart__card:hover .contact-quickstart__num {
    color: var(--signal);
}

.contact-quickstart__head {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
    font-variation-settings: 'opsz' 144;
}

.contact-quickstart__card p {
    color: var(--shop-600);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.contact-quickstart__cta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--signal);
    padding-top: 0.85rem;
    border-top: 1px dashed var(--shop-300);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-quickstart__cta span {
    transition: transform 0.2s ease;
}

.contact-quickstart__card:hover .contact-quickstart__cta span {
    transform: translateX(3px);
}

/* =========================================================================
   Rental detail page layout
   ========================================================================= */

/* Hero variant for rental pages - tighter than the homepage hero */
.hero--rental .hero__h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero--rental .hero__row {
    grid-template-columns: 1fr 0.85fr;
}

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

/* Sidebar block on rental hero */
.rental-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-self: start;
    animation: fade-in 1s ease 0.8s backwards;
}

.rental-detail__status {
    border: var(--rule) solid;
    padding: 1.25rem 1.5rem;
}

.rental-detail__status--rented {
    border-color: var(--shop-300);
    background: var(--shop-100);
}

.rental-detail__status--available {
    border-color: rgba(255, 157, 46, 0.4);
    background: var(--signal-dim);
}

.rental-detail__status--coming {
    border-color: rgba(94, 211, 244, 0.4);
    background: rgba(94, 211, 244, 0.08);
}

.rental-detail__status-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.85rem;
    border: 1px solid;
}

.rental-detail__status--rented .rental-detail__status-badge {
    color: var(--shop-600);
    border-color: var(--shop-400);
    background: var(--shop-050);
}

.rental-detail__status--available .rental-detail__status-badge {
    color: var(--signal);
    border-color: var(--signal);
    background: var(--shop-000);
}

.rental-detail__status--coming .rental-detail__status-badge {
    color: var(--current);
    border-color: var(--current);
    background: var(--shop-000);
}

.rental-detail__status-msg {
    display: block;
    color: var(--shop-700);
    font-size: 0.85rem;
    line-height: 1.55;
}

.rental-detail__facts {
    border: var(--rule) solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.5rem;
}

.rental-detail__fact-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--shop-200);
    font-size: 0.82rem;
}

.rental-detail__fact-row:last-of-type { border-bottom: none; }

.rental-detail__fact-label {
    color: var(--shop-600);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rental-detail__fact-value {
    color: var(--shop-800);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
    max-width: 200px;
}

.rental-detail__fact-value--mono {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--signal);
}

/* Body section: 2-column layout, main + aside */
.section--rental-body {
    padding-top: 1rem;
}

.rental-detail__body {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 3rem;
}

@media (max-width: 1000px) {
    .rental-detail__body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.rental-detail__main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.rental-detail__block {
    border-top: 1px dashed var(--shop-300);
    padding-top: 1.5rem;
}

.rental-detail__block:first-child { border-top: none; padding-top: 0; }

.rental-detail__p {
    color: var(--shop-700);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 70ch;
}

.rental-detail__p a {
    color: var(--signal);
    border-bottom: 1px dashed var(--signal);
    padding-bottom: 1px;
}

.rental-detail__p a:hover {
    color: var(--signal-bright);
    border-bottom-style: solid;
}

.rental-detail__aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rental-detail__h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--shop-300);
}

.rental-detail__cities {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.5rem;
}

.rental-detail__city-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.rental-detail__city-list li {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--shop-700);
    background: var(--shop-100);
    border: 1px solid var(--shop-200);
    padding: 0.35rem 0.7rem;
}

.rental-detail__block--cta {
    border: 1px solid var(--signal);
    background: var(--signal-dim);
    padding: 1.75rem 1.5rem;
    border-top: 1px solid var(--signal);
}

.rental-detail__cta-head {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.85rem;
    font-variation-settings: 'opsz' 144;
}

.rental-detail__cta-p {
    color: var(--shop-700);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.rental-detail__block--cta .btn {
    width: 100%;
}

/* Sibling cards - cross-sell to other rentals */
.rental-siblings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 880px) {
    .rental-siblings { grid-template-columns: 1fr; }
}

.rental-sibling {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.6rem 1.5rem;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.rental-sibling:hover {
    border-color: var(--signal);
    background: var(--shop-100);
    transform: translateY(-2px);
    color: inherit;
}

.rental-sibling__head {
    margin-bottom: 0.85rem;
}

.rental-sibling__status {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border: 1px solid;
}

.rental-sibling__status--rented {
    color: var(--shop-500);
    border-color: var(--shop-300);
    background: var(--shop-100);
}

.rental-sibling__status--available {
    color: var(--signal);
    border-color: rgba(255, 157, 46, 0.4);
    background: var(--signal-dim);
}

.rental-sibling__status--coming {
    color: var(--current);
    border-color: rgba(94, 211, 244, 0.4);
    background: rgba(94, 211, 244, 0.08);
}

.rental-sibling__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 0.3rem;
    font-variation-settings: 'opsz' 144;
}

.rental-sibling__url {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--shop-500);
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.rental-sibling__region {
    color: var(--shop-700);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.rental-sibling__arrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--signal);
    padding-top: 0.85rem;
    border-top: 1px dashed var(--shop-300);
    margin-top: auto;
}

/* =========================================================================
   Legal pages - terms, privacy, rental agreement
   Tighter, document-focused layout
   ========================================================================= */

.hero--legal {
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hero--legal .hero__h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--gap-x) clamp(4rem, 6vw, 6rem);
}

.legal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--shop-050);
    border: 1px solid var(--shop-300);
    margin-bottom: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.legal__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal__meta-label {
    color: var(--shop-500);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal__meta-value {
    color: var(--shop-800);
    font-weight: 600;
}

.legal__toc {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
}

.legal__toc-head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--shop-300);
}

.legal__toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

@media (max-width: 600px) {
    .legal__toc-list { grid-template-columns: 1fr; }
}

.legal__toc-list li {
    font-size: 0.85rem;
    line-height: 1.5;
}

.legal__toc-list a {
    color: var(--shop-700);
    border-bottom: 1px dashed transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.legal__toc-list a:hover {
    color: var(--signal);
    border-bottom-color: var(--signal);
}

.legal__toc-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    margin-right: 0.5rem;
    letter-spacing: 0.04em;
}

.legal__section {
    margin-bottom: 3rem;
}

.legal__section-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.legal__section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.2;
    letter-spacing: -0.018em;
    margin-bottom: 1.25rem;
    font-variation-settings: 'opsz' 144;
    scroll-margin-top: 7rem;
}

.legal__section h3 {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--shop-800);
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-top: 1.75rem;
    margin-bottom: 0.85rem;
}

.legal__section p {
    color: var(--shop-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.legal__section p strong {
    color: var(--shop-900);
    font-weight: 700;
}

.legal__section a {
    color: var(--signal);
    border-bottom: 1px dashed var(--signal);
    padding-bottom: 1px;
}

.legal__section a:hover {
    color: var(--signal-bright);
    border-bottom-style: solid;
}

.legal__section ul, .legal__section ol {
    margin: 0 0 1.25rem 1.5rem;
    padding: 0;
}

.legal__section li {
    color: var(--shop-700);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.55rem;
}

.legal__callout {
    border-left: 3px solid var(--signal);
    background: var(--signal-dim);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--shop-800);
}

.legal__callout strong {
    color: var(--shop-900);
    font-weight: 700;
}

.legal__disclaimer {
    border: 1px dashed var(--shop-400);
    background: var(--shop-050);
    padding: 1.5rem 1.75rem;
    margin-top: 4rem;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--shop-600);
}

.legal__disclaimer strong {
    color: var(--shop-800);
    font-weight: 700;
}

/* =========================================================================
   Smart inquiry form - workshop aesthetic
   ========================================================================= */

.section--form {
    padding-top: 2rem;
}

/* =========================================================================
   Form stage - ambient glow + console-style status indicator
   ========================================================================= */

.form-stage {
    position: relative;
    max-width: 920px;
    margin: 0.5rem auto 0;
    padding: 2rem 2.25rem 2.5rem;
    background: linear-gradient(180deg, var(--shop-050) 0%, var(--shop-025, #0a0d0f) 100%);
    border: 1px solid var(--shop-200);
    isolation: isolate;
}

/* Ambient glow - sits behind the stage, breathes slowly */
.form-stage::before {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--shop-050), var(--shop-050)) padding-box,
        linear-gradient(135deg, transparent 0%, rgba(247, 162, 58, 0.35) 50%, transparent 100%) border-box;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    animation: stage-breathe 6s ease-in-out infinite;
}

/* Outer soft halo - much subtler */
.form-stage::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(
        ellipse at center,
        rgba(247, 162, 58, 0.08) 0%,
        rgba(247, 162, 58, 0) 70%
    );
    pointer-events: none;
    z-index: -2;
    animation: stage-halo 6s ease-in-out infinite;
}

@keyframes stage-breathe {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes stage-halo {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.01); }
}

/* Status indicator bar at top of stage */
.form-stage__status {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.9rem;
    margin-bottom: 1.75rem;
    background: var(--shop-025, #0a0d0f);
    border: 1px solid var(--shop-300);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--shop-600);
    flex-wrap: wrap;
}

/* Pulsing status light */
.form-stage__status-light {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 8px var(--signal);
    flex-shrink: 0;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 4px var(--signal); }
    50% { opacity: 1; box-shadow: 0 0 12px var(--signal); }
}

.form-stage__status-text {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}

.form-stage__status-step {
    color: var(--signal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-stage__status-msg {
    color: var(--shop-600);
}

.form-stage__status-meta {
    color: var(--shop-500);
    font-size: 0.68rem;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    text-align: right;
    flex-shrink: 0;
}

/* Status states - JS toggles data-status attribute */
.form-stage__status[data-status="ready"] .form-stage__status-light {
    background: var(--shop-500);
    box-shadow: 0 0 6px rgba(247, 162, 58, 0.4);
    animation: status-pulse 3s ease-in-out infinite;
}

.form-stage__status[data-status="typing"] .form-stage__status-light {
    background: var(--signal);
    animation: status-pulse 1s ease-in-out infinite;
}

.form-stage__status[data-status="submitting"] .form-stage__status-light {
    background: var(--signal);
    animation: status-pulse 0.5s ease-in-out infinite;
}

.form-stage__status[data-status="sent"] .form-stage__status-light {
    background: #5fbd87;
    box-shadow: 0 0 12px #5fbd87;
    animation: none;
}

.form-stage__status[data-status="error"] .form-stage__status-light {
    background: #e06464;
    box-shadow: 0 0 12px #e06464;
    animation: status-pulse 0.4s ease-in-out infinite;
}

/* When stage has focus inside, intensify the glow */
.form-stage:focus-within::before {
    animation: stage-breathe-active 3s ease-in-out infinite;
}

.form-stage:focus-within::after {
    animation: stage-halo-active 3s ease-in-out infinite;
}

@keyframes stage-breathe-active {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes stage-halo-active {
    0%, 100% { opacity: 0.7; transform: scale(0.99); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* Mobile adjustments */
@media (max-width: 720px) {
    .form-stage {
        padding: 1.5rem 1.25rem 2rem;
    }
    .form-stage__status {
        font-size: 0.68rem;
        padding: 0.55rem 0.75rem;
        gap: 0.6rem;
    }
    .form-stage__status-meta {
        display: none; /* hide secondary text on mobile */
    }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .form-stage::before,
    .form-stage::after,
    .form-stage__status-light {
        animation: none;
    }
    .form-stage::before { opacity: 0.6; }
    .form-stage::after { opacity: 0.7; }
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 880px;
}

/* Honeypot - invisible to humans, visible to bots */
.inquiry-form__hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

/* Fieldsets */
.inquiry-form__fieldset {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1.75rem 1.75rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.inquiry-form__legend {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0 0.5rem;
    margin-left: -0.5rem;
}

.inquiry-form__legend::before {
    content: '// ';
    color: var(--signal);
}

/* Type selection grid */
.inquiry-form__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 0;
    list-style: none;
    padding: 0;
}

.inquiry-form__type {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--shop-300);
    background: var(--shop-100);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    position: relative;
}

.inquiry-form__type:hover {
    border-color: var(--shop-400);
    background: var(--shop-200);
}

.inquiry-form__type input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.inquiry-form__type:has(input:checked) {
    border-color: var(--signal);
    background: var(--signal-dim);
    box-shadow: 0 0 0 1px var(--signal) inset;
}

.inquiry-form__type:has(input:focus-visible) {
    outline: 2px solid var(--signal);
    outline-offset: 2px;
}

.inquiry-form__type-name {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--shop-900);
    letter-spacing: -0.005em;
}

.inquiry-form__type:has(input:checked) .inquiry-form__type-name {
    color: var(--signal);
}

.inquiry-form__type-desc {
    font-size: 0.78rem;
    color: var(--shop-600);
    line-height: 1.4;
}

/* Branched fields container - animates show/hide */
.inquiry-form__branches {
    display: contents;
}

.inquiry-form__branch {
    border: 1px dashed var(--shop-300);
    background: var(--shop-050);
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: form-reveal 0.3s ease backwards;
}

.inquiry-form__branch[hidden] { display: none !important; }

@keyframes form-reveal {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Fields */
.inquiry-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
}

.inquiry-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .inquiry-form__row { grid-template-columns: 1fr; gap: 1.25rem; }
}

.inquiry-form__label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--shop-700);
    letter-spacing: -0.005em;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.inquiry-form__hint {
    font-size: 0.7rem;
    color: var(--shop-500);
    font-weight: 400;
}

.inquiry-form__required {
    color: var(--signal);
    font-weight: 700;
}

/* Inputs */
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    background: var(--shop-000);
    border: 1px solid var(--shop-300);
    color: var(--shop-900);
    font-family: var(--font-mono);
    font-size: 0.92rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.inquiry-form input[type="text"]::placeholder,
.inquiry-form input[type="email"]::placeholder,
.inquiry-form input[type="tel"]::placeholder,
.inquiry-form textarea::placeholder {
    color: var(--shop-500);
}

.inquiry-form input[type="text"]:hover,
.inquiry-form input[type="email"]:hover,
.inquiry-form input[type="tel"]:hover,
.inquiry-form select:hover,
.inquiry-form textarea:hover {
    border-color: var(--shop-400);
}

.inquiry-form input[type="text"]:focus,
.inquiry-form input[type="email"]:focus,
.inquiry-form input[type="tel"]:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--signal);
    background: var(--shop-050);
    box-shadow: 0 0 0 3px var(--signal-dim);
}

.inquiry-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23808a8e' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 7rem;
    line-height: 1.55;
}

/* Field error */
.inquiry-form__field-error {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #ff6b6b;
    margin: 0;
    min-height: 0;
    transition: min-height 0.18s ease;
}

.inquiry-form__field-error:not(:empty) {
    min-height: 1.2rem;
    margin-top: -0.2rem;
}

/* Field with error highlight */
.inquiry-form .inquiry-form__field--error input,
.inquiry-form .inquiry-form__field--error select,
.inquiry-form .inquiry-form__field--error textarea {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

/* Submit row */
.inquiry-form__submit-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.inquiry-form__submit {
    min-width: 14rem;
}

.inquiry-form__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.inquiry-form__submit[data-loading="true"] .inquiry-form__submit-label::after {
    content: '...';
    display: inline-block;
    margin-left: 0.4rem;
    animation: dots 1.4s infinite;
}

@keyframes dots {
    0%, 20% { opacity: 0; }
    50%     { opacity: 1; }
    100%    { opacity: 0; }
}

.inquiry-form__legal {
    font-size: 0.78rem;
    color: var(--shop-600);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 220px;
    max-width: 36ch;
}

.inquiry-form__legal a {
    color: var(--signal);
    border-bottom: 1px dashed var(--signal);
}

.inquiry-form__legal a:hover {
    border-bottom-style: solid;
}

/* Top-level error message (network failure, etc.) */
.inquiry-form__error {
    border: 1px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    color: #ff8888;
    padding: 1rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin: 0;
}

/* =========================================================================
   Thank you page styling
   ========================================================================= */

.thanks {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3.5rem) var(--gap-x) clamp(4rem, 6vw, 6rem);
    text-align: left;
}

.thanks__mark {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--signal);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.thanks__mark::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--signal);
}

.thanks__h {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--shop-900);
    line-height: 1.1;
    letter-spacing: -0.018em;
    margin-bottom: 1.5rem;
    font-variation-settings: 'opsz' 144;
}

.thanks__h em {
    font-style: italic;
    color: var(--signal);
}

.thanks__lead {
    font-size: 1.1rem;
    color: var(--shop-700);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 60ch;
}

.thanks__reference {
    border: 1px solid var(--shop-300);
    background: var(--shop-050);
    padding: 1rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--shop-700);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin-bottom: 2rem;
}

.thanks__reference strong {
    color: var(--shop-900);
    letter-spacing: 0.04em;
}

.thanks__next {
    border-top: 1px dashed var(--shop-300);
    padding-top: 2rem;
    margin-top: 2rem;
}

.thanks__next-head {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--shop-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.thanks__next ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.thanks__next li {
    color: var(--shop-700);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.thanks__next li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--signal);
    font-weight: 700;
}

.thanks__actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* =============================================================================
   Rental cards - public pricing page rentals section
   ============================================================================= */

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
}

.rental-card {
    background: var(--shop-100);
    border: 1px solid var(--shop-200);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.rental-card:hover {
    border-color: var(--signal);
}

.rental-card--leased {
    opacity: 0.72;
}

.rental-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.rental-card__status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border: 1px solid;
}

.rental-card__status--available {
    color: #5fbd87;
    border-color: #5fbd87;
    background: rgba(95, 189, 135, 0.1);
}

.rental-card__status--leased {
    color: var(--shop-500);
    border-color: var(--shop-500);
    background: transparent;
}

.rental-card__status--coming {
    color: var(--signal);
    border-color: var(--signal);
    background: rgba(255, 157, 46, 0.1);
}

.rental-card__rate {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--signal);
    line-height: 1;
}

.rental-card__period {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--shop-500);
    margin-left: 0.15rem;
}

.rental-card__rate--inquire {
    font-size: 1rem;
    font-family: var(--font-mono);
    color: var(--shop-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rental-card__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--shop-900);
    margin: 0;
    line-height: 1.2;
}

.rental-card__domain {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--shop-600);
    margin: 0;
    word-break: break-all;
}

.rental-card__meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--shop-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.rental-card__desc {
    font-size: 0.92rem;
    color: var(--shop-700);
    line-height: 1.5;
    margin: 0.25rem 0 0;
    flex-grow: 1;
}

.rental-card__foot {
    margin-top: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--shop-200);
}

.rental-card__cta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--signal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}

.rental-card__cta:hover {
    gap: 0.7rem;
}

.rental-card__arrow {
    transition: transform 0.2s ease;
}

.rental-card__cta:hover .rental-card__arrow {
    transform: translateX(2px);
}

.rental-card__leased-note {
    font-size: 0.85rem;
    color: var(--shop-500);
}

.rental-card__leased-note a {
    color: var(--signal);
}

.rental-grid__note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--shop-600);
    font-style: italic;
}

@media (max-width: 720px) {
    .rental-grid {
        grid-template-columns: 1fr;
    }
    .rental-card {
        padding: 1.25rem;
    }
    .rental-card__rate {
        font-size: 1.5rem;
    }
}

/* =============================================================================
   v11 - Homepage rental card additions: rate badge, CTA link, empty state
   ============================================================================= */

/* Inline rate display - sits in the overlay area next to status, not over the visual */
.site__rate {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    background: rgba(255, 157, 46, 0.12);
    border: 1px solid var(--signal);
    color: var(--signal);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.2rem 0.55rem;
    line-height: 1;
    margin-left: auto;
}

.site__rate-period {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--shop-700);
    margin-left: 0.1rem;
}

/* Group status + rate together at the top of the overlay */
.site__overlay {
    display: flex;
    flex-direction: column;
}

.site__overlay-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

/* When status is inside the overlay-head wrapper, override the absolute positioning */
.site__overlay-head .site__status {
    position: static;
    top: auto;
    left: auto;
}

.site__cta {
    display: inline-block;
    margin-top: 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--signal);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 157, 46, 0.3);
    padding-bottom: 0.15rem;
    transition: border-color 0.2s ease;
}

.site__cta:hover {
    border-bottom-color: var(--signal);
}

.site-grid__empty {
    color: var(--shop-600);
    font-size: 0.9rem;
    text-align: center;
    padding: 3rem 0;
}

.site-grid__empty a {
    color: var(--signal);
}

@media (max-width: 720px) {
    .site__rate {
        font-size: 0.85rem;
        padding: 0.18rem 0.45rem;
    }
}
