@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
    --ink: #131a19;
    --paper: #f4f1ea;
    --gold: #dfba5d;
    --gold-bright: #f2d17d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    margin: 0;
}

a {
    color: inherit;
}

.visually-hidden {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
}

:where(h1, h2, h3):focus {
    outline: none;
}

.hero {
    background: var(--ink);
    color: #fff;
    min-height: 760px;
    overflow: hidden;
    padding: 210px max(48px, calc((100% - 1284px) / 2)) 82px;
    position: relative;
}

.hero-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #b89546;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .15em;
    margin: 0 0 24px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 6.15vw, 5.75rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1.02;
    margin-bottom: 29px;
}

.hero-copy {
    color: rgba(255, 255, 255, .67);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 570px;
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 28px;
    margin-top: 41px;
}

.button {
    align-items: center;
    display: inline-flex;
    font-size: .8rem;
    font-weight: 700;
    gap: 26px;
    letter-spacing: .025em;
    padding: 16px 20px;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--gold-bright);
    color: #1a1e19;
}

.button-primary:hover {
    background: #fff0ba;
}

.text-link {
    color: #f3cf72;
    font-size: .77rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    margin-left: 8px;
}

.hero-panel {
    background: linear-gradient(145deg, rgba(237, 203, 116, .17), rgba(255, 255, 255, .035));
    border: 1px solid rgba(236, 203, 120, .24);
    bottom: 82px;
    padding: 30px;
    position: absolute;
    right: max(48px, calc((100% - 1284px) / 2));
    width: 265px;
    z-index: 2;
}

.monogram-wrap {
    display: flex;
    justify-content: flex-end;
}

.monogram-wrap img {
    height: 62px;
    object-fit: contain;
    width: 62px;
}

.panel-label {
    color: #d9bb6c;
    font-family: 'DM Mono', monospace;
    font-size: .63rem;
    letter-spacing: .11em;
    margin: 25px 0 10px;
    text-transform: uppercase;
}

