:root {
    --bg: #250203;
    --bg-soft: #3b0a0c;
    --panel: #451314;
    --panel-2: #5c1a1d;
    --text: #f7f0df;
    --muted: #d2c2a6;
    --gold: #d4af37;
    --gold-soft: #f2ca50;
    --line: rgba(212, 175, 55, 0.22);
    --ok: #3a7c59;
    --error: #9b2c2c;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 22%),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
        linear-gradient(180deg, #2a0405 0%, #1b0102 100%);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 85%);
    opacity: 0.38;
}

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

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

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(27, 1, 2, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell,
.nav,
.nav-cta,
.hero-actions,
.flash-wrap,
.footer-grid {
    display: flex;
    align-items: center;
}

.nav-shell {
    justify-content: space-between;
    gap: 18px;
    min-height: 84px;
}

.mobile-menu-toggle,
.mobile-nav-shell,
.mobile-nav-close {
    display: none;
}

.mobile-nav-shell[hidden] {
    display: none !important;
}

.brand,
.footer-brand {
    letter-spacing: 0.24rem;
    font-size: 0.92rem;
    color: var(--gold-soft);
    font-weight: 700;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}

.nav {
    gap: 18px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav a {
    color: var(--muted);
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 6px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-soft), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.nav a.active,
.nav a:hover,
.site-footer a:hover,
.card a:hover {
    color: var(--gold-soft);
}

.nav a.active::after,
.nav a:hover::after {
    transform: scaleX(1);
}

.nav-item-has-panel:hover .mega-menu,
.nav-item-has-panel:focus-within .mega-menu,
.mega-menu {
    display: none !important;
}

.nav-cta {
    gap: 12px;
}

.mobile-menu-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(69, 19, 20, 0.72);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold-soft);
    display: block;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(840px, 82vw);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 15;
}

.mega-menu-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        linear-gradient(180deg, rgba(69, 19, 20, 0.94), rgba(27, 1, 2, 0.98)),
        rgba(27, 1, 2, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.mega-menu-lead,
.mega-menu-links {
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(27, 1, 2, 0.28);
}

.mega-menu-lead p {
    margin: 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mega-menu-card {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(69, 19, 20, 0.46);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.mega-menu-card:hover,
.mega-menu-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(92, 26, 29, 0.58);
}

.mega-menu-card strong {
    color: var(--gold-soft);
    font-size: 0.94rem;
}

.mega-menu-card span {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14rem;
    font-size: 0.78rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.btn:focus-visible,
.mobile-menu-toggle:focus-visible,
.nav a:focus-visible,
.mobile-nav a:focus-visible {
    outline: 2px solid rgba(242, 202, 80, 0.75);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: #2b1d00;
    border-color: transparent;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
}

.hero,
.section {
    padding: 72px 0;
}

.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-has-bg {
    min-height: min(820px, calc(100vh - 88px));
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

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

.hero-bg::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(55, 0, 2, 0.96) 0%, rgba(55, 0, 2, 0.78) 38%, rgba(55, 0, 2, 0.34) 66%, rgba(55, 0, 2, 0.66) 100%),
        linear-gradient(180deg, rgba(55, 0, 2, 0.12), rgba(55, 0, 2, 0.96));
}

.hero-bg::after {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(212, 175, 55, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 86px 86px;
    opacity: 0.62;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    opacity: 0.64;
    filter: grayscale(58%) contrast(1.22) brightness(0.68) saturate(0.85);
    transform: scale(1.02);
}

.breadcrumb-wrap {
    padding-top: 14px;
}

.breadcrumb-shell {
    display: flex;
    justify-content: flex-start;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(69, 19, 20, 0.42);
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
}

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

.breadcrumb-separator {
    color: rgba(242, 202, 80, 0.5);
}

.breadcrumb-current {
    color: var(--gold-soft);
}

.section-tight {
    padding-top: 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy {
    position: relative;
    padding: 42px 40px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background:
        linear-gradient(180deg, rgba(92, 26, 29, 0.18), rgba(27, 1, 2, 0.12)),
        rgba(27, 1, 2, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(212, 175, 55, 0.09);
    pointer-events: none;
}

.hero-has-bg .hero-copy {
    padding-left: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-has-bg .hero-copy::before {
    display: none;
}

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

h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    max-width: 10ch;
    text-wrap: balance;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.2rem;
}

.lead,
.section-head p,
.card p,
.form-note,
.site-footer p,
label,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

.lead {
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.04rem;
}

.hero-media-frame {
    position: relative;
    min-height: 430px;
    padding: 16px;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-media-frame::after {
    content: none;
}

.hero-media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.11);
    pointer-events: none;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.46;
    filter: grayscale(58%) contrast(1.22) brightness(0.72) saturate(0.82);
    transform: scale(1.02);
}

.hero-sigil {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 148px;
    height: 148px;
    border: 1px solid rgba(242, 202, 80, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-soft);
    font-size: 4.6rem;
    line-height: 1;
    text-shadow: 0 0 28px rgba(242, 202, 80, 0.3);
    background: rgba(27, 1, 2, 0.5);
    opacity: 0.42;
}

.hero-orbit {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-orbit-one {
    width: 250px;
    height: 250px;
}

.hero-orbit-two {
    width: 360px;
    height: 360px;
    border-style: dashed;
}

.hero-signal {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 4px;
    min-width: 190px;
    padding: 14px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(27, 1, 2, 0.62);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hero-signal span {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.hero-signal strong {
    color: var(--gold-soft);
    font-size: 0.98rem;
}

.hero-signal-top {
    top: 44px;
    left: 34px;
}

.hero-signal-mid {
    top: 46%;
    right: 24px;
}

.hero-signal-bottom {
    right: 46px;
    bottom: 42px;
}

.hero-actions {
    gap: 14px;
    flex-wrap: wrap;
}

.section-head {
    margin-bottom: 28px;
}

.section-head p {
    color: var(--muted);
    max-width: 70ch;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(92, 26, 29, 0.7), rgba(59, 10, 12, 0.8));
    border: 1px solid var(--line);
    min-height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card > :not(.card-media),
.signature-card > :not(.signature-media) {
    position: relative;
    z-index: 2;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-soft), transparent 70%);
    opacity: 0.7;
}

.card::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 68%);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.36);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
}

.card-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(27, 1, 2, 0.34);
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.card-media,
.signature-media {
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    background: rgba(27, 1, 2, 0.42);
    opacity: 0.3;
    pointer-events: none;
}

.card-media::after,
.signature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(27, 1, 2, 0.18), rgba(27, 1, 2, 0.82)),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 34%);
    pointer-events: none;
}

.card-media img,
.signature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(65%) contrast(1.18) brightness(0.72) saturate(0.76);
    transform: scale(1.03);
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.card:hover .card-media img,
.signature-card:hover .signature-media img {
    transform: scale(1.05);
    filter: grayscale(38%) contrast(1.2) brightness(0.78) saturate(0.86);
}

.card p {
    flex: 1;
    margin-bottom: 0;
}

.card a,
.card .chip {
    display: inline-block;
    margin-top: 14px;
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
}

.card-link::after {
    content: " ↗";
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat {
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.72);
    position: relative;
}

