body {
    overflow-x: hidden;
    position: relative;
    color: var(--color-sand-100);
    background: #070b10;
}

body:not(.admin-body)::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: var(--site-bg-image);
    background-size: var(--site-bg-size, cover);
    background-position: var(--site-bg-position, center center);
    background-repeat: no-repeat;
    opacity: 0.18;
    filter: saturate(0.75) contrast(1.08) brightness(0.74);
    transform: scale(1.02);
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.site-background__image {
    width: 100%;
    height: 100%;
    object-fit: var(--site-bg-size, cover);
    object-position: var(--site-bg-position, center center);
    opacity: min(var(--site-bg-opacity, 0.18), 0.16);
    filter: saturate(0.9) contrast(1.05) brightness(0.68);
    transform: scale(1.02);
}

body:not(.admin-body) .site-background {
    background: #070b10;
    opacity: 1;
}

body:not(.admin-body) .site-background__image {
    display: block;
    opacity: var(--site-bg-opacity, 0.24);
}

.site-background::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(200, 208, 216, 0.06), transparent 28rem),
        rgba(7, 11, 16, 0.08);
}

body > *:not(.site-background) {
    position: relative;
    z-index: 1;
}

:root {
    --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.16);
    --shadow-panel: 0 14px 34px rgba(0, 0, 0, 0.2);
    --shadow-lift: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.container,
.container--wide {
    width: min(100% - 2rem, 76rem);
    margin-inline: auto;
}

.container--wide {
    width: min(100% - 2rem, 88rem);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100%;
    z-index: var(--z-modal);
    padding: 0.75rem 1rem;
    border-radius: 0.35rem;
    color: #071016;
    background: #c8d0d8;
}

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

.section {
    padding: 4.5rem 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.02;
    letter-spacing: 0;
}

h1 {
    max-width: 100%;
    font-size: 2.35rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    color: rgba(246, 247, 242, 0.76);
}

a {
    text-underline-offset: 0.18em;
}

:focus-visible {
    outline: 2px solid #c8d0d8;
    outline-offset: 0.2rem;
}

.section-eyebrow,
.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
    color: #c8d0d8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-eyebrow::before,
.section-chip::before {
    content: "";
    width: 1.6rem;
    height: 2px;
    background: currentColor;
}

.section-intro,
.page-hero__lead,
.hero__lead {
    max-width: 100%;
    color: rgba(246, 247, 242, 0.86);
    font-size: 1rem;
    line-height: 1.65;
}

.rich-copy {
    display: grid;
    gap: 1rem;
}

.rich-copy p {
    color: rgba(246, 247, 242, 0.76);
}

.button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.85rem;
    padding: 0.75rem 1.15rem;
    border-radius: 0.35rem;
    font-weight: 800;
    line-height: 1;
    transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.button:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.button:active,
.text-link:active {
    transform: translateY(0);
}

.button--primary,
.button--light {
    color: #071016;
    background: #c8d0d8;
    border: 1px solid #c8d0d8;
    box-shadow: 0 14px 34px rgba(200, 208, 216, 0.16);
}