.panel-statement {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.panel-line {
    background: rgba(255, 255, 255, .2);
    height: 1px;
}

.panel-meta {
    color: rgba(255, 255, 255, .55);
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: .61rem;
    justify-content: space-between;
    letter-spacing: .05em;
    margin-top: 14px;
    text-transform: uppercase;
}

.hero-orbit {
    border: 1px solid rgba(238, 202, 112, .17);
    border-radius: 50%;
    position: absolute;
}

.orbit-one {
    height: 780px;
    right: -206px;
    top: 82px;
    width: 780px;
}

.orbit-two {
    height: 540px;
    right: -84px;
    top: 202px;
    width: 540px;
}

.scroll-cue {
    bottom: 88px;
    color: rgba(255, 255, 255, .48);
    font-family: 'DM Mono', monospace;
    font-size: .61rem;
    left: max(48px, calc((100% - 1284px) / 2));
    letter-spacing: .1em;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 3;
}

.scroll-cue span {
    background: #dcb85d;
    display: block;
    height: 38px;
    margin: 0 0 13px 3px;
    width: 1px;
}

.section-wrap {
    margin: auto;
    max-width: 1380px;
    padding: 126px 48px;
}

.services {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

h2 {
    font-size: clamp(2.35rem, 4.1vw, 4.25rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.08;
}

.section-copy {
    align-self: end;
    color: #555b54;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 435px;
}

.service-grid {
    border-top: 1px solid #d8d4c9;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    border-right: 1px solid #d8d4c9;
    min-height: 300px;
    padding: 27px 30px 25px 0;
    position: relative;
    transition: background .25s ease;
}

.service-card+.service-card {
    padding-left: 30px;
}

.service-card:last-child {
    border-right: 0;
}

.service-card:hover {
    background: #ebe4d5;
}

.service-number {
    color: #a88438;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
}

.service-card h3 {
    font-size: 1.38rem;
    font-weight: 600;
    letter-spacing: -.035em;
    margin: 65px 0 14px;
}

.service-card p {
    color: #676a63;
    font-size: .86rem;
    line-height: 1.7;
    max-width: 260px;
}

.card-arrow {
    bottom: 23px;
    font-size: 1.2rem;
    position: absolute;
    right: 25px;
}

.approach {
    background: #e7e1d4;
    padding: 128px 48px;
}

.approach-inner {
    margin: auto;
    max-width: 1284px;
}

.approach-main {
    align-items: end;
    display: grid;
    gap: 50px;
    grid-template-columns: 1.4fr .6fr;
}

.approach h2 {
    margin: 0;
}

.approach h2 em {
    color: #a78336;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.approach-main p {
    color: #555b54;
    font-size: .95rem;
    line-height: 1.8;
    margin: 0 0 8px;
}

.principles {
    border-top: 1px solid #c9c0ae;
    display: grid;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    letter-spacing: .04em;
    margin-top: 84px;
    padding-top: 19px;
    text-transform: uppercase;
}

.closing {
    padding-bottom: 122px;
    padding-top: 122px;
    text-align: center;
}

.closing h2 {
    margin-bottom: 35px;
}

.site-footer {
    align-items: center;
    background: var(--ink);
    color: rgba(255, 255, 255, .55);
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    gap: 16px;
    letter-spacing: .05em;
    padding: 27px max(48px, calc((100% - 1284px) / 2));
    text-transform: uppercase;
}

.site-footer img {
    height: 28px;
    width: 28px;
}

.site-footer a {
    color: #e6c36d;
    margin-left: auto;
    text-decoration: none;
}

.reveal {
    animation: reveal .75s both cubic-bezier(.2, .72, .25, 1);
}

.reveal-delay-one {
    animation-delay: .1s;
}

.reveal-delay-two {
    animation-delay: .2s;
}

.reveal-delay-three {
    animation-delay: .3s;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

.hero-carousel {
    inset: 0;
    overflow: hidden;
    position: absolute;
}

.hero-carousel::after {
    background: linear-gradient(90deg, #131a19 0%, rgba(19, 26, 25, .95) 29%, rgba(19, 26, 25, .48) 58%, rgba(19, 26, 25, .28) 100%);
    content: '';
    inset: 0;
    position: absolute;
    z-index: 1;
}

.carousel-slide {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: scale(1.04);
    width: 100%;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.slide-two {
    animation-name: carousel-fade-two;
}

.slide-three {
    animation-name: carousel-fade-three;
}

.slide-one {
    animation-name: carousel-fade-one;
}

@keyframes carousel-fade-one {

    0%,
    27% {
        opacity: 1;
        transform: scale(1.045);
    }

    33%,
    94% {
        opacity: 0;
        transform: scale(1.01);
    }

    100% {
        opacity: 1;
        transform: scale(1.045);
    }
}

@keyframes carousel-fade-two {

    0%,
    27% {
        opacity: 0;
        transform: scale(1.045);
    }

    33%,
    60% {
        opacity: 1;
        transform: scale(1.025);
    }

    66%,
    100% {
        opacity: 0;
        transform: scale(1.01);
    }
}

@keyframes carousel-fade-three {

    0%,
    60% {
        opacity: 0;
        transform: scale(1.045);
    }

    66%,
    94% {
        opacity: 1;
        transform: scale(1.025);
    }

    100% {
        opacity: 0;
        transform: scale(1.01);
    }
}

.hero-orbit {
    z-index: 1;
}

.hero-panel {
    transform: skewY(-2.5deg);
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s cubic-bezier(.2, .72, .2, 1);
}

.hero-panel>* {
    transform: skewY(2.5deg);
}

.hero-panel:hover {
    background: linear-gradient(145deg, rgba(237, 203, 116, .25), rgba(255, 255, 255, .075));
    border-color: rgba(244, 214, 129, .48);
    box-shadow: 0 24px 46px rgba(0, 0, 0, .28);
    transform: skewY(-2.5deg) translateY(-8px);
}

.hero-panel .monogram-wrap img {
    transition: transform .35s cubic-bezier(.2, .72, .2, 1);
}

.hero-panel:hover .monogram-wrap img {
    transform: rotate(8deg) scale(1.06);
}

@media (prefers-reduced-motion: no-preference) {
    .hero-panel {
        animation: hero-panel-idle 5.8s cubic-bezier(.45, .05, .55, .95) infinite;
        will-change: box-shadow, translate;
    }
}

@keyframes hero-panel-idle {

    0%,
    100% {
        box-shadow: 0 15px 28px rgba(0, 0, 0, .18), 0 0 0 rgba(237, 203, 116, 0);
        translate: 0 0;
    }

    16% {
        translate: 1px -2px;
    }

    20% {
        translate: -1px 1px;
    }

    24% {
        translate: 1px 0;
    }

    28% {
        box-shadow: 0 21px 38px rgba(0, 0, 0, .24), 0 0 28px rgba(237, 203, 116, .2);
        translate: 0 -2px;
    }

    54% {
        box-shadow: 0 27px 48px rgba(0, 0, 0, .28), 0 0 42px rgba(237, 203, 116, .3);
        translate: 0 -4px;
    }

    76% {
        box-shadow: 0 19px 34px rgba(0, 0, 0, .22), 0 0 18px rgba(237, 203, 116, .13);
        translate: 0 -1px;
    }
}

.home-message-bar {
    align-items: center;
    background: #e7c260;
    color: #18201c;
    display: flex;
    font-size: .86rem;
    font-weight: 600;
    gap: 30px;
    justify-content: space-between;
    padding: 20px max(48px, calc((100% - 1284px) / 2));
}

.home-message-bar p {
    margin: 0;
}

.home-message-bar p span {
    font-family: 'DM Mono', monospace;
    font-size: .64rem;
    letter-spacing: .1em;
    margin-right: 18px;
    text-transform: uppercase;
}

.home-message-bar a {
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.home-message-bar a span {
    margin-left: 8px;
}

.about-showcase,
.about-facts,
.about-story,
.about-commitment,
.about-languages,
.about-cta {
    margin: auto;
    max-width: 1380px;
}

.about-showcase {
    align-items: center;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    padding: 110px 48px 25px;
}

.about-intro {
    max-width: 620px;
}

.about-intro h2 {
    margin-bottom: 22px;
}

.about-intro p:last-child {
    color: #5d645e;
    font-size: 1.04rem;
    line-height: 1.9;
}

.about-spotlight {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 28px 60px rgba(19, 26, 25, .12);
}

.about-spotlight img {
    display: block;
    height: 560px;
    object-fit: cover;
    width: 100%;
}

.about-spotlight-card {
    background: rgba(13, 20, 19, .78);
    backdrop-filter: blur(4px);
    bottom: 24px;
    color: #f9e5aa;
    left: 24px;
    padding: 18px 20px;
    position: absolute;
}

.about-spotlight-card span {
    color: rgba(255, 255, 255, .62);
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: .58rem;
    letter-spacing: .16em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.about-spotlight-card strong {
    font-size: 1.5rem;
    letter-spacing: -.04em;
}

.about-facts {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 28px 48px 10px;
}

.about-facts article {
    background: rgba(255, 255, 255, .46);
    border: 1px solid rgba(19, 26, 25, .08);
    border-radius: 22px;
    min-height: 180px;
    padding: 25px 24px;
}

.fact-label {
    color: #a88438;
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: .63rem;
    letter-spacing: .12em;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.about-facts h3 {
    font-size: 1.25rem;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}

.about-facts p,
.about-facts a {
    color: #4d584f;
    font-size: .94rem;
    line-height: 1.7;
    margin: 0;
    text-decoration: none;
}

.about-story {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    padding: 110px 48px 20px;
}

.story-copy {
    max-width: 540px;
}

.story-list {
    color: #3d453f;
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}

.story-list li {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    line-height: 1.7;
}

.story-list li::before {
    background: #dfba5d;
    border-radius: 50%;
    content: '';
    display: inline-block;
    flex: 0 0 9px;
    height: 9px;
    margin-top: .52em;
    width: 9px;
}

.story-image-stack {
    position: relative;
    min-height: 520px;
}

.story-main-image,
.story-float-image {
    border-radius: 28px;
    display: block;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 30px 52px rgba(19, 26, 25, .12);
}

.story-main-image {
    height: 520px;
}

.story-float-image {
    bottom: -28px;
    height: 210px;
    position: absolute;
    right: 28px;
    width: 260px;
    border: 8px solid rgba(244, 241, 234, 0.9);
}

.about-commitment {
    background: #e9e2d5;
    margin-top: 110px;
    padding: 90px 48px 80px;
}

.commitment-header {
    margin: auto;
    max-width: 760px;
    text-align: center;
}

.commitment-header p:last-child {
    color: #53605b;
    font-size: 1.04rem;
    line-height: 1.8;
}

.commitment-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 56px;
}

.commitment-grid article {
    background: rgba(255, 255, 255, .42);
    border: 1px solid rgba(19, 26, 25, .07);
    border-radius: 22px;
    padding: 28px 24px 26px;
}

.commitment-grid span {
    color: #9a7d39;
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: .63rem;
    letter-spacing: .14em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.commitment-grid h3 {
    font-size: 1.7rem;
    letter-spacing: -.05em;
    margin-bottom: 12px;
}

.commitment-grid p {
    color: #4d564f;
    line-height: 1.8;
    margin: 0;
}

.about-languages {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
    padding: 110px 48px 20px;
}

.language-panel,
.hours-panel {
    background: linear-gradient(135deg, rgba(15, 22, 20, .96), rgba(28, 35, 31, .88));
    border-radius: 28px;
    color: #fff;
    padding: 34px 32px;
}

.language-panel .eyebrow,
.hours-panel .eyebrow {
    margin-bottom: 18px;
}

.language-panel h2 {
    margin-bottom: 28px;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.language-tags span {
    background: rgba(223, 186, 93, .15);
    border: 1px solid rgba(223, 186, 93, .28);
    border-radius: 999px;
    color: #f5dd8b;
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    padding: 10px 14px;
}

.hours-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214, 175, 77, .96), rgba(172, 123, 43, .9));
    color: #171c1b;
}

.hours-panel h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -.05em;
    margin-bottom: 10px;
}

.hours-panel p:last-child {
    color: rgba(23, 28, 27, .78);
    font-size: 1.08rem;
    margin: 0;
}

.about-cta {
    align-items: center;
    background: linear-gradient(135deg, rgba(12, 18, 17, .98), rgba(20, 27, 25, .94));
    border-radius: 30px;
    color: #fff;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 90px;
    padding: 42px 48px;
}

.about-cta h2 {
    margin-bottom: 12px;
}

.about-cta p:last-child {
    color: rgba(255, 255, 255, .73);
    line-height: 1.8;
    margin: 0;
    max-width: 560px;
}

.cta-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.button-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
}

.footer-phone {
    color: #edce79;
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    margin: 12px 0 0;
    text-decoration: none;
}

@media (max-width: 900px) {
    .hero-panel {
        display: none;
    }

    .hero {
        min-height: 690px;
    }

    .services {
        gap: 45px;
    }

    .about-showcase,
    .about-story,
    .about-languages,
    .about-cta {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .hero {
        min-height: 640px;
        padding: 156px 24px 52px;
    }

    h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .hero-copy {
        font-size: .92rem;
    }

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

    .scroll-cue {
        bottom: 35px;
        left: 24px;
    }

    .scroll-cue span {
        height: 25px;
    }

    .hero-orbit {
        right: -220px;
    }

    .orbit-one {
        height: 620px;
        top: 68px;
        width: 620px;
    }

    .orbit-two {
        display: none;
    }

    .home-message-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 18px 24px;
    }

    .home-message-bar p span {
        display: block;
        margin: 0 0 8px;
    }

    .section-wrap {
        padding: 82px 24px;
    }

    .services {
        display: block;
    }

    .section-copy {
        margin: 27px 0 55px;
    }

    .service-grid {
        display: block;
    }

    .service-card,
    .service-card+.service-card {
        border-bottom: 1px solid #d8d4c9;
        border-right: 0;
        min-height: 230px;
        padding: 25px 0;
    }

    .service-card h3 {
        margin-top: 45px;
    }

    .approach {
        padding: 82px 24px;
    }

    .approach-main {
        display: block;
    }

    .approach-main p {
        margin-top: 27px;
    }

    .principles {
        grid-template-columns: 1fr;
        margin-top: 54px;
    }

    .about-showcase,
    .about-facts,
    .about-story,
    .about-commitment,
    .about-languages,
    .about-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-showcase {
        padding-top: 82px;
    }

    .about-facts,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .about-spotlight img {
        height: 420px;
    }

    .story-main-image {
        height: 380px;
    }

    .story-float-image {
        height: 160px;
        right: 18px;
        width: 180px;
    }

    .about-commitment {
        margin-top: 76px;
        padding-top: 72px;
    }

    .language-panel,
    .hours-panel,
    .about-cta {
        padding-left: 22px;
        padding-right: 22px;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .site-footer {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 24px;
    }

    .site-footer a {
        margin-left: 0;
        width: 100%;
    }

    .site-footer span:last-child {
        margin-left: auto;
    }
}

@media (prefers-reduced-motion: reduce) {

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

    /* Keep a visible, still background instead of fast-forwarding the carousel. */
    .hero-carousel .carousel-slide {
        animation: none !important;
        opacity: 0;
        transform: none;
    }

    .hero-carousel .slide-one {
        opacity: 1;
    }
}

/* Contact's booking menu is intentionally self-contained so the rest of the primary navigation retains its layout. */
.contact-submenu {
    background: linear-gradient(145deg, rgba(19, 35, 37, .98), rgba(10, 19, 22, .98));
    border: 1px solid rgba(242, 209, 125, .34);
    box-shadow: 0 18px 34px rgba(4, 11, 13, .3);
    display: grid;
    opacity: 0;
    padding: 7px;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
}

.contact-menu-group:hover .contact-submenu,
.contact-menu-group:focus-within .contact-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.contact-submenu a {
    align-items: center;
    background: rgba(242, 209, 125, .08);
    border: 1px solid transparent;
    display: flex;
    font-size: .76rem;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: .01em;
    min-height: 42px;
    padding: 10px 12px;
}

.contact-submenu a::after {
    color: #f2d17d;
    content: "→";
    font-size: 1rem;
    transition: transform .18s ease;
}

.contact-submenu a:hover,
.contact-submenu a.active {
    background: rgba(242, 209, 125, .16);
    border-color: rgba(242, 209, 125, .28);
}

.contact-submenu a:hover::after,
.contact-submenu a.active::after {
    transform: translateX(3px);
}

/* The company profile control uses the exact same visual language as the adjacent workspace links. */
.management-quick-links .management-command-button {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d8d0bf;
    color: #1b2822;
    cursor: pointer;
    display: grid;
    font: inherit;
    gap: 14px;
    grid-template-columns: 31px minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 11px 16px;
    text-align: left;
    transition: background .2s ease, color .2s ease;
    width: 100%;
}

.management-quick-links .management-command-button:hover,
.management-quick-links .management-command-button:focus-visible {
    background: #e5d48e;
    outline: 0;
}

.management-schedule-page {
    margin: auto;
    max-width: 1380px;
    padding: 78px 48px 120px;
}

.summary-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.summary-card {
    background: #e8e1d3;
    min-height: 104px;
    padding: 17px;
}

.summary-card span {
    color: #62665f;
    display: block;
    font: 700 .64rem 'DM Mono', monospace;
    letter-spacing: .05em;
    line-height: 1.35;
    text-transform: uppercase;
}

.summary-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -.05em;
    margin-top: 12px;
}

.schedule-controls {
    display: flex;
    justify-content: flex-end;
    margin: 28px 0 14px;
}

.schedule-controls label {
    color: #56615b;
    display: grid;
    font: 700 .65rem 'DM Mono', monospace;
    gap: 7px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.schedule-controls input {
    background: #fff;
    border: 1px solid #d8d0bf;
    color: #1b2822;
    font: 600 .86rem 'DM Sans', sans-serif;
    padding: 10px 12px;
}

.schedule-action-message {
    border-left: 4px solid #527a63;
    color: #315943;
    margin: 0 0 14px;
    padding: 12px 14px;
    background: #eef6ee;
}

.schedule-action-message.error {
    background: #fff1ed;
    border-color: #a74d35;
    color: #88412f;
}

.appointment-list {
    border: 1px solid #d8d0bf;
}

.management-schedule-page .appointment-card {
    background: #fffdf8;
    border-bottom: 1px solid #d8d0bf;
    padding: 20px;
}

.management-schedule-page .appointment-card:last-child {
    border-bottom: 0;
}

.appointment-topline,
.appointment-meta,
.appointment-contact,
.appointment-actions {
    align-items: center;
    display: flex;
    gap: 12px;
}

.appointment-topline {
    justify-content: space-between;
}

.appointment-topline strong,
.appointment-topline small {
    display: block;
}

.appointment-topline small,
.appointment-contact {
    color: #68716a;
    font-size: .78rem;
    margin-top: 4px;
}

.appointment-meta {
    color: #48564f;
    font-size: .8rem;
    margin-top: 15px;
}

.appointment-contact {
    flex-wrap: wrap;
}

.appointment-notes {
    color: #59665e;
    font-size: .86rem;
    line-height: 1.6;
    margin: 14px 0 0;
}

.appointment-actions {
    flex-wrap: wrap;
    margin-top: 17px;
}

.appointment-actions button {
    background: transparent;
    border: 1px solid #c9c0ad;
    color: #465149;
    cursor: pointer;
    font: 700 .64rem 'DM Mono', monospace;
    letter-spacing: .04em;
    padding: 9px 11px;
    text-transform: uppercase;
}

.appointment-actions button:last-child {
    border-color: #b56c52;
    color: #914d38;
}

.schedule-reschedule-editor>p:not(.eyebrow) {
    color: #657068;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-submenu {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .management-schedule-page {
        padding: 55px 24px 90px;
    }

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

    .schedule-controls {
        justify-content: stretch;
    }

    .schedule-controls label {
        width: 100%;
    }

    .schedule-controls input {
        width: 100%;
    }

    .appointment-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .appointment-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

/* A click-first contact menu: its styles do not affect any of the surrounding navigation links. */
.contact-navigation {
    position: relative;
}

.contact-navigation>summary {
    align-items: center;
    color: rgb(239, 223, 154);
    cursor: pointer;
    display: inline-flex;
    gap: 6px;
    list-style: none;
    padding: 8px 0;
    user-select: none;
    font-size: 0.8rem;
}

.contact-navigation>summary::-webkit-details-marker {
    display: none;
}

.contact-navigation>summary svg {
    fill: none;
    height: 17px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform .2s ease, color .2s ease;
    width: 17px;
}

.contact-navigation[open]>summary {
    color: #f2d17d;
}

.contact-navigation[open]>summary svg {
    transform: rotate(180deg);
}

.contact-navigation-panel {
    background: linear-gradient(145deg, #16292b, #091417);
    border: 1px solid rgba(242, 209, 125, .34);
    border-radius: 14px;
    box-shadow: 0 20px 42px rgba(4, 11, 13, .35);
    display: grid;
    gap: 6px;
    left: -14px;
    min-width: 292px;
    padding: 8px;
    position: absolute;
    top: calc(100% + 8px);
    transform-origin: top left;
    z-index: 40;
}

.contact-navigation-link {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #f8f5ed;
    display: grid;
    gap: 11px;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    min-height: 60px;
    padding: 10px;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.contact-navigation-link:hover,
.contact-navigation-link.active {
    background: rgba(242, 209, 125, .12);
    border-color: rgba(242, 209, 125, .27);
}

.contact-navigation-link:hover {
    transform: translateX(2px);
}

.contact-navigation-icon {
    align-items: center;
    background: rgba(242, 209, 125, .13);
    border-radius: 8px;
    color: #f2d17d;
    display: flex;
    font-size: .9rem;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.contact-navigation-link strong,
.contact-navigation-link small {
    display: block;
}

.contact-navigation-link strong {
    font-size: .8rem;
}

.contact-navigation-link small {
    color: rgba(248, 245, 237, .62);
    font-size: .68rem;
    margin-top: 3px;
}

.contact-navigation-link i {
    color: #f2d17d;
    font-size: 1.05rem;
    font-style: normal;
    transition: transform .18s ease;
}

.contact-navigation-link:hover i {
    transform: translateX(3px);
}

.contact-navigation-book {
    background: rgba(242, 209, 125, .08);
}

@media (max-width: 640px) {
    .contact-navigation {
        width: 100%;
    }

    .contact-navigation>summary {
        justify-content: space-between;
        padding: 11px 0;
        width: 100%;
    }

    .contact-navigation-panel {
        left: auto;
        margin-top: 2px;
        min-width: 0;
        position: static;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .contact-navigation {
        align-self: stretch;
        border-top: 1px solid rgba(255, 255, 255, .06);
        margin: 0 22px;
        width: auto;
    }

    .contact-navigation>summary {
        box-sizing: border-box;
        justify-content: space-between;
        padding: 17px 0;
        width: 100%;
    }

    .contact-navigation-panel {
        left: auto;
        margin: 2px 0 8px;
        min-width: 0;
        position: static;
        width: 100%;
    }
}

/* Keep the contact disclosure centered with the rest of the collapsed menu. */
@media (max-width: 1100px) {
    .contact-navigation {
        align-self: stretch;
        border-top: 1px solid rgba(255, 255, 255, .06);
        margin: 0 22px;
        width: auto;
    }

    .contact-navigation>summary {
        box-sizing: border-box;
        justify-content: center;
        padding: 17px 0;
        width: 100%;
    }

    .contact-navigation-panel {
        left: auto;
        margin: 2px 0 8px;
        min-width: 0;
        position: static;
        width: 100%;
    }

    /* Keep Home's indicator in the link flow so it stays beside the label at every collapsed width. */
    .site-navigation .home-nav-link {
        align-items: center;
        display: flex;
        gap: 9px;
        justify-content: center;
        padding-left: 22px !important;
    }

    .site-navigation .home-nav-link::before {
        flex: 0 0 5px;
        left: auto !important;
        position: static !important;
        top: auto !important;
    }
}

/* Shared interior pages and the persistent site footer. */
.interior-hero {
    background: var(--ink);
    color: #fff;
    min-height: 540px;
    padding: 190px max(48px, calc((100% - 1284px) / 2)) 96px;
}

.interior-hero h1 {
    max-width: 780px;
}

.interior-hero>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .67);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 570px;
}

.interior-hero .button {
    margin-top: 22px;
}

.interior-content {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    margin: auto;
    max-width: 1380px;
    padding: 105px 48px;
}

.interior-content article {
    border-top: 1px solid #d8d4c9;
    min-height: 250px;
    padding: 25px 30px 25px 0;
}

.interior-content article+article {
    border-left: 1px solid #d8d4c9;
    padding-left: 30px;
}

.interior-content span {
    color: #a88438;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
}

.interior-content h2 {
    font-size: 1.45rem;
    font-weight: 600;
    margin: 55px 0 12px;
}

.interior-content p {
    color: #60655e;
    font-size: .9rem;
    line-height: 1.75;
    max-width: 290px;
}

.empty-state {
    padding: 105px 24px 125px;
    text-align: center;
}

.empty-state img,
.account-page img {
    height: 72px;
    margin-bottom: 25px;
    width: 72px;
}

.empty-state h2 {
    margin-bottom: 16px;
}

.empty-state>p:last-child {
    color: #60655e;
    line-height: 1.8;
    margin: auto;
    max-width: 470px;
}

.account-page {
    min-height: 625px;
    padding: 174px 24px 100px;
    text-align: center;
}

.account-page h1 {
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.account-page>p:not(.eyebrow) {
    color: #60655e;
    line-height: 1.8;
    margin: 0 auto 30px;
    max-width: 570px;
}

.dark-link {
    color: #876c2a;
}

.site-footer {
    background: #0d1413;
    color: rgba(255, 255, 255, .56);
    display: block;
    font-family: Manrope, Arial, sans-serif;
    font-size: inherit;
    letter-spacing: normal;
    padding: 0;
    text-transform: none;
}

.footer-main {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(120px, 1fr));
    margin: auto;
    max-width: 1380px;
    padding: 82px 48px 68px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand>img {
    height: auto;
    margin: 0 0 22px;
    max-width: 180px;
    width: 100%;
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-email {
    color: #edce79;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-email span {
    margin-left: 6px;
}

.footer-address {
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    line-height: 1.7;
    margin: 18px 0 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column h2 {
    color: #e7c260;
    font-family: 'DM Mono', monospace;
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .12em;
    margin: 7px 0 10px;
    text-transform: uppercase;
}

.site-footer .footer-column a {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    margin: 0;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    width: auto;
}

.site-footer .footer-column a:hover,
.site-footer .footer-email:hover {
    color: #fff0ba;
}

.site-footer .footer-column a:hover {
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: .59rem;
    gap: 24px;
    justify-content: space-between;
    letter-spacing: .03em;
    margin: auto;
    max-width: 1380px;
    padding: 22px 48px 26px;
    text-transform: uppercase;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.site-footer .legal-links a {
    color: rgba(255, 255, 255, .52);
    margin: 0;
    text-decoration: none;
    width: auto;
}

.site-footer .legal-links a:hover {
    color: #e7c260;
}

@media (max-width: 760px) {
    .interior-hero {
        min-height: 480px;
        padding: 145px 24px 72px;
    }

    .interior-content {
        display: block;
        padding: 70px 24px;
    }

    .interior-content article,
    .interior-content article+article {
        border-left: 0;
        min-height: 210px;
        padding: 24px 0;
    }

    .interior-content h2 {
        margin-top: 37px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        padding: 62px 24px 48px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 22px 24px 28px;
    }

    .legal-links {
        gap: 13px 20px;
    }
}

/* Interior image treatments retain enough contrast for accessible headings. */
.interior-hero {
    background-position: center center;
    background-size: cover;
    isolation: isolate;
    position: relative;
}

.interior-hero::before {
    background: linear-gradient(90deg, rgba(12, 19, 18, .98) 0%, rgba(12, 19, 18, .89) 39%, rgba(12, 19, 18, .29) 76%, rgba(12, 19, 18, .18) 100%);
    content: '';
    inset: 0;
    position: absolute;
    z-index: -1;
}

.hero-services {
    background-image: url('images/hero-product-designer.jpg');
}

.hero-approach {
    background-image: url('images/hero-leadership-team.jpg');
}

.hero-insights {
    background-image: url('images/hero-innovation-team.jpg');
}

.hero-contact {
    background-image: url('images/hero-product-designer.jpg');
}

.quote-page {
    background: #111a18;
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr);
    min-height: 760px;
}

.quote-visual {
    background: linear-gradient(90deg, rgba(15, 23, 21, .08), rgba(15, 23, 21, .55)), url('images/hero-request-quote.jpg') center / cover;
    min-height: 100%;
}

.quote-content {
    padding: 158px max(48px, calc((100% - 1284px) / 2)) 82px 68px;
}

.quote-content h1 {
    font-size: clamp(3rem, 4.5vw, 5rem);
}

.quote-content>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
    margin-bottom: 31px;
    max-width: 490px;
}

.quote-form {
    display: grid;
    gap: 17px;
    max-width: 540px;
}

.quote-form label {
    color: #e8ce88;
    display: grid;
    font-family: 'DM Mono', monospace;
    font-size: .64rem;
    gap: 8px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* Long service names must not set the minimum width of the form's grid items. */
.quote-content,
.quote-form,
.quote-form fieldset,
.quote-form .form-row,
.quote-form label {
    min-width: 0;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.quote-form select {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quote-form input,
.quote-form textarea {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(232, 206, 136, .27);
    border-radius: 0;
    color: #fff;
    font-family: Manrope, Arial, sans-serif;
    font-size: .88rem;
    letter-spacing: normal;
    outline: 0;
    padding: 13px 14px;
    resize: vertical;
    text-transform: none;
    transition: border-color .2s ease, background .2s ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(255, 255, 255, .4);
}

.quote-form input:focus,
.quote-form textarea:focus {
    background: rgba(255, 255, 255, .1);
    border-color: #e7c260;
}

.form-row {
    display: grid;
    gap: 17px;
    grid-template-columns: 1fr 1fr;
}

.quote-form button {
    border: 0;
    justify-self: start;
    margin-top: 4px;
}

.quote-form-error {
    background: rgba(190, 69, 49, .18);
    border: 1px solid rgba(239, 124, 93, .42);
    border-radius: 7px;
    color: #ffd1c2;
    font-size: .82rem;
    font-weight: 650;
    line-height: 1.55;
    margin: 0;
    padding: 12px 14px;
}

.quote-confirmation {
    border: 1px solid rgba(232, 206, 136, .42);
    display: grid;
    gap: 8px;
    max-width: 500px;
    padding: 23px;
}

.quote-confirmation strong {
    color: #e7c260;
    font-size: 1.2rem;
}

.quote-confirmation span {
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    line-height: 1.65;
}

@media (max-width: 850px) {
    .quote-page {
        display: block;
    }

    .quote-visual {
        min-height: 330px;
    }

    .quote-content {
        padding: 70px 24px 86px;
    }
}

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

    .quote-visual {
        min-height: 260px;
    }

    .interior-hero {
        background-position: center center;
    }

    .interior-hero::before {
        background: linear-gradient(90deg, rgba(12, 19, 18, .96), rgba(12, 19, 18, .57));
    }
}

.contact-form-section {
    display: grid;
    gap: 80px;
    grid-template-columns: .7fr 1.3fr;
    margin: auto;
    max-width: 1284px;
    padding: 105px 48px;
}

.contact-form-section>div>p:not(.eyebrow) {
    color: #60655e;
    line-height: 1.8;
    max-width: 340px;
}

.light-form label {
    color: #7a622b;
}

.light-form input,
.light-form textarea {
    background: #fffdf9;
    border-color: #d8d0bf;
    color: #1d2522;
}

.light-form input:focus,
.light-form textarea:focus {
    background: #fff;
}

.contact-confirmation {
    background: var(--ink);
}

.information-page {
    margin: auto;
    max-width: 920px;
    padding: 105px 48px 130px;
}

/* Secondary actions on the light public information pages need dark contrast. */
.information-page .button-secondary {
    background: #173126;
    border-color: #173126;
    color: #fff;
}

.information-page .button-secondary:hover {
    background: #294b3c;
    border-color: #294b3c;
}

.information-page>p:not(.eyebrow) {
    color: #5e655e;
    font-size: 1rem;
    line-height: 1.85;
    max-width: 700px;
}

.faq-list {
    border-top: 1px solid #d8d0bf;
    margin-top: 50px;
}

.faq-list details {
    border-bottom: 1px solid #d8d0bf;
    padding: 20px 0;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    padding-right: 30px;
    position: relative;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list details p {
    color: #5e655e;
    line-height: 1.75;
    margin: 17px 30px 0 0;
}

.newsletter-form {
    align-items: end;
    display: flex;
    margin-top: 28px;
    max-width: 310px;
}

.newsletter-form label {
    color: #e7c260;
    display: grid;
    flex: 1;
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    gap: 7px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.newsletter-form input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-family: Manrope, Arial, sans-serif;
    font-size: .78rem;
    outline: 0;
    padding: 7px 0;
}

.newsletter-form input:focus {
    border-color: #e7c260;
}

.newsletter-form button {
    background: none;
    border: 0;
    color: #e7c260;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 7px 0 7px 12px;
}

.newsletter-message {
    color: #d9c27e;
    display: block;
    font-size: .7rem;
    line-height: 1.5;
    margin-top: 10px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.site-footer .social-links a {
    color: rgba(255, 255, 255, .54);
    font-family: 'DM Mono', monospace;
    font-size: .58rem;
    letter-spacing: .06em;
    margin: 0;
    text-decoration: none;
    text-transform: uppercase;
    width: auto;
}

.site-footer .social-links a:hover {
    color: #e7c260;
}

.account-form {
    margin: 0 auto 25px;
    text-align: left;
}

.account-form label {
    color: #7a622b;
}

.account-form input {
    background: #fffdf9;
    border-color: #d8d0bf;
    color: #1d2522;
}

.account-form .remember-choice {
    align-items: center;
    display: flex;
    font-family: Manrope, Arial, sans-serif;
    font-size: .78rem;
    gap: 9px;
    letter-spacing: normal;
    text-transform: none;
}

.account-form .remember-choice input {
    accent-color: #b89546;
    height: 15px;
    width: 15px;
}

.account-error {
    background: #f9e7e2;
    border-left: 3px solid #9e392b;
    color: #6e241b;
    font-size: .82rem;
    line-height: 1.55;
    margin: 0 auto 22px !important;
    max-width: 540px;
    padding: 12px 14px;
}

.service-subnav {
    background: #e7e1d4;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding: 0 24px;
}

.service-subnav a {
    border-left: 1px solid rgba(91, 81, 58, .18);
    color: #3d453e;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    letter-spacing: .06em;
    padding: 17px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
    white-space: nowrap;
}

.service-subnav a:hover {
    background: #d7cba8;
    color: #151b18;
}

.catalog-page {
    margin: auto;
    max-width: 1284px;
    padding: 90px 48px 125px;
}

.catalog-group {
    border-top: 1px solid #d8d0bf;
    padding: 66px 0;
    scroll-margin-top: 24px;
}

.catalog-group:target {
    animation: catalog-section-highlight 1.4s ease-out;
    background: linear-gradient(90deg, rgba(225, 199, 130, .2), transparent 70%);
    border-radius: 18px;
    margin-inline: -18px;
    padding-inline: 18px;
}

.catalog-group>.eyebrow {
    margin-bottom: 14px;
}

.catalog-group h2 {
    font-size: clamp(2rem, 3vw, 3.25rem);
    margin-bottom: 38px;
}

.catalog-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
    background: #fffdf9;
    border: 1px solid #ded7c8;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.catalog-card:hover {
    box-shadow: 0 12px 25px rgba(32, 31, 26, .08);
    transform: translateY(-3px);
}

.catalog-card h3 {
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.35;
}

.catalog-card p {
    color: #646961;
    font-size: .78rem;
    line-height: 1.65;
}

.availability {
    align-self: flex-start;
    border: 1px solid currentColor;
    font-family: 'DM Mono', monospace;
    font-size: .56rem;
    letter-spacing: .05em;
    margin-top: auto;
    padding: 6px 8px;
    text-transform: uppercase;
}

.available-now {
    color: #48725d;
}

.professional {
    color: #866b2a;
}

.coming-soon {
    color: #79736a;
}

@media (max-width: 800px) {
    .catalog-page {
        padding: 70px 24px;
    }

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

    .service-subnav {
        justify-content: flex-start;
    }

    .service-subnav a {
        border-bottom: 1px solid rgba(91, 81, 58, .18);
    }
}

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

    .catalog-group {
        padding: 50px 0;
    }
}

.management-hero {
    background: linear-gradient(90deg, rgba(17, 31, 26, .94) 0%, rgba(17, 31, 26, .8) 42%, rgba(17, 31, 26, .26) 100%), url('/images/management-hero.jpg') center 48% / cover no-repeat;
    color: #fff;
    padding: 170px max(48px, calc((100% - 1284px) / 2)) 80px;
}

.management-hero h1 {
    margin-bottom: 18px;
}

.management-hero>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    max-width: 620px;
}

.management-page {
    margin: auto;
    max-width: 1380px;
    padding: 75px 48px 120px;
}

.management-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, 1fr);
}

.management-metrics article {
    background: #e8e1d3;
    min-height: 105px;
    padding: 18px;
}

.management-metrics strong {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -.05em;
}

.management-metrics span {
    color: #62665f;
    font-family: 'DM Mono', monospace;
    font-size: .58rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.management-section {
    border-top: 1px solid #d8d0bf;
    margin-top: 72px;
    padding-top: 30px;
}

.management-heading {
    margin-bottom: 30px;
}

.management-heading h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.management-heading>p:not(.eyebrow) {
    color: #646961;
    font-size: .9rem;
    line-height: 1.7;
    max-width: 540px;
}

.management-table {
    border: 1px solid #d8d0bf;
}

.management-row {
    align-items: center;
    border-bottom: 1px solid #ded7c8;
    display: grid;
    gap: 20px;
    grid-template-columns: 1.3fr .8fr auto;
    padding: 17px 19px;
}

.management-row:last-child {
    border-bottom: 0;
}

.management-row strong,
.management-row span {
    display: block;
}

.management-row strong {
    font-size: .86rem;
}

.management-row div>span {
    color: #6b7069;
    font-size: .72rem;
    margin-top: 5px;
    text-transform: capitalize;
}

.admin-toggle,
.role-actions button,
.delete-action,
.resource-picker button {
    background: transparent;
    border: 1px solid #c9c0ad;
    color: #4b514b;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: .58rem;
    letter-spacing: .04em;
    padding: 9px 10px;
    text-transform: uppercase;
}

.admin-toggle.enabled {
    border-color: #527a63;
    color: #3f6b52;
}

.admin-toggle.disabled {
    border-color: #936145;
    color: #81523a;
}

.role-actions {
    display: flex;
    gap: 7px;
}

.role-actions button:hover,
.resource-picker button:hover,
.resource-picker .selected {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.delete-action {
    border-color: #a26152;
    color: #884334;
}

.resource-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.management-empty {
    color: #6b7069;
    font-size: .85rem;
    padding: 28px;
}

.management-resource-loading {
    align-items: center;
    color: #6b7069;
    display: flex;
    font-size: .82rem;
    gap: 10px;
    min-height: 76px;
    padding: 18px 24px;
}

.management-loading-spinner {
    animation: management-loading-spin .8s linear infinite;
    border: 2px solid rgba(31, 59, 47, .18);
    border-radius: 50%;
    border-top-color: #1f3b2f;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.management-resource-error {
    color: #884334;
    font-size: .82rem;
    padding: 18px 24px;
}

.management-resource-error button {
    background: none;
    border: 0;
    color: #1f3b2f;
    cursor: pointer;
    font-weight: 700;
    margin-left: 8px;
    text-decoration: underline;
}

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

.record-status {
    color: #6b7069;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    text-transform: uppercase;
}

.access-denied {
    min-height: 520px;
    padding: 180px 48px 90px;
    text-align: center;
}

.access-denied h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

@media (max-width: 900px) {
    .management-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .management-row {
        grid-template-columns: 1fr auto;
    }

    .management-row .availability,
    .management-row .record-status {
        grid-column: 1;
    }

    .management-row>.admin-toggle,
    .management-row>.delete-action {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 640px) {
    .management-hero {
        padding: 142px 24px 65px;
    }

    .management-page {
        padding: 55px 24px 90px;
    }

    .management-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .management-section {
        margin-top: 55px;
    }

    .role-actions {
        flex-wrap: wrap;
    }

    .management-row {
        gap: 12px;
        padding: 15px;
    }
}

@media (max-width: 760px) {
    .contact-form-section {
        display: block;
        padding: 75px 24px;
    }

    .contact-form-section>div:first-child {
        margin-bottom: 45px;
    }

    .information-page {
        padding: 78px 24px 96px;
    }
}

/* Reusable account surface and a unified, quieter form system. */
.account-page {
    align-items: center;
    background: radial-gradient(circle at 16% 12%, rgba(222, 186, 93, .18), transparent 28%), radial-gradient(circle at 87% 87%, rgba(49, 101, 82, .2), transparent 31%), #101817;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 138px 24px 92px;
    position: relative;
    text-align: left;
}

.account-orbit {
    border: 1px solid rgba(231, 194, 96, .19);
    border-radius: 50%;
    height: 33rem;
    pointer-events: none;
    position: absolute;
    width: 33rem;
}

.account-orbit-one {
    left: -15rem;
    top: 7rem;
    animation: account-orbit 16s ease-in-out infinite alternate;
}

.account-orbit-two {
    bottom: -18rem;
    right: -11rem;
    animation: account-orbit 19s ease-in-out infinite alternate-reverse;
}

.account-card {
    animation: account-card-enter .8s cubic-bezier(.2, .78, .24, 1) both;
    background: rgba(255, 253, 249, .97);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    max-width: 540px;
    padding: clamp(30px, 5vw, 54px);
    position: relative;
    width: 100%;
    z-index: 1;
}

.account-card::before {
    background: linear-gradient(90deg, #dcb85d, transparent);
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    right: 35%;
    top: 0;
}

.account-card>img {
    display: block;
    height: 52px;
    margin: 0 0 27px;
    object-fit: contain;
    object-position: left center;
    width: 52px;
}

.account-card .eyebrow {
    margin-bottom: 15px;
}

.account-card h1 {
    color: #17201c;
    font-size: clamp(2.5rem, 5vw, 4.15rem);
    margin-bottom: 16px;
}

.account-intro {
    color: #5c635c;
    font-size: .91rem;
    line-height: 1.75;
    margin: 0 0 29px;
    max-width: 430px;
}

.modern-form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.modern-form-field>label {
    color: #5a4930;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.modern-form-field input,
.quote-form input,
.quote-form textarea,
.quote-form select,
.newsletter-form input {
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset, 0 4px 12px rgba(26, 31, 28, .03);
    min-height: 46px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.modern-form-field input {
    background: #fff;
    border: 1px solid #d7d3c9;
    color: #17201c;
    font: inherit;
    padding: 12px 13px;
}

.modern-form-field input:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus,
.newsletter-form input:focus {
    border-color: #b89546;
    box-shadow: 0 0 0 4px rgba(222, 186, 93, .16);
    transform: translateY(-1px);
}

.form-validation {
    color: #8a382b;
    font-size: .78rem;
    line-height: 1.55;
    margin: 0 0 15px;
    padding-left: 18px;
}

.validation-message {
    color: #9b3e30;
    font-family: Manrope, Arial, sans-serif;
    font-size: .71rem;
    letter-spacing: normal;
    line-height: 1.4;
    text-transform: none;
}

.account-submit {
    border: 0;
    cursor: pointer;
    justify-content: space-between;
    margin-top: 6px;
    width: 100%;
}

.login-options {
    align-items: center;
    display: flex;
    gap: 17px;
    justify-content: space-between;
    margin: 2px 0 25px;
}

.login-options>a,
.account-footer-link a,
.account-success a {
    color: #856827;
    font-size: .77rem;
    font-weight: 700;
    text-decoration: none;
}

.login-options>a:hover,
.account-footer-link a:hover,
.account-success a:hover {
    color: #1f2e28;
    text-decoration: underline;
}

.remember-switch {
    align-items: center;
    color: #4f5951;
    cursor: pointer;
    display: inline-flex;
    font-size: .73rem;
    gap: 9px;
    line-height: 1.35;
    max-width: 250px;
}

.remember-switch input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.switch-track {
    background: #c8c8c0;
    border-radius: 999px;
    flex: 0 0 34px;
    height: 20px;
    position: relative;
    transition: background .2s ease;
}

.switch-track::after {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .24);
    content: '';
    height: 14px;
    left: 3px;
    position: absolute;
    top: 3px;
    transition: transform .2s ease;
    width: 14px;
}

.remember-switch input:checked+.switch-track {
    background: #557965;
}

.remember-switch input:checked+.switch-track::after {
    transform: translateX(14px);
}

.remember-switch input:focus-visible+.switch-track {
    outline: 3px solid rgba(184, 149, 70, .35);
    outline-offset: 3px;
}

.account-footer-link {
    color: #606860;
    font-size: .8rem;
    margin: 25px 0 0;
    text-align: center;
}

.account-success {
    background: #edf4eb;
    border-left: 3px solid #5b8064;
    color: #2d5039;
    display: grid;
    font-size: .84rem;
    gap: 9px;
    line-height: 1.6;
    padding: 17px;
}

.account-success strong {
    font-size: 1rem;
}

.account-success a {
    align-self: start;
}

.quote-form .validation-message {
    display: block;
}

.light-form .form-validation {
    color: #933e30;
}

.newsletter-form .validation-message {
    color: #f2d17d;
    display: block;
    font-size: .63rem;
    margin-top: 3px;
}

.newsletter-form {
    align-items: end;
}

.newsletter-form label {
    min-width: 0;
}

.newsletter-form input {
    border-radius: 0;
    min-height: 0;
}

.newsletter-form input:focus {
    box-shadow: none;
    transform: none;
}

@keyframes account-card-enter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.985);
    }

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

@keyframes account-orbit {
    from {
        transform: translate3d(0, 0, 0) rotate(0);
    }

    to {
        transform: translate3d(22px, -15px, 0) rotate(12deg);
    }
}

@media (max-width: 560px) {
    .account-page {
        padding: 122px 17px 65px;
    }

    .account-card {
        padding: 30px 23px;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .remember-switch {
        max-width: none;
    }

    .account-orbit {
        height: 25rem;
        width: 25rem;
    }

    .account-orbit-one {
        left: -13rem;
    }

    .account-orbit-two {
        right: -14rem;
    }
}

/* A shared, subtle radius keeps interactive controls and surfaced content cohesive. */
:where(button, input[type='button'], input[type='submit'], input[type='reset'], .button, .quote-cta, .account-link) {
    border-radius: 6px;
}

:where(.hero-panel, .service-card, .catalog-card, .account-card, .quote-confirmation, .account-success, .account-error, .management-metrics article, .management-table, .management-row, .management-empty, .access-denied) {
    border-radius: 6px;
}

button,
input[type='button'],
input[type='submit'],
input[type='reset'],
.button,
.quote-cta,
.account-link {
    border-radius: 6px;
}

/* Home page: service-led storytelling with enough quiet space for the content to breathe. */
.home-service-overview {
    margin: auto;
    max-width: 1380px;
    padding: 132px 48px 110px;
}

.home-section-heading {
    align-items: end;
    display: grid;
    gap: 74px;
    grid-template-columns: 1.35fr .65fr;
    margin-bottom: 66px;
}

.home-section-heading h2,
.home-closing h2 {
    margin-bottom: 0;
}

.home-section-heading h2 em,
.home-closing h2 em {
    color: #a78336;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.home-section-heading>p {
    color: #596159;
    font-size: .95rem;
    line-height: 1.85;
    margin: 0 0 8px;
    max-width: 390px;
}

.division-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.division-card {
    background: #e7e1d4;
    color: #1a231e;
    display: flex;
    flex-direction: column;
    min-height: 275px;
    overflow: hidden;
    padding: 22px;
    position: relative;
    text-decoration: none;
    transition: box-shadow .35s ease, transform .35s ease, background .35s ease;
}

.division-card:nth-child(2),
.division-card:nth-child(5) {
    background: #15211d;
    color: #fff;
}

.division-card:nth-child(3) {
    background: #dbc481;
}

.division-card:hover {
    box-shadow: 0 18px 34px rgba(29, 35, 31, .14);
    transform: translateY(-6px);
}

.division-number {
    color: #9b7933;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    letter-spacing: .1em;
    position: relative;
    z-index: 2;
}

.division-card:nth-child(2) .division-number,
.division-card:nth-child(5) .division-number {
    color: #e5c46d;
}

.division-orbit {
    border: 1px solid currentColor;
    border-radius: 50%;
    height: 220px;
    opacity: .13;
    position: absolute;
    right: -74px;
    top: -76px;
    transition: opacity .35s ease, transform .55s cubic-bezier(.2, .75, .2, 1);
    width: 220px;
}

.division-orbit::after {
    border: 1px solid currentColor;
    border-radius: 50%;
    content: '';
    inset: 29px;
    position: absolute;
}

.division-card:hover .division-orbit {
    opacity: .28;
    transform: scale(1.15) rotate(24deg);
}

.division-card-copy {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.division-card-copy p {
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.1;
    margin-bottom: 11px;
    max-width: 220px;
}

.division-card-copy span {
    color: inherit;
    font-family: 'DM Mono', monospace;
    font-size: .61rem;
    letter-spacing: .05em;
    opacity: .66;
    text-transform: uppercase;
}

.division-arrow {
    bottom: 20px;
    font-size: 1.25rem;
    position: absolute;
    right: 22px;
    transition: transform .3s ease;
}

.division-card:hover .division-arrow {
    transform: translate(4px, -4px);
}

.home-overview-footer {
    align-items: center;
    border-top: 1px solid #d5cdbb;
    display: flex;
    font-size: .84rem;
    gap: 26px;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 22px;
}

.home-overview-footer>span {
    color: #62685f;
    line-height: 1.65;
}

.home-overview-footer .text-link {
    flex: 0 0 auto;
}

.home-solution-stage {
    background: #101917;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
    padding: 126px max(48px, calc((100% - 1284px) / 2));
    position: relative;
}

.solution-stage-orbit {
    border: 1px solid rgba(231, 194, 96, .16);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

.solution-stage-orbit-one {
    height: 680px;
    right: -210px;
    top: -215px;
    width: 680px;
}

.solution-stage-orbit-two {
    bottom: -340px;
    height: 620px;
    left: -150px;
    width: 620px;
}

.home-solution-heading {
    display: grid;
    gap: 65px;
    grid-template-columns: 1.3fr .7fr;
    margin-bottom: 72px;
}

.home-solution-heading h2 {
    font-size: clamp(2.65rem, 5vw, 5rem);
    margin: 0;
}

.home-solution-heading>p:not(.eyebrow) {
    align-self: end;
    color: rgba(255, 255, 255, .64);
    font-size: .94rem;
    line-height: 1.85;
    margin: 0;
    max-width: 390px;
}

.solution-streams {
    border-top: 1px solid rgba(255, 255, 255, .18);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.solution-stream {
    border-right: 1px solid rgba(255, 255, 255, .18);
    min-height: 305px;
    padding: 24px 30px 26px 0;
    position: relative;
}

.solution-stream+.solution-stream {
    padding-left: 30px;
}

.solution-stream:last-child {
    border-right: 0;
}

.solution-stream>span {
    color: #e2bd61;
    font-family: 'DM Mono', monospace;
    font-size: .62rem;
    letter-spacing: .1em;
}

.solution-stream h3 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -.04em;
    margin: 52px 0 18px;
}

.solution-stream ul {
    color: rgba(255, 255, 255, .59);
    font-size: .78rem;
    line-height: 1.85;
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-stream li::before {
    color: #e2bd61;
    content: '—';
    margin-right: 8px;
}

.solution-stream a {
    bottom: 27px;
    color: #ecd17e;
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    letter-spacing: .06em;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
}

.solution-stream a span {
    margin-left: 7px;
}

.home-solution-heading {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
}

.home-solution-visual {
    align-self: end;
    height: 310px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.home-solution-visual::after {
    background: linear-gradient(180deg, transparent 24%, rgba(11, 19, 17, .9) 100%);
    content: '';
    inset: 0;
    position: absolute;
}

.home-solution-visual img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(.2, .72, .25, 1);
    width: 100%;
}

.home-solution-visual:hover img {
    transform: scale(1.045);
}

.home-solution-visual figcaption {
    bottom: 0;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.home-solution-visual figcaption span {
    color: #e7c260;
    font-family: 'DM Mono', monospace;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-solution-visual figcaption p {
    color: rgba(255, 255, 255, .78);
    font-size: .83rem;
    line-height: 1.65;
    margin: 9px 0 0;
    max-width: 370px;
}

.home-pathway {
    display: grid;
    gap: 90px;
    grid-template-columns: .82fr 1.18fr;
    margin: auto;
    max-width: 1284px;
    padding: 132px 48px;
}

.pathway-intro h2 {
    margin-bottom: 0;
}

.pathway-list {
    border-top: 1px solid #d6cdbb;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pathway-list li {
    align-items: start;
    border-bottom: 1px solid #d6cdbb;
    display: grid;
    gap: 28px;
    grid-template-columns: 66px 1fr;
    padding: 25px 0 27px;
    transition: padding .3s ease;
}

.pathway-list li:hover {
    padding-left: 12px;
}

.pathway-list>li>span {
    color: #a78336;
    font-family: 'DM Mono', monospace;
    font-size: .65rem;
    padding-top: 7px;
}

.pathway-list h3 {
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: -.035em;
    margin-bottom: 9px;
}

.pathway-list p {
    color: #60675e;
    font-size: .87rem;
    line-height: 1.75;
    margin: 0;
    max-width: 470px;
}

.home-trust-band {
    align-items: center;
    background: #ddbd61;
    color: #18201c;
    display: flex;
    gap: 28px;
    justify-content: center;
    padding: 24px 48px;
}

.trust-mark {
    border-right: 1px solid rgba(24, 32, 28, .2);
    padding-right: 24px;
}

.trust-mark img {
    display: block;
    height: 34px;
    object-fit: contain;
    width: 34px;
}

.home-trust-band p {
    font-family: 'DM Mono', monospace;
    font-size: .66rem;
    letter-spacing: .09em;
    margin: 0;
    text-transform: uppercase;
}

.home-trust-band p span {
    margin: 0 9px;
    opacity: .52;
}

.home-trust-band a {
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
}

.home-trust-band a span {
    margin-left: 7px;
}

.home-closing {
    margin: auto;
    max-width: 930px;
    padding: 138px 48px 148px;
    text-align: center;
}

.home-closing>p:not(.eyebrow) {
    color: #5c645b;
    font-size: .95rem;
    line-height: 1.8;
    margin: 28px auto 34px;
    max-width: 505px;
}

.home-closing>div {
    align-items: center;
    display: flex;
    gap: 27px;
    justify-content: center;
}

.home-reveal {
    animation: home-rise .72s both cubic-bezier(.2, .72, .25, 1);
}

.division-card:nth-child(2),
.solution-stream:nth-child(2),
.pathway-list li:nth-child(2) {
    animation-delay: .09s;
}

.division-card:nth-child(3),
.solution-stream:nth-child(3),
.pathway-list li:nth-child(3) {
    animation-delay: .18s;
}

.division-card:nth-child(4) {
    animation-delay: .27s;
}

.division-card:nth-child(5) {
    animation-delay: .36s;
}

.division-card:nth-child(6) {
    animation-delay: .45s;
}

@keyframes home-rise {
    from {
        opacity: 0;
        transform: translateY(19px);
    }

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

@media (max-width: 900px) {

    .home-section-heading,
    .home-solution-heading,
    .home-pathway {
        gap: 48px;
    }

    .home-section-heading,
    .home-solution-heading {
        grid-template-columns: 1fr;
    }

    .home-section-heading>p,
    .home-solution-heading>p:not(.eyebrow) {
        max-width: 520px;
    }

    .home-solution-heading {
        gap: 32px;
    }

    .home-solution-visual {
        height: min(48vw, 360px);
        max-width: 680px;
        width: 100%;
    }

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

    .home-service-overview {
        padding: 95px 48px 84px;
    }

    .home-solution-stage {
        padding-bottom: 96px;
        padding-top: 96px;
    }

    .home-pathway {
        grid-template-columns: 1fr;
        padding-bottom: 96px;
        padding-top: 96px;
    }

    .solution-stream h3 {
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .home-service-overview {
        padding: 78px 24px 68px;
    }

    .home-section-heading {
        gap: 28px;
        margin-bottom: 43px;
    }

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

    .division-card {
        min-height: 230px;
    }

    .home-overview-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .home-solution-stage {
        padding: 78px 24px;
    }

    .home-solution-visual {
        height: 280px;
        max-width: none;
    }

    .home-solution-visual figcaption {
        padding: 18px;
    }

    .home-solution-visual figcaption p {
        font-size: .8rem;
    }

    .solution-streams {
        display: block;
    }

    .solution-stream,
    .solution-stream+.solution-stream {
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        border-right: 0;
        min-height: 245px;
        padding: 23px 0;
    }

    .solution-stream:last-child {
        border-bottom: 0;
    }

    .solution-stream h3 {
        margin-top: 33px;
    }

    .home-pathway {
        gap: 48px;
        padding: 78px 24px;
    }

    .pathway-list li {
        gap: 17px;
        grid-template-columns: 42px 1fr;
    }

    .home-trust-band {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 24px;
    }

    .trust-mark {
        border-bottom: 1px solid rgba(24, 32, 28, .2);
        border-right: 0;
        padding: 0 0 14px;
    }

    .home-trust-band p {
        line-height: 1.8;
    }

    .home-trust-band p span {
        margin: 0 4px;
    }

    .home-closing {
        padding: 90px 24px 100px;
    }

    .home-closing>div {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .solution-stage-orbit-one {
        right: -400px;
    }

    .solution-stage-orbit-two {
        left: -400px;
    }
}

/* Compact logout confirmation: intentionally a dialog, not a navigation destination. */
.logout-modal {
    background: #fffdf8;
    border: 1px solid rgba(220, 184, 93, .45);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
    color: #19211d;
    max-width: 430px;
    overflow: visible;
    padding: 38px;
    width: calc(100% - 32px);
}

.logout-modal::backdrop {
    background: rgba(11, 17, 15, .67);
    backdrop-filter: blur(4px);
}

.logout-modal-mark {
    background: #18221e;
    border-radius: 50%;
    display: grid;
    height: 50px;
    margin-bottom: 25px;
    place-items: center;
    width: 50px;
}

.logout-modal-mark img {
    height: 30px;
    object-fit: contain;
    width: 30px;
}

.logout-modal h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 13px;
}

.logout-modal>p:not(.eyebrow) {
    color: #5c645b;
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 340px;
}

.logout-modal-dismiss {
    position: absolute;
    right: 13px;
    top: 13px;
}

.logout-modal-dismiss button {
    background: transparent;
    border: 0;
    color: #5e665d;
    cursor: pointer;
    font-size: 1.45rem;
    height: 30px;
    line-height: 1;
    padding: 0;
    width: 30px;
}

.logout-modal-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.logout-modal-actions form {
    margin: 0;
}

.logout-modal-actions .button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.logout-cancel {
    background: transparent;
    border: 1px solid #cfc7b7;
    color: #485149;
    cursor: pointer;
    font-family: inherit;
    font-size: .77rem;
    font-weight: 700;
    padding: 14px 15px;
}

.site-footer .footer-column .footer-logout {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    font-family: Manrope, Arial, sans-serif;
    font-size: .82rem;
    margin: 0;
    padding: 0;
    text-align: left;
    width: auto;
}

.site-footer .footer-column .footer-logout:hover {
    color: #fff0ba;
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .logout-modal {
        padding: 31px 24px 24px;
    }

    .logout-modal-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .logout-modal-actions form,
    .logout-modal-actions button {
        width: 100%;
    }

    .logout-modal-actions .button {
        justify-content: space-between;
    }
}

/* Lift the typography floor: small labels remain refined, but are easier to read at a glance. */
.eyebrow,
.panel-label,
.panel-meta,
.service-number,
.principles,
.division-number,
.solution-stream>span,
.pathway-list>li>span,
.trust-mark+p,
.footer-column h2,
.footer-bottom,
.service-subnav a,
.availability,
.management-metrics span,
.admin-toggle,
.role-actions button,
.delete-action,
.resource-picker button,
.record-status {
    font-size: .7rem;
    font-weight: 600;
}

.footer-column h2,
.footer-bottom,
.service-subnav a,
.availability,
.management-metrics span,
.admin-toggle,
.role-actions button,
.delete-action,
.resource-picker button,
.record-status {
    letter-spacing: .07em;
}

.site-footer .footer-column a,
.site-footer .footer-column .footer-logout {
    font-size: .85rem;
    font-weight: 600;
}

.site-footer .social-links a {
    font-size: .66rem;
    font-weight: 600;
}

.newsletter-form label {
    font-size: .66rem;
    font-weight: 600;
}

.newsletter-message {
    font-size: .75rem;
    font-weight: 600;
}

.modern-form-field>label,
.quote-form label {
    font-size: .68rem;
    font-weight: 600;
}

.validation-message {
    font-size: .77rem;
    font-weight: 600;
}

.home-message-bar a,
.home-trust-band a,
.solution-stream a {
    font-weight: 700;
}

/* Division imagery gives each area of expertise its own visual character. */
.division-card {
    background: #17221e;
    color: #fff;
    isolation: isolate;
}

.division-card::before {
    background: linear-gradient(180deg, rgba(12, 19, 17, .08) 0%, rgba(12, 19, 17, .3) 42%, rgba(10, 17, 14, .93) 100%);
    content: '';
    inset: 0;
    position: absolute;
    z-index: 1;
}

.division-card:nth-child(2),
.division-card:nth-child(3),
.division-card:nth-child(5) {
    background: #17221e;
    color: #fff;
}

.division-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transition: transform .7s cubic-bezier(.2, .72, .25, 1);
    width: 100%;
    z-index: 0;
}

.division-card:hover .division-image {
    transform: scale(1.06);
}

.division-number {
    color: #f0cb70;
    z-index: 2;
}

.division-orbit {
    color: #f1d583;
    z-index: 1;
}

.division-card-copy {
    z-index: 2;
}

.division-card-copy span {
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
}

.division-arrow {
    color: #f1d583;
    z-index: 2;
}

.catalog-card-image {
    height: 142px;
    margin: -24px -24px 21px;
    object-fit: cover;
    width: calc(100% + 48px);
}

.catalog-card .service-price {
    color: #63542e;
    font-family: 'DM Mono', monospace;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin: 2px 0 14px;
    text-transform: uppercase;
}

.catalog-card .service-listing-link {
    color: #756029;
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .05em;
    margin-top: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-card .service-listing-link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform .2s ease;
}

.catalog-card .service-listing-link:hover span {
    transform: translateX(4px);
}

/* Image-free service catalog: compact cards and an editorial detail view. */
.catalog-grid {
    gap: 14px;
}

.catalog-card {
    background: linear-gradient(135deg, #fffdf8 0%, #f8f2e5 100%);
    border: 1px solid rgba(124, 104, 58, .18);
    border-radius: 18px;
    cursor: pointer;
    min-height: 174px;
    overflow: hidden;
    padding: 19px 20px 18px;
    position: relative;
    text-align: left;
    transition: border-color .28s ease, box-shadow .28s ease, transform .28s cubic-bezier(.2, .8, .2, 1);
    width: 100%;
}

.catalog-card::before {
    background: radial-gradient(circle at 100% 0, rgba(211, 169, 77, .28), transparent 48%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.catalog-card:nth-child(3n + 2) {
    background: linear-gradient(135deg, #fbfcf8, #e7f0e6);
}

.catalog-card:nth-child(3n) {
    background: linear-gradient(135deg, #fffaf1, #f3e6cf);
}

.catalog-card:hover,
.catalog-card:focus-visible {
    border-color: rgba(166, 127, 47, .54);
    box-shadow: 0 18px 35px rgba(48, 42, 28, .13);
    outline: none;
    transform: translateY(-6px);
}

.catalog-card-topline {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.catalog-card-index,
.service-detail-count {
    color: #967836;
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .11em;
}

.catalog-card-arrow {
    align-items: center;
    background: rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: #66532a;
    display: grid;
    font-size: .95rem;
    height: 28px;
    justify-content: center;
    transition: background .28s ease, transform .28s ease;
    width: 28px;
}

.catalog-card:hover .catalog-card-arrow {
    background: #27362f;
    color: #fff;
    transform: rotate(45deg);
}

.catalog-card h3,
.catalog-card p,
.catalog-card .availability {
    position: relative;
}

.catalog-card h3 {
    font-size: 1rem;
    margin: 19px 0 8px;
    padding-right: 24px;
}

.catalog-card p {
    display: -webkit-box;
    font-size: .75rem;
    line-height: 1.55;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalog-card .availability {
    margin-top: 14px;
    padding: 5px 7px;
}

.catalog-card .service-price,
.catalog-card .service-listing-link {
    display: none;
}

@keyframes catalog-section-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 143, 47, .45);
    }

    100% {
        box-shadow: 0 0 0 18px rgba(185, 143, 47, 0);
    }
}

.service-detail-backdrop {
    align-items: center;
    animation: service-backdrop-in .24s ease-out;
    background: rgba(15, 23, 19, .68);
    backdrop-filter: blur(9px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 1000;
}

.service-detail-modal {
    animation: service-modal-in .42s cubic-bezier(.16, 1, .3, 1);
    background: linear-gradient(145deg, #fffefa, #f2eadb);
    border: 1px solid rgba(255, 255, 255, .64);
    border-radius: 26px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: min(720px, calc(100dvh - 48px));
    max-width: 740px;
    overflow: hidden;
    width: min(100%, 740px);
}

.service-detail-header {
    align-items: center;
    border-bottom: 1px solid rgba(92, 79, 47, .14);
    display: flex;
    justify-content: space-between;
    padding: 22px 26px;
}

.service-detail-count {
    align-items: center;
    display: flex;
    gap: 10px;
}

.service-detail-count i {
    background: #c69a43;
    display: inline-block;
    height: 1px;
    width: 28px;
}

.service-detail-close {
    background: #26372f;
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 1.35rem;
    height: 34px;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
    width: 34px;
}

.service-detail-close:hover {
    background: #b28332;
    transform: rotate(90deg);
}

.service-detail-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(32px, 7vw, 62px);
    scrollbar-color: #b69245 transparent;
}

.service-detail-body h2 {
    font-size: clamp(1.9rem, 4vw, 3.15rem);
    margin: 12px 0 26px;
    max-width: 620px;
}

.service-detail-summary {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-detail-summary .availability {
    margin: 0;
}

.service-detail-price {
    color: #69572d;
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-detail-image {
    background: #ded6c4;
    border-radius: 16px;
    margin: 30px 0 0;
    max-height: 272px;
    overflow: hidden;
}

.service-detail-image img {
    display: block;
    height: 272px;
    object-fit: cover;
    width: 100%;
}

.service-detail-description {
    color: #4e564e;
    font-size: 1rem;
    line-height: 1.8;
    margin: 30px 0 0;
    max-width: 590px;
}

.service-detail-facts {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 31px 0 0;
    overflow: hidden;
    border: 1px solid rgba(82, 75, 49, .14);
    border-radius: 13px;
}

.service-detail-facts>div {
    background: rgba(255, 255, 255, .54);
    padding: 15px 16px;
}

.service-detail-facts dt {
    color: #847a68;
    font-family: 'DM Mono', monospace;
    font-size: .57rem;
    letter-spacing: .08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.service-detail-facts dd {
    color: #2d3b33;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.service-detail-quote {
    align-items: center;
    background: #b18431;
    color: #fff;
    display: inline-flex;
    font-family: 'DM Mono', monospace;
    font-size: .68rem;
    font-weight: 700;
    gap: 16px;
    letter-spacing: .07em;
    margin-top: 24px;
    padding: 14px 17px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.service-detail-quote:hover {
    background: #27372f;
    color: #fff;
    transform: translateY(-2px);
}

.service-detail-navigation {
    align-items: center;
    background: #26372f;
    color: rgba(255, 255, 255, .55);
    display: grid;
    font-family: 'DM Mono', monospace;
    font-size: .61rem;
    grid-template-columns: 1fr auto 1fr;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-detail-navigation button {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    padding: 21px 26px;
    text-align: left;
    transition: background .2s ease;
    text-transform: inherit;
}

.service-detail-navigation button:last-child {
    text-align: right;
}

.service-detail-navigation button:hover {
    background: rgba(255, 255, 255, .11);
}

.service-detail-navigation button span {
    color: #d6b65f;
    font-size: 1rem;
    margin: 0 6px;
    vertical-align: -1px;
}

@keyframes service-backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes service-modal-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.97);
    }

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

@media (max-width: 520px) {
    .catalog-card {
        min-height: 158px;
    }

    .service-detail-backdrop {
        align-items: end;
        padding: 12px;
    }

    .service-detail-modal {
        border-radius: 21px;
        height: calc(100dvh - 24px);
    }

    .service-detail-header {
        padding: 17px 20px;
    }

    .service-detail-body {
        padding: 34px 24px;
    }

    .service-detail-image,
    .service-detail-image img {
        height: 190px;
    }

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

    .service-detail-navigation {
        font-size: .55rem;
    }

    .service-detail-navigation button {
        padding: 18px 13px;
    }

    .service-detail-navigation>span {
        display: none;
    }

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

/* Service catalog management: edit one concise record at a time. */
.management-services-heading {
    align-items: end;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.management-add-service {
    border: 0;
    cursor: pointer;
    flex: 0 0 auto;
    font-family: inherit;
}

.management-service-row {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ded7c8;
    color: #1d2822;
    cursor: pointer;
    display: grid;
    font-family: inherit;
    gap: 15px;
    grid-template-columns: 46px minmax(180px, 1fr) auto auto 16px;
    padding: 13px 18px;
    text-align: left;
    transition: background .22s ease, padding .22s ease;
    width: 100%;
}

.management-service-row:hover {
    background: #f2ede1;
    padding-left: 23px;
}

.management-service-row strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.management-service-row small {
    color: #657068;
    display: block;
    font-size: .72rem;
    font-weight: 600;
}

.service-row-thumbnail {
    align-items: center;
    background: #1b2822;
    color: #edcd73;
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: .63rem;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    overflow: hidden;
    width: 44px;
}

.service-row-thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.service-row-state {
    color: #657068;
    font-family: 'DM Mono', monospace;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.service-row-state.disabled {
    color: #9d4f43;
}

.service-editor-backdrop {
    align-items: center;
    background: rgba(11, 18, 15, .63);
    display: grid;
    inset: 0;
    overflow-y: auto;
    padding: 32px 18px;
    position: fixed;
    z-index: 100;
}

.service-editor {
    background: #fffdf8;
    border: 1px solid rgba(215, 184, 95, .48);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
    color: #19231d;
    max-width: 810px;
    padding: 42px;
    position: relative;
    width: min(100%, 810px);
}

.service-editor h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.055em;
    margin: 7px 0 29px;
}

.service-editor-close {
    background: transparent;
    border: 0;
    color: #607067;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    padding: 7px 10px;
    position: absolute;
    right: 16px;
    top: 14px;
}

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

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

.service-editor .modern-form-field {
    margin: 0;
}

.service-editor .modern-form-field>label {
    color: #46544b;
    display: grid;
    font-size: .72rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.service-editor input:not([type='checkbox']),
.service-editor select,
.service-editor textarea {
    background: #f7f3ea;
    border: 1px solid #d7cfbf;
    border-radius: 5px;
    box-sizing: border-box;
    color: #1d2822;
    font: 500 .93rem/1.45 Manrope, Arial, sans-serif;
    outline: none;
    padding: 13px 14px;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    width: 100%;
}

.service-editor textarea {
    min-height: 110px;
    resize: vertical;
}

.service-editor input:not([type='checkbox']):focus,
.service-editor select:focus,
.service-editor textarea:focus {
    background: #fffdf8;
    border-color: #a78336;
    box-shadow: 0 0 0 3px rgba(167, 131, 54, .15);
}

.service-image-upload {
    background: #f3eee3;
    border: 1px dashed #bba96f;
    display: grid;
    gap: 10px;
    padding: 16px;
}

.service-image-upload label {
    color: #26342c;
    cursor: pointer;
    font-size: .76rem;
    font-weight: 700;
}

.service-image-upload input[type='file'] {
    display: block;
    font: 500 .78rem Manrope, Arial, sans-serif;
    margin-top: 8px;
    max-width: 100%;
}

.service-image-upload small {
    color: #687168;
    font-size: .73rem;
    font-weight: 600;
}

.service-image-upload img {
    height: 170px;
    object-fit: cover;
    width: 100%;
}

.editor-switch {
    align-items: center;
    color: #334138;
    cursor: pointer;
    display: flex;
    font-size: .78rem;
    font-weight: 700;
    gap: 10px;
}

.editor-switch input {
    accent-color: #a78336;
    height: 18px;
    margin: 0;
    width: 18px;
}

.service-editor-actions {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 6px;
}

.service-editor-actions .button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.service-editor-actions .delete-action {
    background: transparent;
    border: 1px solid #d9c8bd;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    padding: 12px 14px;
}

@media (max-width: 700px) {
    .management-services-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .management-service-row {
        gap: 10px;
        grid-template-columns: 42px minmax(0, 1fr) 15px;
        padding: 13px 10px;
    }

    .management-service-row .availability,
    .service-row-state {
        display: none;
    }

    .service-row-thumbnail {
        height: 40px;
        width: 40px;
    }

    .service-editor-backdrop {
        align-items: start;
        padding: 12px;
    }

    .service-editor {
        margin: 0;
        padding: 34px 22px 25px;
    }

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

    .service-editor-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-editor-actions .button,
    .service-editor-actions .delete-action {
        justify-content: center;
        width: 100%;
    }
}

/* Keep long service forms contained: the third dialog child (the form) scrolls independently. */
.service-editor-backdrop {
    overflow: hidden;
    padding: 20px 18px;
}

.service-editor {
    border-radius: 9px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 40px);
    overflow: hidden;
}

.service-editor h2 {
    flex: 0 0 auto;
}

.service-editor form {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2px 9px 4px 2px;
    scrollbar-color: #ad8a3c transparent;
    scrollbar-width: thin;
}

.service-editor form::-webkit-scrollbar {
    width: 7px;
}

.service-editor form::-webkit-scrollbar-thumb {
    background: #b39147;
    border-radius: 99px;
}

.service-delete-confirmation {
    align-items: center;
    background: rgba(20, 29, 24, .62);
    display: grid;
    inset: 0;
    padding: 24px;
    position: fixed;
    z-index: 2;
}

.service-delete-confirmation { justify-items: center; padding: 20px; }
.service-delete-confirmation > div { text-align: center; }
.service-delete-confirmation > div > div { justify-content: center; }

.service-delete-confirmation>div {
    background: #fffdf8;
    border: 1px solid #d7b86b;
    border-radius: 7px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
    margin: auto;
    max-width: 415px;
    padding: 30px;
}

.service-delete-confirmation h3 {
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    letter-spacing: -.045em;
    margin: 6px 0 12px;
}

.service-delete-confirmation p:not(.eyebrow) {
    color: #59655c;
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
}

.service-delete-confirmation>div>div {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.service-delete-confirmation button {
    cursor: pointer;
    font-family: inherit;
}

.service-delete-confirmation .delete-confirm {
    background: #8c4037;
    border: 1px solid #8c4037;
    border-radius: 5px;
    color: #fff;
    padding: 12px 14px;
}

.service-delete-confirmation .button-secondary {
    background: transparent;
    border: 1px solid #cfc7b7;
    border-radius: 5px;
    color: #334038;
    padding: 12px 14px;
}

@media (max-width: 700px) {
    .service-editor-backdrop {
        align-items: center;
        padding: 12px;
    }

    .service-editor {
        max-height: calc(100dvh - 24px);
    }
}

@media (max-width: 480px) {
    .service-delete-confirmation {
        padding: 14px;
    }

    .service-delete-confirmation>div {
        padding: 24px 20px;
    }

    .service-delete-confirmation>div>div {
        flex-direction: column;
    }

    .service-delete-confirmation button {
        width: 100%;
    }
}

/* Dialog placement and a shared switch treatment for ordinary form checkboxes. */
.service-editor-backdrop {
    justify-items: center;
    place-items: center;
}

.service-editor {
    margin-left: auto;
    margin-right: auto;
}

input[type='checkbox']:not(.navigation-toggle) {
    -webkit-appearance: none;
    appearance: none;
    background: #c9c9bf;
    border: 1px solid #b2b2a7;
    border-radius: 999px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    flex: 0 0 44px;
    height: 24px;
    margin: 0;
    outline: none;
    position: relative;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    vertical-align: middle;
    width: 44px;
}

.editor-switch>span {
    display: none;
}

.editor-switch input[type='checkbox'] {
    accent-color: auto;
    height: 24px;
    width: 44px;
}

.remember-switch input[type='checkbox'] {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.remember-switch input[type='checkbox']::after {
    content: none;
}

input[type='checkbox']:not(.navigation-toggle)::after {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .24);
    content: '';
    height: 16px;
    left: 3px;
    position: absolute;
    top: 3px;
    transform: translateX(0);
    transition: transform .2s ease;
    width: 16px;
}

input[type='checkbox']:not(.navigation-toggle):checked {
    background: #557965;
    border-color: #557965;
}

input[type='checkbox']:not(.navigation-toggle):checked::after {
    transform: translateX(18px);
}

input[type='checkbox']:not(.navigation-toggle):focus-visible {
    box-shadow: 0 0 0 3px rgba(184, 149, 70, .38);
}

input[type='checkbox']:not(.navigation-toggle):disabled {
    cursor: not-allowed;
    opacity: .5;
}

/* A modal owns the scroll context until it closes; the page remains exactly where it was. */
html.modal-scroll-locked,
body.modal-scroll-locked {
    overflow: hidden;
    overscroll-behavior: none;
}

.modal-scroll-locked body {
    left: 0;
    position: fixed;
    right: 0;
    width: 100%;
}

.service-editor-backdrop,
.service-editor form,
.logout-modal {
    overscroll-behavior: contain;
}

.logout-modal {
    max-height: calc(100dvh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
}

/* Team and client public directories. */
.hero-team {
    background-image: url('images/hero-team-generated.jpg');
}

.hero-clients {
    background-image: url('images/hero-clients-generated.jpg');
}

/* Keep image focal points truly centered in every full-width hero. */
.hero-carousel .carousel-slide { object-position: 50% 50%; }
.interior-hero, .management-hero, .quote-visual, .booking-hero, .operations-hero { background-position: 50% 50% !important; }

.people-page {
    margin: auto;
    max-width: 1380px;
    padding: 126px 48px 140px;
}

.people-intro {
    align-items: end;
    display: grid;
    gap: 72px;
    grid-template-columns: 1.2fr .8fr;
    margin-bottom: 72px;
}

.people-intro h2 {
    margin: 0;
}

.people-intro h2 em {
    color: #a78336;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.people-intro>p {
    color: #5a645c;
    font-size: .95rem;
    line-height: 1.85;
    margin: 0 0 7px;
    max-width: 405px;
}

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

.team-card {
    background: #ece7da;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.team-card:hover {
    box-shadow: 0 18px 38px rgba(25, 33, 29, .14);
    transform: translateY(-5px);
}

.team-card>img,
.team-card-placeholder {
    aspect-ratio: 1.12 / 1;
    display: block;
    object-fit: cover;
    width: 100%;
}

.team-card-placeholder {
    align-items: center;
    background: #1a2822;
    color: #edcd73;
    display: grid;
    font: 600 2rem 'DM Mono', monospace;
    place-items: center;
}

.team-card>div {
    padding: 25px;
}

.team-card>div>p:first-child,
.client-card p {
    color: #987631;
    font: 700 .65rem 'DM Mono', monospace;
    letter-spacing: .09em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.team-card h3 {
    font-size: 1.5rem;
    letter-spacing: -.045em;
    margin: 0 0 6px;
}

.team-card>div>span {
    color: #445349;
    font-size: .83rem;
    font-weight: 700;
}

.team-card .team-bio {
    color: #627067;
    font-size: .83rem;
    line-height: 1.72;
    margin: 19px 0 0;
}

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

.client-card {
    background: #17231e;
    color: #fff;
    min-height: 405px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: box-shadow .3s ease, transform .3s ease;
}

.client-card:hover {
    box-shadow: 0 22px 45px rgba(23, 35, 30, .26);
    transform: translateY(-6px);
}

.client-card>img,
.client-card-placeholder {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.client-card::after {
    background: linear-gradient(180deg, rgba(8, 16, 12, .03), rgba(8, 16, 12, .94) 83%);
    content: '';
    inset: 0;
    position: absolute;
}

.client-card-placeholder {
    align-items: center;
    background: #2c3c34;
    display: grid;
    place-items: center;
}

.client-card-placeholder img {
    height: 64px;
    object-fit: contain;
    width: 64px;
}

.client-card>div {
    bottom: 0;
    left: 0;
    padding: 27px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.client-card p {
    color: #f1cd75;
}

.client-card h2 {
    font-size: 1.65rem;
    letter-spacing: -.05em;
    margin: 0 0 10px;
}

.client-card>div>span {
    color: rgba(255, 255, 255, .74);
    display: block;
    font-size: .82rem;
    line-height: 1.65;
}

.client-card strong {
    color: #f0cd77;
    display: block;
    font: 700 .66rem 'DM Mono', monospace;
    letter-spacing: .08em;
    margin-top: 21px;
    text-transform: uppercase;
}

.client-card strong i {
    font-style: normal;
    margin-left: 6px;
    transition: transform .2s ease;
}

.client-card:hover strong i {
    display: inline-block;
    transform: translate(3px, -3px);
}

/* Wide client stories: a complete card remains one clear external link. */
.client-grid {
    gap: 24px;
    grid-template-columns: 1fr;
}

.client-card {
    background: #172720;
    border: 1px solid rgba(207, 180, 102, .18);
    display: grid;
    grid-template-columns: minmax(300px, 46%) 1fr;
    min-height: 350px;
    transform: translateZ(0);
}

.client-card::after {
    display: none;
}

.client-card>.client-card-visual {
    background: #2a3b33;
    bottom: auto;
    left: auto;
    min-height: 350px;
    overflow: hidden;
    position: relative;
    right: auto;
}

.client-card-visual>img,
.client-card-visual .client-card-placeholder {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
    width: 100%;
}

.client-card-visual>img {
    filter: saturate(.85) contrast(1.04);
}

.client-card-placeholder {
    background: radial-gradient(circle at 60% 35%, #42594b, #1b2923);
}

.client-card-placeholder img {
    height: 76px;
    object-fit: contain;
    width: 76px;
}

.client-card-orbit {
    border: 1px solid rgba(244, 218, 132, .58);
    border-radius: 50%;
    height: 250px;
    opacity: .66;
    position: absolute;
    right: -105px;
    top: -100px;
    transition: transform .7s cubic-bezier(.2, .8, .2, 1);
    width: 250px;
}

.client-card>.client-card-content {
    align-items: flex-start;
    background: linear-gradient(135deg, #1a2a23, #16221d 70%);
    bottom: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: auto;
    padding: clamp(32px, 5vw, 62px);
    position: relative;
    right: auto;
}

.client-card-content::before {
    background: linear-gradient(90deg, #d8b55d, transparent);
    content: "";
    height: 1px;
    left: clamp(32px, 5vw, 62px);
    opacity: .75;
    position: absolute;
    top: 0;
    width: 80px;
}

.client-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    line-height: 1;
    margin: 0 0 17px;
}

.client-card>.client-card-content>span {
    color: rgba(255, 255, 255, .76);
    font-size: .93rem;
    line-height: 1.75;
    max-width: 530px;
}

.client-card-content small {
    border-left: 1px solid rgba(229, 194, 105, .6);
    color: rgba(255, 255, 255, .52);
    font-size: .76rem;
    line-height: 1.65;
    margin-top: 19px;
    max-width: 505px;
    padding-left: 12px;
}

.client-card strong {
    margin-top: 29px;
}

.client-card:hover {
    box-shadow: 0 28px 58px rgba(16, 25, 20, .3);
    transform: translateY(-8px);
}

.client-card:hover .client-card-visual>img {
    filter: saturate(1.1) contrast(1.08);
    transform: scale(1.075);
}

.client-card:hover .client-card-orbit {
    transform: scale(1.24) rotate(18deg);
}

.client-card:focus-visible {
    outline: 3px solid #e0bd62;
    outline-offset: 4px;
}

@media (max-width: 700px) {
    .client-card {
        grid-template-columns: 1fr;
    }

    .client-card>.client-card-visual {
        min-height: 245px;
    }

    .client-card>.client-card-content {
        min-height: 280px;
    }
}

.people-empty {
    background: #ece7da;
    padding: 70px 34px;
    text-align: center;
}

.people-empty img {
    height: 45px;
    object-fit: contain;
    width: 45px;
}

.people-empty h2 {
    font-size: 2rem;
    margin: 15px 0 11px;
}

.people-empty>p:not(.eyebrow) {
    color: #647067;
    font-size: .88rem;
    margin: 0;
}

/* Focused SuperAdmin workspaces for team members and clients. */
.management-page>.management-destinations,
.management-page>.management-metrics {
    display: none;
}

.management-command-center {
    border: 1px solid #d8d0bf;
    margin-bottom: 12px;
    padding: 26px;
}

.management-command-header {
    align-items: end;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.management-command-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    letter-spacing: -.045em;
    margin: 6px 0 0;
}

.management-command-header>p {
    color: #667067;
    font-size: .82rem;
    line-height: 1.65;
    margin: 0;
    max-width: 320px;
}

.management-command-layout {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
}

.management-quick-links {
    border: 1px solid #d8d0bf;
}

.management-quick-links a {
    align-items: center;
    border-bottom: 1px solid #d8d0bf;
    color: #1b2822;
    display: grid;
    gap: 14px;
    grid-template-columns: 31px minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 11px 16px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.management-quick-links a:last-child {
    border-bottom: 0;
}

.management-quick-links a:hover,
.management-quick-links a.active {
    background: #e5d48e;
}

.command-link-icon {
    color: #8c7331;
    font: 700 .63rem 'DM Mono', monospace;
    letter-spacing: .08em;
}

.management-quick-links strong,
.management-quick-links small {
    display: block;
}

.management-quick-links strong {
    font-size: .93rem;
}

.management-quick-links small {
    color: #6a716a;
    font-size: .71rem;
    margin-top: 3px;
}

.management-quick-links i {
    color: #5f683f;
    font-size: 1.05rem;
    font-style: normal;
}

.management-overview {
    background: #1b2822;
    color: #f5f0e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
}

.management-overview>div:first-child {
    align-items: baseline;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.management-overview .eyebrow {
    color: #dfc66f;
    margin: 0;
}

.management-overview>div:first-child>span {
    color: rgba(245, 240, 230, .66);
    font-size: .68rem;
}

.management-overview-metrics {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 18px;
}

.management-overview-metrics article {
    border-left: 1px solid rgba(245, 240, 230, .18);
    min-width: 0;
    padding: 4px 7px;
}

.management-overview-metrics article:first-child {
    border-left: 0;
    padding-left: 0;
}

.management-overview-metrics strong,
.management-overview-metrics span {
    display: block;
}

.management-overview-metrics strong {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1;
}

.management-overview-metrics span {
    color: rgba(245, 240, 230, .63);
    font: 600 .54rem 'DM Mono', monospace;
    line-height: 1.35;
    margin-top: 6px;
    text-transform: uppercase;
}

.management-destinations>div:last-child {
    display: grid;
    gap: 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

@media (max-width: 800px) {
    .management-command-layout {
        grid-template-columns: 1fr;
    }

    .management-overview {
        min-height: 132px;
    }
}

@media (max-width: 560px) {
    .management-command-center {
        padding: 18px;
    }

    .management-command-header {
        align-items: start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .management-command-header h2 {
        font-size: 1.65rem;
    }

    .management-overview-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 14px;
    }

    .management-overview-metrics article:nth-child(4) {
        border-left: 0;
        padding-left: 0;
    }
}

.management-destinations a {
    background: #e9e2d2;
    color: #1b2822;
    display: flex;
    flex-direction: column;
    min-height: 115px;
    padding: 22px;
    text-decoration: none;
    transition: background .22s ease, transform .22s ease;
}

.management-destinations a:hover {
    background: #dfc66f;
    transform: translateY(-3px);
}

.management-destinations a span {
    color: #79642c;
    font: 700 .64rem 'DM Mono', monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.management-destinations a strong {
    font-size: 1rem;
    margin-top: auto;
}

.management-destinations a i {
    font-style: normal;
    margin-left: 7px;
}

.people-management-page {
    padding-top: 70px;
}

.people-management-list {
    border-top: 1px solid #ddd4c3;
}

.people-management-row {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ddd4c3;
    color: #1d2923;
    cursor: pointer;
    display: grid;
    font-family: inherit;
    gap: 15px;
    grid-template-columns: 54px minmax(160px, 1fr) auto 14px;
    padding: 14px 18px;
    text-align: left;
    transition: background .2s ease, padding .2s ease;
    width: 100%;
}

.people-management-row:hover {
    background: #f1ece1;
    padding-left: 24px;
}

.people-management-row>img,
.people-management-row>span {
    align-items: center;
    background: #1e2c25;
    color: #eccc73;
    display: grid;
    font: 700 .69rem 'DM Mono', monospace;
    height: 48px;
    object-fit: cover;
    place-items: center;
    width: 48px;
}

.people-management-row strong {
    display: block;
    font-size: .91rem;
    margin-bottom: 4px;
}

.people-management-row small {
    color: #637068;
    display: block;
    font-size: .73rem;
    font-weight: 600;
}

.people-management-row em {
    font: 700 .64rem 'DM Mono', monospace;
    font-style: normal;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.people-management-row em.published {
    color: #52755d;
}

.people-management-row em.draft {
    color: #a15c4b;
}

.people-management-row>i {
    font-style: normal;
}

.people-editor {
    max-width: 850px;
}

.people-editor .service-image-upload img {
    height: 210px;
}

@media (max-width: 850px) {
    .people-intro {
        gap: 36px;
        grid-template-columns: 1fr;
    }

    .people-intro>p {
        max-width: 520px;
    }

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

@media (max-width: 600px) {
    .people-page {
        padding: 80px 24px 95px;
    }

    .people-intro {
        margin-bottom: 45px;
    }

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

    .client-card {
        min-height: 370px;
    }

    .management-destinations>div:last-child {
        grid-template-columns: 1fr;
    }

    .people-management-row {
        gap: 10px;
        grid-template-columns: 44px minmax(0, 1fr) 13px;
        padding: 13px 10px;
    }

    .people-management-row>img,
    .people-management-row>span {
        height: 40px;
        width: 40px;
    }

    .people-management-row em {
        display: none;
    }
}

/* Every submitted form uses the same real disabled state and restrained loading indicator. */
fieldset {
    border: 0;
    margin: 0;
    min-inline-size: 0;
    padding: 0;
}

.form-submitting {
    cursor: progress;
}

.form-submitting :is(input, select, textarea, button) {
    cursor: progress;
}

.form-submitting button[type='submit'],
form button[type='submit']:disabled {
    align-items: center;
    opacity: .78;
    pointer-events: none;
}

.form-submitting button[type='submit']::after,
form button[type='submit']:disabled::after {
    animation: form-loader-spin .7s linear infinite;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: .72em;
    margin-left: .55em;
    vertical-align: -.08em;
    width: .72em;
}

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

/* Distinct failure states: calm route recovery for 404, high-alert clearance warning for 403. */
.not-found-page {
    align-items: center;
    background: #111b18;
    color: #fff;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding: 150px max(48px, calc((100% - 1180px)/2)) 90px;
    position: relative;
}

.not-found-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.not-found-content .eyebrow {
    color: #ebc768;
}

.not-found-code {
    color: rgba(232, 198, 105, .18);
    font: 600 clamp(7rem, 21vw, 17rem)/.72 'DM Mono', monospace;
    letter-spacing: -.12em;
    margin: 26px 0 -12px -12px;
    user-select: none;
}

.not-found-content h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    margin: 0;
    position: relative;
}

.not-found-content h1 em {
    color: #e5bd5e;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.not-found-content>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .68);
    font-size: 1rem;
    line-height: 1.8;
    margin: 27px 0 35px;
    max-width: 510px;
}

.not-found-content>div:last-child,
.access-denied-content>div:last-child {
    align-items: center;
    display: flex;
    gap: 22px;
}

.not-found-link,
.access-denied-return {
    color: #ead078;
    font: 700 .7rem 'DM Mono', monospace;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.not-found-orbit {
    border: 1px solid rgba(235, 199, 104, .15);
    border-radius: 50%;
    position: absolute;
}

.not-found-orbit.orbit-a {
    height: min(84vw, 1000px);
    right: -300px;
    top: -230px;
    width: min(84vw, 1000px);
}

.not-found-orbit.orbit-b {
    bottom: -420px;
    height: 760px;
    left: 39%;
    width: 760px;
}

.access-denied {
    align-items: center;
    background: #170d10;
    color: #fff;
    display: flex;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
    padding: 150px max(48px, calc((100% - 1180px)/2)) 90px;
    position: relative;
}

.access-denied::before {
    background: radial-gradient(circle at 74% 45%, rgba(213, 47, 58, .31), transparent 28%), linear-gradient(120deg, rgba(90, 12, 23, .5), transparent 55%);
    content: '';
    inset: 0;
    position: absolute;
    z-index: -1;
}

.access-denied-grid {
    background-image: linear-gradient(rgba(236, 84, 91, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(236, 84, 91, .12) 1px, transparent 1px);
    background-size: 42px 42px;
    inset: 0;
    mask-image: linear-gradient(90deg, transparent, black 45%, transparent);
    opacity: .6;
    position: absolute;
    transform: perspective(400px) rotateX(58deg) scale(1.55) translateY(18%);
}

.access-denied-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.access-denied .eyebrow {
    color: #ff7880;
}

.access-denied h1 {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: .84;
    margin: 20px 0;
    text-transform: uppercase;
}

.access-denied h1 em {
    color: #ff5d68;
    font-family: 'DM Mono', monospace;
    font-style: normal;
    text-shadow: 0 0 34px rgba(255, 54, 67, .45);
}

.access-denied-content>p:not(.eyebrow) {
    color: rgba(255, 229, 230, .75);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 35px;
    max-width: 510px;
}

.access-denied .button-primary {
    background: #d8414d;
    color: #fff;
}

.access-denied .button-primary:hover {
    background: #ff6871;
}

.access-denied-return {
    color: #ff9ba0;
}

.access-denied-signal {
    display: grid;
    gap: 8px;
    position: absolute;
    right: max(48px, calc((100% - 1180px)/2));
    top: 180px;
}

.access-denied-signal span {
    animation: alert-pulse 1.5s infinite ease-in-out;
    background: #ff5a67;
    box-shadow: 0 0 18px #ff3747;
    height: 9px;
    width: 9px;
}

.access-denied-signal span:nth-child(2) {
    animation-delay: .2s;
}

.access-denied-signal span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes alert-pulse {
    50% {
        opacity: .25;
        transform: scale(.65);
    }
}

@media (max-width: 640px) {

    .not-found-page,
    .access-denied {
        min-height: 100svh;
        padding: 130px 24px 70px;
    }

    .not-found-content>div:last-child,
    .access-denied-content>div:last-child {
        align-items: flex-start;
        flex-direction: column;
        gap: 19px;
    }

    .not-found-code {
        font-size: clamp(6rem, 31vw, 10rem);
    }

    .access-denied-signal {
        right: 24px;
        top: 118px;
    }
}

/* Keep the existing team cards, while centering any incomplete final row. */
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 400px));
    justify-content: center;
}

.service-picker {
    position: relative;
}

.client-card .text-link.dark-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid rgba(214, 139, 57, .55);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0 50%, #d68b39 50% 100%);
    background-position: left;
    background-size: 200% 100%;
    color: #b56d26;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    transition: color .25s ease, background-position .35s cubic-bezier(.2, .8, .2, 1), border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.2, .8, .2, 1);
}

.client-card .text-link.dark-link:hover {
    background-position: right;
    color: #fff;
    border-color: #d68b39;
    box-shadow: 0 10px 20px rgba(214, 139, 57, .24);
    transform: translateY(-2px);
}

.client-card .text-link.dark-link:active {
    transform: translateY(0) scale(.98);
}

/* Project records prioritize fast scanning over the longer client-story layout. */
.project-list-grid .client-card {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    grid-template-columns: 1fr;
}

.project-list-grid .client-card > .client-card-content {
    justify-content: flex-start;
    overflow: hidden;
    padding: 15px 28px;
}

.project-list-grid .client-card p {
    margin-bottom: 7px;
}

.project-list-grid .client-card h2 {
    font-size: clamp(1.35rem, 2.25vw, 1.75rem);
    margin-bottom: 7px;
}

.project-list-grid .client-card > .client-card-content > span {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    font-size: .78rem;
    line-height: 1.45;
    overflow: hidden;
}

.project-list-grid .client-card-content small {
    font-size: .68rem;
    line-height: 1.35;
    margin-top: 10px;
}

.project-list-grid .project-card-actions {
    display: flex;
    gap: 10px;
}

.project-list-grid .client-card .text-link.dark-link {
    font-size: .69rem;
    margin-top: 10px;
    padding: 7px 11px;
}

.project-delete-confirmation {
    animation: project-delete-alert-pulse 1.1s ease-in-out infinite;
    background: #fff5f5;
    border: 3px solid #d71920;
    box-shadow: 0 0 0 6px rgba(215, 25, 32, .14), 0 18px 44px rgba(112, 10, 15, .32);
    color: #3f0b0e;
    display: grid;
    gap: 13px;
    padding: 24px;
}

.project-delete-backdrop {
    align-items: center;
    background: rgba(35, 3, 5, .72);
    display: grid;
    inset: 0;
    justify-items: center;
    padding: 20px;
    position: fixed;
    z-index: 110;
}

.project-delete-backdrop .project-delete-confirmation {
    box-sizing: border-box;
    margin: 0;
    max-width: 620px;
    width: 100%;
}

.project-delete-confirmation h3,
.project-delete-confirmation p { margin: 0; }
.project-delete-confirmation h3 { color: #a20d14; font-size: 1.45rem; letter-spacing: -.035em; }
.project-delete-confirmation > p:not(.project-delete-alert) { font-size: .84rem; line-height: 1.6; }
.project-delete-alert { background: #d71920; color: #fff; font: 800 .67rem 'DM Mono', monospace; letter-spacing: .1em; padding: 8px 10px; text-transform: uppercase; }
.project-delete-confirmation label { color: #751016; font-size: .82rem; font-weight: 700; line-height: 1.5; }
.project-delete-confirmation label strong { background: #ffe2e2; padding: 2px 5px; }
.project-delete-confirmation input { background: #fff; border: 2px solid #c72a31; border-radius: 0; color: #321014; font: 700 .95rem Manrope, Arial, sans-serif; padding: 12px; }
.project-delete-confirmation input:focus { box-shadow: 0 0 0 4px rgba(215, 25, 32, .19); outline: 0; }
.project-delete-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.project-delete-actions .delete-confirm { background: #c51119; border-color: #8f080e; color: #fff; }
.project-delete-actions .delete-confirm:disabled { cursor: not-allowed; opacity: .48; }

/* Preserve the notification design; only unread items receive a gentle gold emphasis. */
.notification-item.is-unread { background-color: rgba(216, 184, 74, .12); }

@keyframes project-delete-alert-pulse {
    50% { box-shadow: 0 0 0 10px rgba(215, 25, 32, .08), 0 18px 44px rgba(112, 10, 15, .32); }
}

@media (max-width: 700px) {
    .project-list-grid .client-card { height: 200px; min-height: 200px; }
    .project-list-grid .client-card > .client-card-content { min-height: 0; padding: 15px 20px; }
    .project-delete-actions > * { width: 100%; }
}

.service-picker-shell {
    min-height: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    padding: 7px 38px 7px 9px;
    border: 1px solid rgba(19, 43, 55, .2);
    border-radius: 12px;
    background: #fff;
    cursor: text;
}

.service-picker-shell:focus-within {
    border-color: #d68b39;
    box-shadow: 0 0 0 3px rgba(214, 139, 57, .14);
}

.service-picker-shell input {
    min-width: 150px;
    flex: 1;
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;
    padding: 4px !important;
    background: transparent !important;
}

.service-picker-token {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 7px 5px 10px;
    border-radius: 999px;
    background: #e9f2f0;
    color: #173d3d;
    font-size: .82rem;
    font-weight: 700;
}

.service-picker-token button {
    width: 19px;
    height: 19px;
    border: 0;
    border-radius: 50%;
    background: #c8dfda;
    color: #173d3d;
    cursor: pointer;
    line-height: 1;
}

.service-picker-chevron {
    position: absolute;
    right: 13px;
    color: #d68b39;
    font-size: 1.35rem;
}

.service-picker-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    max-height: 310px;
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(19, 43, 55, .14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 35px rgba(16, 35, 45, .18);
}

.service-picker-category {
    padding: 11px 10px 5px;
    color: #7b5c32;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-picker-option {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #173d3d;
    text-align: left;
    cursor: pointer;
}

.service-picker-option:hover {
    background: #f3f7f6;
}

.service-picker-option i {
    color: #d68b39;
    font-size: 1.1rem;
}

.service-picker-empty {
    padding: 14px;
    color: #6c7780;
}

.contact-menu-group {
    display: inline-block;
    position: relative;
}

.contact-menu-group>a {
    display: inline-flex;
    position: relative;
}

.contact-menu-group>a::after {
    content: "▾";
    display: inline-block;
    font-size: .72rem;
    margin-left: 7px;
    opacity: .8;
}

.contact-submenu {
    background: rgba(10, 15, 17, .96);
    border: 1px solid rgba(242, 209, 125, .2);
    border-radius: 12px;
    display: none;
    left: 0;
    min-width: 220px;
    padding: 8px;
    position: absolute;
    top: calc(100% + 10px);
    z-index: 30;
}

.contact-menu-group:hover .contact-submenu,
.contact-menu-group:focus-within .contact-submenu {
    display: grid;
    gap: 6px;
}

.contact-submenu a {
    border-radius: 9px;
    color: rgba(255, 255, 255, .82);
    display: block;
    font-size: .8rem;
    padding: 10px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.contact-submenu a:hover {
    background: rgba(242, 209, 125, .09);
    color: #f2d17d;
}

.booking-page {
    background:
        radial-gradient(circle at 8% 32%, rgba(190, 154, 67, .12), transparent 23rem),
        radial-gradient(circle at 92% 68%, rgba(20, 88, 85, .13), transparent 25rem),
        linear-gradient(180deg, #e8eeee 0%, #f8faf8 44%, #e9efed 100%);
    color: #162327;
    padding: 0 0 90px;
}

.booking-hero {
    background:
        linear-gradient(105deg, rgba(8, 19, 24, .96) 0%, rgba(12, 39, 43, .89) 43%, rgba(18, 61, 61, .65) 100%),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    min-height: 480px;
    padding: 130px max(48px, calc((100% - 1284px) / 2)) 72px;
    position: relative;
    isolation: isolate;
}

.booking-hero::before,
.booking-hero::after { border: 1px solid rgba(242, 209, 125, .34); border-radius: 50%; content: ''; pointer-events: none; position: absolute; z-index: -1; }
.booking-hero::before { height: 390px; right: 10%; top: 54px; width: 390px; }
.booking-hero::after { background: rgba(242, 209, 125, .08); height: 250px; right: 16%; top: 125px; width: 250px; }

.booking-hero__copy {
    align-self: center;
    color: #fff;
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.booking-hero__copy h1 {
    font-size: clamp(2.7rem, 4.4vw, 5.3rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .96;
    margin-bottom: 18px;
}

.booking-hero__copy h1 span {
    color: #f5d985;
    display: block;
}

.booking-hero__copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, .8);
    font-size: 1.06rem;
    line-height: 1.8;
    margin: 0 0 12px;
}

.booking-pill {
    background: rgba(242, 209, 125, .12);
    border: 1px solid rgba(242, 209, 125, .4);
    border-radius: 999px;
    color: #f0d788;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    margin-bottom: 18px;
    padding: 10px 16px;
    text-transform: uppercase;
}

.booking-help {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}

.booking-help a {
    color: var(--gold-bright);
    text-decoration: none;
}

.booking-hero__visual {
    align-items: end;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.booking-hero__badge {
    background: rgba(8, 22, 24, .72);
    border: 1px solid rgba(242, 209, 125, .46);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
    color: #f2d17d;
    font-size: .72rem;
    letter-spacing: .08em;
    padding: 14px 18px;
    text-transform: uppercase;
}

.booking-form-wrap {
    margin: -48px auto 0;
    max-width: 1180px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.booking-form {
    background: rgba(250, 252, 251, .96);
    border: 1px solid rgba(18, 48, 49, .12);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(10, 31, 32, .18);
    display: grid;
    gap: 18px;
    padding: 26px;
}

.booking-step {
    background: linear-gradient(135deg, #ffffff, #f6f9f8);
    border: 1px solid rgba(18, 54, 55, .11);
    border-radius: 22px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
}

.booking-step::after { background: linear-gradient(180deg, #d9b65a, #1a6d69); border-radius: 99px; content: ''; height: 44px; opacity: .9; position: absolute; right: -13px; top: -13px; transform: rotate(42deg); width: 44px; }

.booking-step__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.booking-step__heading span {
    color: #a78438;
    font-family: 'DM Mono', monospace;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-step__heading h2 {
    color: #152c2d;
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    margin: 0;
}

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

.modern-form-field {
    display: grid;
    gap: 8px;
}

.modern-form-field label {
    color: #1c2e31;
    display: grid;
    font-size: .68rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.modern-form-field input,
.modern-form-field select,
.modern-form-field textarea {
    background: #f2f6f5;
    border: 1px solid rgba(18, 56, 57, .15);
    border-radius: 12px;
    color: #112326;
    font: inherit;
    min-height: 52px;
    padding: 14px 16px;
    width: 100%;
}

.modern-form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.modern-form-field input:focus,
.modern-form-field select:focus,
.modern-form-field textarea:focus {
    border-color: rgba(19, 130, 128, .7);
    box-shadow: 0 0 0 4px rgba(19, 130, 128, .12);
    outline: none;
}

.booking-date-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.booking-date-field {
    max-width: 320px;
    width: 100%;
}

.booking-time-block {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.booking-loading,
.booking-empty,
.form-message {
    background: rgba(98, 240, 219, .08);
    border: 1px solid rgba(98, 240, 219, .22);
    border-radius: 14px;
    color: #17484c;
    font-size: .82rem;
    font-weight: 600;
    padding: 14px 16px;
}

.form-message.error {
    background: rgba(182, 40, 40, .06);
    border-color: rgba(182, 40, 40, .15);
    color: #7d1d1d;
}

.time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot {
    background: #edf5f7;
    border: 1px solid rgba(14, 52, 60, .12);
    border-radius: 999px;
    color: #123138;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 10px 14px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.time-slot:hover,
.time-slot.selected {
    background: #62f0db;
    border-color: rgba(25, 138, 140, .38);
    transform: translateY(-1px);
}

.booking-week-toolbar {
    background: #17383a;
    border: 1px solid rgba(242, 209, 125, .24);
    border-radius: 16px;
    padding: 8px 10px;
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.booking-week-range {
    color: #f4e5b5;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.booking-week-nav {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(242, 209, 125, .38);
    border-radius: 12px;
    color: #f5d985;
    cursor: pointer;
    font-size: 1.2rem;
    height: 42px;
    width: 42px;
}

.calendar-week-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-bottom: 16px;
}

.calendar-day-card {
    background: linear-gradient(180deg, #f9fbfa, #edf3f1);
    border: 1px solid rgba(17, 61, 60, .12);
    border-radius: 18px;
    display: grid;
    gap: 12px;
    min-height: 220px;
    padding: 14px 12px;
}

.calendar-day-card.selected {
    background: rgba(242, 209, 125, .12);
    border-color: rgba(167, 132, 56, .4);
    box-shadow: inset 0 0 0 1px rgba(167, 132, 56, .12);
}

.calendar-day-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.calendar-day-header span {
    color: #4d5a5e;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.calendar-day-header strong {
    color: #17383a;
    font-size: 1.7rem;
    line-height: 1;
}

.calendar-day-header small {
    color: #687677;
    font-size: .7rem;
    text-transform: uppercase;
}

.calendar-day-empty {
    align-items: center;
    background: rgba(20, 33, 36, .03);
    border: 1px dashed rgba(20, 33, 36, .15);
    border-radius: 12px;
    color: #647374;
    display: flex;
    font-size: .72rem;
    font-weight: 700;
    justify-content: center;
    min-height: 150px;
    padding: 10px;
    text-transform: uppercase;
}

.calendar-slot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-slot {
    background: #fff;
    border: 1px solid rgba(17, 72, 69, .13);
    border-radius: 13px;
    color: #163d3d;
    cursor: pointer;
    font: inherit;
    font-size: .72rem;
    font-weight: 700;
    padding: 8px 10px;
    text-align: center;
    transition: all .2s ease;
}

.calendar-slot:hover,
.calendar-slot.selected {
    background: #17383a;
    border-color: #17383a;
    box-shadow: 0 8px 18px rgba(14, 59, 59, .18);
    color: #f6d77f;
    transform: translateY(-1px);
}

.management-schedule-hero {
    background: linear-gradient(115deg, #152c2d, #1d4b49 62%, #326d63);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(15, 47, 47, .16);
    color: #fff;
    margin-bottom: 24px;
    overflow: hidden;
    padding: 58px 36px 46px;
    position: relative;
}

.management-schedule-hero::after { background: rgba(242, 209, 125, .16); border-radius: 50%; content: ''; height: 220px; position: absolute; right: -80px; top: -110px; width: 220px; }
.management-schedule-hero > div { max-width: 760px; position: relative; z-index: 1; }
.management-schedule-hero .eyebrow { margin-bottom: 18px; }
.management-schedule-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.08; margin: 0 0 18px; max-width: 620px; }
.management-schedule-hero p:not(.eyebrow) { color: rgba(255,255,255,.78); line-height: 1.65; margin: 0; max-width: 680px; }
.management-week-toolbar { background: #fff; border: 1px solid rgba(17, 30, 35, .08); border-radius: 16px; padding: 10px 12px; }
.management-calendar-grid { margin-top: 14px; }
.management-slot { align-items: center; display: flex; justify-content: space-between; text-align: left; }
.management-slot small { font-size: .58rem; letter-spacing: .05em; text-transform: uppercase; }
.management-slot.free { border-color: rgba(28, 113, 97, .28); color: #176152; }
.management-slot.management-block { background: #1a1e19; border-color: #1a1e19; color: #f2d17d; }
.management-slot.customer-booked { background: #dce7e6; border-color: #b4c7c4; color: #405453; cursor: not-allowed; }
.management-slot.customer-booked:hover { background: #dce7e6; color: #405453; transform: none; }
.management-schedule-legend { align-items: center; color: #526363; display: flex; flex-wrap: wrap; font-size: .72rem; font-weight: 700; gap: 8px; margin: 14px 0 0; text-transform: uppercase; }
.management-schedule-legend span { border-radius: 50%; display: inline-block; height: 9px; margin-left: 8px; width: 9px; }
.management-schedule-legend .free { background: #2b927b; }.management-schedule-legend .blocked { background: #1a1e19; }.management-schedule-legend .booked { background: #a8beb9; }

.booking-legal {
    color: #495c5c;
    font-size: .77rem;
    line-height: 1.7;
    margin-top: 8px;
}

.booking-legal a {
    color: #0d8481;
    text-decoration: none;
}

.button.button-primary.booking-submit {
    justify-content: center;
    width: 100%;
}

.booking-success-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(17, 28, 31, .08);
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(11, 20, 24, .12);
    display: grid;
    gap: 20px;
    margin: 0 auto;
    max-width: 760px;
    padding: 32px;
}

.booking-success-card h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin: 0;
}

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

.booking-success-grid div {
    background: #f5fafb;
    border: 1px solid rgba(17, 28, 31, .08);
    border-radius: 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
}

.booking-success-grid span {
    color: #5c6f6c;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.booking-success-grid strong {
    font-size: 1.08rem;
}

@media (max-width: 980px) {
    .booking-hero {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }

    .booking-grid,
    .booking-success-grid,
    .calendar-week-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .booking-hero {
        min-height: 440px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .booking-form-wrap {
        padding: 0 16px;
    }

    .booking-form {
        padding: 18px 14px;
    }

    .booking-step {
        padding: 18px 14px;
    }

    .calendar-week-grid {
        grid-template-columns: 1fr;
    }

    .contact-menu-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .contact-menu-group>a::after {
        display: none;
    }

    .contact-submenu {
        display: grid;
        margin-top: 8px;
        position: static;
        width: 100%;
    }
}

/* Category-first management and focused operations workspace. */
.service-category-picker { display: grid; gap: 9px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 15px; }
.service-category-picker button { align-items: center; background: #f3efe5; border: 1px solid #d8d0bf; color: #27332d; cursor: pointer; display: flex; font: inherit; justify-content: space-between; min-height: 61px; padding: 12px 14px; text-align: left; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.service-category-picker button:hover, .service-category-picker button.selected { background: #1b2822; border-color: #1b2822; color: #fff; transform: translateY(-2px); }
.service-category-picker span { font-size: .77rem; font-weight: 700; }
.service-category-picker small { color: #89763e; font: 700 .59rem 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
.service-category-picker button.selected small { color: #e6ce7a; }
.operations-hero { align-items: end; background: linear-gradient(90deg, rgba(10, 20, 30, .96), rgba(13, 29, 42, .76) 48%, rgba(10, 25, 36, .22)), url('/images/operations-hero-generated.jpg') center / cover no-repeat; color: #fff; display: flex; gap: 35px; justify-content: space-between; min-height: 330px; padding: 130px max(48px, calc((100% - 1284px) / 2)) 55px; }
.operations-hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.06em; margin: 9px 0 14px; }
.operations-hero p:not(.eyebrow) { color: rgba(255,255,255,.74); line-height: 1.75; margin: 0; max-width: 610px; }
.operations-hero-stat { border: 1px solid rgba(235, 203, 111, .45); border-radius: 16px; display: grid; gap: 7px; min-width: 205px; padding: 16px 18px; }
.operations-hero-stat span { color: #eacb6f; font: 700 .62rem 'DM Mono', monospace; letter-spacing: .09em; text-transform: uppercase; }
.operations-hero-stat strong { font-size: .96rem; line-height: 1.35; }
.operations-page { margin: auto; max-width: 1284px; padding: 70px 48px 120px; }
.operations-heading { align-items: end; display: flex; gap: 34px; justify-content: space-between; margin-bottom: 30px; }
.operations-heading h2 { font-size: clamp(1.8rem, 3vw, 2.55rem); letter-spacing: -.04em; margin: 7px 0 0; }
.operations-heading > p { color: #65706c; font-size: .86rem; line-height: 1.7; margin: 0; max-width: 390px; }
.operations-layout { display: grid; gap: 22px; grid-template-columns: minmax(215px, .38fr) minmax(0, 1fr); }
.operations-resource-list { background: #192923; padding: 9px; }
.operations-resource-list button { align-items: center; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.11); color: #e9eee9; cursor: pointer; display: flex; font: inherit; font-size: .78rem; font-weight: 700; justify-content: space-between; padding: 14px 13px; text-align: left; transition: background .2s ease, color .2s ease; width: 100%; }
.operations-resource-list button:last-child { border-bottom: 0; }
.operations-resource-list button:hover, .operations-resource-list button.selected { background: #ddc66f; color: #17241f; }
.operations-resource-list i { color: #9faeaa; font-size: .74rem; font-style: normal; }
.operations-resource-list button.selected i { color: #17241f; }
.operations-records { min-width: 0; }
.operations-records-header { align-items: baseline; border-bottom: 1px solid #d8d0bf; display: flex; gap: 13px; margin-bottom: 14px; padding-bottom: 16px; }
.operations-records-header .eyebrow { margin: 0; }
.operations-records-header h2 { font-size: 1.45rem; margin: 0; }
.operations-records-header > span { color: #74807a; font: 700 .61rem 'DM Mono', monospace; letter-spacing: .07em; margin-left: auto; text-transform: uppercase; }
.management-request-row { cursor: pointer; position: relative; transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.management-request-row::after { color: #8b6d25; content: 'Open details  \\2197'; font: 700 .57rem 'DM Mono', monospace; letter-spacing: .055em; position: absolute; right: 18px; text-transform: uppercase; top: 8px; }
.management-request-row:hover, .management-request-row:focus-visible { background: #fff9e7; box-shadow: inset 3px 0 #d7b64e; outline: 0; transform: translateX(2px); }
.operations-request-dialog { max-width: 670px; }
.operations-request-details { display: grid; gap: 13px 20px; grid-template-columns: minmax(100px, .32fr) minmax(0, 1fr); margin: 0; }
.operations-request-details dt { color: #6f786f; font: 700 .62rem 'DM Mono', monospace; letter-spacing: .06em; text-transform: uppercase; }
.operations-request-details dd { line-height: 1.6; margin: 0; overflow-wrap: anywhere; white-space: pre-wrap; }
.operations-appointment-backdrop { backdrop-filter: blur(6px); }
.operations-appointment-dialog { background: #fbfaf5; border: 1px solid rgba(192, 156, 66, .52); box-shadow: 0 30px 90px rgba(10, 22, 16, .42); display: grid; grid-template-rows: auto minmax(0, 1fr); max-height: min(820px, calc(100dvh - 32px)); max-width: 900px; overflow: hidden; padding: 0; }
.operations-detail-modal { display: grid; grid-template-rows: auto minmax(0, 1fr); max-height: min(820px, calc(100dvh - 32px)); overflow: hidden; padding: 0; }
.operations-detail-modal-body { min-height: 0; overflow-x: hidden; overflow-y: auto; }
.operations-request-dialog { background: #fbfaf5; border: 1px solid rgba(192, 156, 66, .52); box-shadow: 0 30px 90px rgba(10, 22, 16, .42); max-width: 760px; }
.request-modal-header { background: radial-gradient(circle at 83% 5%, rgba(235, 202, 103, .2), transparent 27%), linear-gradient(135deg, #172820, #263a30); color: #fff; min-height: 160px; padding: 42px 46px 38px; position: relative; }
.request-modal-header .eyebrow { color: #e5c86d; margin: 0 0 10px; }.request-modal-header h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.065em; line-height: .95; margin: 0; }.operations-request-dialog .operations-request-details { background: #fbfaf5; margin: 0; padding: 32px 46px 42px; }
.portal-profile-company { color: rgba(255,255,255,.72); font-size: .9rem; margin: 11px 0 0; }.operations-portal-dialog { background: #fbfaf5; border: 1px solid rgba(192, 156, 66, .52); box-shadow: 0 30px 90px rgba(10,22,16,.42); max-width: 800px; }.portal-profile-modal-body { overflow-y: auto; padding-bottom: 38px; }.portal-profile-highlight { background: #eee7d5; display: grid; grid-template-columns: 1fr 1fr; padding: 23px 46px; }.portal-profile-highlight div { display: grid; gap: 6px; }.portal-profile-highlight div + div { border-left: 1px solid rgba(32,48,40,.17); padding-left: 27px; }.portal-profile-highlight span { color: #8b7434; font: 800 .59rem 'DM Mono', monospace; letter-spacing: .1em; text-transform: uppercase; }.portal-profile-highlight strong { color: #203028; font-size: 1rem; }.portal-profile-modal-grid { display: grid; gap: 1px; grid-template-columns: 1fr 1fr; padding: 28px 46px 0; }.portal-profile-modal-grid section { background: #f4f1e8; display: grid; gap: 12px; min-height: 145px; padding: 21px; }.portal-profile-modal-grid section:last-child { grid-column: 1 / -1; }.portal-profile-modal-grid dl { display: grid; gap: 6px 12px; grid-template-columns: auto 1fr; margin: 0; }.portal-profile-modal-grid dt { color: #778078; font: 700 .59rem 'DM Mono', monospace; text-transform: uppercase; }.portal-profile-modal-grid dd { color: #26352c; font-size: .76rem; margin: 0; overflow-wrap: anywhere; }.portal-profile-modal-grid > section > strong { color: #203028; font-size: .9rem; }.portal-profile-modal-grid > section > span { color: #69766d; font-size: .74rem; }.portal-profile-stats { display: flex; gap: 28px; }.portal-profile-stats strong { color: #203028; font-size: 1.7rem; }.portal-profile-stats small { color: #758078; font-size: .66rem; font-weight: 700; }
.operations-request-dialog .operations-request-details dt { color: #8b7434; }.operations-request-dialog .operations-request-details dd { background: #f4f1e8; padding: 10px 12px; }
.appointment-modal-header { align-items: start; background: radial-gradient(circle at 83% 5%, rgba(235, 202, 103, .2), transparent 27%), linear-gradient(135deg, #172820, #263a30); color: #fff; display: flex; justify-content: space-between; padding: 42px 46px 38px; position: relative; z-index: 3; }
.appointment-modal-close { background: transparent; border: 0; color: rgba(255,255,255,.82); cursor: pointer; font-size: 1.7rem; line-height: .8; padding: 0; position: absolute; right: 20px; top: 18px; }
.appointment-modal-body { min-height: 0; overflow-x: hidden; overflow-y: auto; padding-bottom: 38px; }
.appointment-modal-header .eyebrow { color: #e5c86d; margin: 0 0 10px; }.appointment-modal-header h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.065em; line-height: .95; margin: 0; }.appointment-modal-header h2 + p { color: rgba(255,255,255,.71); font-size: .9rem; margin: 11px 0 0; }
.appointment-modal-status { align-items: flex-end; display: grid; gap: 8px; margin: 4px 30px 0 18px; }.appointment-status { border: 1px solid currentColor; border-radius: 999px; font: 800 .61rem 'DM Mono', monospace; letter-spacing: .1em; padding: 9px 11px; text-align: center; text-transform: uppercase; white-space: nowrap; }.appointment-status.pending { color: #f2d26c; }.appointment-status.confirmed { color: #9fd0b3; }.appointment-status.completed { color: #a5d4c1; }.appointment-status.cancelled, .appointment-status.no-show { color: #ffaaa2; }.appointment-status-action { background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff; cursor: pointer; font: 800 .64rem Manrope, sans-serif; padding: 8px 10px; }.appointment-status-action.confirm:hover { background: #a8d4b6; border-color: #a8d4b6; color: #173025; }.appointment-status-action.cancel { border-color: rgba(255,165,158,.7); color: #ffb3ad; }.appointment-status-action.cancel:hover { background: #b63a35; color: #fff; }
.appointment-modal-time { align-items: stretch; background: #eee7d5; display: grid; grid-template-columns: 1fr auto; margin: 0; padding: 23px 46px; }.appointment-modal-time div { display: grid; gap: 5px; }.appointment-modal-time span, .appointment-modal-label { color: #8b7434; font: 800 .59rem 'DM Mono', monospace; letter-spacing: .1em; margin: 0; text-transform: uppercase; }.appointment-modal-time strong { color: #203028; font-size: 1rem; }.appointment-modal-time small { color: #617067; font-size: .76rem; }.appointment-duration { border-left: 1px solid rgba(32, 48, 40, .17); margin-left: 34px; min-width: 125px; padding-left: 26px; }
.appointment-modal-grid { display: grid; gap: 1px; grid-template-columns: 1fr 1fr; padding: 28px 46px 0; }.appointment-modal-grid > section { background: #f4f1e8; display: grid; gap: 7px; min-height: 139px; padding: 21px; }.appointment-modal-grid strong { color: #203028; font-size: .91rem; }.appointment-modal-grid a { color: #856323; font-size: .78rem; overflow-wrap: anywhere; text-decoration: none; }.appointment-modal-grid > section > span { color: #58675e; font-size: .8rem; }.appointment-modal-grid small { color: #79837c; font-size: .67rem; line-height: 1.5; margin-top: auto; overflow-wrap: anywhere; }.appointment-modal-grid dl { display: grid; gap: 6px 12px; grid-template-columns: auto 1fr; margin: 2px 0 0; }.appointment-modal-grid dt { color: #778078; font: 700 .59rem 'DM Mono', monospace; letter-spacing: .06em; text-transform: uppercase; }.appointment-modal-grid dd { color: #26352c; font-size: .76rem; margin: 0; overflow-wrap: anywhere; }.appointment-meeting-link { align-items: center; background: #21352b; color: #fff !important; display: inline-flex; font-weight: 700 !important; gap: 9px; justify-content: center; margin-top: 7px; padding: 11px 13px; }.appointment-empty-value { align-self: center; color: #7a837c !important; font-size: .77rem !important; }
.appointment-notes, .appointment-cancellation { margin: 20px 46px 0; padding: 21px; }.appointment-notes { background: #f8f5ec; border-left: 3px solid #d7b64e; }.appointment-notes > p:last-child { color: #4f5e55; font-size: .82rem; line-height: 1.7; margin: 11px 0 0; white-space: pre-wrap; }.appointment-cancellation { background: #fff0ed; border: 1px solid #e8bbb3; display: grid; gap: 8px; }.appointment-cancellation strong { color: #8e302a; font-size: .82rem; }.appointment-cancellation span { color: #8d5c57; font-size: .72rem; }
@media (max-width: 640px) { .operations-appointment-dialog { max-height: calc(100dvh - 24px); }.appointment-modal-header { padding: 34px 24px 30px; }.appointment-status { margin-right: 20px; }.appointment-modal-time { grid-template-columns: 1fr; padding: 21px 24px; }.appointment-duration { border-left: 0; border-top: 1px solid rgba(32, 48, 40, .17); margin: 17px 0 0; padding: 17px 0 0; }.appointment-modal-grid { grid-template-columns: 1fr; padding: 18px 24px 0; }.appointment-notes, .appointment-cancellation { margin-left: 24px; margin-right: 24px; } }
@media (max-width: 640px) { .management-request-row::after { display: none; } .operations-request-dialog { padding: 36px 24px 28px; } .operations-request-details { gap: 6px; grid-template-columns: 1fr; } .operations-request-details dt { margin-top: 11px; } }
@media (max-width: 760px) { .service-category-picker { grid-template-columns: 1fr 1fr; } .operations-hero { align-items: start; flex-direction: column; padding: 115px 24px 40px; } .operations-page { padding: 45px 24px 80px; } .operations-heading { align-items: start; flex-direction: column; gap: 12px; } .operations-layout { grid-template-columns: 1fr; } .operations-resource-list { display: grid; grid-template-columns: 1fr 1fr; } .operations-resource-list button:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 460px) { .service-category-picker, .operations-resource-list { grid-template-columns: 1fr; } .operations-resource-list button { border-bottom: 1px solid rgba(255,255,255,.11); } .operations-resource-list button:last-child { border-bottom: 0; } .operations-records-header { align-items: start; flex-direction: column; gap: 5px; } .operations-records-header > span { margin-left: 0; } }

/* A deliberately prominent, confirmed production-payment control. */
.payment-mode-panel { background: linear-gradient(120deg, #172820, #26382c); border: 1px solid rgba(229, 198, 107, .48); border-left: 5px solid #d8b84a; box-shadow: 0 16px 36px rgba(20, 37, 28, .14); color: #fff; padding: clamp(25px, 4vw, 42px); }
.payment-mode-panel .management-heading p:not(.eyebrow) { color: rgba(255,255,255,.75); }
.payment-mode-panel .management-heading h2 { color: #fff; }
.payment-mode-panel > small { color: rgba(255,255,255,.62); display: block; margin-top: 18px; }
.payment-mode-action { align-items: center; display: flex; gap: 16px; justify-content: space-between; margin-top: 28px; }
.payment-mode-action > span { border: 1px solid rgba(255,255,255,.3); font: 800 .7rem 'DM Mono', monospace; letter-spacing: .13em; padding: 10px 12px; }
.payment-mode-action > span.live { background: #b3312d; border-color: #ff8f8a; color: #fff; }
.payment-mode-action > span.sandbox { background: #d8b84a; border-color: #f7dc7f; color: #1a251d; }
.payment-mode-action .button { font-size: .9rem; min-height: 58px; padding: 15px 25px; }
.payment-mode-confirmation { max-width: 620px; }
@media (max-width: 600px) { .payment-mode-action { align-items: stretch; flex-direction: column; } .payment-mode-action .button { width: 100%; } }

/* Client project workspace: intentional calm, one focal point at a time. */
.project-showcase { align-items: center; background: #172820; color: #f9f7f0; display: flex; isolation: isolate; justify-content: center; min-height: 560px; overflow: hidden; padding: 130px max(38px, calc((100% - 1120px) / 2)) 100px; position: relative; text-align: center; }
.project-loading-state { align-items: center; background: radial-gradient(circle at 50% 35%, rgba(226, 195, 96, .2), transparent 29%), #172820; color: #f9f7f0; display: flex; flex-direction: column; justify-content: center; min-height: min(72vh, 680px); overflow: hidden; padding: 90px 24px; position: relative; text-align: center; }.project-loading-state::before, .project-loading-state::after { border: 1px solid rgba(232, 210, 126, .16); border-radius: 50%; content: ''; height: min(64vw, 650px); position: absolute; width: min(64vw, 650px); }.project-loading-state::after { height: min(45vw, 460px); width: min(45vw, 460px); }.project-loading-mark { height: 154px; margin-bottom: 32px; position: relative; width: 154px; }.project-loading-mark span { border: 2px solid transparent; border-radius: 50%; inset: 0; position: absolute; }.project-loading-mark span:nth-child(1) { border-right-color: #e5c86d; border-top-color: #e5c86d; animation: project-loader-spin 1.2s linear infinite; }.project-loading-mark span:nth-child(2) { border-bottom-color: rgba(255,255,255,.7); border-left-color: rgba(255,255,255,.7); inset: 13px; animation: project-loader-spin 1.75s linear infinite reverse; }.project-loading-mark span:nth-child(3) { background: rgba(248,245,236,.08); inset: 29px; animation: project-loader-pulse 1.8s ease-in-out infinite; }.project-loading-mark b { align-items: center; color: #f3dfa0; display: flex; font: 700 1.45rem 'DM Mono', monospace; height: 100%; justify-content: center; letter-spacing: .16em; padding-left: .16em; position: relative; }.project-loading-state .eyebrow { color: #e8cf76; margin: 0 0 13px; }.project-loading-state h1 { font-size: clamp(2.25rem, 5vw, 4.3rem); letter-spacing: -.065em; line-height: .95; margin: 0 0 17px; }.project-loading-state > p:last-child { color: rgba(255,255,255,.68); font-size: .96rem; line-height: 1.7; margin: 0; max-width: 380px; }@keyframes project-loader-spin { to { transform: rotate(360deg); } }@keyframes project-loader-pulse { 50% { opacity: .35; transform: scale(.84); } }
.project-showcase::after { background: radial-gradient(circle at 50% 20%, rgba(226, 195, 96, .22), transparent 37%); content: ''; inset: 0; pointer-events: none; position: absolute; z-index: -1; }
.project-showcase-orbit { border: 1px solid rgba(232, 210, 126, .2); border-radius: 50%; position: absolute; z-index: -1; }
.project-showcase-orbit.orbit-one { height: 740px; right: -235px; top: -190px; width: 740px; }
.project-showcase-orbit.orbit-two { bottom: -320px; height: 600px; left: -230px; width: 600px; }
.project-showcase-grain { background-image: radial-gradient(rgba(255,255,255,.16) .55px, transparent .55px); background-size: 7px 7px; inset: 0; opacity: .11; pointer-events: none; position: absolute; z-index: -1; }
.project-showcase-content { animation: project-rise .8s ease both; max-width: 760px; }
.project-showcase .eyebrow { color: #e8cf76; margin-bottom: 18px; }
.project-status-pill { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #f2db86; display: inline-block; font: 700 .64rem 'DM Mono', monospace; letter-spacing: .11em; margin-bottom: 20px; padding: 8px 13px; text-transform: uppercase; }
.project-showcase h1 { font-size: clamp(3.4rem, 7vw, 6.7rem); letter-spacing: -.075em; line-height: .9; margin: 0 auto 24px; max-width: 900px; }
.project-showcase-content > p:not(.eyebrow) { color: rgba(255,255,255,.73); font-size: 1.03rem; line-height: 1.8; margin: auto; max-width: 660px; }
.project-showcase-meta { align-items: center; color: rgba(255,255,255,.61); display: flex; flex-wrap: wrap; font-size: .76rem; gap: 11px; justify-content: center; margin-top: 30px; }
.project-showcase-meta strong { color: #fff; font-weight: 600; }.project-showcase-meta i { background: #d9bf63; border-radius: 50%; height: 4px; width: 4px; }
.project-progress-emblem { align-items: center; animation: project-rise 1s .18s ease both; bottom: 47px; display: flex; height: 132px; justify-content: center; position: absolute; right: max(34px, calc((100% - 1200px) / 2)); width: 132px; }.project-progress-emblem svg { height: 100%; inset: 0; position: absolute; transform: rotate(-90deg); width: 100%; }.project-progress-emblem circle { fill: none; stroke-width: 5; }.project-emblem-track { stroke: rgba(255,255,255,.13); }.project-emblem-value { animation: project-ring 1.4s .35s cubic-bezier(.2,.8,.2,1) both; stroke: #e4c96e; stroke-linecap: round; }.project-progress-emblem > div { display: grid; text-align: center; }.project-progress-emblem strong { font-size: 1.65rem; letter-spacing: -.07em; }.project-progress-emblem strong small { font-size: .7rem; }.project-progress-emblem span { color: rgba(255,255,255,.57); font: 700 .54rem 'DM Mono', monospace; letter-spacing: .1em; text-transform: uppercase; }
.project-luxury-page { margin: auto; max-width: 1180px; padding: 0 38px 130px; }.project-insight-grid { background: #f8f5ec; box-shadow: 0 16px 38px rgba(20,38,29,.08); display: grid; grid-template-columns: repeat(4, 1fr); margin: -42px auto 100px; position: relative; z-index: 2; }.project-insight-grid article { min-height: 172px; padding: 28px; text-align: center; }.project-insight-grid article + article { border-left: 1px solid #e1daca; }.project-insight-grid span, .project-insight-grid p { color: #69756d; font-size: .7rem; margin: 0; }.project-insight-grid span { font: 700 .58rem 'DM Mono', monospace; letter-spacing: .1em; text-transform: uppercase; }.project-insight-grid strong { color: #172820; display: block; font-size: 1.25rem; letter-spacing: -.035em; margin-top: 15px; }.project-insight-grid i { background: #d8ba58; display: block; height: 2px; margin: 15px auto 12px; width: 25px; }
.project-story { align-items: start; display: grid; gap: 80px; grid-template-columns: .72fr 1.28fr; margin-bottom: 110px; }.project-section-intro { position: sticky; top: 30px; }.project-section-intro h2, .project-detail-panels h2, .project-admin-update h2 { color: #172820; font-size: clamp(2.35rem, 4vw, 4rem); letter-spacing: -.065em; line-height: .93; margin: 12px 0 22px; }.project-section-intro em, .project-detail-panels em { color: #a7842c; font-family: Georgia, serif; font-weight: 400; }.project-section-intro > p:last-child { color: #65716a; line-height: 1.8; max-width: 310px; }.project-milestones { border-left: 1px solid #d9d4c7; display: grid; gap: 26px; padding-left: 38px; }.project-milestones article { align-items: start; display: grid; gap: 21px; grid-template-columns: 58px 1fr; position: relative; }.project-milestones article::before { background: #d7b64e; border: 5px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px #d7b64e; content: ''; height: 8px; left: -44px; position: absolute; top: 8px; width: 8px; }.project-milestone-number { color: #a88631; font-size: 1.45rem; font-weight: 800; letter-spacing: -.07em; }.project-milestone-number small { font-size: .65rem; }.project-milestones time { color: #9b8338; font: 700 .57rem 'DM Mono', monospace; letter-spacing: .075em; text-transform: uppercase; }.project-milestones h3 { color: #1d2d25; font-size: 1.15rem; margin: 7px 0; }.project-milestones p { color: #647067; line-height: 1.7; margin: 0; }
.project-detail-panels { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }.project-detail-panels article { min-height: 470px; padding: 48px; }.project-scope-panel { background: #e9e3d4; }.project-billing-panel { background: #1a2a23; color: #fff; }.project-billing-panel h2 { color: #fff; }.project-billing-panel em { color: #e7ca6d; }.project-scope-panel dl { display: grid; gap: 19px; margin: 42px 0 0; }.project-scope-panel dl div { border-top: 1px solid rgba(26,42,35,.16); padding-top: 14px; }.project-scope-panel dt { color: #7b786c; font: 700 .56rem 'DM Mono', monospace; letter-spacing: .1em; text-transform: uppercase; }.project-scope-panel dd { color: #223229; line-height: 1.55; margin: 6px 0 0; }.project-invoice { align-items: center; border-top: 1px solid rgba(255,255,255,.14); display: grid; gap: 12px; grid-template-columns: 10px 1fr auto; padding: 17px 0; }.project-invoice > span { border-radius: 50%; height: 8px; width: 8px; }.project-invoice .due { background: #e7c866; }.project-invoice .settled { background: #8dbda1; }.project-invoice strong, .project-invoice small { display: block; }.project-invoice strong { font-size: .83rem; }.project-invoice small { color: rgba(255,255,255,.54); font-size: .67rem; margin-top: 4px; }.project-invoice b { font-size: .9rem; text-align: right; }.project-invoice b small { font: 700 .52rem 'DM Mono', monospace; letter-spacing: .05em; }.project-empty-state { color: #6f776f; line-height: 1.7; margin-top: 35px; }.project-billing-panel .project-empty-state { color: rgba(255,255,255,.58); }.project-admin-update { background: #f5f1e6; margin-top: 35px; padding: 42px; }.project-admin-update h2 { font-size: 2rem; }
@keyframes project-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } } @keyframes project-ring { from { stroke-dasharray: 0 100; } }
@media (max-width: 820px) { .project-showcase { min-height: 550px; padding: 125px 24px 115px; }.project-progress-emblem { bottom: 20px; height: 105px; right: calc(50% - 52px); width: 105px; }.project-insight-grid { grid-template-columns: 1fr 1fr; margin-bottom: 65px; }.project-insight-grid article:nth-child(3) { border-left: 0; border-top: 1px solid #e1daca; }.project-insight-grid article:nth-child(4) { border-top: 1px solid #e1daca; }.project-story { gap: 40px; grid-template-columns: 1fr; margin-bottom: 65px; }.project-section-intro { position: static; text-align: center; }.project-section-intro > p:last-child { margin: auto; }.project-detail-panels { grid-template-columns: 1fr; }.project-luxury-page { padding: 0 24px 80px; } }
@media (max-width: 520px) { .project-showcase h1 { font-size: 3.25rem; }.project-showcase-meta { display: grid; }.project-showcase-meta i { display: none; }.project-insight-grid { margin-left: -8px; margin-right: -8px; }.project-insight-grid article { min-height: 150px; padding: 22px 13px; }.project-insight-grid strong { font-size: 1.02rem; }.project-milestones { gap: 23px; padding-left: 27px; }.project-milestones article { gap: 13px; grid-template-columns: 42px 1fr; }.project-milestones article::before { left: -33px; }.project-detail-panels article, .project-admin-update { padding: 32px 25px; } }
@media (prefers-reduced-motion: reduce) { .project-showcase-content, .project-progress-emblem, .project-emblem-value, .project-loading-mark span { animation: none; } }

/* Project payment sheet. */
.project-stripe-checkout { align-items: center; background: #635bff; border: 0; color: #fff; cursor: pointer; display: flex; font-size: .86rem; font-weight: 800; justify-content: space-between; margin-top: 18px; padding: 17px 19px; transition: filter .2s ease, transform .2s ease; width: 100%; }.project-stripe-checkout:hover:not(:disabled) { filter: brightness(1.04); transform: translateY(-2px); }.project-stripe-checkout:disabled { cursor: wait; opacity: .7; }.stripe-payment-element { background: #fff; border: 1px solid #dedbe8; margin-top: 18px; padding: 14px; text-align: left; }
.project-payment-modal { max-width: 640px; padding: 32px 44px 29px; }.project-payment-gateway { grid-template-columns: 1fr; margin: 17px 0 12px; }.project-payment-gateway span { white-space: nowrap; }.stripe-payment-element { margin-top: 14px; padding: 12px; }
.project-payment-modal { display: flex; flex-direction: column; max-height: calc(100dvh - 32px); }.project-payment-heading, .project-payment-actions { flex: 0 0 auto; }.project-payment-heading { padding-right: 30px; }.project-payment-scroll { flex: 1 1 auto; margin: 12px -10px 0; max-height: min(470px, calc(100dvh - 260px)); overflow-y: auto; padding: 0 10px; scrollbar-color: #b8b4d8 transparent; scrollbar-width: thin; }.project-payment-actions { background: #fbf9f2; padding-top: 4px; }.project-payment-actions .project-stripe-checkout { margin-top: 10px; }
.project-payment-success { align-items: center; animation: payment-success-in .48s cubic-bezier(.2,.85,.2,1) both; display: flex; flex: 1; flex-direction: column; justify-content: center; min-height: 360px; padding: 22px 14px 10px; text-align: center; }.project-payment-success-mark { align-items: center; animation: payment-success-pop .55s .12s cubic-bezier(.2,1.35,.4,1) both; background: linear-gradient(135deg, #665dff, #8f89ff); border-radius: 50%; box-shadow: 0 12px 30px rgba(99,91,255,.28); color: #fff; display: flex; font-size: 2rem; font-weight: 800; height: 76px; justify-content: center; margin-bottom: 19px; width: 76px; }.project-payment-success .eyebrow { color: #635bff; margin: 0 0 7px; }.project-payment-success h2 { color: #192b22; font-size: 2.55rem; letter-spacing: -.07em; margin: 0 0 12px; }.project-payment-success p { color: #617068; font-size: .9rem; line-height: 1.7; margin: 0; max-width: 390px; }.project-payment-success p strong { color: #27392f; }.project-payment-success-line { background: linear-gradient(90deg, transparent, #c9c5ff, transparent); height: 1px; margin: 25px 0 15px; width: 100%; }.project-payment-success small { color: #7a867f; font-size: .71rem; line-height: 1.55; max-width: 340px; }.project-payment-success .project-stripe-checkout { margin-top: 27px; max-width: 390px; } @keyframes payment-success-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } } @keyframes payment-success-pop { from { opacity: 0; transform: scale(.55) rotate(-12deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@media (max-width: 620px) { .project-payment-modal { max-width: 510px; padding: 38px 24px 27px; }.project-payment-gateway span { white-space: normal; } }
.project-pay-button { background: transparent; border: 1px solid rgba(232, 207, 117, .62); color: #f4df8c; cursor: pointer; font: 700 .66rem 'DM Mono', monospace; letter-spacing: .07em; margin-top: 3px; padding: 11px 13px; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; width: 100%; }.project-pay-button:hover { background: #ecd178; color: #172820; transform: translateY(-2px); }.project-pay-button span { margin-left: 5px; }
.project-payment-backdrop { align-items: center; animation: project-fade .22s ease both; background: rgba(12, 23, 18, .72); backdrop-filter: blur(8px); display: flex; inset: 0; justify-content: center; padding: 24px; position: fixed; z-index: 1000; }.project-payment-modal { animation: project-modal-in .38s cubic-bezier(.2,.85,.2,1) both; background: #fbf9f2; box-shadow: 0 28px 90px rgba(0,0,0,.34); max-width: 510px; overflow: hidden; padding: 48px 48px 37px; position: relative; text-align: center; width: 100%; }.project-payment-modal::before { background: linear-gradient(90deg, #d2b348, #f1dda0, #d2b348); content: ''; height: 4px; left: 0; position: absolute; right: 0; top: 0; }.project-payment-close { background: transparent; border: 0; color: #69756e; cursor: pointer; font-size: 1.7rem; line-height: 1; padding: 7px; position: absolute; right: 15px; top: 15px; }.project-payment-mark { align-items: center; background: #173f79; border-radius: 50%; box-shadow: 0 7px 17px rgba(23,63,121,.19); color: #fff; display: flex; font: italic 800 1.45rem Georgia, serif; height: 47px; justify-content: center; margin: 0 auto 19px; width: 47px; }.project-payment-modal .eyebrow { color: #8d782f; margin: 0 0 10px; }.project-payment-modal h2 { color: #192b22; font-size: 2.45rem; letter-spacing: -.065em; margin: 0 0 12px; }.project-payment-copy { color: #667168; font-size: .85rem; line-height: 1.7; margin: 0 auto; max-width: 380px; }.project-payment-copy strong { color: #293a30; }.project-payment-balance { background: #edf0e9; display: grid; gap: 5px; margin: 25px 0 19px; padding: 16px; }.project-payment-balance span { color: #768178; font: 700 .57rem 'DM Mono', monospace; letter-spacing: .1em; text-transform: uppercase; }.project-payment-balance strong { color: #173027; font-size: 1.6rem; letter-spacing: -.055em; }.project-payment-balance small { font-size: .62rem; letter-spacing: .02em; }.project-payment-modal .field-label, .project-payment-modal label { display: block; text-align: left; }.project-payment-input { background: #fff; border: 1px solid #d7d3c7; box-sizing: border-box; color: #1c2f25; font: 700 1.1rem 'DM Mono', monospace; margin-top: 7px; padding: 14px; width: 100%; }.project-partial-note { color: #8a7429; font-size: .71rem; line-height: 1.55; margin: 11px 0 0; text-align: left; }.project-payment-gateway { align-items: center; border-bottom: 1px solid #e1ddd2; border-top: 1px solid #e1ddd2; display: grid; gap: 9px; grid-template-columns: 23px 1fr auto; margin: 23px 0 14px; padding: 14px 0; text-align: left; }.project-payment-gateway svg { fill: #1b4f9a; height: 23px; width: 23px; }.project-payment-gateway span { color: #38483f; font-size: .73rem; font-weight: 700; }.project-payment-gateway i { color: #839087; font: 700 .5rem 'DM Mono', monospace; letter-spacing: .04em; text-transform: uppercase; }.project-paypal-checkout { align-items: center; background: #ffc439; color: #0a2d6b; display: flex; font-size: .86rem; font-weight: 800; justify-content: space-between; margin-top: 18px; padding: 17px 19px; text-decoration: none; transition: filter .2s ease, transform .2s ease; }.project-paypal-checkout:hover { filter: brightness(1.04); transform: translateY(-2px); }.project-paypal-checkout b { font-size: 1.15rem; }.project-payment-cancel { background: transparent; border: 0; color: #6c776f; cursor: pointer; font-size: .72rem; margin-top: 17px; text-decoration: underline; }.project-payment-cancel:hover { color: #1e3127; } @keyframes project-fade { from { opacity: 0; } to { opacity: 1; } } @keyframes project-modal-in { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } } @media (max-width: 520px) { .project-payment-modal { padding: 41px 24px 28px; }.project-payment-gateway { grid-template-columns: 23px 1fr; }.project-payment-gateway i { grid-column: 2; } }
.project-requirements-admin{margin-top:24px}.project-requirements-admin>p{max-width:650px;line-height:1.6}.project-requirement-history{margin-top:28px;border-top:1px solid #d8d3c3}.project-requirement-history article{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:15px 0;border-bottom:1px solid #d8d3c3}.project-requirement-history strong,.project-requirement-history small{display:block}.project-requirement-history small{margin-top:4px;color:#6c746d}.project-requirement-history span{font-size:.86rem;color:#796225;text-align:right}.project-requirement-success{padding:11px 14px;background:#e1efe6;border-left:3px solid #397354;color:#173126}@media(max-width:640px){.project-requirement-history article{display:block}.project-requirement-history span{display:block;margin-top:8px;text-align:left}}
.project-requirement-history .project-requirement-status{border:1px solid #c9ab54;border-radius:999px;color:#725914;font-size:.7rem;font-weight:800;letter-spacing:.04em;padding:6px 9px;text-transform:uppercase}.project-requirement-modal{max-width:620px}.project-requirement-modal-status{color:#766021;font-size:.78rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.project-requirement-modal-scroll{line-height:1.7;max-height:min(360px,50dvh);overflow-y:auto;padding-right:10px}.project-requirement-modal-scroll h3{color:#173126;font-size:1rem;margin:26px 0 8px}.project-requirement-modal-scroll ul{padding-left:20px}
.requirement-response-card{background:linear-gradient(145deg,#fffdf8,#f5f1e5)!important;border-color:#d9cda9!important;box-shadow:0 16px 35px rgba(31,55,42,.06)}.requirement-response-heading{display:grid;grid-template-columns:46px 1fr;gap:16px;align-items:start;margin-bottom:24px}.requirement-response-heading>span{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:#173126;color:#efd47e;font:800 .77rem 'DM Mono',monospace;letter-spacing:.08em}.requirement-response-heading .eyebrow{margin:0 0 9px!important;color:#a87b1e!important}.requirement-response-heading h2{margin:0!important;font-size:clamp(1.55rem,2.3vw,2.15rem)!important;line-height:1.12!important}.requirement-response-heading p:not(.eyebrow){margin:10px 0 0;color:#617068;font-size:.92rem;line-height:1.6}.requirement-response-form{display:flex!important;flex:1;flex-direction:column}.requirement-response-label{display:flex!important;justify-content:space-between;align-items:center;margin:0 0 9px!important;color:#294237!important;font-size:.82rem!important;font-weight:800!important}.requirement-response-label small{color:#7c847d;font-size:.68rem;font-weight:600}.requirement-textarea-shell{padding:1px;border-radius:13px;background:linear-gradient(135deg,#c8b170,#dbe7de)}.requirement-textarea-shell textarea{display:block!important;box-sizing:border-box!important;width:100%!important;min-height:172px!important;margin:0!important;padding:17px 18px!important;border:0!important;border-radius:12px!important;background:#fffefa!important;color:#18352a!important;box-shadow:inset 0 1px 2px rgba(17,39,29,.04)!important;font:500 1rem/1.6 Arial,Helvetica,sans-serif!important;outline:none!important;resize:vertical}.requirement-textarea-shell textarea::placeholder{color:#849187;opacity:1}.requirement-textarea-shell:focus-within{box-shadow:0 0 0 4px rgba(35,166,166,.16)}.requirement-response-actions{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:17px}.requirement-response-actions>small{max-width:180px;color:#718078;font-size:.68rem;line-height:1.45}.requirement-response-actions .button{display:inline-flex!important;align-items:center;gap:12px;align-self:auto!important;margin:0!important;padding:14px 18px!important;box-shadow:0 8px 16px rgba(23,49,38,.16)}.requirement-response-actions .button span{font-size:1.15rem;line-height:1}@media(max-width:520px){.requirement-response-heading{grid-template-columns:1fr}.requirement-response-actions{align-items:stretch;flex-direction:column}.requirement-response-actions>small{max-width:none}.requirement-response-actions .button{justify-content:space-between}}
.project-customer-documents{margin:28px 0;padding:36px;border:1px solid #ded4bb;border-radius:18px;background:#fffdf8}.project-customer-documents>div:first-child{max-width:650px}.project-customer-documents h2{margin:5px 0 12px;color:#173126;font-size:2rem;letter-spacing:-.05em}.project-customer-documents p:not(.eyebrow){color:#617068;line-height:1.6}.project-customer-file-list{margin-top:24px;border-top:1px solid #e5dcc8}.project-customer-file-list article{display:grid;grid-template-columns:44px 1fr auto auto;align-items:center;gap:15px;padding:16px 0;border-bottom:1px solid #e5dcc8}.project-customer-file-list article>span{display:grid;place-items:center;width:40px;height:40px;border-radius:9px;background:#ece4cf;color:#7a6119;font-size:.68rem;font-weight:800}.project-customer-file-list strong,.project-customer-file-list small{display:block}.project-customer-file-list small{margin-top:4px;color:#768078}.project-customer-file-list a,.project-customer-file-list button{border:0;background:none;color:#173126;cursor:pointer;font-weight:800;text-decoration:underline}.project-customer-file-list button{color:#a23226}.project-document-delete-dialog{max-width:500px;padding:40px;border:1px solid #d7b74c;border-radius:16px;background:#fffdf8;text-align:center}.project-document-delete-dialog>strong{display:block;margin:18px;padding:12px;border-radius:8px;background:#f5ecda;word-break:break-word}.project-document-delete-dialog>p:not(.eyebrow){line-height:1.6}.project-document-delete-dialog>div{display:flex;justify-content:center;gap:12px;margin-top:26px}@media(max-width:620px){.project-customer-documents{padding:28px 22px}.project-customer-file-list article{grid-template-columns:40px 1fr}.project-customer-file-list a,.project-customer-file-list button{grid-column:2;width:max-content}.project-document-delete-dialog{margin:16px;padding:30px 22px}}
.project-document-delete-dialog .button-secondary{display:inline-flex!important;align-items:center;justify-content:center;min-height:46px;padding:11px 18px!important;border:1px solid #173126!important;border-radius:8px!important;background:transparent!important;color:#173126!important;font-weight:800!important;opacity:1!important}.project-document-delete-dialog .button-secondary:hover:not(:disabled){background:#e8eee8!important}.project-document-delete-dialog .button-secondary:disabled{opacity:.55!important}

/* Editorial and communications workspaces */
.management-hero-with-tools { position:relative; padding-right: min(42%, 530px); }
.management-hero-tools { position:absolute; right:6%; top:60px; display:grid; gap:14px; width:min(360px,34%); }
.management-hero-tools a { display:grid; gap:8px; padding:24px 28px; border:1px solid #ffffff55; border-radius:18px; color:#fff; background:#ffffff14; text-decoration:none; transition:background .2s,transform .2s; }
.management-hero-tools a:hover { background:#ffffff26; transform:translateY(-2px); }
.management-hero-tools strong { font-size:1.2rem; }.management-hero-tools span { opacity:.8; font-size:.9rem; }
.editor-workspace { max-width:1280px; margin:auto; padding:56px 5vw 90px; }
.editor-toolbar { display:flex; justify-content:space-between; align-items:center; gap:24px; margin-bottom:36px; }
.editor-toolbar h2,.editor-card h2,.editor-section h2 { font-size:clamp(1.5rem,3vw,2.3rem); letter-spacing:-.04em; }
.editor-toolbar select { min-width:210px; }.editor-section { margin-bottom:48px; }.editor-section>header { border-bottom:1px solid #dce5ec; padding-bottom:18px; margin-bottom:24px; }
.editor-card { padding:clamp(22px,4vw,38px); margin-bottom:22px; border:1px solid #dce5ec; border-radius:22px; background:#fff; box-shadow:0 12px 40px #152b4110; min-width:0; }
.editor-card-heading { display:flex; justify-content:space-between; align-items:start; gap:18px; margin-bottom:22px; }.editor-card-heading h3 { margin:4px 0 10px; }.editor-card-heading>span { padding:7px 11px; border-radius:20px; background:#edf4f8; color:#35546d; font-size:.8rem; white-space:nowrap; }
.editor-card code { font-size:.82rem; color:#5c7184; overflow-wrap:anywhere; }.editor-card label,.editor-toolbar label { display:block; font-weight:600; font-size:.9rem; margin:20px 0 9px; }
.editor-card input,.editor-card select,.editor-card textarea,.editor-toolbar select { box-sizing:border-box; width:100%; border:1px solid #bdcbd7; border-radius:10px; padding:14px; font:inherit; color:#18324b; background:#fbfcfe; }
.editor-card textarea { resize:vertical; line-height:1.7; min-height:110px; }.editor-card input:focus,.editor-card textarea:focus,.editor-card select:focus { outline:3px solid #c8e5f5; border-color:#487896; }
.editor-card footer { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-top:18px; }.editor-card small { display:block; color:#657789; line-height:1.6; }.editor-card fieldset { border:0; margin:0; padding:0; min-width:0; }
.editor-notice { padding:20px 24px; border:1px solid #b9dccf; border-radius:12px; background:#edf8f3; color:#225b44; margin:20px auto; overflow-wrap:anywhere; }
.marketing-layout { display:grid; grid-template-columns:minmax(0,1.8fr) minmax(250px,1fr); align-items:start; gap:28px; }.marketing-guide { background:#eef4f8; }.marketing-guide dt { font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; margin-top:24px; color:#63788a; }.marketing-guide dd { margin:8px 0; }
.template-upload { margin:30px 0; padding:24px; border:2px dashed #b8cad7; border-radius:16px; background:#f6f9fc; }.template-upload input { padding:10px; }.marketing-summary { display:grid; grid-template-columns:100px minmax(0,1fr); gap:12px; }.marketing-summary dd { margin:0; overflow-wrap:anywhere; }
.budget-warning { border-left:4px solid #b47b24; padding:18px; margin:20px 0; border-radius:8px; background:#fff5e3; color:#654619; line-height:1.65; }.budget-confirm { display:flex; gap:12px; align-items:start; margin:22px 0; }.budget-confirm input { width:auto; margin-top:5px; }
.public-document { max-width:960px; margin:auto; }.document-copy { white-space:pre-wrap; line-height:1.9; overflow-wrap:anywhere; font-size:1.05rem; }.editor-workspace progress { width:100%; height:14px; accent-color:#285e7f; }
@media(max-width:800px) { .management-hero-with-tools { padding-right:6%; }.management-hero-tools { position:static; width:100%; margin:0 0 32px; grid-template-columns:1fr 1fr; }.management-hero-tools a { padding:20px; }.marketing-layout { grid-template-columns:1fr; }.editor-toolbar,.editor-card footer { align-items:stretch; flex-direction:column; }.editor-card-heading { flex-wrap:wrap; } }
@media(max-width:480px) { .management-hero-tools { grid-template-columns:1fr; }.editor-workspace { padding:32px 18px 60px; }.marketing-summary { grid-template-columns:1fr; gap:5px; }.marketing-summary dd { margin-bottom:12px; } }
