:root {
    --bg: #0e0d0b;
    --panel: #171411;
    --panel-soft: #211c17;
    --text: #f3eee6;
    --muted: #a79d8f;
    --gold: #c7a266;
    --moss: #63705b;
    --wine: #4b2424;
    --line: rgba(243, 238, 230, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

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

.preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg);
    display: grid;
    place-items: center;
    transition: opacity .45s ease, visibility .45s ease;
}

.preloader span {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-nav {
    padding: 22px 0;
    background: linear-gradient(to bottom, rgba(14, 13, 11, .82), rgba(14, 13, 11, 0));
    transition: background .3s ease, padding .3s ease;
}

.site-nav.scrolled {
    padding: 12px 0;
    background: rgba(14, 13, 11, .95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.navbar-brand {
    color: var(--text);
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.logo-brand img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.admin-logo-brand img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.navbar-brand:hover,
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--gold);
}

.site-nav .nav-link {
    color: var(--text);
    margin-left: 26px;
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: .12rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
}

.lang-link {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .08rem;
}

.lang-link.active,
.lang-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.navbar-toggler {
    border-color: var(--line);
}

.hero-slider,
.hero-slider .carousel-item {
    height: 100vh;
    min-height: 680px;
}

.hero-slider img,
.page-hero,
.project-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.hero-overlay,
.page-hero::before,
.project-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 13, 11, .82), rgba(14, 13, 11, .18)),
        linear-gradient(0deg, rgba(14, 13, 11, .8), rgba(14, 13, 11, .08) 45%);
}

.hero-slider .hero-overlay {
    background: transparent;
}

.carousel-caption {
    left: 7vw;
    right: auto;
    bottom: 17vh;
    max-width: 820px;
    text-align: left;
}

.carousel-caption h1,
.page-hero h1,
.project-hero h1,
.compact-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 8vw, 8.7rem);
    line-height: .94;
    font-weight: 400;
}

.carousel-caption h1 {
    font-size: 72px;
    line-height: 1.15;
}

.hero-slider .carousel-item img {
    filter: none;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18rem;
    font-size: .75rem;
    margin-bottom: 18px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    margin-top: 28px;
    text-transform: uppercase;
    letter-spacing: .12rem;
    font-size: .76rem;
}

.link-arrow:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 64px;
    height: 64px;
    top: auto;
    bottom: 42px;
    border: 1px solid var(--line);
    color: var(--text);
    opacity: 1;
}

.carousel-control-prev {
    left: auto;
    right: 118px;
}

.carousel-control-next {
    right: 42px;
}

.section {
    padding: 110px 0;
}

.intro-section {
    background: linear-gradient(135deg, var(--panel), var(--bg) 55%, var(--wine));
}

.section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 4.5rem);
    line-height: 1.02;
    font-weight: 400;
}

.lead-text,
.rich-text {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.9;
}

.projects-band {
    background: var(--bg);
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 44px;
}

.project-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 430px;
    background: var(--panel-soft);
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 13, 11, .9), rgba(14, 13, 11, .1) 60%);
}

.project-card span,
.project-card h3 {
    position: absolute;
    z-index: 1;
    left: 28px;
    right: 28px;
}

.project-card span {
    bottom: 92px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .14rem;
    font-size: .72rem;
}

.project-card h3 {
    bottom: 30px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.project-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.05);
}

.page-shell {
    padding-top: 0;
}

.page-hero,
.project-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: end;
    padding: 180px 0 90px;
}

.page-hero .container,
.project-hero .container {
    position: relative;
    z-index: 1;
}

.compact-hero {
    padding: 190px 0 80px;
    background: linear-gradient(135deg, var(--panel-soft), var(--bg) 60%, var(--moss));
}

.project-detail dl {
    border-left: 1px solid var(--gold);
    padding-left: 28px;
}

.project-detail dt {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .14rem;
    font-size: .72rem;
}

.project-detail dd {
    margin-bottom: 24px;
    color: var(--text);
}

.project-video-section,
.project-gallery-section {
    padding-top: 0;
}

.project-video {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: var(--panel);
    border: 1px solid var(--line);
}

.project-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: var(--panel-soft);
    cursor: pointer;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.gallery-tile:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.05);
}

.gallery-modal .modal-content {
    background: rgba(14, 13, 11, .98);
}

.gallery-modal .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7vh 8vw;
}

.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.gallery-modal .carousel-control-prev {
    left: 28px;
    right: auto;
}

.gallery-modal .carousel-control-next {
    right: 28px;
}

.gallery-close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 3;
    filter: invert(1);
    opacity: .9;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-location {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 14px;
}

.contact-phone {
    margin-bottom: 8px;
}

.contact-map-link {
    position: relative;
    display: block;
    width: min(360px, 100%);
    aspect-ratio: 4 / 3;
    margin-top: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
}