.button--secondary,
.button--ghost {
    color: var(--color-sand-100);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.button--secondary:hover,
.button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--full {
    width: 100%;
}

.text-link {
    min-height: auto;
    padding: 0;
    color: #c8d0d8;
}

.inline-note {
    max-width: 22rem;
    font-size: 0.86rem;
    color: rgba(246, 247, 242, 0.62);
}

.flash,
.form-message {
    padding: 1rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.flash {
    margin-top: 1rem;
}

.flash--success,
.form-message--success {
    color: #eafff5;
    background: rgba(31, 122, 90, 0.16);
    border-color: rgba(31, 122, 90, 0.45);
}

.flash--error,
.form-message--error {
    color: #fff0f1;
    background: rgba(166, 63, 70, 0.18);
    border-color: rgba(166, 63, 70, 0.42);
}

.form-message {
    margin-bottom: 1rem;
}

.form-message ul {
    margin-top: 0.75rem;
    padding-left: 1.2rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    background: rgba(7, 11, 16, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__bar {
    display: none;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 2.55rem;
    padding-inline: 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand__single {
    color: var(--color-sand-100);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.55rem;
    padding: 0.65rem 0.85rem;
    color: #071016;
    background: #c8d0d8;
    border-radius: 999px;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
    display: inline-block;
    width: 1rem;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle__lines {
    position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
    position: absolute;
    left: 0;
    content: "";
}

.nav-toggle__lines::before {
    top: -0.35rem;
}

.nav-toggle__lines::after {
    top: 0.35rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
    transform: translateY(0.35rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
    transform: translateY(-0.35rem) rotate(-45deg);
}

.site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    padding: 1rem;
    background: rgba(7, 11, 16, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.site-nav > ul {
    display: grid;
    gap: 0.35rem;
    list-style: none;
}

.site-nav a {
    display: inline-flex;
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    color: rgba(246, 247, 242, 0.78);
    font-size: 0.88rem;
    font-weight: 700;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
    color: #071016;
    background: #c8d0d8;
}

/* Heroes */
.hero,
.page-hero {
    display: grid;
    align-items: center;
    min-height: 72svh;
    padding: 6.5rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(7, 11, 16, 0.92), rgba(7, 11, 16, 0.64) 46%, rgba(7, 11, 16, 0.32)),
        linear-gradient(180deg, rgba(7, 11, 16, 0), #070b10),
        var(--section-background-image);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__grid,
.page-hero__grid,
.services-hero,
.contact-hero {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero__content,
.page-hero__copy,
.services-hero__copy,
.contact-hero__copy {
    display: grid;
    gap: 1rem;
    max-width: min(100%, 62rem);
}

.hero__content > p:not(.section-eyebrow),
.page-hero__copy > p:not(.section-eyebrow),
.services-hero__copy > p:not(.section-eyebrow),
.contact-hero__copy > p:not(.section-eyebrow) {
    max-width: 58rem;
}

.hero__body {
    max-width: 100%;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero__stats {
    display: grid;
    gap: 0;
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.6rem;
    overflow: hidden;
    background: rgba(7, 11, 16, 0.62);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.hero__stats div {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stats div:last-child {
    border-bottom: 0;
}

.hero__stats dt {
    color: rgba(246, 247, 242, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__stats dd {
    margin-top: 0.25rem;
    color: #c8d0d8;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.hero__visual-frame,
.page-hero__card,
.services-hero__media,
.contact-hero__media {
    display: none;
}

.hero__visual-frame img,
.page-hero__card img,
.services-hero__media img,
.contact-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0.45rem;
}

.page-hero__card p {
    margin-top: 0.8rem;
    color: rgba(246, 247, 242, 0.78);
}

/* Section systems */
.welcome-layout,
.story-grid,
.standards-layout,
.profile-layout,
.overview-shell,
.process-layout,
.contact-grid-layout,
.contact-form-layout,
.bands-shell__content,
.spotlight-header {
    display: grid;
    gap: 2rem;
}

.section--welcome,
.section--overview,
.section--story {
    color: #071016;
    background: #f4f6ef;
}

.section--welcome h2,
.section--overview h2,
.section--story h2,
.section--welcome p,
.section--overview p,
.section--story p,
.section--welcome .rich-copy p,
.section--overview .section-intro,
.section--story .section-intro,
.section--welcome .section-intro {
    color: #071016;
}

.section--welcome .section-eyebrow,
.section--overview .section-chip,
.section--story .section-eyebrow {
    color: #626c76;
}

.section--welcome .section-eyebrow::before,
.section--overview .section-chip::before,
.section--story .section-eyebrow::before {
    background: currentColor;
}

.welcome-layout__panel,
.story-grid__timeline,
.overview-shell__heading {
    padding: 1.4rem;
    color: var(--color-sand-100);
    background: #0b1118;
    border-radius: 0.65rem;
    box-shadow: 0 24px 55px rgba(7, 11, 16, 0.18);
}

.welcome-layout__panel,
.story-grid__timeline,
.overview-shell__heading,
.bands-shell,
.standards-layout__panel,
.process-layout__steps,
.contact-form-card,
.contact-grid-layout__details article,
.service-detail,
.client-card,
.team-card,
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.service-detail:hover,
.client-card:hover,
.team-card:hover,
.contact-grid-layout__details article:hover {
    transform: translateY(-0.18rem);
    border-color: rgba(200, 208, 216, 0.34);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.26);
}

.welcome-layout__panel *,
.story-grid__timeline *,
.overview-shell__heading * {
    color: inherit;
}

.welcome-layout__panel span,
.story-grid__timeline span,
.overview-shell__heading .section-chip {
    color: #c8d0d8;
}

.welcome-layout__panel blockquote {
    margin: 0.9rem 0;
    color: var(--color-sand-100);
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.08;
}

.welcome-layout__panel ul,
.standards-layout__panel ul,
.profile-layout__list,
.overview-shell__points,
.bands-shell__list,
.process-layout__steps ol {
    display: grid;
    gap: 0.7rem;
    list-style: none;
}

.welcome-layout__panel li,
.standards-layout__panel li,
.profile-layout__list li,
.overview-shell__points li,
.bands-shell__list li,
.process-layout__steps li {
    padding: 0.8rem 0.95rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-shell__points li {
    color: #071016;
    background: rgba(7, 16, 22, 0.05);
    border-color: rgba(7, 16, 22, 0.1);
}

.section--spotlight,
.section--service-list,
.section--bands,
.section--standards,
.section--process,
.section--profile,
.section--team-cards,
.section--contact-grid,
.section--contact-form {
    background: rgba(7, 11, 16, 0.66);
}

.section--cta,
.section--cta-banner,
.section--cta-frame,
.section--cta-compact {
    padding-top: 0;
}

.section--bands,
.section--standards,
.section--process,
.section--profile,
.section--team-cards,
.section--contact-grid,
.section--contact-form {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Services */
.services-showcase,
.section--service-list .container {
    display: grid;
    gap: 1.4rem;
}

.service-detail {
    display: grid;
    gap: 0;
    overflow: hidden;
    min-height: 100%;
    border-radius: 0.65rem;
    background: #0b1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.service-detail__rail {
    display: flex;
    align-items: center;
    padding: 0.85rem;
    background: #c8d0d8;
}

.service-detail__number {
    color: #071016;
    font-family: var(--font-display);
    font-weight: 800;
}

.service-detail__visual {
    position: relative;
    min-height: 18rem;
    background: #101820;
}

.service-detail__image,
.service-detail__image img {
    height: 100%;
}

.service-detail__image img {
    width: 100%;
    object-fit: cover;
}

.service-detail__visual-badge,
.service-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    color: #c8d0d8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail__visual-badge {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    color: #071016;
    background: #f4f6ef;
}

.service-detail__copy {
    display: grid;
    gap: 0.9rem;
    align-content: center;
    padding: 1.35rem;
}

.service-detail__copy h2,
.service-detail__copy h3 {
    max-width: 22rem;
}

.service-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.service-detail__divider {
    width: 2rem;
    height: 1px;
    background: #60f4ff;
}

.service-detail__eyebrow {
    color: rgba(246, 247, 242, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-detail__lede {
    color: rgba(246, 247, 242, 0.88);
}

.service-detail__body {
    color: rgba(246, 247, 242, 0.68);
}

.service-detail__actions {
    margin-top: 0.25rem;
}

/* Panels, clients, team */
.bands-shell,
.standards-layout__panel,
.process-layout__steps,
.contact-form-card,
.contact-grid-layout__details article,
.client-card,
.team-card,
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    border-radius: 0.65rem;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.bands-shell,
.standards-layout__panel,
.process-layout__steps,
.contact-form-card,
.contact-grid-layout__details article {
    padding: 1.4rem;
    background: #0b1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bands-shell__labels {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #60f4ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.profile-layout__media {
    overflow: hidden;
    border-radius: 0.65rem;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.profile-layout__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.client-grid,
.team-grid {
    display: grid;
    gap: 1rem;
}

.client-card {
    display: grid;
    gap: 0.8rem;
    min-height: 11rem;
    padding: 1.1rem;
    color: #071016;
    background: #ffffff;
    border: 1px solid rgba(7, 16, 22, 0.08);
}

.client-card:nth-child(2n) {
    background: #eaf6f7;
}

.client-card__eyebrow,
.team-card__eyebrow,
.team-card__role {
    color: #626c76;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.client-card h3,
.client-card p {
    color: #071016;
}

.client-card h3 {
    margin-top: auto;
}

.team-section-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-card {
    overflow: hidden;
    background: #0b1118;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.04);
}

.team-card__body {
    display: grid;
    gap: 0.7rem;
    padding: 1.1rem;
}

/* Forms */
.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid label,
.career-license-toggle {
    display: grid;
    gap: 0.45rem;
}

.career-license-toggle {
    margin: 0;
    padding: 0;
    border: 0;
}

.form-grid span,
.career-license-toggle > span {
    color: rgba(246, 247, 242, 0.72);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.78rem 0.9rem;
    color: #071016;
    background: #f4f6ef;
    border: 1px solid rgba(7, 16, 22, 0.16);
    border-radius: 0.4rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    border-color: #c8d0d8;
    box-shadow: 0 0 0 3px rgba(200, 208, 216, 0.2);
}

.form-grid textarea {
    resize: vertical;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.career-license-toggle__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.career-license-toggle__choice {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.9rem;
    padding: 0.65rem 0.85rem;
    color: #071016;
    background: #f4f6ef;
    border-radius: 0.4rem;
    border: 1px solid rgba(7, 16, 22, 0.16);
}

.career-license-toggle__choice input {
    width: auto;
    min-height: auto;
    margin: 0;
    accent-color: #626c76;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

/* CTA and footer */
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    display: grid;
    gap: 1.2rem;
    align-items: center;
    padding: 1.5rem;
    color: #071016;
    background:
        linear-gradient(90deg, #c8d0d8 0 0.35rem, transparent 0.35rem),
        #f4f6ef;
    border: 1px solid rgba(7, 16, 22, 0.08);
}

.cta-panel .button,
.cta-banner .button,
.cta-frame .button,
.cta-compact .button {
    min-width: 12rem;
}

.cta-panel *,
.cta-banner *,
.cta-frame *,
.cta-compact * {
    color: inherit;
}

.cta-panel p,
.cta-banner p,
.cta-frame p,
.cta-compact p,
.cta-panel .section-intro,
.cta-banner .section-intro,
.cta-frame .section-intro,
.cta-compact .section-intro {
    color: rgba(7, 16, 22, 0.74);
}

.cta-panel .section-eyebrow,
.cta-banner .section-eyebrow,
.cta-frame .section-eyebrow,
.cta-compact .section-eyebrow {
    color: #626c76;
}

.cta-panel .button,
.cta-banner .button,
.cta-frame .button,
.cta-compact .button {
    color: var(--color-sand-100);
    background: #071016;
    border-color: #071016;
}

.site-footer {
    padding: 3.5rem 0 1.5rem;
    background: #05080c;
    border-top: 3px solid #c8d0d8;
}

.site-footer__grid,
.site-footer__bottom {
    display: grid;
    gap: 1.5rem;
}

.site-footer__grid {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__kicker {
    color: #c8d0d8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__brand {
    display: grid;
    gap: 1rem;
}

.site-footer__brand h2 {
    max-width: 30rem;
    font-size: 1.65rem;
}

.site-footer__side {
    display: grid;
    gap: 1.5rem;
}

.site-footer__links,
.site-footer__details {
    display: grid;
    gap: 0.55rem;
    list-style: none;
}

.site-footer a:hover {
    color: #c8d0d8;
}

.site-footer__details li {
    display: grid;
    gap: 0.18rem;
}

.site-footer__details span {
    color: rgba(246, 247, 242, 0.52);
    font-size: 0.78rem;
}

.site-footer__bottom {
    padding-top: 1rem;
    color: rgba(246, 247, 242, 0.62);
    font-size: 0.84rem;
}

/* Admin */
.admin-body {
    background: #09111d;
    font-size: 0.875rem;
    line-height: 1.45;
}

.admin-body .site-background,
.admin-body .site-background::after {
    display: none;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    padding: 0.8rem 0.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(6, 13, 23, 0.96);
}

.admin-sidebar__brand {
    display: inline-grid;
    gap: 0.05rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: 1rem;
}

.admin-sidebar ul {
    display: grid;
    gap: 0.2rem;
    list-style: none;
}

.admin-sidebar a {
    display: block;
    padding: 0.5rem 0.62rem;
    border-radius: 0.45rem;
    color: rgba(247, 242, 232, 0.78);
    font-size: 0.84rem;
    line-height: 1.25;
}

.admin-sidebar a:hover {
    background: rgba(200, 208, 216, 0.08);
}

.admin-nav-toggle {
    display: inline-flex;
    margin-bottom: 0.55rem;
}

.admin-main {
    padding: 0.7rem 0.75rem 1rem;
}

.admin-topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.65rem;
}

.admin-topbar__eyebrow {
    margin-bottom: 0.2rem;
    color: #c8d0d8;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-topbar h1 {
    font-size: 1.45rem;
}

.admin-usercard,
.admin-card,
.admin-stat,
.admin-login__panel {
    padding: 0.75rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.admin-card {
    margin-bottom: 0.55rem;
}

.admin-card--compact {
    padding: 0.65rem;
}

.admin-main > section {
    margin-bottom: 0.75rem;
}

.admin-grid,
.admin-stats,
.admin-form-grid,
.admin-dashboard-links,
.admin-filter-bar,
.admin-preview-grid,
.admin-media-card__top,
.admin-media-meta,
.admin-media-stack,
.admin-media-picker,
.admin-usage-list,
.admin-application-list,
.admin-application-grid,
.admin-file-list {
    display: grid;
    gap: 0.55rem;
}

.admin-card__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 0.55rem;
}

.admin-card__header--tight {
    margin-bottom: 0.45rem;
}

.admin-form,
.admin-inline-form {
    display: grid;
    gap: 0.55rem;
}

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

.admin-form label,
.admin-inline-form label {
    display: grid;
    gap: 0.22rem;
}

.admin-form span,
.admin-inline-form span {
    color: rgba(247, 242, 232, 0.7);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-inline-form input,
.admin-inline-form textarea,
.admin-inline-form select {
    width: 100%;
    min-height: 2.2rem;
    padding: 0.45rem 0.58rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-sand-100);
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.84rem;
    line-height: 1.28;
}

.admin-form textarea,
.admin-inline-form textarea {
    min-height: 3.4rem;
    resize: vertical;
}

.admin-form .button,
.admin-inline-form .button,
.admin-form button,
.admin-inline-form button {
    min-height: 2.1rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
}

.admin-actions,
.admin-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.admin-table {
    width: 100%;
    overflow-x: auto;
}

.admin-table table {
    min-width: 42rem;
}

.admin-table th,
.admin-table td {
    padding: 0.45rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
    font-size: 0.84rem;
    line-height: 1.35;
}

.admin-table th {
    color: rgba(247, 242, 232, 0.62);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.admin-login__panel {
    width: min(100%, 30rem);
}

.admin-login__panel h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.media-preview {
    width: 8rem;
    border-radius: 0.45rem;
    overflow: hidden;
}

.media-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-preview--large {
    width: min(100%, 18rem);
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-note {
    color: rgba(247, 242, 232, 0.65);
    font-size: 0.74rem;
}

.admin-note-group {
    display: grid;
    gap: 0.4rem;
}

.admin-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
}

.admin-media-picker {
    grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
    max-height: 18rem;
    overflow: auto;
}

.admin-media-picker__item {
    display: grid;
    gap: 0.3rem;
    padding: 0.45rem;
    border-radius: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
    font-size: 0.72rem;
}

.admin-media-picker__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.3rem;
}

.admin-stat h2 {
    font-size: 1.3rem;
}

.admin-record-block {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.7rem;
}

.admin-usercard {
    display: grid;
    gap: 0.15rem;
}

.admin-usercard--compact {
    padding: 0.6rem 0.7rem;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.45rem;
    padding: 0.12rem 0.42rem;
    border-radius: 999px;
    color: var(--color-sand-100);
    background: rgba(200, 208, 216, 0.12);
    border: 1px solid rgba(200, 208, 216, 0.18);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-collapsible {
    padding: 0;
    overflow: hidden;
    margin-bottom: 0.7rem;
}

.admin-collapsible__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
}

.admin-collapsible__summary::-webkit-details-marker {
    display: none;
}

.admin-collapsible__body {
    padding: 0 0.75rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-inline-form--stack {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.35rem;
}

.admin-file-list {
    padding-left: 1rem;
}

.admin-file-list li {
    list-style: disc;
}

@media (min-width: 48rem) {
    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2.45rem;
    }

    .site-nav {
        position: static;
        display: block;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .site-nav > ul {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .site-nav a {
        width: auto;
        font-size: 0.82rem;
    }

    .nav-toggle {
        display: none;
    }

    .hero__grid,
    .page-hero__grid,
    .services-hero,
    .contact-hero {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
    }

    .hero__visual-frame,
    .page-hero__card,
    .services-hero__media,
    .contact-hero__media {
        display: block;
        padding: 0.55rem;
        border-radius: 0.65rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 28px 68px rgba(0, 0, 0, 0.32);
    }

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

    .hero__stats div {
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero__stats div:last-child {
        border-right: 0;
    }

    .welcome-layout,
    .story-grid,
    .standards-layout,
    .profile-layout,
    .overview-shell,
    .process-layout,
    .contact-grid-layout,
    .contact-form-layout,
    .bands-shell__content,
    .spotlight-header,
    .site-footer__grid,
    .site-footer__bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-showcase,
    .section--service-list .container {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 3.4rem minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .service-detail__rail {
        justify-content: center;
        align-items: stretch;
    }

    .service-detail__number {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }

    .service-detail:nth-child(even) .service-detail__visual {
        order: 3;
    }

    .service-detail:nth-child(even) .service-detail__copy {
        order: 2;
    }

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

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

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

    .cta-panel,
    .cta-banner,
    .cta-frame,
    .cta-compact {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-footer__side {
        display: grid;
        grid-template-columns: 0.7fr 1.3fr;
        gap: 2rem;
    }

    .admin-shell {
        grid-template-columns: 14.25rem minmax(0, 1fr);
    }

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

    .admin-form-grid .admin-form-grid__full {
        grid-column: 1 / -1;
    }

    .admin-filter-bar,
    .admin-media-card__top,
    .admin-application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .admin-nav-toggle {
        display: none;
    }
}

@media (min-width: 64rem) {
    .section {
        padding: 5.25rem 0;
    }

    .hero,
    .page-hero {
        min-height: 74svh;
    }

    .hero__visual-frame,
    .page-hero__card,
    .services-hero__media,
    .contact-hero__media {
        transform: translateY(0.75rem);
    }

    .service-detail__copy {
        padding: 1.8rem;
    }
}

@media (max-width: 47.99rem) {
    .container,
    .container--wide {
        width: min(100% - 1.25rem, 76rem);
    }

    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .section {
        padding: 3.25rem 0;
    }

    .hero,
    .page-hero {
        min-height: auto;
        padding: 4.75rem 0 3rem;
        background:
            linear-gradient(90deg, rgba(7, 11, 16, 0.94), rgba(7, 11, 16, 0.78)),
            linear-gradient(180deg, rgba(7, 11, 16, 0), #070b10),
            var(--section-background-image);
        background-size: cover;
        background-position: center;
    }

    .hero__actions,
    .cta-panel,
    .cta-banner,
    .cta-frame,
    .cta-compact {
        align-items: stretch;
    }

    .hero__actions .button,
    .cta-panel .button,
    .cta-banner .button,
    .cta-frame .button,
    .cta-compact .button {
        width: 100%;
    }

    .service-detail__rail {
        justify-content: space-between;
    }

    .service-detail__copy {
        padding: 1.1rem;
    }

    .service-detail:hover,
    .client-card:hover,
    .team-card:hover,
    .contact-grid-layout__details article:hover {
        transform: none;
    }

    .bands-shell__labels {
        display: grid;
    }

    .site-footer__grid {
        padding: 1.5rem 0;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
    }

    .admin-nav-list {
        display: none;
    }

    .admin-nav-list.is-open {
        display: grid;
    }
}

/* Dense public layout pass */
.section {
    padding-block: 2.65rem;
}

h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

h2 {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

h3 {
    font-size: clamp(1.05rem, 2.6vw, 1.35rem);
    line-height: 1.06;
}

p,
li {
    line-height: 1.55;
}

.site-alert {
    min-height: 1.6rem;
    padding-block: 0.25rem;
    font-size: 0.74rem;
}

.site-header__inner {
    min-height: 3.45rem;
    padding-block: 0.55rem;
}

.brand {
    min-height: 2rem;
    padding: 0.42rem 0.7rem;
}

.main-nav a,
.nav-toggle {
    min-height: 2.2rem;
    padding: 0.45rem 0.65rem;
}

.hero,
.page-hero {
    min-height: 58svh;
    padding: 4.35rem 0 2.35rem;
}

.hero__grid,
.page-hero__grid,
.services-hero,
.contact-hero {
    gap: clamp(1rem, 2.4vw, 1.6rem);
}

.hero__content,
.page-hero__copy,
.services-hero__copy,
.contact-hero__copy {
    gap: 0.7rem;
}

.hero__content > p:not(.section-eyebrow),
.page-hero__copy > p:not(.section-eyebrow),
.services-hero__copy > p:not(.section-eyebrow),
.contact-hero__copy > p:not(.section-eyebrow),
.section-intro,
.page-hero__lead,
.hero__lead {
    max-width: 55rem;
}

.hero__body,
.rich-copy,
.section-copy {
    gap: 0.65rem;
}

.hero__actions {
    margin-top: 0.25rem;
}

.button,
button,
input[type="submit"] {
    min-height: 2.35rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
}

.hero__stats {
    margin-top: 0.4rem;
}

.hero__stats div {
    padding: 0.72rem 0.85rem;
}

.hero__stats dd {
    font-size: clamp(1.35rem, 4vw, 1.95rem);
}

.hero__visual-frame,
.page-hero__card,
.services-hero__media,
.contact-hero__media {
    min-height: clamp(17rem, 36vw, 31rem);
}

.hero__visual-frame img,
.page-hero__card img,
.services-hero__media img,
.contact-hero__media img {
    min-height: inherit;
}

.welcome-layout,
.story-grid,
.standards-layout,
.profile-layout,
.overview-shell,
.process-layout,
.contact-grid-layout,
.contact-form-layout,
.bands-shell__content,
.spotlight-header,
.site-footer__grid,
.site-footer__bottom,
.services-showcase,
.section--service-list .container,
.client-grid,
.team-grid,
.form-grid {
    gap: clamp(0.85rem, 2vw, 1.35rem);
}

.welcome-layout__panel,
.standards-layout__panel,
.overview-shell,
.process-layout,
.profile-layout,
.contact-grid-layout__details,
.contact-form-card,
.service-detail,
.client-card,
.team-card,
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact,
.application-card {
    padding: clamp(0.9rem, 1.8vw, 1.25rem);
}

.welcome-layout__panel ul,
.standards-layout__panel ul,
.process-list,
.profile-list,
.contact-grid-layout__details,
.service-detail__copy,
.team-card__body,
.client-card,
.application-card form {
    gap: 0.55rem;
}

.welcome-layout__panel li,
.standards-layout__panel li,
.process-list li,
.profile-list li,
.contact-grid-layout__details article {
    padding: 0.62rem 0.72rem;
}

.spotlight-header {
    margin-bottom: 1rem;
}

.services-showcase {
    margin-top: 1rem;
}

.service-detail {
    min-height: 0;
}

.service-detail__visual {
    min-height: clamp(13rem, 23vw, 19rem);
}

.service-detail__copy {
    padding: 1rem;
}

.service-detail__summary {
    font-size: 0.98rem;
}

.service-detail .button {
    margin-top: auto;
}

.client-card,
.team-card {
    min-height: 0;
}

.client-card p,
.team-card p {
    line-height: 1.48;
}

.team-card__image {
    aspect-ratio: 4 / 3;
}

.form-field {
    gap: 0.35rem;
}

input,
select,
textarea {
    min-height: 2.45rem;
    padding: 0.6rem 0.7rem;
}

textarea {
    min-height: 6.5rem;
}

.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    align-items: center;
}

.site-footer {
    padding-block: 2.1rem 1rem;
}

.site-footer__grid {
    padding-block: 1.25rem;
}

.site-footer h2,
.site-footer h3 {
    margin-bottom: 0.5rem;
}

.site-footer__nav,
.site-footer__contact,
.site-footer address {
    gap: 0.38rem;
}

.site-footer__bottom {
    padding-top: 0.85rem;
}

@media (min-width: 48rem) {
    .section {
        padding-block: 3.2rem;
    }

    .hero,
    .page-hero {
        min-height: 60svh;
    }

    .hero__grid,
    .page-hero__grid,
    .services-hero,
    .contact-hero {
        align-items: center;
    }

    .service-detail {
        grid-template-columns: 3rem minmax(0, 0.92fr) minmax(0, 1.08fr);
    }

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

@media (min-width: 64rem) {
    .section {
        padding-block: 3.65rem;
    }

    .hero,
    .page-hero {
        min-height: 62svh;
        padding-block: 4.8rem 2.8rem;
    }

    .service-detail__copy {
        padding: 1.2rem;
    }

    .site-footer__side {
        gap: 1.25rem;
    }
}

@media (max-width: 47.99rem) {
    .section {
        padding-block: 2.35rem;
    }

    .hero,
    .page-hero {
        padding: 4rem 0 2.1rem;
    }

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

    .hero__stats div {
        padding: 0.65rem;
    }

    .hero__stats dt {
        font-size: 0.62rem;
    }

    .site-footer__grid {
        padding-block: 1rem;
    }
}

/* Compact two-column services */
.services-showcase,
.section--service-list .container {
    align-items: stretch;
}

.service-detail {
    height: 100%;
}

.service-detail__copy {
    align-content: start;
}

.service-detail__actions {
    margin-top: auto;
}

@media (min-width: 48rem) {
    .services-showcase,
    .section--service-list .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 0.85rem;
    }

    .services-showcase .service-detail,
    .section--service-list .service-detail {
        grid-template-columns: 2.25rem minmax(0, 0.88fr) minmax(0, 1.12fr);
        min-height: 15.5rem;
        max-height: 17.25rem;
    }

    .services-showcase .service-detail:nth-child(even) .service-detail__visual,
    .section--service-list .service-detail:nth-child(even) .service-detail__visual,
    .services-showcase .service-detail:nth-child(even) .service-detail__copy,
    .section--service-list .service-detail:nth-child(even) .service-detail__copy {
        order: initial;
    }

    .services-showcase .service-detail__rail,
    .section--service-list .service-detail__rail {
        padding: 0.6rem;
    }

    .services-showcase .service-detail__number,
    .section--service-list .service-detail__number {
        font-size: 0.75rem;
    }

    .services-showcase .service-detail__visual,
    .section--service-list .service-detail__visual {
        min-height: 100%;
        height: 100%;
    }

    .services-showcase .service-detail__copy,
    .section--service-list .service-detail__copy {
        min-height: 100%;
        padding: 0.75rem;
        gap: 0.42rem;
    }

    .services-showcase .service-detail__copy h2,
    .services-showcase .service-detail__copy h3,
    .section--service-list .service-detail__copy h2,
    .section--service-list .service-detail__copy h3 {
        max-width: none;
        font-size: clamp(1rem, 1.7vw, 1.2rem);
        line-height: 1.04;
    }

    .services-showcase .service-detail__lede,
    .section--service-list .service-detail__lede {
        font-size: 0.82rem;
        line-height: 1.42;
    }

    .services-showcase .service-detail__body,
    .section--service-list .service-detail__body {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.78rem;
        line-height: 1.4;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .services-showcase .service-detail__meta,
    .section--service-list .service-detail__meta {
        gap: 0.35rem;
    }

    .services-showcase .service-badge,
    .services-showcase .service-detail__eyebrow,
    .section--service-list .service-badge,
    .section--service-list .service-detail__eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }

    .services-showcase .service-detail__visual-badge,
    .section--service-list .service-detail__visual-badge {
        left: 0.55rem;
        bottom: 0.55rem;
        max-width: calc(100% - 1.1rem);
        font-size: 0.56rem;
    }

    .services-showcase .button,
    .section--service-list .button {
        min-height: 2rem;
        padding: 0.45rem 0.65rem;
        font-size: 0.72rem;
    }
}

@media (min-width: 72rem) {
    .services-showcase .service-detail,
    .section--service-list .service-detail {
        min-height: 14.25rem;
        max-height: 15.75rem;
    }
}

/* Unified public page treatment */
.page-hero {
    min-height: 58svh;
}

.page-hero__grid,
.services-hero,
.contact-hero {
    align-items: center;
}

.page-hero__card,
.services-hero__media,
.contact-hero__media,
.profile-layout__media {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.page-hero__card p {
    padding: 0.15rem 0.2rem 0;
    font-size: 0.9rem;
    line-height: 1.45;
}

.section--welcome,
.section--overview,
.section--story {
    color: var(--color-sand-100);
    background: rgba(7, 11, 16, 0.66);
}

.section--welcome h2,
.section--overview h2,
.section--story h2,
.section--welcome p,
.section--overview p,
.section--story p,
.section--welcome .rich-copy p,
.section--overview .section-intro,
.section--story .section-intro,
.section--welcome .section-intro {
    color: inherit;
}

.section--welcome .section-eyebrow,
.section--overview .section-chip,
.section--story .section-eyebrow,
.client-card__eyebrow,
.team-card__eyebrow,
.team-card__role {
    color: var(--color-sand-300);
}

.welcome-layout__panel,
.story-grid__timeline,
.overview-shell,
.overview-shell__heading,
.bands-shell,
.standards-layout__panel,
.process-layout__steps,
.contact-form-card,
.contact-grid-layout__details article,
.client-card,
.team-card,
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        #0b1118;
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.overview-shell {
    color: var(--color-sand-100);
}

.overview-shell__heading {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.overview-shell__points li,
.client-card {
    color: var(--color-sand-100);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.1);
}

.overview-shell__points li,
.client-card h3,
.client-card p {
    color: inherit;
}

.client-card {
    min-height: 8.75rem;
    padding: 0.9rem;
}

.client-card:nth-child(2n) {
    background: rgba(200, 208, 216, 0.075);
}

.team-section-heading {
    margin-bottom: 1rem;
}

.team-card__media img,
.profile-layout__media img,
.page-hero__card img,
.services-hero__media img,
.contact-hero__media img {
    filter: saturate(0.88) contrast(1.08);
}

.bands-shell__labels {
    color: var(--color-sand-300);
}

.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    color: var(--color-sand-100);
    background:
        linear-gradient(90deg, var(--color-sand-300) 0 0.24rem, transparent 0.24rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        #0b1118;
}

.cta-panel p,
.cta-banner p,
.cta-frame p,
.cta-compact p,
.cta-panel .section-intro,
.cta-banner .section-intro,
.cta-frame .section-intro,
.cta-compact .section-intro {
    color: rgba(246, 247, 242, 0.78);
}

.cta-panel .section-eyebrow,
.cta-banner .section-eyebrow,
.cta-frame .section-eyebrow,
.cta-compact .section-eyebrow {
    color: var(--color-sand-300);
}

.cta-panel .button,
.cta-banner .button,
.cta-frame .button,
.cta-compact .button {
    color: #071016;
    background: var(--color-sand-100);
    border-color: var(--color-sand-100);
}

.contact-grid-layout__notes {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.contact-grid-layout__notes p {
    padding: 0.65rem 0.75rem;
    border-left: 0.18rem solid var(--color-sand-300);
    background: rgba(255, 255, 255, 0.055);
}

/* Remove page divider lines */
.site-header,
.hero,
.page-hero,
.section--bands,
.section--standards,
.section--process,
.section--profile,
.section--team-cards,
.section--contact-grid,
.section--contact-form,
.site-footer,
.site-footer__grid,
.admin-content__header,
.admin-card + .admin-card {
    border-top: 0;
    border-bottom: 0;
}

/* Contact detail readability */
.contact-grid-layout__details {
    display: grid;
    gap: 0.65rem;
}

.contact-grid-layout__details article {
    display: grid;
    gap: 0.22rem;
    align-content: start;
}

.contact-grid-layout__details article span {
    display: block;
    color: rgba(246, 247, 242, 0.62);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-grid-layout__details article a,
.contact-grid-layout__details article strong {
    display: block;
    color: var(--color-sand-100);
    font-size: 0.98rem;
    line-height: 1.45;
}

/* Form action spacing */
.contact-form-card form {
    display: grid;
    gap: 0.9rem;
}

.form-grid input[type="file"] {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.62rem 0.75rem;
}

.form-grid input[type="file"]::file-selector-button {
    min-height: 2rem;
    margin-right: 0.75rem;
    padding: 0.35rem 0.7rem;
    color: #071016;
    font: inherit;
    font-weight: 800;
    background: var(--color-sand-300);
    border: 0;
    border-radius: 0.32rem;
    cursor: pointer;
}

.contact-form-card .button--full {
    margin-top: 0.2rem;
}

/* Softer site shadows */
.hero__stats,
.hero__visual-frame,
.page-hero__card,
.services-hero__media,
.contact-hero__media,
.welcome-layout__panel,
.story-grid__timeline,
.overview-shell,
.overview-shell__heading,
.bands-shell,
.standards-layout__panel,
.process-layout__steps,
.contact-form-card,
.contact-grid-layout__details article,
.service-detail,
.client-card,
.team-card,
.profile-layout__media,
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    box-shadow: var(--shadow-panel);
}

.service-detail:hover,
.client-card:hover,
.team-card:hover,
.contact-grid-layout__details article:hover {
    box-shadow: var(--shadow-lift);
}

.button--primary,
.button--light {
    box-shadow: var(--shadow-soft);
}

/* Frontend-aligned admin theme */
.admin-body {
    position: relative;
    overflow-x: hidden;
    color: var(--color-sand-100);
    background: #070b10;
    font-family: var(--font-body);
}

.admin-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 11, 16, 0.64), rgba(7, 11, 16, 0.88)),
        url("../images/default/about-standards.jpg");
    background-size: cover;
    background-position: center center;
    opacity: 0.34;
    filter: saturate(0.7) contrast(1.05) brightness(0.82);
}

.admin-shell,
.admin-login {
    position: relative;
    z-index: 1;
}

.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(7, 11, 16, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.admin-sidebar__brand {
    width: 100%;
    gap: 0;
    padding: 0.7rem 0.72rem;
    color: var(--color-sand-100);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.admin-sidebar__brand span,
.admin-sidebar__brand strong {
    display: inline;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-sidebar__brand span::after {
    content: " / ";
    color: var(--color-sand-300);
}

.admin-nav-list a {
    color: rgba(246, 247, 242, 0.72);
    border: 1px solid transparent;
}

.admin-nav-list a:hover,
.admin-nav-list a:focus-visible {
    color: var(--color-sand-100);
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.1);
}

.admin-main {
    background: transparent;
}

.admin-topbar {
    margin-bottom: 0.65rem;
    padding: 0.8rem 0.9rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(11, 17, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0.65rem;
    box-shadow: var(--shadow-panel);
}

.admin-topbar__eyebrow,
.admin-form span,
.admin-inline-form span,
.admin-table th,
.admin-note,
.admin-usercard span,
.admin-badge {
    color: rgba(246, 247, 242, 0.66);
}

.admin-topbar h1,
.admin-card h2,
.admin-card h3,
.admin-stat h2,
.admin-login__panel h1 {
    color: var(--color-sand-100);
    letter-spacing: -0.04em;
}

.admin-usercard,
.admin-card,
.admin-stat,
.admin-login__panel,
.admin-collapsible,
.admin-media-picker__item {
    color: var(--color-sand-100);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
        rgba(11, 17, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: var(--shadow-panel);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.admin-card,
.admin-stat {
    border-radius: 0.65rem;
}

.admin-card__header {
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-inline-form input,
.admin-inline-form textarea,
.admin-inline-form select {
    color: var(--color-sand-100);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-inline-form input:focus,
.admin-inline-form textarea:focus,
.admin-inline-form select:focus {
    border-color: rgba(200, 208, 216, 0.55);
    box-shadow: 0 0 0 3px rgba(200, 208, 216, 0.14);
}

.admin-form input::placeholder,
.admin-form textarea::placeholder,
.admin-inline-form input::placeholder,
.admin-inline-form textarea::placeholder {
    color: rgba(246, 247, 242, 0.42);
}

.admin-table {
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table table {
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    border-bottom-color: rgba(255, 255, 255, 0.075);
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.admin-actions .button,
.admin-quick-links .button,
.admin-form .button,
.admin-inline-form .button,
.admin-form button,
.admin-inline-form button,
.admin-dashboard-links a {
    color: #071016;
    background: var(--color-sand-100);
    border-color: var(--color-sand-100);
    box-shadow: var(--shadow-soft);
}

.admin-actions .button:hover,
.admin-quick-links .button:hover,
.admin-form .button:hover,
.admin-inline-form .button:hover,
.admin-form button:hover,
.admin-inline-form button:hover,
.admin-dashboard-links a:hover {
    color: #071016;
    background: var(--color-sand-300);
    border-color: var(--color-sand-300);
    transform: translateY(-0.08rem);
}

.admin-collapsible__summary {
    background: rgba(255, 255, 255, 0.035);
}

.admin-collapsible__body {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.admin-login {
    background: transparent;
}

.admin-login__panel {
    width: min(100% - 2rem, 28rem);
}

/* Keep section backgrounds clear so the site image stays continuous */
body:not(.admin-body) .site-background::after {
    background: none;
}

.hero,
.page-hero {
    background: transparent;
}

.section--welcome,
.section--overview,
.section--story,
.section--spotlight,
.section--service-list,
.section--bands,
.section--standards,
.section--process,
.section--profile,
.section--team-cards,
.section--contact-grid,
.section--contact-form,
.section--cta,
.section--cta-banner,
.section--cta-frame,
.section--cta-compact,
.site-footer {
    background: transparent;
}

.welcome-layout__panel,
.story-grid__timeline,
.overview-shell,
.bands-shell,
.standards-layout__panel,
.process-layout__steps,
.contact-form-card,
.contact-grid-layout__details article,
.service-detail,
.client-card,
.team-card,
.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    background: rgba(11, 17, 24, 0.82);
}

.cta-panel,
.cta-banner,
.cta-frame,
.cta-compact {
    color: var(--color-sand-100);
}

/* Compact section stacking */
.section {
    padding-block: 1.65rem;
}

.section + .section {
    padding-top: 0.35rem;
}

.section--cta,
.section--cta-banner,
.section--cta-frame,
.section--cta-compact {
    padding-block: 0.35rem 1.65rem;
}

.section--bands + .section--cta,
.section--bands + .section--cta-banner,
.section--bands + .section--cta-frame,
.section--bands + .section--cta-compact,
.section--process + .section--cta,
.section--process + .section--cta-banner,
.section--process + .section--cta-frame,
.section--process + .section--cta-compact,
.section--contact-form + .section--cta,
.section--contact-form + .section--cta-banner,
.section--contact-form + .section--cta-frame,
.section--contact-form + .section--cta-compact {
    padding-top: 0;
}

@media (min-width: 48rem) {
    .section {
        padding-block: 2.15rem;
    }

    .section + .section {
        padding-top: 0.45rem;
    }

    .section--cta,
    .section--cta-banner,
    .section--cta-frame,
    .section--cta-compact {
        padding-block: 0.45rem 2.15rem;
    }
}

@media (min-width: 64rem) {
    .section {
        padding-block: 2.45rem;
    }

    .section + .section {
        padding-top: 0.55rem;
    }

    .section--cta,
    .section--cta-banner,
    .section--cta-frame,
    .section--cta-compact {
        padding-block: 0.55rem 2.45rem;
    }
}

@media (max-width: 47.99rem) {
    .hero,
    .page-hero {
        background: transparent;
    }
}

/* Global background uses the former hero-image overlay */
body:not(.admin-body)::before {
    display: none;
}

body:not(.admin-body) .site-background {
    background: #070b10;
}

body:not(.admin-body) .site-background__image {
    display: block;
    opacity: var(--site-bg-opacity, 0.26);
    filter: saturate(0.78) contrast(1.08) brightness(0.72);
}

body:not(.admin-body) .site-background::after {
    background:
        linear-gradient(90deg, rgba(7, 11, 16, 0.96), rgba(7, 11, 16, 0.78) 48%, rgba(7, 11, 16, 0.48)),
        linear-gradient(180deg, rgba(7, 11, 16, 0.12), rgba(7, 11, 16, 0.76));
}

.hero,
.page-hero {
    background: transparent;
}

@media (max-width: 47.99rem) {
    .hero,
    .page-hero {
        background: transparent;
    }
}

@media (min-width: 48rem) {
    .page-hero__grid,
    .services-hero,
    .contact-hero {
        grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 0.72fr);
    }

    .page-hero__card,
    .services-hero__media,
    .contact-hero__media {
        min-height: clamp(16rem, 27vw, 25rem);
    }

    .page-hero__card img,
    .services-hero__media img,
    .contact-hero__media img {
        aspect-ratio: 4 / 4.4;
    }

    .overview-shell,
    .story-grid,
    .standards-layout,
    .process-layout,
    .contact-grid-layout,
    .contact-form-layout,
    .profile-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

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