.stat::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.09);
    pointer-events: none;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: var(--gold-soft);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.editorial-band {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.editorial-band-copy,
.editorial-list {
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.editorial-list {
    display: grid;
    gap: 16px;
}

.editorial-item {
    display: grid;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.editorial-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.editorial-item strong {
    color: var(--gold-soft);
    letter-spacing: 0.04rem;
}

.editorial-item span {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.marquee-band {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.62);
}

.marquee-band span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(27, 1, 2, 0.32);
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.spotlight-panel,
.reference-inline {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 22px;
    margin-top: 26px;
}

.spotlight-copy,
.reference-inline-copy,
.spotlight-media,
.reference-inline-media,
.mini-panel,
.framed-note {
    padding: 26px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.spotlight-media img,
.reference-inline-media img {
    width: 100%;
    min-height: 280px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.spotlight-matrix,
.visual-panel {
    display: grid;
    gap: 14px;
    padding: 26px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
        rgba(69, 19, 20, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

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

.matrix-item,
.visual-panel-item {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(27, 1, 2, 0.34);
}

.matrix-item span,
.visual-panel-item span {
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.matrix-item strong,
.visual-panel-item strong {
    color: var(--text);
    font-size: 1.02rem;
}

.matrix-item p,
.visual-panel-item p {
    margin: 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
}

.twin-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hero-aftergrid,
.route-panel-strip,
.contact-stage,
.service-showcase {
    display: grid;
    gap: 20px;
}

.hero-aftergrid {
    grid-template-columns: 0.78fr 0.78fr 1.12fr;
}

.route-panel-strip,
.contact-stage,
.service-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-panel,
.route-visual,
.contact-stage-copy,
.contact-stage-visual,
.service-showcase-copy,
.service-showcase-visual,
.signature-card,
.service-proof-band {
    padding: 26px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.route-panel p,
.contact-stage-copy p,
.service-showcase-copy p,
.signature-card p,
.service-proof-copy p {
    margin: 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.route-visual,
.contact-stage-visual,
.service-showcase-visual {
    padding: 14px;
}

.route-visual img,
.contact-stage-visual img,
.service-showcase-visual img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.signature-card {
    display: grid;
    gap: 14px;
    align-content: start;
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.signature-card .btn {
    width: 100%;
}

.service-stack {
    display: grid;
    gap: 14px;
}

.service-row {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(27, 1, 2, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-row:hover,
.service-row:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(69, 19, 20, 0.52);
}

.service-row-media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    background: rgba(27, 1, 2, 0.42);
    opacity: 0.28;
    pointer-events: none;
}

.service-row-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(27, 1, 2, 0.84), rgba(27, 1, 2, 0.44), rgba(27, 1, 2, 0.84)),
        linear-gradient(180deg, rgba(27, 1, 2, 0.12), rgba(27, 1, 2, 0.72));
}

.service-row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) contrast(1.2) brightness(0.72) saturate(0.75);
    transform: scale(1.04);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.service-row:hover .service-row-media img,
.service-row:focus-visible .service-row-media img {
    transform: scale(1.06);
    filter: grayscale(48%) contrast(1.22) brightness(0.78) saturate(0.86);
}

.service-row-copy {
    display: grid;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.service-row strong {
    color: var(--gold-soft);
    font-size: 1rem;
}

.service-row span {
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.service-proof-band {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
}

.service-proof-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: start;
}

.service-proof-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(27, 1, 2, 0.26);
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.mobile-priority-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mini-panel p,
.framed-note p,
.spotlight-copy p,
.reference-inline-copy p {
    margin: 0;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.68);
    position: relative;
}

.process-step::before {
    content: "";
    position: absolute;
    inset: auto 24px 0 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.process-step .step-no {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    align-items: start;
}

.detail-sidebar,
.detail-main {
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.detail-stack {
    display: grid;
    gap: 18px;
}

.detail-kicker {
    color: var(--gold-soft);
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.78rem;
}

.detail-checklist {
    display: grid;
    gap: 12px;
}

.detail-checklist div {
    padding: 14px 16px;
    border-left: 2px solid var(--gold);
    background: rgba(27, 1, 2, 0.34);
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
}

.detail-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.detail-metric {
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(27, 1, 2, 0.42);
    min-height: 132px;
}

.detail-metric strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
    font-size: 1.2rem;
}

.quote-panel {
    padding: 24px;
    border: 1px solid var(--line);
    background: rgba(27, 1, 2, 0.44);
}

.quote-panel blockquote {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1.05rem;
}

.quote-panel cite {
    color: var(--gold-soft);
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
}

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

.reference-card {
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(69, 19, 20, 0.68);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.reference-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.32);
}

.reference-card img {
    width: 100%;
    min-height: 260px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.reference-card figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
}

.cta-panel {
    padding: 32px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(92, 26, 29, 0.86), rgba(37, 2, 3, 0.98));
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 28%);
    pointer-events: none;
}

.cta-panel p {
    color: var(--muted);
    max-width: 62ch;
    font-family: Arial, Helvetica, sans-serif;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.form-panel,
.content-panel {
    padding: 28px;
    background: rgba(69, 19, 20, 0.72);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.form-panel-emphasis,
.newsletter-panel {
    background:
        linear-gradient(180deg, rgba(92, 26, 29, 0.28), rgba(69, 19, 20, 0.82)),
        rgba(69, 19, 20, 0.72);
}

.contact-detail-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-detail-list p {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 14px 16px;
    background: rgba(27, 1, 2, 0.28);
    border-left: 2px solid var(--gold);
    font-family: Arial, Helvetica, sans-serif;
}

.contact-detail-list strong {
    color: var(--gold-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.contact-detail-list span {
    color: var(--muted);
}

.contact-detail-list a {
    color: inherit;
    text-decoration: none;
}

.contact-detail-list a:hover,
.contact-detail-list a:focus-visible {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-stack {
    display: grid;
    gap: 18px;
}

.application-panel form,
.newsletter-panel form {
    gap: 16px;
}

.specialization-grid {
    padding: 14px 16px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(27, 1, 2, 0.24);
}

form {
    display: grid;
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.88rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(27, 1, 2, 0.8);
    color: var(--text);
    padding: 12px 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.56);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.check-grid {
    display: grid;
    gap: 10px;
}

.check-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

.check-inline input {
    width: auto;
}

.flash-wrap {
    justify-content: center;
    padding-top: 20px;
}

.flash {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
}

.flash-success {
    background: rgba(58, 124, 89, 0.24);
}

.flash-error {
    background: rgba(155, 44, 44, 0.24);
}

.site-footer {
    padding: 54px 0 72px;
    border-top: 1px solid var(--line);
    margin-top: 50px;
    background: linear-gradient(180deg, rgba(27, 1, 2, 0), rgba(27, 1, 2, 0.52));
}

.footer-grid {
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.footer-grid > div {
    flex: 1;
}

.reveal-section,
.reveal-item,
.stat,
.process-step,
.detail-metric,
.mini-panel,
.framed-note,
.spotlight-copy,
.spotlight-matrix,
.visual-panel,
.content-panel,
.form-panel {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-section.is-visible,
.reveal-item.is-visible,
.stat.is-visible,
.process-step.is-visible,
.detail-metric.is-visible,
.mini-panel.is-visible,
.framed-note.is-visible,
.spotlight-copy.is-visible,
.spotlight-matrix.is-visible,
.visual-panel.is-visible,
.content-panel.is-visible,
.form-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .mega-menu {
        width: min(760px, 88vw);
    }

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

@media (max-width: 1023px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-cta {
        display: none;
    }

    .mobile-nav-shell {
        position: fixed;
        inset: 0;
        z-index: 40;
        display: flex;
        justify-content: flex-end;
        padding: 0;
        background:
            radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 30%),
            rgba(10, 0, 1, 0.72);
        backdrop-filter: blur(8px);
        animation: mobileOverlayIn 0.2s ease;
    }

    .mobile-nav-panel {
        width: 50vw;
        min-width: 280px;
        max-width: 420px;
        height: 100vh;
        overflow-y: auto;
        padding: 18px;
        border: 1px solid rgba(212, 175, 55, 0.22);
        border-top: 0;
        border-right: 0;
        border-bottom: 0;
        background:
            linear-gradient(180deg, rgba(69, 19, 20, 0.98), rgba(27, 1, 2, 0.98)),
            var(--bg);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
        animation: mobileDrawerIn 0.24s ease;
    }

    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 0 0 16px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    }

    .mobile-nav-brand {
        color: var(--gold-soft);
        font-weight: 700;
        letter-spacing: 0.2rem;
        font-size: 0.82rem;
    }

    .mobile-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 12px;
        border: 1px solid rgba(212, 175, 55, 0.28);
        background: rgba(27, 1, 2, 0.42);
        color: var(--gold-soft);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.72rem;
        letter-spacing: 0.12rem;
        text-transform: uppercase;
        cursor: pointer;
    }

    .mobile-nav {
        display: grid;
        gap: 8px;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 16px;
        border: 1px solid rgba(212, 175, 55, 0.12);
        background: rgba(69, 19, 20, 0.52);
        color: #111827;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.96rem;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .mobile-nav a.active,
    .mobile-nav a:hover {
        color: var(--gold-soft);
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateX(3px);
    }

    .mobile-nav-cta {
        display: grid;
        gap: 10px;
        margin-top: 16px;
    }

    .hero-grid,
    .split,
    .card-grid,
    .stats,
    .footer-grid,
    .editorial-band,
    .spotlight-panel,
    .reference-inline,
    .twin-panel-grid,
    .hero-aftergrid,
    .route-panel-strip,
    .contact-stage,
    .service-showcase,
    .service-proof-band,
    .mobile-priority-grid,
    .process-grid,
    .reference-grid,
    .detail-layout,
    .detail-metric-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-has-bg {
        min-height: auto;
        display: block;
        padding: 64px 0 44px;
    }

    .hero-bg::before {
        background:
            linear-gradient(180deg, rgba(55, 0, 2, 0.9) 0%, rgba(55, 0, 2, 0.82) 52%, rgba(55, 0, 2, 0.96) 100%),
            linear-gradient(90deg, rgba(55, 0, 2, 0.96), rgba(55, 0, 2, 0.55));
    }

    .hero-bg::after {
        background-size: 54px 54px;
        opacity: 0.46;
    }

    .hero-bg img {
        object-position: 62% center;
        opacity: 0.36;
        filter: grayscale(70%) contrast(1.16) brightness(0.66) saturate(0.78);
    }

    .hero-has-bg .hero-grid {
        gap: 24px;
    }

    .hero-has-bg .hero-copy {
        width: min(680px, 100%);
        padding: 0;
    }

    .hero-has-bg .hero-media {
        display: none;
    }

    .breadcrumb-wrap {
        padding-top: 10px;
    }

    .breadcrumb {
        width: 100%;
        gap: 8px;
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .nav-shell {
        min-height: 76px;
        padding: 12px 0;
    }

    .hero-copy {
        padding: 28px 22px;
    }

    .hero-media-frame {
        min-height: 340px;
        padding: 12px;
    }

    .hero-signal {
        min-width: 160px;
    }

    .hero-signal-top {
        top: 28px;
        left: 22px;
    }

    .hero-signal-mid {
        top: auto;
        right: 20px;
        bottom: 98px;
    }

    .hero-signal-bottom {
        right: auto;
        left: 24px;
        bottom: 26px;
    }

    .hero,
    .section {
        padding: 56px 0;
    }

    .section-tight {
        padding-top: 18px;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.2rem, 12vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.65rem, 7vw, 2.4rem);
    }

    .btn,
    .cta-actions .btn,
    .mobile-nav-cta .btn {
        width: 100%;
        min-height: 48px;
    }

    .stats {
        gap: 14px;
    }

    .stat,
    .editorial-band-copy,
    .editorial-list,
    .detail-sidebar,
    .detail-main,
    .form-panel,
    .content-panel,
    .mini-panel,
    .route-panel,
    .route-visual,
    .contact-stage-copy,
    .contact-stage-visual,
    .service-showcase-copy,
    .service-showcase-visual,
    .signature-card,
    .service-proof-band,
    .framed-note,
    .spotlight-copy,
    .spotlight-matrix,
    .visual-panel,
    .cta-panel {
        padding: 22px;
    }

    .contact-detail-list p,
    .specialization-grid {
        padding: 14px;
    }

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

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

    .reference-card img {
        min-height: 220px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-grid h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(1180px, calc(100% - 24px));
    }

    .site-header {
        backdrop-filter: blur(10px);
    }

    .brand,
    .footer-brand {
        font-size: 0.82rem;
        letter-spacing: 0.18rem;
    }

    .hero-copy::before {
        inset: 10px;
    }

    .hero-has-bg {
        padding: 48px 0 34px;
    }

    .hero-bg::before {
        background:
            linear-gradient(180deg, rgba(55, 0, 2, 0.94) 0%, rgba(55, 0, 2, 0.88) 58%, rgba(55, 0, 2, 0.98) 100%),
            linear-gradient(90deg, rgba(55, 0, 2, 0.98), rgba(55, 0, 2, 0.72));
    }

    .hero-bg img {
        object-position: 68% center;
        opacity: 0.3;
        transform: scale(1.08);
    }

    .hero-has-bg .eyebrow {
        margin-bottom: 12px;
        font-size: 0.68rem;
        letter-spacing: 0.14rem;
    }

    .hero-has-bg h1 {
        font-size: clamp(2.35rem, 15vw, 4rem);
        line-height: 0.95;
        max-width: 7.4ch;
    }

    .hero-has-bg .lead {
        max-width: 32ch;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .marquee-band {
        padding: 14px;
        gap: 10px;
    }

    .marquee-band span {
        font-size: 0.68rem;
        letter-spacing: 0.1rem;
    }

    .card {
        min-height: 230px;
        padding: 20px;
    }

    .signature-card {
        min-height: 260px;
    }

    .route-visual img,
    .contact-stage-visual img,
    .service-showcase-visual img {
        min-height: 220px;
    }

    .contact-detail-list {
        gap: 10px;
    }

    .hero-media-frame {
        min-height: 320px;
    }

    .hero-sigil {
        width: 118px;
        height: 118px;
        font-size: 3.7rem;
    }

    .hero-orbit-one {
        width: 210px;
        height: 210px;
    }

    .hero-orbit-two {
        width: 290px;
        height: 290px;
    }

    .spotlight-matrix {
        grid-template-columns: 1fr;
    }

    .process-step,
    .reference-card,
    .detail-metric,
    .stat {
        padding: 18px;
    }

    label {
        font-size: 0.84rem;
    }

    input,
    select,
    textarea {
        padding: 12px;
        font-size: 16px;
    }

    .check-inline {
        align-items: flex-start;
    }

    .site-footer {
        padding: 42px 0 56px;
    }

    .mobile-priority-grid,
    .twin-panel-grid {
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-section,
    .reveal-item,
    .stat,
    .process-step,
    .detail-metric,
    .mini-panel,
    .framed-note,
    .spotlight-copy,
    .spotlight-matrix,
    .visual-panel,
    .content-panel,
    .form-panel {
        opacity: 1;
        transform: none;
    }
}

@keyframes mobileNavIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileOverlayIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mobileDrawerIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Imperial reference pass: split editorial hero with integrated media. */
body {
    background:
        radial-gradient(circle at 76% 18%, rgba(212, 175, 55, 0.12), transparent 28%),
        linear-gradient(180deg, #320304 0%, #210001 56%, #160001 100%);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.site-header {
    background: rgba(45, 0, 3, 0.96);
    box-shadow: none;
}

.nav-shell {
    width: min(1480px, calc(100% - 72px));
    min-height: 88px;
}

.brand {
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: clamp(1.65rem, 2.2vw, 2.1rem);
    letter-spacing: 0.08em;
    line-height: 1;
}

.nav {
    gap: clamp(10px, 1.12vw, 18px);
}

.nav a {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav > a:first-child {
    display: none;
}

.nav-cta .btn {
    min-height: 46px;
    padding: 0 22px;
    font-weight: 800;
}

.nav-cta .btn-secondary {
    display: none;
}

h1,
h2,
h3,
.footer-brand {
    font-family: "Bodoni Moda", Georgia, serif;
    font-weight: 500;
}

.hero {
    padding: 0;
    background:
        linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(212, 175, 55, 0.025) 1px, transparent 1px),
        linear-gradient(115deg, #360304 0%, #260001 50%, #430806 100%);
    background-size: 88px 88px, 88px 88px, auto;
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.hero-has-bg {
    display: block;
    min-height: 0;
}

.hero-grid.shell {
    width: min(1480px, calc(100% - 120px));
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    gap: 0;
    align-items: stretch;
    min-height: 760px;
}

.hero-copy,
.hero-has-bg .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 74px clamp(34px, 5vw, 82px) 74px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-copy::before,
.hero-has-bg .hero-copy::before {
    display: none;
}

.hero-copy .eyebrow {
    max-width: 52rem;
    color: rgba(242, 202, 80, 0.82);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.36em;
    margin-bottom: 40px;
}

.hero h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 6.3vw, 6.6rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    color: #fff7ea;
}

.page-home .hero h1 {
    max-width: 8.2ch;
    font-size: clamp(4.8rem, 8.1vw, 8.6rem);
    line-height: 0.91;
}

.hero-copy .lead {
    max-width: 19.5em;
    margin-top: 28px;
    color: rgba(247, 240, 223, 0.78);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    font-style: italic;
    line-height: 1.45;
}

.hero-actions {
    gap: 34px;
    margin-top: 42px;
}

.page-home .hero-actions .btn-secondary {
    width: auto;
    min-height: auto;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 1px solid rgba(242, 202, 80, 0.62);
    color: var(--gold-soft);
    box-shadow: none;
}

.page-home .hero-actions .btn-secondary::after {
    content: " ->";
    margin-left: 12px;
}

.hero-media {
    display: flex;
    align-items: stretch;
    padding: 42px 0 42px 18px;
}

.hero-media-frame {
    position: relative;
    width: 100%;
    min-height: 676px;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.13);
    background: rgba(23, 0, 1, 0.38);
    box-shadow: inset 0 0 0 18px rgba(26, 0, 1, 0.34);
}

.hero-media-frame::before {
    inset: 18px;
    z-index: 3;
    border-color: rgba(212, 175, 55, 0.1);
}

.hero-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(47, 0, 2, 0.86) 0%, rgba(47, 0, 2, 0.22) 42%, rgba(47, 0, 2, 0.18) 100%),
        linear-gradient(180deg, rgba(47, 0, 2, 0.12), rgba(47, 0, 2, 0.76));
}

.hero-image {
    z-index: 1;
    opacity: 0.72;
    object-position: 52% center;
    filter: grayscale(56%) contrast(1.18) brightness(0.76) saturate(0.82);
}

.hero-media-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 62% 34%, rgba(212, 175, 55, 0.12), transparent 28%),
        radial-gradient(circle at 58% 36%, transparent 0 34%, rgba(212, 175, 55, 0.16) 34.4%, transparent 35%),
        radial-gradient(circle at 58% 36%, transparent 0 51%, rgba(212, 175, 55, 0.1) 51.3%, transparent 52%);
}

.hero-stat-card,
.hero-quote-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(48, 0, 2, 0.72);
    backdrop-filter: blur(2px);
}

.hero-stat-card {
    top: 64px;
    right: 34px;
    width: min(318px, calc(100% - 68px));
    padding: 34px 38px;
}

.hero-stat-card strong {
    display: block;
    color: var(--gold-soft);
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: clamp(3.2rem, 5.8vw, 5rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hero-stat-card span,
.hero-quote-card span {
    display: block;
    color: rgba(247, 240, 223, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.8;
    text-transform: uppercase;
}

.hero-quote-card {
    left: 38px;
    bottom: 34px;
    width: min(400px, calc(100% - 76px));
    padding: 32px 36px;
    border-left: 4px solid var(--gold-soft);
    background: rgba(109, 14, 9, 0.78);
}

.hero-stars {
    color: var(--gold-soft);
    font-size: 0.95rem;
    letter-spacing: 0.38em;
    margin-bottom: 18px;
}

.hero-quote-card p {
    margin: 0 0 22px;
    color: #fff7ea;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.22rem;
    font-style: italic;
    line-height: 1.45;
}

.hero-sigil,
.hero-orbit,
.hero-signal,
.hero-bg {
    display: none;
}

.hero:not(.hero-has-bg) .hero-media {
    display: none;
}

.hero:not(.hero-has-bg) .hero-grid {
    grid-template-columns: minmax(0, 0.78fr);
    min-height: 430px;
}

.trust-strip {
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    background: #220001;
}

.trust-shell {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
    min-height: 126px;
}

.trust-shell span {
    color: rgba(247, 240, 223, 0.26);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 1320px) {
    .nav-shell {
        width: min(1480px, calc(100% - 42px));
    }

    .nav {
        gap: 13px;
    }

    .nav a {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .nav-cta .btn-secondary {
        display: none;
    }

    .hero-grid.shell {
        width: min(1320px, calc(100% - 68px));
    }
}

@media (max-width: 1023px) {
    .nav-shell {
        width: min(1180px, calc(100% - 40px));
    }

    .hero {
        padding: 0;
    }

    .hero-grid,
    .hero-has-bg .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 0;
        padding: 52px 0 0;
    }

    .hero-grid.shell {
        width: min(1180px, calc(100% - 40px));
    }

    .hero-copy,
    .hero-has-bg .hero-copy {
        width: 100%;
        padding: 0;
    }

    .hero-copy .eyebrow {
        margin-bottom: 24px;
        letter-spacing: 0.24em;
    }

    .hero h1,
    .page-home .hero h1 {
        max-width: 9ch;
        font-size: clamp(3.35rem, 12vw, 6.2rem);
        line-height: 0.92;
    }

    .hero-copy .lead {
        max-width: 26em;
        font-size: clamp(1.25rem, 4.4vw, 1.72rem);
    }

    .hero-media,
    .hero-has-bg .hero-media {
        display: flex;
        padding: 34px 0 0;
    }

    .hero-media-frame {
        min-height: 390px;
        box-shadow: inset 0 0 0 12px rgba(26, 0, 1, 0.34);
    }

    .hero-media-frame::before {
        inset: 12px;
    }

    .hero-image {
        object-position: 54% center;
    }

    .hero-stat-card {
        top: 22px;
        right: 22px;
        width: 232px;
        padding: 22px;
    }

    .hero-stat-card strong {
        font-size: 3.3rem;
    }

    .hero-quote-card {
        left: 22px;
        bottom: 22px;
        width: min(390px, calc(100% - 44px));
        padding: 22px;
    }

    .trust-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
        padding: 28px 0;
    }
}

@media (max-width: 640px) {
    .nav-shell {
        width: min(1180px, calc(100% - 24px));
    }

    .brand {
        font-size: 1.45rem;
    }

    .hero-has-bg {
        padding: 0;
    }

    .hero-grid,
    .hero-has-bg .hero-grid {
        padding-top: 36px;
    }

    .hero-grid.shell {
        width: min(1180px, calc(100% - 24px));
    }

    .hero-copy .eyebrow,
    .hero-has-bg .eyebrow {
        margin-bottom: 18px;
        font-size: 0.66rem;
        letter-spacing: 0.16em;
        line-height: 1.8;
    }

    .hero h1,
    .hero-has-bg h1,
    .page-home .hero h1 {
        max-width: 7.8ch;
        font-size: clamp(3rem, 16vw, 4.65rem);
        line-height: 0.91;
    }

    .hero-copy .lead,
    .hero-has-bg .lead {
        max-width: 27ch;
        margin-top: 22px;
        font-size: 1.22rem;
        line-height: 1.48;
    }

    .hero-actions {
        gap: 14px;
        margin-top: 28px;
    }

    .page-home .hero-actions .btn-secondary {
        width: auto;
        margin-top: 8px;
    }

    .hero-media,
    .hero-has-bg .hero-media {
        padding-top: 28px;
    }

    .hero-media-frame {
        min-height: 305px;
        margin-right: -12px;
        margin-left: -12px;
        border-right: 0;
        border-left: 0;
        box-shadow: inset 0 0 0 10px rgba(26, 0, 1, 0.34);
    }

    .hero-media-frame::before {
        inset: 10px;
    }

    .hero-media-frame::after {
        background:
            linear-gradient(90deg, rgba(47, 0, 2, 0.66), rgba(47, 0, 2, 0.1)),
            linear-gradient(180deg, rgba(47, 0, 2, 0.08), rgba(47, 0, 2, 0.82));
    }

    .hero-image {
        object-position: 56% center;
        opacity: 0.64;
        transform: scale(1.03);
    }

    .hero-stat-card {
        top: 16px;
        right: 16px;
        width: 164px;
        padding: 15px;
    }

    .hero-stat-card strong {
        font-size: 2.45rem;
    }

    .hero-stat-card span {
        font-size: 0.58rem;
        letter-spacing: 0.13em;
        line-height: 1.55;
    }

    .hero-quote-card {
        display: none;
    }

    .trust-shell {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px 0;
    }

    .trust-shell span {
        font-size: 1.45rem;
    }
}

/* Polish pass: richer section depth and persistent conversion actions. */
.hero-credential {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.hero-credential span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(20, 0, 1, 0.28);
    color: rgba(247, 240, 223, 0.68);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-home main > .section {
    position: relative;
}

.page-home main > .section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.07), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(156, 33, 24, 0.18), transparent 34%);
    opacity: 0.72;
}

.page-home main > .section > .shell {
    position: relative;
    z-index: 1;
}

.section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 38px;
}

.section-head h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 5.2vw, 5.4rem);
    letter-spacing: -0.045em;
}

.section-head p {
    max-width: 58ch;
    font-size: 1.02rem;
    line-height: 1.8;
}

.marquee-band {
    justify-content: center;
    background:
        linear-gradient(90deg, rgba(65, 4, 5, 0.25), rgba(92, 16, 13, 0.68), rgba(65, 4, 5, 0.25));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.route-panel,
.mini-panel,
.stat,
.editorial-band-copy,
.editorial-list,
.spotlight-copy,
.spotlight-matrix,
.signature-card,
.card,
.cta-panel {
    border-color: rgba(242, 202, 80, 0.2);
    background:
        linear-gradient(155deg, rgba(110, 18, 13, 0.62), rgba(35, 0, 2, 0.9) 58%, rgba(75, 8, 7, 0.78)),
        rgba(35, 0, 2, 0.88);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.route-panel,
.mini-panel,
.stat,
.editorial-band-copy,
.editorial-list,
.spotlight-copy,
.spotlight-matrix,
.cta-panel {
    position: relative;
    overflow: hidden;
}

.route-panel::after,
.mini-panel::after,
.stat::after,
.editorial-band-copy::after,
.editorial-list::after,
.spotlight-copy::after,
.spotlight-matrix::after,
.cta-panel::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(242, 202, 80, 0.07);
    pointer-events: none;
}

.route-panel > *,
.mini-panel > *,
.stat > *,
.editorial-band-copy > *,
.editorial-list > *,
.spotlight-copy > *,
.spotlight-matrix > *,
.cta-panel > * {
    position: relative;
    z-index: 1;
}

.route-panel,
.mini-panel,
.signature-card,
.card,
.stat {
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.route-panel:hover,
.mini-panel:hover,
.signature-card:hover,
.card:hover,
.stat:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 202, 80, 0.38);
    box-shadow:
        0 34px 84px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(242, 202, 80, 0.08);
}

.stat strong {
    font-family: "Bodoni Moda", Georgia, serif;
    font-size: clamp(2.45rem, 4vw, 4rem);
    line-height: 0.95;
}

.stat span {
    display: block;
    margin-top: 12px;
    color: rgba(247, 240, 223, 0.68);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.7;
    text-transform: uppercase;
}

.signature-grid {
    gap: 22px;
}

.signature-card {
    min-height: 340px;
    padding: 28px;
}

.signature-card h3,
.card h3,
.route-panel h3,
.mini-panel h3 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    letter-spacing: -0.025em;
}

.signature-media,
.card-media {
    opacity: 0.36;
}

.signature-card:hover .signature-media,
.card:hover .card-media {
    opacity: 0.44;
}

.cta-panel {
    padding: clamp(32px, 5vw, 58px);
    background:
        radial-gradient(circle at 78% 18%, rgba(242, 202, 80, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(122, 18, 10, 0.92), rgba(30, 0, 2, 0.98));
}

.cta-panel h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 6vw, 6rem);
    letter-spacing: -0.055em;
}

.site-footer {
    padding-bottom: 118px;
}

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 22px;
    z-index: 35;
    display: flex;
    gap: 12px;
    align-items: center;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.floating-contact-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    overflow: hidden;
    border: 1px solid rgba(242, 202, 80, 0.34);
    color: #fff7ea;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-link::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-110%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: transform 0.48s ease;
}

.floating-contact-link::after {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-left: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
}

.floating-contact-primary {
    background:
        linear-gradient(135deg, rgba(242, 202, 80, 0.98), rgba(187, 133, 22, 0.98));
    color: #2b1500;
    border-color: transparent;
}

.floating-contact-primary::after {
    content: "RD";
}

.floating-contact-whatsapp {
    background:
        linear-gradient(135deg, rgba(11, 86, 48, 0.96), rgba(18, 132, 76, 0.96));
    border-color: rgba(143, 230, 181, 0.34);
}

.floating-contact-whatsapp::after {
    content: "WA";
}

.floating-contact-link span {
    position: relative;
    z-index: 1;
}

.floating-contact-link:hover,
.floating-contact-link:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.floating-contact-link:hover::before,
.floating-contact-link:focus-visible::before {
    transform: translateX(110%);
}

@media (max-width: 1023px) {
    .section-head h2,
    .cta-panel h2 {
        max-width: 13ch;
    }

    .hero-credential {
        margin-top: 24px;
    }

    .signature-card {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .section-head h2,
    .cta-panel h2 {
        max-width: 100%;
        font-size: clamp(2.25rem, 11vw, 3.6rem);
    }

    .hero-credential {
        gap: 8px;
        margin-top: 22px;
    }

    .hero-credential span {
        width: 100%;
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .route-panel:hover,
    .mini-panel:hover,
    .signature-card:hover,
    .card:hover,
    .stat:hover {
        transform: none;
    }

    .site-footer {
        padding-bottom: 128px;
    }

    .floating-contact {
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .floating-contact-link {
        min-height: 50px;
        padding: 0 10px;
        font-size: 0.66rem;
        letter-spacing: 0.1em;
    }

    .floating-contact-link::after {
        width: 24px;
        height: 24px;
        margin-left: 8px;
        font-size: 0.52rem;
    }
}

/* Enterprise homepage rebuild aligned to the Stitch imperial reference. */
body {
    background:
        radial-gradient(circle at 50% -10%, rgba(242, 202, 80, 0.09), transparent 28%),
        linear-gradient(180deg, #310000 0%, #260000 48%, #160000 100%);
}

.site-header {
    position: sticky;
    background: rgba(49, 0, 0, 0.94);
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: 0 20px 50px rgba(40, 0, 0, 0.36);
}

.nav-shell {
    min-height: 72px;
    width: min(1536px, calc(100% - 96px));
}

.brand {
    font-family: "Newsreader", "Bodoni Moda", Georgia, serif;
    font-size: clamp(1.8rem, 2.4vw, 2.45rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
}

.nav {
    gap: clamp(14px, 1.6vw, 24px);
}

.nav > a:first-child {
    display: inline-flex;
}

.nav a {
    padding-bottom: 9px;
    color: rgba(247, 240, 223, 0.52);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.nav a.active,
.nav a:hover {
    color: var(--gold-soft);
}

.nav a.active::after,
.nav a:hover::after {
    background: var(--gold);
}

.nav-cta .btn-primary {
    min-width: 214px;
    min-height: 46px;
}

.hero {
    background: #310000;
}

.page-home .hero-grid.shell {
    width: min(1536px, 100%);
}

.page-home .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 1fr);
    min-height: min(828px, calc(100vh - 72px));
}

.page-home .hero-copy {
    padding: clamp(58px, 7vw, 112px) clamp(36px, 7vw, 104px);
    background:
        radial-gradient(circle at 18% 18%, rgba(242, 202, 80, 0.1), transparent 34%),
        #310000;
}

.page-home .hero-copy .eyebrow {
    color: rgba(255, 218, 213, 0.62);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.42em;
    margin-bottom: 34px;
}

.page-home .hero h1 {
    max-width: 9ch;
    color: #ffdad5;
    font-family: "Bodoni Moda", "Newsreader", Georgia, serif;
    font-size: clamp(4.35rem, 8.15vw, 8.8rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 1.03;
}

.hero-italic {
    font-style: italic;
    font-weight: 400;
}

.page-home .hero-copy .lead {
    max-width: 570px;
    color: rgba(255, 218, 213, 0.78);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.55rem, 2.25vw, 2.28rem);
    line-height: 1.42;
}

.page-home .hero-actions {
    margin-top: 44px;
    gap: clamp(18px, 3.8vw, 52px);
}

.page-home .hero-actions .btn-primary {
    min-height: 64px;
    padding-inline: 40px;
}

.page-home .hero-actions .btn-secondary {
    align-self: center;
}

.page-home .hero-credential {
    align-items: center;
    gap: 18px;
    margin-top: 44px;
}

.page-home .hero-credential::before {
    content: "";
    width: 64px;
    height: 1px;
    background: rgba(212, 175, 55, 0.42);
}

.page-home .hero-credential span {
    width: auto;
    border: 0;
    background: transparent;
    color: rgba(242, 202, 80, 0.62);
    padding: 0;
    letter-spacing: 0.28em;
}

.page-home .hero-credential span:first-of-type {
    display: none;
}

.page-home .hero-media {
    padding: 0;
    background: linear-gradient(135deg, #4b0002, #5c0003);
}

.page-home .hero-media-frame {
    min-height: 100%;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.page-home .hero-media-frame::before {
    inset: 32px;
    z-index: 5;
    border-color: rgba(242, 202, 80, 0.08);
}

.page-home .hero-media-frame::after {
    background:
        linear-gradient(90deg, rgba(49, 0, 0, 0.94), rgba(49, 0, 0, 0.18) 42%, rgba(49, 0, 0, 0.24)),
        linear-gradient(0deg, rgba(49, 0, 0, 0.8), transparent 44%);
}

.page-home .hero-image {
    opacity: 0.68;
    mix-blend-mode: overlay;
    object-position: 50% center;
    filter: grayscale(40%) contrast(1.08) saturate(0.95);
}

.page-home .hero-stat-card {
    top: 76px;
    right: 52px;
    width: 288px;
    padding: 30px 34px;
    background: rgba(40, 0, 0, 0.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.page-home .hero-quote-card {
    left: 52px;
    bottom: 76px;
    width: 330px;
    background: rgba(86, 14, 9, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.trust-strip {
    background: #280000;
}

.trust-shell {
    min-height: 150px;
}

.trust-shell span {
    color: rgba(255, 218, 213, 0.34);
    font-family: "Newsreader", Georgia, serif;
}

.home-command,
.home-services,
.home-cases,
.home-final-cta {
    background: #310000;
}

.home-command-grid,
.home-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
}

.home-command-copy h2,
.home-section-head h2,
.home-final-panel h2 {
    max-width: 12ch;
    color: #ffdad5;
    font-family: "Newsreader", "Bodoni Moda", Georgia, serif;
    font-size: clamp(3rem, 6.6vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.home-command-copy p,
.home-section-head p,
.home-final-panel p {
    max-width: 640px;
    color: rgba(255, 218, 213, 0.68);
    font-size: 1.04rem;
    line-height: 1.9;
}

.home-command-line,
.home-service-tags,
.home-proof-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-command-line span,
.home-service-tags span,
.home-proof-badges span {
    padding: 8px 12px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(40, 0, 0, 0.56);
    color: var(--gold-soft);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-command-board {
    display: grid;
    gap: 18px;
}

.home-command-board article,
.home-proof-card,
.home-service-card,
.home-case-card,
.home-final-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background:
        radial-gradient(circle at 88% 8%, rgba(242, 202, 80, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(86, 14, 9, 0.9), rgba(40, 0, 0, 0.96));
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.home-command-board article {
    display: grid;
    grid-template-columns: 74px 0.42fr 1fr;
    gap: 22px;
    align-items: center;
    min-height: 148px;
    padding: 30px;
}

.home-command-board span,
.home-case-card > span,
.home-case-card div > span {
    color: rgba(242, 202, 80, 0.68);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-command-board strong {
    color: var(--gold-soft);
    font-family: "Newsreader", Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
}

.home-command-board p {
    margin: 0;
    color: rgba(255, 218, 213, 0.68);
}

.home-proof {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #4b0002 0%, #310000 68%);
}

.home-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--proof-bg);
    opacity: 0.08;
    pointer-events: none;
}

.home-proof-metrics {
    display: grid;
    gap: 34px;
}

.home-proof-stat strong {
    display: block;
    color: var(--gold-soft);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(3.8rem, 7.5vw, 7.4rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.86;
}

.home-proof-stat span {
    color: rgba(255, 218, 213, 0.78);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-proof-card {
    padding: clamp(30px, 5vw, 64px);
}

.home-proof-card figure {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0.12;
}

.home-proof-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.25) brightness(0.6);
}

.home-proof-quote,
.home-proof-badges {
    position: relative;
    z-index: 1;
}

.home-proof-quote blockquote {
    margin: 0 0 28px;
    color: #ffdad5;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-style: italic;
    line-height: 1.04;
}

.home-proof-quote span {
    color: var(--gold-soft);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.home-proof-badges {
    margin-top: 46px;
}

.home-section-head {
    display: grid;
    gap: 14px;
    margin-bottom: clamp(34px, 5vw, 62px);
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-service-card {
    min-height: 520px;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.home-service-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: grayscale(78%) contrast(1.16) brightness(0.62);
    transition: transform 0.8s ease, opacity 0.8s ease, filter 0.8s ease;
}

.home-service-card::after,
.home-case-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 0, 0, 0.3), rgba(40, 0, 0, 0.94));
    pointer-events: none;
}

.home-service-card-copy,
.home-case-card > div,
.home-case-card-lead > * {
    position: relative;
    z-index: 1;
}

.home-service-card-copy {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 36px;
}

.home-service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 34px;
    border: 1px solid rgba(242, 202, 80, 0.32);
    color: var(--gold-soft);
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.7rem;
}

.home-service-card h3,
.home-case-card h3 {
    color: var(--gold-soft);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3.35rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.home-service-card p,
.home-case-card p {
    color: rgba(255, 218, 213, 0.7);
    line-height: 1.75;
}

.home-service-tags {
    margin-top: auto;
    padding-top: 30px;
}

.home-service-card a,
.home-case-card a {
    width: fit-content;
    margin-top: 28px;
    color: var(--gold-soft);
    border-bottom: 1px solid rgba(242, 202, 80, 0.32);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 202, 80, 0.56);
    box-shadow: 0 44px 100px rgba(0, 0, 0, 0.42);
}

.home-service-card:hover > img {
    opacity: 0.36;
    transform: scale(1.08);
    filter: grayscale(42%) contrast(1.12) brightness(0.72);
}

.home-anchor {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 420px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    background: #280000;
}

.home-anchor img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.3) contrast(1.24);
}

.home-anchor::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(49, 0, 0, 0.85), rgba(49, 0, 0, 0.2), rgba(49, 0, 0, 0.85));
}

.home-anchor div {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    text-align: center;
}

.home-anchor span {
    color: rgba(242, 202, 80, 0.45);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.2rem, 2.4vw, 2.1rem);
    font-style: italic;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.home-anchor strong {
    color: rgba(255, 218, 213, 0.74);
    font-family: "Jost", "Manrope", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.home-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.home-case-card {
    min-height: 520px;
}

.home-case-card-lead {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
}

.home-case-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.55);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.home-case-card > div {
    display: grid;
    gap: 14px;
    padding: 36px;
}

.home-case-card:hover > img {
    transform: scale(1.05);
    filter: grayscale(55%) brightness(0.68);
}

.home-final-panel {
    padding: clamp(38px, 6vw, 76px);
    background:
        radial-gradient(circle at 78% 18%, rgba(242, 202, 80, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(92, 0, 3, 0.94), rgba(40, 0, 0, 0.98));
}

.home-final-panel h2 {
    max-width: 13ch;
}

@media (max-width: 1320px) {
    .nav-shell {
        width: min(1280px, calc(100% - 44px));
    }

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

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

@media (max-width: 1023px) {
    .nav-shell {
        min-height: 76px;
    }

    .page-home .hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 0;
    }

    .page-home .hero-copy {
        padding: 54px 20px 0;
    }

    .page-home .hero h1 {
        max-width: 8.5ch;
        font-size: clamp(3.9rem, 14vw, 6.8rem);
    }

    .page-home .hero-media {
        padding-top: 42px;
    }

    .page-home .hero-media-frame {
        min-height: 440px;
    }

    .home-command-grid,
    .home-proof-grid,
    .home-case-grid {
        grid-template-columns: 1fr;
    }

    .home-command-board article {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-home .hero-copy {
        padding: 38px 12px 0;
    }

    .page-home .hero-copy .eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
    }

    .page-home .hero h1 {
        font-size: clamp(3.15rem, 17vw, 5rem);
        max-width: 7.8ch;
    }

    .page-home .hero-actions .btn-primary {
        min-height: 52px;
        padding-inline: 18px;
    }

    .page-home .hero-credential::before {
        display: none;
    }

    .page-home .hero-media-frame {
        min-height: 330px;
    }

    .page-home .hero-stat-card {
        top: 18px;
        right: 18px;
    }

    .home-command-copy h2,
    .home-section-head h2,
    .home-final-panel h2 {
        max-width: 100%;
        font-size: clamp(2.65rem, 13vw, 4.2rem);
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card,
    .home-service-card-copy {
        min-height: 430px;
    }

    .home-anchor {
        min-height: 300px;
    }
}

/* Mobile image alignment: keep all image panels inside the viewport with stable crops. */
@media (max-width: 767px) {
    .hero-media,
    .hero-has-bg .hero-media,
    .page-home .hero-media {
        width: 100%;
        padding: 26px 0 0;
    }

    .hero-media-frame,
    .page-home .hero-media-frame {
        width: 100%;
        min-height: auto;
        aspect-ratio: 16 / 11;
        margin-right: 0 !important;
        margin-left: 0 !important;
        border: 1px solid rgba(212, 175, 55, 0.18);
        box-shadow: inset 0 0 0 10px rgba(26, 0, 1, 0.34);
    }

    .page-home .hero-media-frame {
        aspect-ratio: 4 / 3;
    }

    .hero-media-frame::before,
    .page-home .hero-media-frame::before {
        inset: 10px;
    }

    .hero-image,
    .page-home .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .page-home .hero-image {
        object-position: 54% center;
    }

    .card-media img,
    .signature-media img,
    .service-row-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .route-visual img,
    .contact-stage-visual img,
    .service-showcase-visual img {
        width: 100%;
        min-height: auto;
        aspect-ratio: 16 / 11;
        object-fit: cover;
        object-position: center center;
    }

    .home-service-card {
        min-height: 390px;
    }

    .home-service-card > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .home-service-card-copy {
        min-height: 390px;
        padding: 28px;
    }

    .home-case-card {
        min-height: auto;
    }

    .home-case-card > img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center center;
    }

    .home-anchor {
        min-height: 280px;
    }

    .home-anchor img {
        object-position: center center;
    }
}

@media (max-width: 420px) {
    .hero-media-frame,
    .page-home .hero-media-frame {
        aspect-ratio: 1 / 1;
    }

    .home-service-card,
    .home-service-card-copy {
        min-height: 360px;
    }

    .home-case-card > img {
        height: 190px;
    }
}

/* Mobile hero portrait refinement: brighter subject, cleaner crop, lighter overlay. */
@media (max-width: 767px) {
    .page-home .hero-media {
        padding-top: 22px;
    }

    .page-home .hero-media-frame {
        aspect-ratio: 4 / 5;
        background:
            radial-gradient(circle at 52% 28%, rgba(242, 202, 80, 0.1), transparent 34%),
            linear-gradient(180deg, #4b0505, #240000);
    }

    .page-home .hero-media-frame::after {
        background:
            linear-gradient(180deg, rgba(49, 0, 0, 0.08) 0%, rgba(49, 0, 0, 0.22) 48%, rgba(49, 0, 0, 0.68) 100%),
            linear-gradient(90deg, rgba(49, 0, 0, 0.36), rgba(49, 0, 0, 0.04) 45%, rgba(49, 0, 0, 0.28));
    }

    .page-home .hero-media-vignette {
        opacity: 0.42;
        background:
            radial-gradient(circle at 52% 34%, rgba(242, 202, 80, 0.12), transparent 30%),
            radial-gradient(circle at 52% 34%, transparent 0 32%, rgba(212, 175, 55, 0.12) 32.4%, transparent 33%),
            radial-gradient(circle at 52% 34%, transparent 0 52%, rgba(212, 175, 55, 0.08) 52.3%, transparent 53%);
    }

    .page-home .hero-image {
        opacity: 0.82;
        mix-blend-mode: normal;
        object-position: 52% 30%;
        filter: grayscale(26%) contrast(1.12) brightness(0.9) saturate(0.95);
    }
}

@media (max-width: 420px) {
.page-home .hero-media-frame {
        aspect-ratio: 4 / 5;
    }

    .page-home .hero-image {
        object-position: 52% 28%;
    }
}

/* Dynamic homepage refresh: premium white enterprise landing page. */
.page-home {
    background: #ffffff;
    color: #0f172a;
}

.page-home .site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e7ebf1;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.page-home .nav-shell {
    min-height: 96px;
    width: min(1280px, calc(100% - 64px));
}

.page-home .brand,
.page-home .nav a {
    color: #475569;
}

.page-home .brand {
    font-family: "Newsreader", serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: none;
}

.page-home .nav {
    gap: 34px;
}

.page-home .nav a {
    font-family: "Newsreader", serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
}

.page-home .nav a.active,
.page-home .nav a:hover,
.page-home .nav a:focus-visible,
.page-home .brand {
    color: #0f172a;
}

.page-home .nav a.active {
    border-color: #1d4ed8;
}

.page-home .nav-cta .btn-primary {
    background: #1d4ed8;
    color: #ffffff;
    min-height: 54px;
    padding: 0 28px;
    box-shadow: 0 18px 30px rgba(29, 78, 216, 0.16);
}

.page-home .floating-contact-primary {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
}

.page-home .floating-contact-whatsapp {
    background: linear-gradient(135deg, #0f8a4b, #15b86a);
    color: #ffffff;
}

.page-home .site-footer {
    background: #ffffff;
    border-top: 1px solid #e7ebf1;
    color: #111827;
}

.page-home .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 42px;
    align-items: start;
}

.page-home .site-footer h2,
.page-home .footer-brand,
.page-home .site-footer a:hover,
.page-home .site-footer a:focus-visible {
    color: #0f172a;
}

.page-home .site-footer a {
    color: #111827;
}

.page-home .footer-home-brand p,
.page-home .footer-newsletter p {
    max-width: 34ch;
    font-family: "Manrope", sans-serif;
    line-height: 1.75;
}

.page-home .footer-grid h2 {
    margin-bottom: 20px;
    color: #0f172a;
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-home .footer-grid p {
    margin-bottom: 12px;
}

.page-home .footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.page-home .footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e7ebf1;
}

.page-home .footer-socials svg,
.page-home .footer-newsletter-form button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.page-home .footer-newsletter-form {
    position: relative;
    margin-top: 16px;
}

.page-home .footer-newsletter-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 58px 0 16px;
    border: 1px solid #e7ebf1;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-family: "Manrope", sans-serif;
}

.page-home .footer-newsletter-form button {
    position: absolute;
    top: 7px;
    right: 7px;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: #1d4ed8;
    color: #ffffff;
}

.page-home .yolo-home {
    background:
        radial-gradient(circle at top right, rgba(29, 78, 216, 0.05), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.page-home .yolo-home .section,
.page-home .yolo-home .section-tight {
    padding-top: clamp(72px, 8vw, 120px);
    padding-bottom: clamp(72px, 8vw, 120px);
}

.page-home .yolo-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #2563eb;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-home .yolo-hero {
    padding-top: 144px;
    padding-bottom: 88px;
}

.page-home .yolo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 48px;
    align-items: start;
}

.page-home .yolo-hero-copy {
    padding-top: 30px;
}

.page-home .yolo-hero-copy h1,
.page-home .yolo-section-head h2,
.page-home .yolo-process-head h2,
.page-home .yolo-cta-panel h2 {
    color: #0f172a;
    font-family: "Newsreader", serif;
    letter-spacing: -0.04em;
}

.page-home .yolo-hero-copy h1 {
    max-width: 11ch;
    margin: 0 0 24px;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.02;
}

.page-home .yolo-hero-copy h1 span {
    color: #1d4ed8;
    font-style: italic;
}

.page-home .yolo-hero-copy p,
.page-home .yolo-service-card p,
.page-home .yolo-case-card p,
.page-home .yolo-usp-grid p,
.page-home .yolo-process-grid p,
.page-home .yolo-cta-panel p {
    color: #66758b;
    font-family: "Manrope", sans-serif;
}

.page-home .yolo-hero-copy p {
    max-width: 56ch;
    font-size: 1.02rem;
    line-height: 1.75;
}

.page-home .yolo-hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    color: #0f172a;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.page-home .yolo-proof-avatars {
    display: flex;
}

.page-home .yolo-proof-avatars img {
    width: 44px;
    height: 44px;
    margin-left: -10px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 12px 18px rgba(15, 23, 42, 0.12);
}

.page-home .yolo-proof-avatars img:first-child {
    margin-left: 0;
}

.page-home .yolo-hero-side {
    display: grid;
    gap: 22px;
}

.page-home .yolo-hero-image-panel,
.page-home .yolo-booking-card,
.page-home .yolo-service-card,
.page-home .yolo-case-card,
.page-home .yolo-cta-panel,
.page-home .yolo-insight-card {
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.06);
}

.page-home .yolo-hero-image-panel {
    overflow: hidden;
}

.page-home .yolo-hero-image-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.page-home .yolo-booking-card {
    position: relative;
    padding: 30px;
}

.page-home .yolo-booking-card::before {
    content: "Limited slots available";
    position: absolute;
    top: -12px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #d61f37;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 14px 24px rgba(214, 31, 55, 0.2);
}

.page-home .yolo-booking-card strong {
    display: block;
    margin-bottom: 24px;
    color: #1e293b;
    font-family: "Newsreader", serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.page-home .yolo-form {
    display: grid;
    gap: 18px;
}

.page-home .yolo-form label {
    display: grid;
    gap: 8px;
}

.page-home .yolo-form label span {
    color: #64748b;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-home .yolo-form input,
.page-home .yolo-form textarea {
    width: 100%;
    border: 1px solid #edf1f6;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-family: "Manrope", sans-serif;
    font-size: 0.96rem;
    padding: 14px 16px;
}

.page-home .yolo-form textarea {
    min-height: 110px;
    resize: vertical;
}

.page-home .yolo-form .btn {
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    background: #1d4ed8;
    color: #ffffff;
}

.page-home .yolo-trust {
    padding-top: 56px;
    padding-bottom: 56px;
    border-top: 1px solid #edf0f5;
    border-bottom: 1px solid #edf0f5;
    background: #ffffff;
}

.page-home .yolo-logo-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.page-home .yolo-logo-card {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    min-height: 108px;
    padding: 18px;
    border: 1px solid #edf0f5;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.04);
}

.page-home .yolo-logo-mark {
    display: inline-grid;
    place-items: center;
    min-width: 54px;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eff4ff;
    color: #1d4ed8;
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-home .yolo-logo-card strong {
    color: #111827;
    font-family: "Newsreader", serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.page-home .yolo-metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    margin-top: 56px;
}

.page-home .yolo-metric-row article {
    display: flex;
    align-items: center;
    gap: 22px;
}

.page-home .yolo-metric-row strong {
    color: #1d4ed8;
    font-family: "Newsreader", serif;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1;
}

.page-home .yolo-metric-row p {
    margin: 0;
    padding-left: 22px;
    border-left: 1px solid #d9e1ec;
    color: #66758b;
    font-family: "Manrope", sans-serif;
}

.page-home .yolo-section-head {
    margin-bottom: 46px;
}

.page-home .yolo-section-head h2,
.page-home .yolo-process-head h2,
.page-home .yolo-cta-panel h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.page-home .yolo-section-head-inline {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.page-home .yolo-section-head-inline a {
    color: #2563eb;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.page-home .yolo-command {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.page-home .yolo-command-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.page-home .yolo-command-copy h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-family: "Newsreader", serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.page-home .yolo-command-copy > p {
    max-width: 58ch;
    margin: 0;
    color: #66758b;
    font-family: "Manrope", sans-serif;
    line-height: 1.8;
}

.page-home .yolo-command-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.page-home .yolo-command-stats article,
.page-home .yolo-command-rail article {
    padding: 22px;
    border: 1px solid #edf0f5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.page-home .yolo-command-stats strong {
    display: block;
    color: #1d4ed8;
    font-family: "Newsreader", serif;
    font-size: 2rem;
    line-height: 1;
}

.page-home .yolo-command-stats span {
    display: block;
    margin-top: 10px;
    color: #66758b;
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
}

.page-home .yolo-command-rail {
    display: grid;
    gap: 16px;
}

.page-home .yolo-command-rail h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-family: "Newsreader", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.page-home .yolo-command-rail p {
    margin: 0;
    color: #66758b;
    font-family: "Manrope", sans-serif;
    line-height: 1.7;
}

.page-home .yolo-service-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.page-home .yolo-service-card {
    grid-column: span 6;
    padding: 32px;
}

.page-home .yolo-service-card.is-featured {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(29, 78, 216, 0.22);
}

.page-home .yolo-service-card.is-featured p,
.page-home .yolo-service-card.is-featured a,
.page-home .yolo-service-card.is-featured .yolo-service-arrow {
    color: rgba(255, 255, 255, 0.88);
}

.page-home .yolo-service-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 84px;
}

.page-home .yolo-service-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #eef4ff;
    color: #1d4ed8;
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.page-home .yolo-service-card.is-featured .yolo-service-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.page-home .yolo-service-arrow {
    color: #94a3b8;
    font-size: 1.35rem;
}

.page-home .yolo-service-card h3,
.page-home .yolo-case-card h3,
.page-home .yolo-usp-grid h3,
.page-home .yolo-process-grid h3,
.page-home .yolo-insight-card h3 {
    margin: 0 0 12px;
    color: inherit;
    font-family: "Newsreader", serif;
    font-size: clamp(1.7rem, 2vw, 2.2rem);
    line-height: 1.15;
}

.page-home .yolo-service-card p {
    margin: 0 0 20px;
}

.page-home .yolo-service-card a,
.page-home .yolo-insight-card a {
    color: #1d4ed8;
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-home .yolo-usp {
    background: #f8fafc;
}

.page-home .yolo-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.page-home .yolo-usp-grid article span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #e6efff;
    color: #1d4ed8;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.page-home .yolo-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.page-home .yolo-case-card {
    overflow: hidden;
    padding: 18px 18px 24px;
}

.page-home .yolo-case-media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 22px;
}

.page-home .yolo-case-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.page-home .yolo-case-media span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #1d4ed8;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-home .yolo-case-card h3 {
    max-width: 18ch;
}

.page-home .yolo-process {
    background: #0f172a;
    color: #ffffff;
}

.page-home .yolo-process-head {
    margin-bottom: 54px;
    text-align: center;
}

.page-home .yolo-process-head h2 {
    color: #ffffff;
}

.page-home .yolo-process-head .yolo-kicker {
    color: #9ab6ff;
}

.page-home .yolo-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.page-home .yolo-process-grid article {
    padding: 28px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.page-home .yolo-process-grid article span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #1d4ed8;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.page-home .yolo-process-grid article:nth-child(n + 2) span {
    background: #334155;
}

.page-home .yolo-process-grid h3 {
    color: #ffffff;
    font-size: 1.55rem;
}

.page-home .yolo-process-grid p {
    color: #c7d2e1;
}

.page-home .yolo-cta {
    background: #ffffff;
}

.page-home .yolo-cta-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px;
    text-align: center;
    background: #f8fafc;
}

.page-home .yolo-cta-panel p {
    max-width: 56ch;
    margin: 18px auto 0;
}

.page-home .yolo-cta-panel .cta-actions {
    justify-content: center;
    margin-top: 28px;
}

.page-home .yolo-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-home .yolo-insight-card {
    padding: 16px;
}

.page-home .yolo-insight-media {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 18px;
}

.page-home .yolo-insight-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.page-home .yolo-insight-card > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.floating-contact-link {
    gap: 10px;
}

.floating-contact-link::after {
    display: none;
}

.floating-contact-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.floating-contact-icon svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.floating-contact-primary .floating-contact-icon {
    border-color: rgba(43, 21, 0, 0.24);
    background: rgba(43, 21, 0, 0.08);
}

.floating-contact-whatsapp .floating-contact-icon {
    border-color: rgba(178, 255, 211, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.page-home .yolo-insight-card h3 {
    font-size: 1.45rem;
}

@media (max-width: 1180px) {
    .page-home .yolo-hero-grid,
    .page-home .yolo-service-grid,
    .page-home .yolo-process-grid,
    .page-home .yolo-insight-grid,
    .page-home .yolo-case-grid,
    .page-home .yolo-usp-grid,
    .page-home .yolo-metric-row {
        grid-template-columns: 1fr;
    }

    .page-home .yolo-service-card {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .page-home .yolo-hero {
        padding-top: 118px;
        padding-bottom: 56px;
    }

    .page-home .yolo-booking-card,
    .page-home .yolo-service-card,
    .page-home .yolo-case-card,
    .page-home .yolo-cta-panel,
    .page-home .yolo-process-grid article {
        padding: 22px;
        border-radius: 20px;
    }

    .page-home .yolo-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

    .page-home .yolo-hero-copy p,
    .page-home .yolo-booking-card strong,
    .page-home .yolo-section-head h2,
    .page-home .yolo-process-head h2,
    .page-home .yolo-cta-panel h2 {
        max-width: 100%;
    }

    .page-home .yolo-booking-card strong {
        font-size: 1.7rem;
    }

    .page-home .yolo-logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .yolo-command-grid,
    .page-home .yolo-command-stats {
        grid-template-columns: 1fr;
    }

    .page-home .yolo-metric-row article {
        align-items: start;
        gap: 14px;
    }

    .page-home .yolo-metric-row p {
        padding-left: 14px;
    }

    .page-home .yolo-process-head {
        text-align: left;
    }

    .floating-contact-link {
        gap: 7px;
    }

    .floating-contact-icon {
        width: 24px;
        height: 24px;
    }

    .floating-contact-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Global white/red enterprise theme for every route. */
:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --panel: #ffffff;
    --panel-2: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --gold: #b91c1c;
    --gold-soft: #dc2626;
    --line: rgba(185, 28, 28, 0.14);
    --ok: #15803d;
    --error: #dc2626;
}

body,
body.page-home,
body.page-inner {
    background:
        radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.06), transparent 22%),
        radial-gradient(circle at top right, rgba(220, 38, 38, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    color: #0f172a;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

body::before {
    background:
        linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px);
    opacity: 0.5;
}

h1,
h2,
h3,
.brand,
.footer-brand {
    font-family: "Newsreader", Georgia, serif;
    letter-spacing: -0.03em;
}

.site-header,
.site-footer {
    background: rgba(255, 255, 255, 0.94);
    border-color: #e7ebf1;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.brand,
.footer-brand,
.nav a,
.footer-grid a {
    color: #111827;
}

.nav a.active,
.nav a:hover,
.site-footer a:hover,
.card a:hover,
.footer-nav a:hover,
.footer-contact a:hover {
    color: #b91c1c;
}

.nav a::after {
    background: linear-gradient(90deg, #dc2626, transparent);
}

.nav a.active {
    border-color: #dc2626;
}

.page-home .nav a.active {
    border-color: #dc2626;
}

.nav-shell {
    min-height: 96px;
}

.mobile-menu-toggle {
    background: #ffffff;
    border-color: rgba(185, 28, 28, 0.18);
}

.mobile-menu-toggle span {
    background: #b91c1c;
}

.mobile-nav-shell {
    background: rgba(255, 255, 255, 0.72);
}

.mobile-nav-panel {
    background: #ffffff;
    border-color: #e7ebf1;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.mobile-nav-head {
    border-bottom-color: #e7ebf1;
}

.mobile-nav-brand,
.mobile-nav-close {
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.22);
    background: #ffffff;
}

.mobile-nav a {
    background: #f8fafc;
    border-color: #e7ebf1;
    color: #111827;
}

.mobile-nav a.active,
.mobile-nav a:hover {
    background: #fff5f5;
    border-color: rgba(185, 28, 28, 0.28);
    color: #b91c1c;
}

.btn {
    border-color: #dc2626;
}

.btn-primary,
.nav-cta .btn-primary,
.mobile-nav-cta .btn-primary,
.footer-newsletter-form button,
.page-home .nav-cta .btn-primary,
.page-home .footer-newsletter-form button,
.page-home .yolo-form .btn,
.page-home .floating-contact-primary,
.floating-contact-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 30px rgba(220, 38, 38, 0.16);
}

.btn-secondary {
    background: transparent;
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.24);
}

.btn:focus-visible,
.mobile-menu-toggle:focus-visible,
.nav a:focus-visible,
.mobile-nav a:focus-visible {
    outline-color: rgba(220, 38, 38, 0.75);
}

.hero,
.page-home .yolo-home,
.page-home .yolo-services,
.page-home .yolo-command,
.page-home .yolo-usp,
.page-home .yolo-cases,
.page-home .yolo-process,
.page-home .yolo-cta,
.page-home .yolo-insights {
    background: #ffffff;
    color: #0f172a;
}

.hero-copy,
.content-panel,
.form-panel,
.card,
.mini-panel,
.signature-card,
.visual-panel,
.contact-stage,
.service-showcase,
.service-proof-band,
.editorial-band,
.cta-panel,
.framed-note,
.spotlight-copy,
.spotlight-matrix,
.service-row,
.detail-metric,
.process-step,
.stat,
.page-home .yolo-command-stats article,
.page-home .yolo-command-rail article,
.page-home .yolo-service-card,
.page-home .yolo-case-card,
.page-home .yolo-insight-card,
.page-home .yolo-booking-card,
.page-home .yolo-logo-card,
.page-home .yolo-cta-panel {
    background: #ffffff;
    border-color: #e7ebf1;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

.hero-copy .lead,
.section-head p,
.card p,
.form-note,
.site-footer p,
label,
input,
select,
textarea,
.breadcrumb,
.editorial-item span,
.service-row span,
.visual-panel p,
.contact-detail-list span,
.page-home .yolo-command-copy > p,
.page-home .yolo-command-rail p,
.page-home .yolo-case-card p,
.page-home .yolo-usp-grid p,
.page-home .yolo-process-grid p,
.page-home .yolo-cta-panel p,
.page-home .yolo-insight-card > span {
    color: #111827;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

input,
select,
textarea {
    background: #f8fafc;
    border-color: #e7ebf1;
    color: #0f172a;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.breadcrumb {
    background: #ffffff;
    border-color: #e7ebf1;
}

.breadcrumb a:hover,
.breadcrumb-current {
    color: #b91c1c;
}

.hero-copy .eyebrow,
.eyebrow,
.yolo-kicker,
.card-label,
.card-link,
.section-head a,
.service-row strong,
.visual-panel span,
.contact-detail-list strong,
.page-home .yolo-kicker,
.page-home .yolo-section-head-inline a,
.page-home .yolo-service-card a,
.page-home .yolo-insight-card a {
    color: #b91c1c;
}

.hero h1,
.hero-copy h1,
.section-head h2,
.content-panel h2,
.form-panel h2,
.mini-panel h3,
.signature-card h3,
.editorial-band h2,
.cta-panel h2,
.contact-stage h2,
.service-showcase h2,
.service-proof-band h2,
.detail-panel h2,
.page-home .yolo-hero-copy h1,
.page-home .yolo-section-head h2,
.page-home .yolo-process-head h2,
.page-home .yolo-cta-panel h2,
.page-home .yolo-command-copy h2,
.page-home .yolo-command-rail h3,
.page-home .yolo-service-card h3,
.page-home .yolo-case-card h3,
.page-home .yolo-usp-grid h3,
.page-home .yolo-insight-card h3 {
    color: #0f172a;
    font-family: "Newsreader", Georgia, serif;
}

.page-home .yolo-hero-copy h1 span {
    color: #b91c1c;
}

.hero-media-frame {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98)),
        #ffffff;
    border-color: #e7ebf1;
    box-shadow: inset 0 0 0 18px rgba(220, 38, 38, 0.04);
}

.hero-media-frame::after {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.36) 42%, rgba(255, 255, 255, 0.24) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.74));
}

.hero-image {
    opacity: 0.9;
    filter: grayscale(12%) contrast(1.08) brightness(0.98) saturate(0.96);
}

.hero-quote-card,
.hero-stat-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: #e7ebf1;
    color: #0f172a;
}

.hero-quote-card {
    border-left-color: #dc2626;
}

.hero-stars,
.hero-stat-card strong {
    color: #dc2626;
}

.hero-stat-card span,
.hero-quote-card span {
    color: #111827;
}

.page-home .yolo-metric-row strong,
.page-home .yolo-command-stats strong {
    color: #b91c1c;
}

.page-home .yolo-command {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.page-home .yolo-command-stats article,
.page-home .yolo-command-rail article {
    border-color: #edf0f5;
}

.page-home .yolo-service-card.is-featured {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.18);
}

.page-home .yolo-service-card.is-featured p,
.page-home .yolo-service-card.is-featured a,
.page-home .yolo-service-card.is-featured .yolo-service-arrow {
    color: rgba(255, 255, 255, 0.9);
}

.page-home .yolo-service-icon {
    background: #fff1f2;
    color: #b91c1c;
}

.page-home .yolo-service-card.is-featured .yolo-service-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.page-home .yolo-usp {
    background: #ffffff;
}

.page-home .yolo-usp-grid article span {
    background: #fff1f2;
    color: #b91c1c;
}

.page-home .yolo-case-media span {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.14);
    color: #b91c1c;
}

.page-home .yolo-process {
    background: #ffffff;
    color: #0f172a;
}

.page-home .yolo-process-head .yolo-kicker {
    color: #b91c1c;
}

.page-home .yolo-process-grid article {
    background: #ffffff;
    border: 1px solid #e7ebf1;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.page-home .yolo-process-grid article span {
    background: #dc2626;
    color: #ffffff;
}

.page-home .yolo-process-grid article:nth-child(n + 2) span {
    background: #fee2e2;
    color: #b91c1c;
}

.page-home .yolo-process-grid p {
    color: #111827;
}

.page-home .yolo-section-head-inline a {
    color: #b91c1c;
}

.page-home .yolo-insight-card > span {
    color: #b91c1c;
}

.page-home .yolo-process-grid h3 {
    color: #0f172a;
}

.page-home .yolo-cta-panel {
    background: #f8fafc;
}

.page-home .yolo-insight-card a {
    color: #b91c1c;
}

.page-home .yolo-insight-card > span {
    color: #b91c1c;
}

.page-home .site-footer {
    background: #ffffff;
    border-top: 1px solid #e7ebf1;
    color: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 42px;
    align-items: start;
}

.footer-grid h2 {
    margin: 0 0 20px;
    color: #0f172a;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-grid p {
    margin-bottom: 12px;
}

.footer-home-brand p,
.footer-newsletter p {
    max-width: 34ch;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e7ebf1;
    color: #b91c1c;
}

.footer-socials svg,
.footer-newsletter-form button svg,
.floating-contact-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-newsletter-form {
    position: relative;
    margin-top: 16px;
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 58px 0 16px;
    border: 1px solid #e7ebf1;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.footer-newsletter-form button {
    position: absolute;
    top: 7px;
    right: 7px;
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

.floating-contact-icon {
    border-color: rgba(185, 28, 28, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

.floating-contact-primary .floating-contact-icon {
    border-color: rgba(185, 28, 28, 0.22);
    background: rgba(185, 28, 28, 0.08);
    color: #b91c1c;
}

.floating-contact-whatsapp .floating-contact-icon {
    border-color: rgba(21, 128, 61, 0.24);
    background: rgba(21, 128, 61, 0.08);
}

.floating-contact-whatsapp {
    background: linear-gradient(135deg, #0f8a4b, #15b86a);
    color: #ffffff;
}

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

/* Final global spacing and contrast normalization. */
.hero,
.section {
    padding: 44px 0;
}

.section-tight {
    padding-top: 12px;
}

.site-footer {
    margin-top: 20px;
    padding: 32px 0 44px;
}

.page-home .yolo-home .section,
.page-home .yolo-home .section-tight {
    padding-top: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(32px, 4vw, 56px);
}

.page-home .yolo-hero {
    padding-top: 96px;
    padding-bottom: 52px;
}

.page-home .yolo-trust {
    padding-top: 28px;
    padding-bottom: 28px;
}

.page-home .yolo-home {
    background:
        radial-gradient(circle at top right, rgba(220, 38, 38, 0.05), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.page-home .yolo-kicker {
    color: #b91c1c;
}

.page-home .yolo-hero-copy h1 span {
    color: #b91c1c;
}

.page-home .nav a.active {
    border-color: #dc2626;
}

.page-home .nav-cta .btn-primary,
.page-home .yolo-form .btn,
.page-home .floating-contact-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(220, 38, 38, 0.16);
}

.page-home .yolo-service-card.is-featured {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(185, 28, 28, 0.22);
}

.page-home .yolo-service-card.is-featured h3,
.page-home .yolo-service-card.is-featured p,
.page-home .yolo-service-card.is-featured a,
.page-home .yolo-service-card.is-featured .yolo-service-arrow {
    color: #ffffff;
}

.page-home .yolo-service-icon,
.page-home .yolo-logo-mark,
.page-home .yolo-usp-grid article span {
    background: #fff1f2;
    color: #b91c1c;
}

.page-home .yolo-service-card a,
.page-home .yolo-insight-card a {
    color: #b91c1c;
}

.page-home .yolo-metric-row strong,
.page-home .yolo-command-stats strong {
    color: #b91c1c;
}

.page-home .yolo-section-head {
    margin-bottom: 28px;
}

.page-home .yolo-process-head {
    margin-bottom: 32px;
}

.page-home .yolo-service-top {
    margin-bottom: 56px;
}

.page-home .yolo-metric-row {
    margin-top: 36px;
    gap: 24px;
}

.page-home .yolo-process {
    background: linear-gradient(135deg, #5c0f10, #2f0607);
    color: #ffffff;
}

.page-home .yolo-process-head .yolo-kicker {
    color: #fecaca;
}

.page-home .yolo-process-grid article {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.page-home .yolo-process-grid article span {
    background: #dc2626;
}

.page-home .yolo-process-grid article:nth-child(n + 2) span {
    background: #7f1d1d;
}

.page-home .yolo-process-grid h3,
.page-home .yolo-process-grid p {
    color: #ffffff;
}

.page-home .yolo-process-grid p {
    color: #ffe4e6;
}

.page-home .yolo-case-media span {
    background: rgba(255, 255, 255, 0.95);
    color: #b91c1c;
}

.page-home .yolo-cta-panel {
    padding: 42px;
}

.page-home .yolo-insight-grid {
    gap: 20px;
}

.form-panel-emphasis,
.newsletter-panel,
.contact-detail-list p,
.specialization-grid {
    background: #ffffff;
    border-color: #e7ebf1;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

.form-panel-emphasis p,
.form-panel-emphasis span,
.newsletter-panel p,
.newsletter-panel span,
.contact-detail-list p,
.specialization-grid {
    color: #111827;
}

.page-home .nav a {
    color: #111827;
}

.page-home .yolo-form label span {
    color: #111827;
}

.page-home .yolo-metric-row p {
    color: #111827;
}

.page-home .yolo-command-stats span {
    color: #111827;
}

.hero-quote-card span {
    color: #111827;
}

.page-home .yolo-home .yolo-cta-panel,
.page-home .yolo-home .yolo-booking-card,
.page-home .yolo-home .yolo-service-card,
.page-home .yolo-home .yolo-case-card,
.page-home .yolo-home .yolo-insight-card {
    color: #111827;
}

.page-home .yolo-home .yolo-booking-card strong,
.page-home .yolo-home .yolo-service-card h3,
.page-home .yolo-home .yolo-case-card h3,
.page-home .yolo-home .yolo-insight-card h3,
.page-home .yolo-home .yolo-cta-panel h2 {
    color: #0f172a;
}

.page-home .yolo-hero-copy p,
.page-home .yolo-service-card p,
.page-home .yolo-case-card p,
.page-home .yolo-usp-grid p,
.page-home .yolo-cta-panel p,
.page-home .yolo-command-rail p,
.page-home .yolo-insight-card > span {
    color: #111827;
}

/* Canonical shared header: keep home and inner routes visually identical. */
.site-header,
.page-home .site-header,
.page-inner .site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e7ebf1;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.nav-shell,
.page-home .nav-shell,
.page-inner .nav-shell {
    width: min(1280px, calc(100% - 64px));
    min-height: 88px;
    gap: 28px;
    justify-content: space-between;
}

.brand,
.page-home .brand,
.page-inner .brand {
    flex: 0 0 auto;
    color: #0f172a;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.75rem, 2vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: none;
    text-shadow: none;
}

.nav,
.page-home .nav,
.page-inner .nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(18px, 2vw, 32px);
}

.nav > a:first-child,
.page-home .nav > a:first-child,
.page-inner .nav > a:first-child {
    display: inline-flex;
}

.nav a,
.page-home .nav a,
.page-inner .nav a {
    color: #111827;
    font-family: "Newsreader", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    padding-bottom: 10px;
    text-transform: none;
}

.nav a.active,
.nav a:hover,
.nav a:focus-visible,
.page-home .nav a.active,
.page-home .nav a:hover,
.page-home .nav a:focus-visible,
.page-inner .nav a.active,
.page-inner .nav a:hover,
.page-inner .nav a:focus-visible {
    color: #b91c1c;
}

.nav a::after,
.page-home .nav a::after,
.page-inner .nav a::after {
    background: #dc2626;
}

.nav-cta,
.page-home .nav-cta,
.page-inner .nav-cta {
    flex: 0 0 auto;
}

.nav-cta .btn-primary,
.page-home .nav-cta .btn-primary,
.page-inner .nav-cta .btn-primary {
    min-width: 240px;
    min-height: 56px;
    padding: 0 28px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(220, 38, 38, 0.16);
}

@media (max-width: 1180px) {
    .nav-shell,
    .page-home .nav-shell,
    .page-inner .nav-shell {
        width: min(100% - 32px, 1280px);
        min-height: 76px;
    }

    .brand,
    .page-home .brand,
    .page-inner .brand {
        font-size: 1.55rem;
    }

    .nav,
    .page-home .nav,
    .page-inner .nav,
    .nav-cta,
    .page-home .nav-cta,
    .page-inner .nav-cta {
        display: none;
    }
}

.contact-detail-list strong {
    color: #b91c1c;
}

.contact-detail-list span {
    color: #0f172a;
}

.hero-bg::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.68) 66%, rgba(255, 255, 255, 0.82) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.92));
}

.hero-bg::after {
    background:
        linear-gradient(90deg, rgba(220, 38, 38, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px);
}

.hero-bg img {
    opacity: 0.72;
    filter: grayscale(14%) contrast(1.08) brightness(0.96) saturate(0.92);
}

/* Global card contrast rule: white cards use red text, red cards use white text. */
:where(
    .hero-copy,
    .content-panel,
    .form-panel,
    .form-panel-emphasis,
    .newsletter-panel,
    .card,
    .mini-panel,
    .signature-card,
    .visual-panel,
    .route-panel,
    .contact-stage,
    .service-showcase,
    .service-proof-band,
    .editorial-band,
    .cta-panel,
    .framed-note,
    .spotlight-copy,
    .spotlight-matrix,
    .service-row,
    .detail-metric,
    .process-step,
    .stat,
    .hero-quote-card,
    .hero-stat-card,
    .page-home .yolo-command-stats article,
    .page-home .yolo-command-rail article,
    .page-home .yolo-service-card,
    .page-home .yolo-case-card,
    .page-home .yolo-insight-card,
    .page-home .yolo-booking-card,
    .page-home .yolo-logo-card,
    .page-home .yolo-cta-panel,
    .page-home .yolo-usp-grid article
):not(.page-home .yolo-service-card.is-featured) {
    color: #b91c1c;
}

:where(
    .hero-copy,
    .content-panel,
    .form-panel,
    .form-panel-emphasis,
    .newsletter-panel,
    .card,
    .mini-panel,
    .signature-card,
    .visual-panel,
    .route-panel,
    .contact-stage,
    .service-showcase,
    .service-proof-band,
    .editorial-band,
    .cta-panel,
    .framed-note,
    .spotlight-copy,
    .spotlight-matrix,
    .service-row,
    .detail-metric,
    .process-step,
    .stat,
    .hero-quote-card,
    .hero-stat-card,
    .page-home .yolo-command-stats article,
    .page-home .yolo-command-rail article,
    .page-home .yolo-service-card,
    .page-home .yolo-case-card,
    .page-home .yolo-insight-card,
    .page-home .yolo-booking-card,
    .page-home .yolo-logo-card,
    .page-home .yolo-cta-panel,
    .page-home .yolo-usp-grid article
):not(.page-home .yolo-service-card.is-featured) :where(h1, h2, h3, h4, p, span, strong, a, li, label, small, blockquote, cite):not(.btn):not(.btn *) {
    color: #b91c1c;
}

:where(
    .page-home .yolo-service-card.is-featured,
    .page-home .yolo-process,
    .page-home .yolo-process-grid article,
    .home-proof-card,
    .home-service-card,
    .home-case-card,
    .home-final-panel
) {
    color: #ffffff;
}

:where(
    .page-home .yolo-service-card.is-featured,
    .page-home .yolo-process,
    .page-home .yolo-process-grid article,
    .home-proof-card,
    .home-service-card,
    .home-case-card,
    .home-final-panel
) :where(h1, h2, h3, h4, p, span, strong, a, li, label, small, blockquote, cite):not(.btn):not(.btn *) {
    color: #ffffff;
}

.page-home .yolo-service-card.is-featured,
.page-home .yolo-process,
.page-home .yolo-process-grid article,
.home-proof-card,
.home-service-card,
.home-service-card-copy,
.home-case-card,
.home-case-card > div,
.home-case-card-lead,
.home-final-panel,
.cta-panel.is-red,
.card.is-red,
.panel-is-red {
    color: #ffffff !important;
}

.page-home .yolo-service-card.is-featured h1,
.page-home .yolo-service-card.is-featured h2,
.page-home .yolo-service-card.is-featured h3,
.page-home .yolo-service-card.is-featured h4,
.page-home .yolo-service-card.is-featured p,
.page-home .yolo-service-card.is-featured span,
.page-home .yolo-service-card.is-featured strong,
.page-home .yolo-service-card.is-featured a,
.page-home .yolo-service-card.is-featured li,
.page-home .yolo-service-card.is-featured small,
.page-home .yolo-process h1,
.page-home .yolo-process h2,
.page-home .yolo-process h3,
.page-home .yolo-process h4,
.page-home .yolo-process p,
.page-home .yolo-process span,
.page-home .yolo-process strong,
.page-home .yolo-process a,
.page-home .yolo-process li,
.page-home .yolo-process small,
.home-proof-card h1,
.home-proof-card h2,
.home-proof-card h3,
.home-proof-card h4,
.home-proof-card p,
.home-proof-card span,
.home-proof-card strong,
.home-proof-card a,
.home-proof-card li,
.home-proof-card small,
.home-service-card h1,
.home-service-card h2,
.home-service-card h3,
.home-service-card h4,
.home-service-card p,
.home-service-card span,
.home-service-card strong,
.home-service-card a,
.home-service-card li,
.home-service-card small,
.home-service-card-copy h1,
.home-service-card-copy h2,
.home-service-card-copy h3,
.home-service-card-copy h4,
.home-service-card-copy p,
.home-service-card-copy span,
.home-service-card-copy strong,
.home-service-card-copy a,
.home-service-card-copy li,
.home-service-card-copy small,
.home-case-card h1,
.home-case-card h2,
.home-case-card h3,
.home-case-card h4,
.home-case-card p,
.home-case-card span,
.home-case-card strong,
.home-case-card a,
.home-case-card li,
.home-case-card small,
.home-final-panel h1,
.home-final-panel h2,
.home-final-panel h3,
.home-final-panel h4,
.home-final-panel p,
.home-final-panel span,
.home-final-panel strong,
.home-final-panel a,
.home-final-panel li,
.home-final-panel small,
.cta-panel.is-red h1,
.cta-panel.is-red h2,
.cta-panel.is-red h3,
.cta-panel.is-red h4,
.cta-panel.is-red p,
.cta-panel.is-red span,
.cta-panel.is-red strong,
.cta-panel.is-red a,
.cta-panel.is-red li,
.cta-panel.is-red small,
.card.is-red h1,
.card.is-red h2,
.card.is-red h3,
.card.is-red h4,
.card.is-red p,
.card.is-red span,
.card.is-red strong,
.card.is-red a,
.card.is-red li,
.card.is-red small,
.panel-is-red h1,
.panel-is-red h2,
.panel-is-red h3,
.panel-is-red h4,
.panel-is-red p,
.panel-is-red span,
.panel-is-red strong,
.panel-is-red a,
.panel-is-red li,
.panel-is-red small {
    color: #ffffff !important;
}

/* Mobile content width normalization: cards and bottom actions share one gutter. */
@media (max-width: 768px) {
    .shell,
    .hero-grid.shell,
    .page-home .hero-grid.shell,
    .page-home .nav-shell,
    .page-inner .nav-shell,
    .nav-shell {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .html-site-main,
    main {
        width: 100%;
        overflow-x: hidden;
    }

    .card-grid,
    .signature-grid,
    .hero-aftergrid,
    .route-panel-strip,
    .mobile-priority-grid,
    .reference-grid,
    .process-grid,
    .detail-metric-grid,
    .page-home .yolo-service-grid,
    .page-home .yolo-case-grid,
    .page-home .yolo-insight-grid,
    .page-home .yolo-process-grid,
    .page-home .yolo-usp-grid,
    .page-home .yolo-command-grid {
        width: 100%;
        max-width: none;
        grid-template-columns: minmax(0, 1fr);
        justify-items: stretch;
    }

    .card,
    .route-panel,
    .mini-panel,
    .content-panel,
    .form-panel,
    .visual-panel,
    .signature-card,
    .reference-card,
    .cta-panel,
    .page-home .yolo-service-card,
    .page-home .yolo-case-card,
    .page-home .yolo-insight-card,
    .page-home .yolo-booking-card,
    .page-home .yolo-cta-panel,
    .page-home .yolo-process-grid article,
    .page-home .yolo-command-stats article,
    .page-home .yolo-command-rail article,
    .page-home .yolo-usp-grid article {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        box-sizing: border-box;
    }

    .signature-media,
    .card-media,
    .page-home .yolo-insight-media,
    .page-home .yolo-case-media {
        width: 100%;
        max-width: none;
    }

    .signature-media img,
    .card-media img,
    .page-home .yolo-insight-media img,
    .page-home .yolo-case-media img {
        width: 100%;
        max-width: none;
        object-fit: cover;
    }

    .floating-contact {
        left: 0;
        right: 0;
        width: auto;
    }
}

/* Mobile-safe floating contact actions. */
@media (max-width: 768px) {
    .site-footer {
        padding-bottom: calc(126px + env(safe-area-inset-bottom));
    }

    .floating-contact {
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        align-items: stretch;
        width: auto;
        max-width: none;
        filter: drop-shadow(0 14px 26px rgba(15, 23, 42, 0.24));
    }

    .floating-contact-link {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding: 0 8px;
        gap: 7px;
        border-radius: 8px;
        font-size: clamp(0.58rem, 2.55vw, 0.68rem);
        letter-spacing: 0.06em;
        line-height: 1;
        white-space: nowrap;
    }

    .floating-contact-link > span:last-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .floating-contact-icon {
        width: 24px;
        height: 24px;
    }

    .floating-contact-icon svg {
        width: 14px;
        height: 14px;
    }

    .mobile-menu-open .floating-contact,
    .menu-open .floating-contact {
        display: none;
    }
}

@media (max-width: 360px) {
    .floating-contact {
        left: 8px;
        right: 8px;
        gap: 6px;
    }

    .floating-contact-link {
        min-height: 46px;
        padding: 0 6px;
        gap: 5px;
        font-size: 0.56rem;
        letter-spacing: 0.04em;
    }

    .floating-contact-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    main > .section,
    main > .hero,
    .section > .shell,
    .hero > .shell,
    .signature-grid,
    .signature-card,
    .signature-media,
    .signature-media img {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .signature-card,
    .card,
    .route-panel,
    .mini-panel,
    .content-panel,
    .form-panel {
        border-radius: 8px;
    }
}

/* Final mobile full-bleed fix: prevent any parent wrapper from staying narrow. */
@media (max-width: 768px) {
    html,
    body {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }

    .site-header,
    main,
    main > section,
    .section,
    .hero,
    .shell,
    .nav-shell,
    .breadcrumb-shell,
    .section > .shell,
    .hero > .shell,
    .html-site-main {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .shell,
    .nav-shell,
    .section > .shell,
    .hero > .shell,
    .breadcrumb-shell {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .signature-grid,
    .card-grid,
    .hero-aftergrid,
    .mobile-priority-grid,
    .reference-grid,
    .process-grid,
    .detail-metric-grid {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    .signature-card,
    .card,
    .route-panel,
    .mini-panel,
    .content-panel,
    .form-panel,
    .visual-panel,
    .signature-media,
    .signature-media img,
    .card-media,
    .card-media img {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    .mobile-menu-open .floating-contact,
    .menu-open .floating-contact {
        display: none !important;
    }
}

/* Redrum logo asset sizing. */
.brand-logo,
.page-home .brand-logo,
.page-inner .brand-logo,
.footer-logo,
.mobile-nav-brand {
    display: inline-flex;
    align-items: center;
    color: inherit;
    letter-spacing: 0;
    line-height: 1;
    text-shadow: none;
}

.brand-logo img,
.footer-logo img,
.mobile-nav-brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
}

.footer-logo img {
    height: 38px;
    max-width: 170px;
}

.mobile-nav-brand img {
    height: 34px;
    max-width: 150px;
}

@media (max-width: 768px) {
    .brand-logo img,
    .page-home .brand-logo img,
    .page-inner .brand-logo img {
        height: 34px;
        max-width: 142px;
    }
}

/* Remove transparent overlay/tint layers globally. */
body::before,
.hero-bg::before,
.hero-bg::after,
.hero-copy::before,
.hero-has-bg .hero-copy::before,
.hero-media-frame::before,
.hero-media-frame::after,
.hero-media-vignette,
.card::before,
.card::after,
.card-media::after,
.signature-media::after,
.service-row-media::after,
.stat::before,
.process-step::before,
.cta-panel::before,
.cta-panel::after,
.route-panel::after,
.mini-panel::after,
.stat::after,
.editorial-band-copy::after,
.editorial-list::after,
.spotlight-copy::after,
.spotlight-matrix::after,
.page-home main > .section::before,
.page-home .hero-credential::before,
.page-home .hero-media-frame::before,
.page-home .hero-media-frame::after,
.home-proof::before,
.home-service-card::after,
.home-case-card::after,
.home-anchor::after,
.page-home .yolo-booking-card::before,
.floating-contact-link::before {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    background: none !important;
}

.hero-bg img,
.hero-image,
.hero-media-frame img,
.card-media img,
.signature-media img,
.service-row-media img,
.home-proof-card img,
.home-service-card > img,
.home-case-card > img,
.page-home .hero-image,
.page-home .yolo-hero-image-panel img,
.page-home .yolo-case-media img,
.page-home .yolo-insight-media img {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.site-header,
.mobile-nav-shell,
.mobile-nav-panel,
.hero-stat-card,
.hero-quote-card,
.source-card {
    backdrop-filter: none !important;
}

/* Services page: keep text on solid surfaces, not over transparent image layers. */
.service-row {
    grid-template-columns: 138px minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 18px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    overflow: hidden !important;
}

.service-row-media {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 118px !important;
    height: 100% !important;
    opacity: 1 !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
}

.service-row-media::after {
    content: none !important;
    display: none !important;
}

.service-row-media img {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    transform: none !important;
}

.service-row-copy {
    align-content: center !important;
    z-index: 1 !important;
}

.service-row strong,
.service-row span,
.service-showcase-copy p,
.visual-panel-item p,
.matrix-item p,
.mini-panel p,
.framed-note p,
.editorial-item span {
    opacity: 1 !important;
}

.visual-panel-item,
.matrix-item,
.detail-checklist div,
.detail-metric,
.quote-panel,
.service-proof-tags span,
.marquee-band span {
    background: #ffffff !important;
    color: #0f172a !important;
}

.visual-panel-item strong,
.matrix-item strong,
.detail-checklist div,
.detail-metric p,
.quote-panel blockquote {
    color: #0f172a !important;
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .service-row-media {
        min-height: 180px !important;
        height: 180px !important;
    }
}

/* Final contrast and hover stability pass. */
.editorial-band-copy,
.editorial-list,
.cta-panel.is-red,
.card.is-red,
.panel-is-red,
.home-proof-card,
.home-service-card,
.home-case-card,
.home-final-panel,
.page-home .yolo-service-card.is-featured,
.page-home .yolo-process,
.page-home .yolo-process-grid article {
    background: #7f1d1d !important;
    color: #ffffff !important;
}

.editorial-band-copy :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.editorial-list :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.cta-panel.is-red :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.card.is-red :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.panel-is-red :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.home-proof-card :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.home-service-card :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.home-case-card :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.home-final-panel :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.page-home .yolo-service-card.is-featured :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.page-home .yolo-process :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow),
.page-home .yolo-process-grid article :where(h1, h2, h3, h4, p, span, strong, a, li, small, blockquote, cite, .eyebrow) {
    color: #ffffff !important;
}

.service-row,
.service-row:hover,
.service-row:focus-visible {
    transform: none !important;
    background: #ffffff !important;
    border-color: #e7ebf1 !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06) !important;
}

.service-row:hover .service-row-media img,
.service-row:focus-visible .service-row-media img {
    transform: none !important;
    filter: none !important;
}

/* Services process cards: make Scope / Build / Move feel intentional and readable. */
.service-showcase-visual.visual-panel {
    background: #ffffff !important;
    border-color: #e7ebf1 !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08) !important;
    gap: 16px !important;
}

.service-showcase-visual .visual-panel-item {
    position: relative !important;
    overflow: hidden !important;
    padding: 22px 24px !important;
    min-height: 142px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #991b1b 0%, #6f1111 56%, #450a0a 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 36px rgba(127, 29, 29, 0.18) !important;
}

.service-showcase-visual .visual-panel-item span {
    width: fit-content !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.16em !important;
}

.service-showcase-visual .visual-panel-item strong {
    color: #ffffff !important;
    font-size: 1.22rem !important;
    letter-spacing: -0.01em !important;
}

.service-showcase-visual .visual-panel-item p {
    max-width: 44ch !important;
    color: #fff7f7 !important;
    font-size: 0.94rem !important;
    line-height: 1.65 !important;
}

/* Services CSS normalization: final source of truth for this page section. */
.service-showcase {
    align-items: stretch !important;
}

.service-showcase-copy,
.service-showcase-visual {
    border-radius: 22px !important;
}

.service-showcase-copy .section-head h2 {
    color: #111827 !important;
}

.service-showcase-copy .section-head p {
    color: #374151 !important;
}

.service-stack {
    gap: 16px !important;
}

.service-stack .service-row {
    min-height: 150px !important;
    padding: 14px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    color: #111827 !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.service-stack .service-row:hover,
.service-stack .service-row:focus-visible {
    border-color: rgba(185, 28, 28, 0.38) !important;
    box-shadow: 0 22px 52px rgba(127, 29, 29, 0.12) !important;
}

.service-stack .service-row-media {
    min-height: 122px !important;
    border-radius: 14px !important;
}

.service-stack .service-row-copy strong {
    color: #b91c1c !important;
    font-size: 1.02rem !important;
}

.service-stack .service-row-copy span {
    color: #374151 !important;
    line-height: 1.6 !important;
}

.service-showcase-visual .visual-panel-item,
.service-showcase-visual .visual-panel-item:hover,
.service-showcase-visual .visual-panel-item:focus-within {
    transform: none !important;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #991b1b 0%, #6f1111 56%, #450a0a 100%) !important;
    color: #ffffff !important;
}

.service-showcase-visual .visual-panel-item :where(span, strong, p) {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .service-showcase-copy,
    .service-showcase-visual {
        border-radius: 16px !important;
        padding: 18px !important;
    }

    .service-stack .service-row {
        min-height: 0 !important;
        padding: 12px !important;
    }

    .service-stack .service-row-media {
        min-height: 178px !important;
        height: 178px !important;
    }
}

/* Compact the Scope / Build / Move stack and remove its white backing. */
.service-showcase-visual.visual-panel {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.service-showcase-visual .visual-panel-item,
.service-showcase-visual .visual-panel-item:hover,
.service-showcase-visual .visual-panel-item:focus-within {
    min-height: 112px !important;
    padding: 18px 20px !important;
    border-radius: 14px !important;
    box-shadow: 0 14px 30px rgba(127, 29, 29, 0.14) !important;
}

.service-showcase-visual .visual-panel-item span {
    padding: 4px 9px !important;
    font-size: 0.62rem !important;
}

.service-showcase-visual .visual-panel-item strong {
    font-size: 1.08rem !important;
}

.service-showcase-visual .visual-panel-item p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .service-showcase-visual.visual-panel {
        padding: 0 !important;
    }

    .service-showcase-visual .visual-panel-item,
    .service-showcase-visual .visual-panel-item:hover,
    .service-showcase-visual .visual-panel-item:focus-within {
        min-height: 96px !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }
}

/* Final sizing pass for Scope / Build / Move. */
.service-showcase {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr) !important;
}

.service-showcase-visual.visual-panel {
    width: 100% !important;
    max-width: 460px !important;
    justify-self: start !important;
    gap: 12px !important;
}

.service-showcase-visual .visual-panel-item,
.service-showcase-visual .visual-panel-item:hover,
.service-showcase-visual .visual-panel-item:focus-within {
    min-height: 86px !important;
    padding: 14px 16px !important;
    gap: 7px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #991b1b 0%, #6f1111 58%, #450a0a 100%) !important;
}

.service-showcase-visual .visual-panel-item span {
    padding: 3px 8px !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.service-showcase-visual .visual-panel-item strong {
    font-size: 1rem !important;
}

.service-showcase-visual .visual-panel-item p {
    margin: 0 !important;
    font-size: 0.82rem !important;
    line-height: 1.42 !important;
}

@media (max-width: 768px) {
    .service-showcase {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .service-showcase-visual.visual-panel {
        max-width: none !important;
    }

    .service-showcase-visual .visual-panel-item,
    .service-showcase-visual .visual-panel-item:hover,
    .service-showcase-visual .visual-panel-item:focus-within {
        min-height: 78px !important;
        padding: 12px 14px !important;
    }
}

/* Remove label backing behind Scope / Build / Move text. */
.service-showcase-visual .visual-panel-item span {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Smaller Scope / Build / Move cards. */
.service-showcase {
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr) !important;
}

.service-showcase-visual.visual-panel {
    max-width: 380px !important;
    gap: 10px !important;
}

.service-showcase-visual .visual-panel-item,
.service-showcase-visual .visual-panel-item:hover,
.service-showcase-visual .visual-panel-item:focus-within {
    min-height: 66px !important;
    padding: 10px 12px !important;
    gap: 5px !important;
    border-radius: 10px !important;
}

.service-showcase-visual .visual-panel-item span {
    font-size: 0.56rem !important;
    line-height: 1 !important;
}

.service-showcase-visual .visual-panel-item strong {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

.service-showcase-visual .visual-panel-item p {
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
}

@media (max-width: 768px) {
    .service-showcase {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .service-showcase-visual.visual-panel {
        max-width: none !important;
        gap: 8px !important;
    }

    .service-showcase-visual .visual-panel-item,
    .service-showcase-visual .visual-panel-item:hover,
    .service-showcase-visual .visual-panel-item:focus-within {
        min-height: 62px !important;
        padding: 10px !important;
    }
}

/* Height-only correction for Scope / Build / Move cards. */
.service-showcase-visual .visual-panel-item,
.service-showcase-visual .visual-panel-item:hover,
.service-showcase-visual .visual-panel-item:focus-within {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.service-showcase-visual .visual-panel-item p {
    line-height: 1.25 !important;
}

@media (max-width: 768px) {
    .service-showcase-visual .visual-panel-item,
    .service-showcase-visual .visual-panel-item:hover,
    .service-showcase-visual .visual-panel-item:focus-within {
        min-height: 0 !important;
        height: auto !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
}

/* Stop process cards from stretching to the height of the service column. */
.service-showcase {
    align-items: start !important;
}

.service-showcase-visual.visual-panel {
    align-self: start !important;
    align-content: start !important;
    grid-auto-rows: max-content !important;
}

.service-showcase-visual .visual-panel-item,
.service-showcase-visual .visual-panel-item:hover,
.service-showcase-visual .visual-panel-item:focus-within {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 12px 14px !important;
    gap: 6px !important;
}

.service-showcase-visual .visual-panel-item p {
    max-width: none !important;
}
/* Admin console and dynamic homepage support */
.admin-body {
    --text: #1f2933;
    --muted: #52606d;
    --gold-soft: #8f111b;
    --line: #d9e2ec;
    background: #ffffff;
    color: var(--text);
    font-family: "Jost", Arial, sans-serif;
}

.admin-body::before {
    opacity: 0;
}

.admin-app {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 30px 24px;
    border-right: 1px solid var(--line);
    background: #ffffff;
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
}

.admin-brand {
    display: inline-block;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--gold-soft);
    font-weight: 700;
}

.admin-sidebar-copy,
.admin-activity-item p,
.admin-auth-card p,
.admin-field-help,
.admin-auth-footnote {
    color: var(--muted);
}

.admin-nav {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.admin-nav a {
    padding: 10px 12px;
    border: 1px solid transparent;
    color: var(--muted);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #8f111b;
    background: #fff1f2;
    border-color: #fecdd3;
}

.admin-nav-group-label {
    margin-top: 12px;
    color: var(--gold-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
}

.admin-main {
    padding: 28px;
}

.admin-topbar,
.admin-panel-head,
.admin-toolbar,
.admin-row-actions,
.admin-status-form,
.admin-form-actions,
.admin-columns,
.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-topbar,
.admin-panel-head,
.admin-toolbar {
    justify-content: space-between;
    margin-bottom: 22px;
}

.admin-topbar h1,
.admin-panel h2,
.admin-auth-card h1 {
    margin: 0;
    font-family: "Newsreader", Georgia, serif;
    font-weight: 600;
}

.admin-topbar-eyebrow {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    font-size: 0.76rem;
    margin-bottom: 8px;
}

.admin-user-chip,
.admin-badge,
.admin-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fecdd3;
    background: #fff1f2;
    color: #8f111b;
}

.admin-user-chip,
.admin-badge {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
}

.admin-badge.is-success {
    color: #107154;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.admin-badge.is-muted,
.admin-danger {
    color: #991b1b;
    border-color: #fecaca;
    background: #fef2f2;
}

.admin-badge.is-file,
.admin-badge.is-status {
    text-transform: capitalize;
}

.admin-panel,
.admin-auth-card,
.admin-stat-card {
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(16, 42, 67, 0.08);
}

.admin-panel {
    padding: 24px;
}

.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.admin-stat-card {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.admin-stat-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-stat-card strong {
    font-size: 1.7rem;
    color: var(--text);
}

.admin-columns > * {
    flex: 1;
}

.admin-activity-list,
.admin-edit-grid,
.admin-detail-grid,
.admin-form-stack,
.admin-field {
    display: grid;
    gap: 14px;
}

.admin-activity-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.admin-activity-item:first-child {
    border-top: 0;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-top: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--gold-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
}

.admin-search-form,
.admin-status-form,
.admin-form-actions,
.admin-row-actions {
    flex-wrap: wrap;
}

.admin-search-form input,
.admin-status-form select,
.admin-edit-grid input,
.admin-edit-grid select,
.admin-edit-grid textarea,
.admin-form-stack input {
    width: 100%;
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--text);
    padding: 13px 14px;
    font: inherit;
}

.admin-search-form input {
    min-width: 260px;
}

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

.admin-field-wide,
.admin-form-actions {
    grid-column: 1 / -1;
}

.admin-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
}

.admin-checkbox input {
    width: auto;
}

.admin-field-error {
    color: #b91c1c;
}

.admin-detail-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.admin-detail-row dd {
    margin: 0;
}

.admin-auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-auth-card {
    width: min(520px, 100%);
    padding: 32px;
    display: grid;
    gap: 18px;
}

.yolo-home-testimonial {
    margin: 18px 0 0;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(69, 19, 20, 0.52);
}

.yolo-home-testimonial p {
    margin: 0 0 10px;
    color: var(--text);
}

.yolo-home-testimonial cite {
    color: var(--gold-soft);
    font-style: normal;
}

@media (max-width: 1180px) {
    .admin-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .admin-app {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .admin-columns,
    .admin-topbar,
    .admin-panel-head,
    .admin-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-edit-grid,
    .admin-detail-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .admin-main {
        padding: 20px;
    }

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

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