.contact-map-link iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.85) invert(.9) contrast(.9);
    pointer-events: none;
}

.contact-map-link span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    background: rgba(14, 13, 11, .82);
    color: var(--gold);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08rem;
}

.form-control {
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    padding: 14px 16px;
}

.form-control:focus {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border-color: var(--gold);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(243, 238, 230, .5);
}

.btn-gold {
    border: 1px solid var(--gold);
    border-radius: 0;
    color: #171411;
    background: var(--gold);
    padding: 13px 24px;
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-size: .78rem;
}

.btn-gold:hover {
    color: var(--text);
    background: transparent;
    border-color: var(--gold);
}

.site-footer {
    padding: 86px 0 34px;
    background: var(--panel);
    border-top: 1px solid var(--line);
}

.site-footer h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 5.5rem);
}

.footer-logo {
    width: min(420px, 100%);
    height: auto;
    margin-top: 4px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: var(--muted);
}

.site-footer a:hover,
.socials a:hover {
    color: var(--gold);
}

.socials {
    display: flex;
    gap: 16px;
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: .85rem;
}

.reveal-up,
.reveal-card {
    opacity: 0;
    transform: translateY(28px);
}

.in-view {
    animation: reveal .7s cubic-bezier(.2, .7, .2, 1) forwards;
}

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

.login-screen,
.admin-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(199, 162, 102, .15), transparent 28%), var(--bg);
    color: var(--text);
}

.login-screen {
    display: grid;
    place-items: center;
}

.login-card,
.admin-form,
.admin-panel,
.admin-table {
    background: rgba(23, 20, 17, .92);
    border: 1px solid var(--line);
}

.login-card {
    width: min(420px, calc(100vw - 30px));
    padding: 34px;
}

.login-card h1,
.admin-form h2 {
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 24px;
}

.login-logo {
    width: min(270px, 100%);
    height: auto;
    margin: 0 auto 24px;
}

.login-card .form-control {
    margin-bottom: 14px;
}

.admin-nav {
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: calc(100vh - 96px);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: calc(100vh - 96px);
    padding: 24px 18px;
    background: rgba(23, 20, 17, .96);
    border-right: 1px solid var(--line);
}

.admin-sidebar a {
    display: block;
    padding: 13px 14px;
    margin-bottom: 6px;
    color: var(--muted);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: .08rem;
    font-size: .76rem;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: var(--gold);
    border-color: var(--line);
    background: rgba(255, 255, 255, .035);
}

.admin-content {
    min-width: 0;
    padding: 32px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.admin-panel {
    padding: 26px;
}

.admin-panel span {
    color: var(--muted);
}

.admin-panel strong {
    display: block;
    font-size: 2.7rem;
    color: var(--gold);
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-form {
    padding: 26px;
}

.admin-form-wide {
    max-width: 920px;
}

.admin-form label {
    color: var(--muted);
    margin-top: 14px;
    margin-bottom: 7px;
}

.translation-block {
    margin: 22px 0;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .025);
}

.translation-block h2,
.translation-block h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--gold);
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 6px;
}

.upload-note {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(199, 162, 102, .45);
    background: rgba(199, 162, 102, .08);
    color: var(--muted);
}

.upload-note strong {
    display: block;
    color: var(--gold);
    margin-bottom: 8px;
}

.upload-note p {
    margin: 0 0 5px;
    font-size: .9rem;
}


.admin-gallery-item {
    display: block;
    border: 1px solid var(--line);
    padding: 8px;
    color: var(--muted);
}

.admin-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 8px;
}

.admin-map-picker {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .025);
}

.admin-map-picker h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--gold);
}

.admin-map-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 260px;
    margin-top: 16px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--panel);
}

.admin-map-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.admin-table {
    padding: 12px;
}

.note-editor.note-frame {
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, .04);
    color: #171411;
}

.note-editor .note-toolbar {
    background: #f3eee6;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.note-editor .note-editable {
    min-height: 220px;
    background: #fff;
    color: #171411;
    line-height: 1.65;
}

.note-editor .dropdown-toggle::after {
    display: none;
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--line);
}

