/* --- 0. SURGICAL ATELIER (LIGHT MODE) VARIABLES --- */
:root {
    /* Backgrounds: Warm Drafting Paper Tones */
    --bg-paper: #F2F0E9;
    /* The main cream background */
    --bg-surface: #E6E2D6;
    /* Slightly darker for cards/hover */
    --bg-white: #FFFFFF;
    /* Pure white for accents */

    /* Text: Ink & Graphite */
    --text-main: #1A1A1A;
    /* Sharp Black (Ink) */
    --text-muted: #595959;
    /* Graphite Grey */
    --text-light: #F2F0E9;
    /* Cream text for dark buttons */

    /* Accents & Lines */
    --accent-color: #C04D00;
    /* Burnt Orange (Safety/Industrial Accent) */
    --line-color: #D1CEC4;
    /* Visible grid lines */
    --line-strong: #1A1A1A;
    /* Heavy structural borders */

    /* Typography */
    --font-display: 'Manrope', sans-serif;
    --font-tech: 'JetBrains Mono', monospace;

    /* Dimensions */
    --container-width: 1400px;
    --header-height: 80px;
}

/* --- 1. RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-paper);
    font-family: var(--font-display);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
    /* Subtle technical grid background */
    background-image:
        linear-gradient(var(--line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-color) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
}

/* --- 2. TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.mono-label {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
    background: rgba(192, 77, 0, 0.1);
    /* Subtle highlight */
    width: fit-content;
    padding: 4px 8px;
}

.section-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    /* Heavy left border like a document margin */
    border-left: 4px solid var(--text-main);
    padding-left: 2rem;
    position: relative;
}

/* Precision Metaphor: Fig Label */
.section-headline::before {
    content: attr(data-fig);
    display: block;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

p {
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- 3. UI COMPONENTS --- */
.btn {
    display: inline-block;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 18px 36px;
    border: 2px solid var(--text-main);
    /* Thick technical border */
    color: var(--text-main);
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    text-align: center;
}

.btn:hover {
    background: var(--text-main);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--text-main);
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.05);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- 4. NAVIGATION (Frosted Glass Light) --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(242, 240, 233, 0.95);
    /* Matches cream bg */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-color);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
    text-decoration: underline;
}

/* --- 5. HERO SECTION (Index) --- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* More text space */
    padding-top: var(--header-height);
    border-bottom: 1px solid var(--line-strong);
}

.hero-content {
    padding: 4rem 4rem 4rem 10vw;
    /* Offset for asymmetry */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line-strong);
    background: var(--bg-paper);
}

.hero-title {
    font-size: clamp(3.5rem, 6.5vw, 6rem);
    margin-bottom: 2rem;
    color: var(--text-main);
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 3rem;
    font-family: var(--font-tech);
    /* Technical font for description */
}

.hero-image {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Black and white default, color on hover */
    filter: grayscale(100%);
    transition: filter 0.6s ease;
    opacity: 0.9;
    will-change: transform;
    animation: drift 30s infinite alternate ease-in-out;
    /* Subtle motion */
}

@keyframes drift {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.hero-image:hover img {
    filter: grayscale(0%);
}

.hover-reveal-hint {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--text-main);
    background: var(--bg-white);
    padding: 4px 8px;
    border: 1px solid var(--text-main);
    pointer-events: none;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-image:hover .hover-reveal-hint {
    opacity: 0;
}

/* Technical Data Points Overlay */
.data-point {
    position: absolute;
    background: var(--bg-white);
    border: 1px solid var(--text-main);
    padding: 8px 12px;
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--text-main);
    font-weight: 600;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

/* --- 6. METHODOLOGY (Single Column) --- */
.methodology-section {
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: #f4f4f0;
    /* Slightly darker/warmer than paper */
}

.methodology-content {
    padding: 6rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methodology-content p {
    margin-bottom: 1.5rem;
    max-width: 50ch;
}

/* --- 6.1 PHILOSOPHY TABS (Interactive) --- */
.philosophy-tabs-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Left column narrower */
    gap: 4rem;
    border-top: 1px solid var(--line-color);
    padding-top: 2rem;
}

.tab-triggers {
    display: flex;
    flex-direction: column;
    gap: 1px;
    /* Tiny gap for borders? Or 0 */
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--line-color);
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.tab-num {
    font-size: 0.7rem;
    opacity: 0.5;
    border: 1px solid var(--text-muted);
    padding: 2px 6px;
    border-radius: 2px;
}

.tab-btn:hover {
    background: var(--bg-surface);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--text-main);
    color: var(--bg-paper);
    border-color: var(--text-main);
}

.tab-btn.active .tab-num {
    border-color: var(--accent-color);
    color: var(--accent-color);
    opacity: 1;
}

.tab-content {
    display: none;
    /* Hidden by default */
    padding: 2rem;
    border: 1px solid var(--line-color);
    background: var(--bg-surface);
    height: 100%;
}

.tab-content.active {
    display: block;
    animation: snapFade 0.3s ease-out;
}

@keyframes snapFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* Mobile Tabs */
@media (max-width: 768px) {
    .philosophy-tabs-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tab-triggers {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 1rem;
        font-size: 0.8rem;
    }

    .tab-content {
        border-top: none;
    }
}

.slurry-note {
    margin-top: 3rem;
    padding: 1.5rem;
    border: 1px solid var(--accent-color);
    background: rgba(192, 77, 0, 0.03);
    max-width: 400px;
}

/* --- 7. SPECS GRID --- */
.specs-section {
    padding: 8rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    border-top: 2px solid var(--text-main);
    border-left: 1px solid var(--line-color);
}

.spec-card {
    background: var(--bg-paper);
    padding: 2rem;
    border-right: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    transition: background 0.3s;
    position: relative;
}

/* International Orange Accent Square */
.spec-card::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    opacity: 0.5;
}

.spec-card:hover {
    background: var(--bg-surface);
}

.spec-card h4 {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid var(--accent-color);
    padding: 6px 10px;
    letter-spacing: 0.05em;
    background: rgba(192, 77, 0, 0.05);
}

/* Little dot accent removed in favor of badge style */
.spec-card h4::before {
    content: none;
}

.spec-card p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

/* --- 8. PROJECTS --- */
.projects-section {
    /* No container width, full bleed with borders */
    background: var(--bg-paper);
    border-top: 2px solid var(--text-main);
}

.project-row {
    display: grid;
    grid-template-columns: 180px 1fr 1.2fr;
    border-bottom: 1px solid var(--line-color);
    min-height: 450px;
    text-decoration: none;
    color: inherit;
}

.project-meta {
    padding: 2rem;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--text-muted);
    border-right: 1px solid var(--line-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-paper);
}

.project-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-paper);
    transition: background 0.3s;
}

.project-row:hover .project-info {
    background: var(--bg-surface);
}

.project-img {
    height: 100%;
    overflow: hidden;
    border-left: 1px solid var(--line-strong);
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

/* On hover: Colorize image and zoom */
.project-row:hover .project-img img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* --- 9. FOOTER --- */
footer {
    background: var(--text-main);
    /* Dark footer anchor */
    color: var(--bg-paper);
    padding: 6rem 2rem;
}

footer a {
    color: var(--bg-paper);
    opacity: 0.7;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* --- 10. PROPERTY DETAILS (Ported & Adapted) --- */
.detail-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--line-strong);
    margin-top: var(--header-height);
}

.hero-inner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

/* Technical overlay for hero text */
.hero-inner .fade-in {
    background: var(--bg-paper);
    padding: 2rem;
    border: 1px solid var(--text-main);
    display: inline-block;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.backlink {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--text-main);
    background: var(--bg-paper);
    padding: 4px 8px;
    border: 1px solid var(--text-main);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 4rem auto;
    padding: 0 2rem;
}

.detail-main p {
    max-width: 65ch;
    /* Optimal reading length */
}

.detail-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--line-color);
    padding-bottom: 1rem;
}

.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid var(--line-color);
    background: var(--bg-white);
    text-align: center;
}

.fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fact strong {
    font-family: var(--font-tech);
    font-size: 1.2rem;
    color: var(--text-main);
}

.fact span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ico {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
    border-left: 2px solid var(--accent-color);
    padding-left: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    color: var(--text-main);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.amenity {
    background: var(--bg-white);
    border: 1px solid var(--line-color);
    padding: 1.5rem;
    transition: 0.2s;
}

.amenity:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.am-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.5rem 0 0.2rem;
    text-transform: uppercase;
}