@media (max-width: 991px) {
    .site-nav {
        background: rgba(14, 13, 11, .96);
    }

    .site-nav .nav-link {
        margin-left: 0;
        padding: 12px 0;
    }

    .language-switcher {
        margin-left: 0;
        padding: 12px 0;
    }

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

    .hero-slider,
    .hero-slider .carousel-item {
        min-height: 620px;
    }

    .carousel-caption {
        left: 24px;
        right: 24px;
        bottom: 120px;
    }

    .section {
        padding: 76px 0;
    }

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

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .admin-sidebar a {
        margin-bottom: 0;
    }

    .admin-content {
        padding: 22px 14px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1,
    .page-hero h1,
    .project-hero h1,
    .compact-hero h1 {
        font-size: 3rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 52px;
        height: 52px;
    }

    .carousel-control-prev {
        right: 84px;
    }

    .carousel-control-next {
        right: 22px;
    }

    .project-card {
        min-height: 360px;
    }
}

/* Public site redesign */
:root {
    --bg: #0b0c0b;
    --panel: #141514;
    --panel-soft: #1b1b18;
    --text: #f7f1e8;
    --muted: #b8afa1;
    --gold: #d7b46f;
    --moss: #6f8063;
    --wine: #6d3431;
    --clay: #a9684b;
    --line: rgba(247, 241, 232, .14);
    --shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

body {
    background:
        radial-gradient(circle at 18% 12%, rgba(111, 128, 99, .16), transparent 30%),
        linear-gradient(180deg, #0b0c0b 0%, #111210 42%, #0b0c0b 100%);
    color: var(--text);
    font-size: 16px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(247, 241, 232, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 241, 232, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 75%);
}

.site-nav {
    margin: 18px clamp(12px, 3vw, 42px) 0;
    padding: 10px 0;
    border: 1px solid rgba(247, 241, 232, .1);
    border-radius: 999px;
    background: rgba(11, 12, 11, .54);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
    backdrop-filter: blur(22px);
}

.site-nav.scrolled {
    margin-top: 10px;
    padding: 8px 0;
    background: rgba(11, 12, 11, .88);
    border-bottom: 1px solid rgba(247, 241, 232, .1);
}

.logo-brand img,
.admin-logo-brand img {
    width: 124px;
    height: 58px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.site-nav .nav-link {
    position: relative;
    margin-left: 24px;
    color: rgba(247, 241, 232, .82);
    font-size: .72rem;
    letter-spacing: .15rem;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-left: 28px;
    padding: 0 18px;
    border: 1px solid rgba(215, 180, 111, .62);
    border-radius: 999px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .12rem;
    font-size: .7rem;
}

.nav-cta:hover {
    background: var(--gold);
    color: #15130f;
}

.language-switcher {
    gap: 6px;
}

.lang-link {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
}

.navbar-toggler {
    border: 0;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.hero-slider,
.hero-slider .carousel-item {
    height: 96vh;
    min-height: 720px;
}

.hero-slider .carousel-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 26vh;
    background: linear-gradient(0deg, var(--bg), transparent);
    pointer-events: none;
}

.hero-slider img {
    filter: saturate(.98) contrast(1.06);
}

.hero-slider .hero-overlay,
.page-hero::before,
.project-hero::before {
    background:
        linear-gradient(90deg, rgba(11, 12, 11, .88), rgba(11, 12, 11, .42) 48%, rgba(11, 12, 11, .16)),
        linear-gradient(0deg, rgba(11, 12, 11, .86), rgba(11, 12, 11, .06) 56%);
}

.carousel-caption {
    left: clamp(24px, 7vw, 112px);
    right: 24px;
    bottom: clamp(112px, 18vh, 170px);
    max-width: 940px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    letter-spacing: .2rem;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
    opacity: .78;
}

.carousel-caption h1,
.page-hero h1,
.project-hero h1,
.compact-hero h1 {
    max-width: 980px;
    font-size: clamp(3.7rem, 9vw, 9.4rem);
    line-height: .88;
    text-wrap: balance;
}

.carousel-caption h1 {
    font-size: clamp(3.3rem, 7.5vw, 8.3rem);
    line-height: .92;
    margin-top: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 26px;
    margin-top: 34px;
}

.hero-actions .link-arrow {
    margin-top: 0;
}

.btn-gold {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border-color: var(--gold);
    background: var(--gold);
    color: #17130d;
    padding: 14px 24px;
    box-shadow: 0 14px 42px rgba(215, 180, 111, .22);
}

.btn-gold:hover {
    background: rgba(215, 180, 111, .08);
}

.link-arrow {
    color: rgba(247, 241, 232, .86);
    font-weight: 700;
}

.carousel-control-prev,
.carousel-control-next {
    border-radius: 50%;
    background: rgba(255, 255, 255, .045);
    backdrop-filter: blur(14px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.section {
    padding: clamp(82px, 10vw, 138px) 0;
}

.intro-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(27, 27, 24, .92), rgba(11, 12, 11, .96) 48%, rgba(109, 52, 49, .54)),
        var(--panel);
}

.intro-section::after {
    content: "";
    position: absolute;
    right: 7vw;
    top: 82px;
    width: 1px;
    height: calc(100% - 164px);
    background: linear-gradient(var(--gold), transparent);
    opacity: .34;
}

.section h2 {
    color: var(--text);
    text-wrap: balance;
}

.lead-text,
.rich-text {
    color: rgba(247, 241, 232, .72);
}

.rich-text p {
    margin-bottom: 1.2rem;
}

.studio-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.studio-points span {
    padding: 10px 14px;
    border: 1px solid rgba(247, 241, 232, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: rgba(247, 241, 232, .82);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .11rem;
}

.projects-band {
    background: linear-gradient(180deg, #0b0c0b, #121310);
}

.section-title {
    align-items: flex-end;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
}

.project-card {
    min-height: clamp(360px, 39vw, 520px);
    border: 1px solid rgba(247, 241, 232, .11);
    border-radius: 8px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border: 1px solid rgba(247, 241, 232, .16);
    opacity: 0;
    transform: scale(.985);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.project-card::after {
    background:
        linear-gradient(0deg, rgba(8, 9, 8, .94), rgba(8, 9, 8, .22) 62%),
        linear-gradient(135deg, rgba(111, 128, 99, .28), transparent 45%);
}

.project-card span {
    bottom: 106px;
    color: var(--gold);
}

.project-card h3 {
    bottom: 34px;
    font-size: clamp(1.7rem, 2.2vw, 2.45rem);
    line-height: 1;
}

.project-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.page-hero,
.project-hero {
    min-height: 74vh;
    padding: 210px 0 86px;
    overflow: hidden;
}

.page-hero::after,
.project-hero::after,
.compact-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 190px;
    background: linear-gradient(0deg, var(--bg), transparent);
    pointer-events: none;
}

.compact-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: flex-end;
    padding: 190px 0 88px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(20, 21, 20, .96), rgba(11, 12, 11, .9) 54%, rgba(111, 128, 99, .72)),
        var(--panel-soft);
}

.compact-hero::before {
    content: "";
    position: absolute;
    inset: 90px 6vw auto auto;
    width: 34vw;
    max-width: 470px;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(215, 180, 111, .32);
    transform: rotate(12deg);
    opacity: .55;
}

.compact-hero .container {
    position: relative;
    z-index: 1;
}

.hero-lede {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(247, 241, 232, .7);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.7;
}

.project-detail dl {
    position: sticky;
    top: 130px;
    border-left: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
}

.project-video {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-tile {
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.contact-section {
    background: linear-gradient(180deg, transparent, rgba(111, 128, 99, .1));
}

.contact-info-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    box-shadow: var(--shadow);
}

.contact-location,
.contact-phone,
.contact-info-panel p,
.contact-info-panel a {
    font-size: 1.02rem;
}

.contact-map-link {
    width: 100%;
    border-radius: 8px;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)),
        rgba(20, 21, 20, .8);
    box-shadow: var(--shadow);
}

.form-control {
    min-height: 54px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .055);
}

textarea.form-control {
    min-height: 170px;
}

.alert-success {
    border: 1px solid rgba(111, 128, 99, .55);
    border-radius: 8px;
    background: rgba(111, 128, 99, .18);
    color: var(--text);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 78px 0 32px;
    background:
        linear-gradient(135deg, #151613, #0b0c0b 52%, rgba(169, 104, 75, .22)),
        var(--panel);
}

.footer-marquee {
    max-width: 1050px;
    margin-bottom: 52px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 5vw, 5.8rem);
    line-height: .95;
    color: var(--text);
    text-wrap: balance;
}

.footer-main {
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.footer-logo {
    width: min(360px, 92%);
    border-radius: 8px;
    opacity: .92;
}

.footer-label {
    margin-bottom: 12px;
    color: var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: .15rem;
    font-size: .72rem;
}

.socials a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .site-nav {
        margin: 10px 10px 0;
        border-radius: 22px;
        background: rgba(11, 12, 11, .92);
    }

    .logo-brand img {
        width: 112px;
        height: 52px;
    }

    .site-nav .nav-link {
        margin-left: 0;
    }

    .site-nav .nav-link::after {
        left: 0;
        right: auto;
        width: 38px;
    }

    .navbar-collapse {
        padding: 12px 4px 6px;
    }

    .hero-slider,
    .hero-slider .carousel-item {
        min-height: 660px;
    }

    .carousel-caption {
        left: 24px;
        bottom: 118px;
    }

    .page-hero,
    .project-hero,
    .compact-hero {
        padding-top: 160px;
    }

    .project-detail dl {
        position: static;
    }
}

@media (max-width: 576px) {
    .site-nav {
        margin: 8px;
    }

    .carousel-caption h1,
    .page-hero h1,
    .project-hero h1,
    .compact-hero h1 {
        font-size: 3.35rem;
    }

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

    .hero-actions .btn-gold {
        width: 100%;
    }

    .section-title {
        display: block;
    }

    .contact-form,
    .contact-info-panel {
        padding: 22px;
    }
}