.am-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-tech);
}

/* Sidebar */
.detail-side {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--bg-white);
    /* Starker white */
    padding: 2rem;
    border: 2px solid var(--line-strong);
    /* Thicker, stronger border */
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    /* Pop off the grid */
}

.quickfacts {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    align-items: center;
}

.quickfacts dt {
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0;
}

.quickfacts dd {
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    text-align: right;
}

/* Comparison Slider */
.rooms {
    margin-top: 2rem;
    border: 1px solid var(--text-main);
    background: var(--bg-white);
    padding: 1rem;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.chip {
    background: transparent;
    border: 1px solid var(--line-color);
    padding: 8px 16px;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}

.chip.active,
.chip:hover {
    background: var(--text-main);
    color: var(--bg-paper);
    border-color: var(--text-main);
}

.compare {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height for slider */
    overflow: hidden;
    border: 1px solid var(--line-strong);
}

.compare img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare input[type=range] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--bg-white);
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.handle::after {
    content: '< >';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--text-main);
    color: var(--bg-white);
    padding: 8px 12px;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    border-radius: 4px;
}

.fullscreen-mode {
    position: fixed;
    inset: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    border: none;
}

.fs-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    background: var(--bg-paper);
    border: 1px solid var(--text-main);
    padding: 8px;
    cursor: pointer;
}

/* Also See Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prop-card {
    display: block;
    border: 1px solid var(--line-color);
    background: var(--bg-white);
    transition: 0.3s;
}

.prop-card:hover {
    border-color: var(--text-main);
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.prop-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

.prop-card:hover img {
    filter: grayscale(0%);
}

.prop-card .body {
    padding: 1.5rem;
}

.prop-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* --- 11. BLOG STYLES --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.post-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--line-color);
    padding: 2rem;
    transition: 0.3s;
}

.post-card:hover {
    border-color: var(--text-main);
    background: var(--bg-surface);
    transform: translateY(-2px);
}

.post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.post-meta {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.post-body {
    max-width: 800px;
    margin: 4rem auto;
    background: var(--bg-white);
    padding: 4rem;
    border: 1px solid var(--line-color);
}

.post-body h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 50vh;
        order: -1;
        border-bottom: 1px solid var(--line-strong);
    }

    .hero-content {
        padding: 3rem 2rem;
        border-right: none;
    }

    .section-headline {
        padding-left: 1rem;
        border-left-width: 2px;
        font-size: 2.5rem;
    }

    .project-row {
        grid-template-columns: 1fr;
        border-bottom: 4px solid var(--line-strong);
        /* Distinct separation */
    }

    .project-meta {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--line-color);
        min-height: auto;
        padding: 1rem 2rem;
        background: var(--bg-surface);
    }

    .project-info {
        padding: 2rem;
        min-height: auto;
    }

    .project-img {
        height: 300px;
        border-left: none;
        border-top: 1px solid var(--line-strong);
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
        /* 2x2 on mobile */
    }

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

    .methodology-image {
        height: 400px;
        border-left: none;
        border-top: 1px solid var(--line-strong);
        order: 1;
    }

    .methodology-content {
        padding: 3rem 2rem;
    }

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

    .detail-side {
        position: static;
        margin-top: 2rem;
    }
}

/* --- NEW CONTACT SECTION STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    text-align: left;
}

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

.contact-info h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.office-hours {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--line-strong);
}

.office-hours h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.procedure-radio {
    display: none;
}

.procedure-label {
    display: block;
    border: 1px solid var(--line-strong);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.procedure-radio:checked+.procedure-label {
    background: var(--text-main);
    color: var(--bg-paper);
    border-color: var(--text-main);
}

.procedure-label:hover {
    background: var(--bg-surface);
}

.brutalist-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-main);
    border-radius: 0;
    padding: 0.75rem 0;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--text-main);
    transition: border-color 0.2s;
}

.brutalist-input:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    background: var(--text-main);
    color: var(--bg-paper);
    font-family: var(--font-tech);
    font-weight: 700;
    padding: 1.25rem 2rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: var(--accent-color);
}

.direct-email {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.direct-email a {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
}