:root {
    --bg: #0b0b0c;
    --bg-soft: #131416;
    --panel: #17191c;
    --line: rgba(255, 255, 255, 0.12);
    --text: #ececec;
    --muted: #909399;
    --gold: #d7b36e;
    --gold-soft: #f0d08f;
    --container: min(1160px, calc(100% - 56px));
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --reveal-duration: 860ms;
    --reveal-distance: 22px;
    --reveal-scale-start: 0.992;
}

* {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    visibility: hidden;
    cursor: default;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background:
        radial-gradient(
            circle at 12% 2%,
            rgba(215, 179, 110, 0.1),
            transparent 22%
        ),
        linear-gradient(180deg, #090a0b 0%, #0f1114 50%, #0d0f12 100%);
}

input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body.fonts-ready {
    visibility: visible;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
    pointer-events: none;
    z-index: -2;
}

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

a,
button,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
}

.br-mobile {
    display: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 10px;
    z-index: 30;
    padding: 12px 0;
    border: 0 !important;
    outline: 0;
    box-shadow: none;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 2px;
    border: 1px solid transparent !important;
    border-radius: 12px;
    outline: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: blur(0);
    transition:
        background-color 420ms ease,
        backdrop-filter 420ms ease,
        border-color 420ms ease,
        box-shadow 420ms ease,
        padding 420ms ease;
}

.site-header.scrolled .nav-wrap {
    border-color: rgba(215, 179, 110, 0.3) !important;
    background: rgba(10, 12, 16, 0.56);
    backdrop-filter: blur(14px);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.38),
        0 6px 14px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(215, 179, 110, 0.1);
    padding: 10px 10px;
}

.site-header.scrolled.nav-pulse .nav-wrap {
    animation: glassBorderPulse 1850ms cubic-bezier(0.22, 1, 0.36, 1) 1 both !important;
    will-change: border-color, box-shadow, background-color;
}

@keyframes glassBorderPulse {
    0% {
        border-color: rgba(215, 179, 110, 0.3);
        background: rgba(10, 12, 16, 0.56);
        box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.33),
            0 6px 12px rgba(0, 0, 0, 0.18),
            0 0 0 1px rgba(215, 179, 110, 0.1);
    }
    52% {
        border-color: rgba(255, 233, 186, 1);
        background: rgba(20, 17, 12, 0.66);
        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(246, 221, 176, 0.28),
            0 0 14px rgba(215, 179, 110, 0.34),
            0 0 24px rgba(215, 179, 110, 0.14);
    }
    100% {
        border-color: rgba(215, 179, 110, 0.3);
        background: rgba(10, 12, 16, 0.56);
        box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.38),
            0 6px 14px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(215, 179, 110, 0.1);
    }
}

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

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

.brand-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff2ca, #d7b36e);
    box-shadow: 0 0 14px rgba(215, 179, 110, 0.6);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.04;
}

.brand-text strong {
    font-size: 0.92rem;
}

.brand-text small {
    color: #a6a9af;
    font-size: 0.7rem;
}

.site-nav {
    display: flex;
    gap: 24px;
}

.site-nav a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b6bac0;
    transition:
        color 220ms ease,
        text-shadow 220ms ease;
}

.site-nav a:hover {
    color: var(--gold-soft);
    text-shadow: 0 0 10px rgba(215, 179, 110, 0.55);
}

.nav-toggle {
    display: none;
}

.mobile-nav-cta {
    display: none;
}

.header-contact-actions {
    display: none;
}

.nav-cta {
    border-radius: 999px;
    border: 1px solid rgba(215, 179, 110, 0.48);
    color: var(--gold-soft);
    padding: 10px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        background-color 180ms ease;
}

.nav-cta:hover {
    color: #f6ddb0;
    border-color: rgba(215, 179, 110, 0.9);
    background: rgba(215, 179, 110, 0.08);
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.2),
        0 0 16px rgba(215, 179, 110, 0.28);
    transform: none;
}

.nav-cta:active {
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.18),
        0 0 9px rgba(215, 179, 110, 0.22);
}

.nav-cta:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(215, 179, 110, 0.32),
        0 0 0 6px rgba(215, 179, 110, 0.12);
}

.hero {
    padding: 8px 0 0;
    min-height: 100svh;
}

.hero-frame {
    width: var(--container);
    margin: 0 auto;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero-grid {
    min-height: clamp(620px, calc(100svh - 92px), 960px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 56px;
    align-items: center;
    padding: 48px 0 34px 48px;
}

.hero-copy {
    max-width: 520px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-kicker span {
    width: 44px;
    height: 1px;
    background: rgba(215, 179, 110, 0.76);
}

.hero-kicker p {
    margin: 0;
    color: #e5c98f;
    font-family: "Dancing Script", cursive;
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    letter-spacing: 0.01em;
    line-height: 1.05;
    text-transform: none;
}

.hero-copy h1 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.85rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero-copy > p {
    margin: 20px 0 0;
    max-width: 460px;
    line-height: 1.7;
    color: var(--muted);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(215, 179, 110, 0.62);
    background: rgba(215, 179, 110, 0.12);
    color: #f2d79f;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-meta {
    margin-top: 16px;
    max-width: 460px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.hero-meta-mobile {
    display: none;
}

.hero-meta .hero-actions {
    margin-top: 0;
    display: flex;
    align-items: center;
}

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

.button {
    min-height: 50px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        background-color 180ms ease;
}

.button-ghost {
    border: 1px solid rgba(215, 179, 110, 0.48);
    color: var(--gold-soft);
    background: rgba(0, 0, 0, 0.22);
}

.button-primary {
    color: #101214;
    background: linear-gradient(135deg, #f3d595, #d7b36e);
    border: 1px solid rgba(215, 179, 110, 0.6);
}

.button-ghost-dark {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d8dbdf;
    background: rgba(255, 255, 255, 0.04);
}

.button:hover {
    transform: translateY(6px);
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.2),
        0 0 16px rgba(215, 179, 110, 0.28);
}

.button:active {
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.18),
        0 0 9px rgba(215, 179, 110, 0.22);
}

.button:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(215, 179, 110, 0.32),
        0 0 0 6px rgba(215, 179, 110, 0.12);
}

.button-ghost:hover {
    color: #f6ddb0;
    border-color: rgba(215, 179, 110, 0.9);
    background: rgba(215, 179, 110, 0.08);
}

.button-primary:hover {
    color: #101214;
    border-color: rgba(215, 179, 110, 0.9);
    background: linear-gradient(135deg, #f6dfb0, #e0bc75);
}

.button-ghost-dark:hover {
    color: #f6ddb0;
    border-color: rgba(215, 179, 110, 0.7);
    background: rgba(215, 179, 110, 0.08);
}

.hero-arrow-btn {
    min-height: 34px;
    width: 42px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(215, 179, 110, 0.48);
    color: var(--gold-soft);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        background-color 180ms ease;
}

.hero-arrow-btn:hover {
    transform: none;
    color: #f6ddb0;
    border-color: rgba(215, 179, 110, 0.9);
    background: rgba(215, 179, 110, 0.08);
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.2),
        0 0 16px rgba(215, 179, 110, 0.28);
}

.hero-arrow-btn:active {
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.18),
        0 0 9px rgba(215, 179, 110, 0.22);
}

.hero-arrow-btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(215, 179, 110, 0.32),
        0 0 0 6px rgba(215, 179, 110, 0.12);
}

.hero-arrow-btn .arrow-icon {
    display: block;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.18));
    fill: none;
    position: relative;
    will-change: transform;
    animation: arrowDownUp 2.4s ease-in-out infinite !important;
}

@keyframes arrowDownUp {
    0%,
    100% {
        transform: translate3d(0, -2px, 0);
    }
    50% {
        transform: translate3d(0, 2px, 0);
    }
}

.hero-visual {
    display: grid;
    justify-items: end;
    justify-self: end;
    width: 100%;
    padding-right: 0;
}

.hero-visual-media {
    --visual-shift-x: clamp(6px, 2vw, 24px);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.55));
    transform: translateX(var(--visual-shift-x)) translateY(6px) scale(1.24);
    margin-right: 0;
    display: block;
    border-radius: 0;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.section {
    padding: 92px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
}

.section h2 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.06;
}

.section-head {
    max-width: 760px;
}

.section-services .section-head {
    max-width: 920px;
}

.section-services .section-head h2 {
    font-size: clamp(1.9rem, 2.7vw, 2.7rem);
    line-height: 1.08;
    text-wrap: balance;
}

.section-services,
.section-process,
.section-about,
.section-contact {
    background: transparent;
}

.services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card,
.about-card,
.about-points article,
.process-steps article,
.contact-card {
    background: linear-gradient(
        145deg,
        rgba(26, 28, 33, 0.95),
        rgba(18, 20, 24, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    transition:
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    border-color: rgba(246, 221, 176, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(215, 179, 110, 0.2),
        0 0 18px rgba(215, 179, 110, 0.3);
}

.service-icon {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(215, 179, 110, 0.45);
    background: linear-gradient(
        145deg,
        rgba(215, 179, 110, 0.16),
        rgba(255, 255, 255, 0.03)
    );
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.06),
        0 8px 18px rgba(0, 0, 0, 0.26);
    flex: 0 0 40px;
}

.service-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: rgba(247, 250, 255, 0.94);
    stroke-width: 2.05;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.18));
}

.service-icon img {
    width: 21px;
    height: 21px;
    object-fit: contain;
    opacity: 0.95;
}

.service-icon .icon-white {
    stroke: rgba(247, 250, 255, 0.94);
}

.service-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.service-card h3 {
    margin: 0;
    font-size: 1.08rem;
}

.service-card p {
    margin-top: 0;
}

.service-card p,
.process-copy p,
.about-card p,
.about-points p,
.contact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-services .service-card.reveal {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.992);
    transition:
        opacity 1720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1720ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-services .service-card.reveal.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.section-services .service-card.service-glow {
    animation: processCardGlowPulse 980ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.process-grid,
.about-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.section-process .process-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: start;
}

.section-process .process-copy {
    max-width: 540px;
}

.section-process .eyebrow {
    color: var(--gold-soft);
}

.section-process .process-copy h2 {
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.process-logo {
    display: block;
    margin-top: 16px;
    margin-bottom: 0;
    width: clamp(180px, 38vw, 260px);
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.section-process .process-copy p {
    margin-top: 12px;
    max-width: 48ch;
}

.process-steps,
.about-points {
    display: grid;
    gap: 14px;
}

.section-process .process-steps {
    --process-progress: 0;
    --timeline-inset: 26px;
    --timeline-axis: 8.5px;
    --timeline-dot-size: 9px;
    position: relative;
    gap: 16px;
    padding-left: var(--timeline-inset);
}

.section-process .process-steps::before {
    content: "";
    position: absolute;
    left: calc(var(--timeline-axis) - 0.5px);
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(215, 179, 110, 0.5) 0%,
        rgba(215, 179, 110, 0.12) 100%
    );
    transform-origin: top;
    transform: scaleY(var(--process-progress));
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-steps article,
.about-points article {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.section-process .process-steps article {
    position: relative;
    padding: 20px 22px;
    border-color: rgba(215, 179, 110, 0.18);
    background: linear-gradient(
        145deg,
        rgba(28, 30, 36, 0.97),
        rgba(18, 20, 26, 0.96)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 22px rgba(0, 0, 0, 0.24);
    transition:
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-process .process-steps article.reveal {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.992);
    transition:
        opacity 1720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 1720ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-process .process-steps article.reveal.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.section-process .process-steps article.process-glow {
    animation: processCardGlowPulse 980ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

@keyframes processCardGlowPulse {
    0% {
        border-color: rgba(246, 221, 176, 0.9);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 10px 22px rgba(0, 0, 0, 0.24),
            0 0 0 1px rgba(246, 221, 176, 0.34),
            0 0 18px rgba(215, 179, 110, 0.34);
    }
    42% {
        border-color: rgba(236, 206, 151, 0.72);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 10px 22px rgba(0, 0, 0, 0.24),
            0 0 0 1px rgba(215, 179, 110, 0.22),
            0 0 10px rgba(215, 179, 110, 0.22);
    }
    100% {
        border-color: rgba(215, 179, 110, 0.18);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 10px 22px rgba(0, 0, 0, 0.24);
    }
}

.section-process .process-steps article:hover {
    border-color: rgba(246, 221, 176, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(215, 179, 110, 0.2),
        0 0 18px rgba(215, 179, 110, 0.3);
}

.section-process .process-steps article::before {
    content: "";
    position: absolute;
    left: calc(
        (var(--timeline-axis) - (var(--timeline-dot-size) / 2)) -
            var(--timeline-inset)
    );
    top: 24px;
    width: var(--timeline-dot-size);
    height: var(--timeline-dot-size);
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f6dfb0, #d7b36e);
    box-shadow: 0 0 0 3px rgba(215, 179, 110, 0.14);
    opacity: 0.25;
    transform: scale(0.65);
    transition:
        opacity 380ms ease,
        transform 380ms ease,
        box-shadow 380ms ease;
}

.section-process .process-steps article.step-visible::before {
    opacity: 1;
    transform: scale(1);
    box-shadow:
        0 0 0 3px rgba(215, 179, 110, 0.14),
        0 0 12px rgba(215, 179, 110, 0.45);
}

.process-steps small {
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 700;
}

.process-steps h3,
.about-points h3 {
    margin: 9px 0 7px;
}

.section-about .about-points article {
    transition:
        border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-about .about-points article:hover {
    border-color: rgba(246, 221, 176, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(215, 179, 110, 0.2),
        0 0 18px rgba(215, 179, 110, 0.3);
}

.section-process .process-steps h3 {
    margin-top: 6px;
}

.about-card {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.section-about .eyebrow {
    color: var(--gold-soft);
    text-shadow: 0 0 10px rgba(215, 179, 110, 0.2);
}

.about-mobile-eyebrow {
    display: none;
}

.contact-mobile-eyebrow {
    display: none;
}

.section-about .about-card {
    position: relative;
    isolation: isolate;
    border-color: rgba(215, 179, 110, 0.34);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.section-about .about-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 237, 198, 0.96);
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0.48),
        0 0 70px rgba(215, 179, 110, 0.92);
    opacity: 0;
    pointer-events: none;
}

.section-about .about-card h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 2.6vw, 2.7rem);
    line-height: 1.08;
    text-wrap: balance;
}

.section-about .about-card.reveal-visible {
    animation: none;
}

.section-about .about-card.reveal-visible::after {
    animation: aboutCardGlowFade 2550ms linear 1 both;
}

@keyframes aboutCardGlowFade {
    0% {
        opacity: 0;
    }
    16% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.section-contact {
    padding-top: 20px;
    padding-bottom: 110px;
}

.section-contact .eyebrow {
    color: var(--gold-soft);
}

.contact-card {
    padding: 36px;
    border-radius: 26px;
}

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

.contact-panel {
    background: linear-gradient(
        145deg,
        rgba(26, 28, 33, 0.95),
        rgba(18, 20, 24, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    padding: 34px;
}

.contact-panel-main h2 {
    margin-bottom: 8px;
    font-size: clamp(1.85rem, 2.3vw, 2.55rem);
    line-height: 1.12;
    text-wrap: balance;
}

.contact-panel-main p {
    color: var(--muted);
}

.contact-panel-main {
    display: grid;
    align-content: start;
}

.contact-panel-main__art {
    margin: 26px auto 0;
    width: min(100%, 80px);
}

.contact-panel-main__art img {
    display: block;
    width: 100%;
    height: auto;
}

.contact-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-panel-side {
    border-color: rgba(215, 179, 110, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-side-title {
    margin: 0 0 12px;
    color: var(--gold-soft);
    letter-spacing: 0.12em;
    font-size: 0.66rem;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-channels {
    display: grid;
    gap: 10px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid rgba(215, 179, 110, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.01);
    transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 260ms ease;
}

.contact-channel:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 221, 176, 0.8);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.24),
        0 0 14px rgba(215, 179, 110, 0.22);
}

.contact-channel svg,
.contact-channel img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.contact-channel img {
    object-fit: contain;
    opacity: 0.95;
}

.contact-channel__content {
    display: grid;
    gap: 2px;
    width: 100%;
}

.contact-channel__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    order: 1;
}

.contact-channel__label-text {
    color: #a9adb3;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-channel__value {
    order: 2;
    color: #eef1f6;
    font-size: 0.88rem;
    font-weight: 600;
}

.contact-channel__value .text-gold {
    color: var(--gold-soft);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
}

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

.social-title {
    margin-top: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 11px;
    border: 1px solid rgba(215, 179, 110, 0.28);
    background: rgba(255, 255, 255, 0.02);
    transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 260ms ease;
}

.social-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 221, 176, 0.85);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.22),
        0 0 12px rgba(215, 179, 110, 0.24);
}

.social-links svg,
.social-links img {
    width: 16px;
    height: 16px;
}

.social-links img {
    object-fit: contain;
    opacity: 0.95;
}

.site-footer {
    padding: 16px 0 0;
}

.footer-minimal {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    border: 1px solid rgba(215, 179, 110, 0.3);
    border-bottom: 0;
    border-radius: 12px;
    background: rgba(10, 12, 16, 0.56);
    backdrop-filter: blur(14px);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.34),
        0 6px 14px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(215, 179, 110, 0.1);
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        background-color 320ms ease;
    isolation: isolate;
}

.footer-minimal::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(246, 221, 176, 0);
    border-bottom: 0;
    box-shadow:
        0 0 0 1px rgba(215, 179, 110, 0),
        0 0 0 rgba(215, 179, 110, 0);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.footer-minimal.is-at-bottom {
    animation: none;
}

.footer-minimal.is-at-bottom::before {
    animation: footerEdgeGlowFade 1900ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

@keyframes footerEdgeGlowFade {
    0% {
        opacity: 0;
        border-color: rgba(215, 179, 110, 0);
        box-shadow:
            0 0 0 1px rgba(215, 179, 110, 0),
            0 0 0 rgba(215, 179, 110, 0);
    }
    28% {
        opacity: 1;
        border-color: rgba(246, 221, 176, 0.98);
        box-shadow:
            0 0 0 1px rgba(215, 179, 110, 0.38),
            0 0 30px rgba(215, 179, 110, 0.52);
    }
    58% {
        opacity: 1;
        border-color: rgba(236, 205, 142, 0.74);
        box-shadow:
            0 0 0 1px rgba(215, 179, 110, 0.25),
            0 0 16px rgba(215, 179, 110, 0.28);
    }
    100% {
        opacity: 0;
        border-color: rgba(215, 179, 110, 0);
        box-shadow:
            0 0 0 1px rgba(215, 179, 110, 0),
            0 0 0 rgba(215, 179, 110, 0);
    }
}

.footer-trademark {
    margin: 0;
    color: #9ba0a7;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.footer-policy-link {
    position: relative;
    display: inline-block;
    font-size: 0.76rem;
    color: var(--gold-soft);
    letter-spacing: 0.04em;
    padding-bottom: 2px;
}

.footer-policy-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(215, 179, 110, 0.2),
        rgba(246, 221, 176, 0.95),
        rgba(215, 179, 110, 0.2)
    );
    transform-origin: left center;
    transform: scaleX(0.88);
    transition:
        transform 220ms ease,
        opacity 220ms ease;
    opacity: 0.9;
}

.footer-policy-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.privacy-page {
    min-height: 100vh;
}

.privacy-shell {
    padding: 20px 0 32px;
}

.privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 2px;
}

.privacy-back {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b6bac0;
    transition: color 220ms ease;
}

.privacy-back:hover {
    color: var(--gold-soft);
}

.privacy-card {
    margin-top: 12px;
    padding: 22px 22px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(215, 179, 110, 0.26);
    background: linear-gradient(
        145deg,
        rgba(26, 28, 33, 0.95),
        rgba(18, 20, 24, 0.95)
    );
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(215, 179, 110, 0.1);
}

.privacy-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.1rem);
    line-height: 1.1;
}

.privacy-title svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--gold-soft);
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.privacy-note {
    margin: 0 0 16px;
    color: #a9adb3;
    font-size: 0.86rem;
}

.privacy-card h2 {
    margin: 18px 0 8px;
    font-size: 1rem;
    font-family: "Outfit", sans-serif;
}

.privacy-card p,
.privacy-card li {
    color: #c3c7ce;
    line-height: 1.66;
    font-size: 0.9rem;
}

.privacy-card a {
    color: var(--gold-soft);
}

.privacy-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0)
        scale(var(--reveal-scale-start));
    transition:
        opacity var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1),
        transform var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

body:not(.loaded) .brand,
body:not(.loaded) .site-nav,
body:not(.loaded) .nav-cta,
body:not(.loaded) .hero-kicker,
body:not(.loaded) .hero-copy h1,
body:not(.loaded) .hero-copy > p,
body:not(.loaded) .hero-actions {
    opacity: 1;
    transform: none;
}

body:not(.loaded) .hero-copy,
body:not(.loaded) .hero-visual {
    opacity: 1;
    transform: none;
}

body:not(.loaded) .hero-visual-media {
    opacity: 1;
    transform: translateX(var(--visual-shift-x)) translateY(6px) scale(1.24);
    filter: contrast(1.04) saturate(0.94)
        drop-shadow(0 20px 28px rgba(0, 0, 0, 0.35));
    margin-right: 0;
}

body.loaded .brand {
    animation: none;
}

body.loaded .site-nav {
    animation: none;
}

body.loaded .nav-cta {
    animation: none;
}

body.loaded .hero-kicker {
    animation: none;
}

body.loaded .hero-copy h1 {
    animation: none;
}

body.loaded .hero-copy > p {
    animation: none;
}

body.loaded .hero-actions {
    animation: none;
}

body.loaded .hero-visual-media {
    animation: none;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealVisual {
    from {
        opacity: 0;
        transform: translateX(var(--visual-shift-x)) translateY(-10px)
            scale(1.02);
        filter: blur(1.5px) drop-shadow(0 22px 26px rgba(0, 0, 0, 0.45));
    }
    to {
        opacity: 1;
        transform: translateX(var(--visual-shift-x)) translateY(-26px)
            scale(1.08);
        filter: blur(0) drop-shadow(0 26px 30px rgba(0, 0, 0, 0.55));
    }
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --reveal-duration: 860ms;
        --reveal-distance: 22px;
        --reveal-scale-start: 1;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 0 !important;
        transform: translate3d(0, var(--reveal-distance), 0)
            scale(var(--reveal-scale-start)) !important;
    }

    .reveal-visible {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
    }
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: calc(100svh - 100px);
        gap: 30px;
        padding: 46px 30px 30px;
    }

    .hero-copy,
    .hero-copy > p {
        max-width: none;
    }

    .hero-meta {
        max-width: none;
    }

    .hero-visual-media {
        width: min(340px, 85%);
        height: auto;
        transform: translateX(0) translateY(0) scale(1);
        margin-right: 0;
    }

    .hero-visual {
        justify-items: center;
    }

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

    .process-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .section-process .process-copy {
        order: 1;
        text-align: center;
        display: grid;
        justify-items: center;
        gap: 14px;
    }

    .section-process .process-steps {
        order: 2;
    }

    .section-process .process-copy .eyebrow,
    .section-process .process-copy h2,
    .section-process .process-copy p {
        margin: 0;
    }

    .section-process .process-copy p {
        max-width: 36ch;
    }

    .section-process .process-copy .process-logo {
        margin-top: 4px;
        width: clamp(168px, 46vw, 220px);
    }

    .section-process .process-copy {
        max-width: none;
    }

    .section-process .process-steps {
        --timeline-inset: 20px;
    }

    .privacy-card {
        padding: 20px;
    }
}

@media (max-width: 840px) {
    body {
        background:
            radial-gradient(
                circle at 10% 1.5%,
                rgba(215, 179, 110, 0.065),
                transparent 14%
            ),
            linear-gradient(180deg, #090a0b 0%, #0f1114 50%, #0d0f12 100%);
    }

    .site-header {
        top: 4px;
        padding: 8px 0;
    }

    .section-process .process-copy {
        transform: translateY(-52px);
    }

    .nav-wrap {
        position: relative;
        width: 100%;
        margin-inline: auto;
        border-radius: 14px;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 8px 10px;
        transition:
            width 520ms cubic-bezier(0.22, 1, 0.36, 1),
            background-color 420ms ease,
            backdrop-filter 420ms ease,
            border-color 420ms ease,
            box-shadow 420ms ease,
            padding 420ms ease;
    }

    .site-header.scrolled .nav-wrap {
        width: 85.5%;
        padding: 8px 10px;
    }

    .header-contact-actions {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 2;
    }

    .header-contact-actions a {
        width: 38px;
        height: 38px;
        display: inline-grid;
        place-items: center;
        border-radius: 10px;
        border: 1px solid rgba(215, 179, 110, 0.4);
        background: rgba(255, 255, 255, 0.03);
        transition:
            border-color 180ms ease,
            box-shadow 180ms ease,
            background-color 180ms ease;
    }

    .header-contact-actions a.contact-action-pulse {
        animation: headerContactActionPulse 620ms cubic-bezier(0.22, 1, 0.36, 1)
            1 both;
        will-change: transform, border-color, box-shadow, background-color;
    }

    .header-contact-actions a:hover {
        border-color: rgba(246, 221, 176, 0.88);
        background: rgba(215, 179, 110, 0.08);
        box-shadow:
            0 0 0 1px rgba(215, 179, 110, 0.18),
            0 0 10px rgba(215, 179, 110, 0.2);
    }

    .header-contact-actions img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    @keyframes headerContactActionPulse {
        0% {
            transform: scale(1);
            border-color: rgba(215, 179, 110, 0.4);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: none;
        }
        40% {
            transform: scale(1.08);
            border-color: rgba(246, 221, 176, 0.92);
            background: rgba(215, 179, 110, 0.11);
            box-shadow:
                0 0 0 1px rgba(215, 179, 110, 0.2),
                0 0 14px rgba(215, 179, 110, 0.28);
        }
        100% {
            transform: scale(1);
            border-color: rgba(215, 179, 110, 0.4);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: none;
        }
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        display: grid;
        gap: 8px;
        width: auto;
        padding: 12px;
        border: 1px solid rgba(215, 179, 110, 0.34);
        border-radius: 14px;
        background:
            linear-gradient(
                165deg,
                rgba(255, 255, 255, 0.04) 0%,
                rgba(255, 255, 255, 0.008) 24%,
                rgba(6, 8, 12, 0.985) 72%,
                rgba(3, 5, 8, 0.995) 100%
            ),
            linear-gradient(180deg, rgba(5, 7, 10, 0.985), rgba(3, 5, 8, 0.995));
        backdrop-filter: blur(14px);
        box-shadow:
            0 20px 36px rgba(0, 0, 0, 0.56),
            0 0 0 1px rgba(215, 179, 110, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
        overflow: hidden;
        isolation: isolate;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top center;
        transition:
            opacity 220ms ease,
            transform 220ms ease;
        z-index: 35;
    }

    .site-nav::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 40%;
        background: linear-gradient(
            180deg,
            rgba(246, 221, 176, 0.08),
            rgba(246, 221, 176, 0)
        );
        pointer-events: none;
        z-index: 0;
    }

    .site-header.menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .site-nav a {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(3, 5, 8, 0.48);
        border: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .site-nav a:hover {
        background: rgba(215, 179, 110, 0.1);
        border-color: rgba(215, 179, 110, 0.46);
        text-shadow: none;
    }

    .site-nav a.nav-link-flash {
        animation: mobileNavLinkFlash 260ms ease forwards;
    }

    @keyframes mobileNavLinkFlash {
        0% {
            border-color: rgba(255, 255, 255, 0.06);
            box-shadow: none;
            background: rgba(3, 5, 8, 0.48);
        }
        55% {
            border-color: rgba(246, 221, 176, 0.95);
            box-shadow:
                0 0 0 1px rgba(215, 179, 110, 0.28),
                0 0 16px rgba(215, 179, 110, 0.32);
            background: rgba(215, 179, 110, 0.16);
        }
        100% {
            border-color: rgba(215, 179, 110, 0.46);
            box-shadow:
                0 0 0 1px rgba(215, 179, 110, 0.2),
                0 0 10px rgba(215, 179, 110, 0.18);
            background: rgba(215, 179, 110, 0.1);
        }
    }

    .mobile-nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        border-radius: 999px;
        border: 1px solid rgba(215, 179, 110, 0.56) !important;
        color: var(--gold-soft) !important;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-size: 0.76rem !important;
        font-weight: 600;
        background: rgba(215, 179, 110, 0.08) !important;
    }

    .nav-toggle {
        position: relative;
        width: 40px;
        height: 40px;
        margin-left: auto;
        display: inline-grid;
        place-items: center;
        border-radius: 10px;
        border: 1px solid rgba(215, 179, 110, 0.45);
        background: rgba(255, 255, 255, 0.03);
        box-shadow: 0 0 0 1px rgba(215, 179, 110, 0.08);
        color: var(--gold-soft);
        cursor: pointer;
        transition:
            border-color 180ms ease,
            box-shadow 180ms ease,
            background-color 180ms ease;
    }

    .nav-toggle:hover {
        border-color: rgba(215, 179, 110, 0.85);
        background: rgba(215, 179, 110, 0.08);
    }

    .nav-toggle:focus-visible {
        outline: none;
        box-shadow:
            0 0 0 2px rgba(215, 179, 110, 0.3),
            0 0 0 6px rgba(215, 179, 110, 0.12);
    }

    .nav-toggle img {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 17px;
        height: 17px;
        margin: 0;
        display: block;
        object-fit: contain;
        object-position: center;
        opacity: 0.96;
        transform: translate(-50%, -50%);
        transform-origin: center;
        backface-visibility: hidden;
        transition:
            transform 180ms ease,
            opacity 180ms ease;
    }

    .site-header.menu-open .nav-toggle img {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 1;
    }

    .site-header .nav-cta {
        display: none;
    }

    .brand-logo {
        height: 38px;
    }

    .section {
        padding: 68px 0;
    }

    .section h2 {
        font-size: clamp(1.65rem, 6.8vw, 2.25rem);
        line-height: 1.12;
    }

    .section-services .section-head h2 br {
        display: none;
    }

    .section-services .section-head {
        text-align: center;
        margin-inline: auto;
    }

    .section-services .section-head .eyebrow,
    .section-services .section-head h2 {
        transform: translateY(-26px);
    }

    .section-process .eyebrow,
    .section-services .section-head .eyebrow,
    .section-about .about-card .eyebrow,
    .section-about .about-mobile-eyebrow,
    .section-contact .contact-mobile-eyebrow {
        font-size: 0.88rem;
        letter-spacing: 0.16em;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--gold-soft);
    }

    .section-services .service-card {
        text-align: center;
        padding: 17px;
        width: 90%;
        margin-inline: auto;
    }

    .section-services .service-heading {
        justify-content: center;
        margin-bottom: 6px;
        gap: 8px;
    }

    .section-services .service-card p {
        text-align: center;
        font-size: 0.88rem;
        line-height: 1.58;
    }

    .section-services .service-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .section-services .service-icon img,
    .section-services .service-icon svg {
        width: 18px;
        height: 18px;
    }

    .section-services .service-card h3 {
        font-size: 0.98rem;
    }

    .section-services .service-card--accounting,
    .section-services .service-card--accounting p {
        text-align: center;
    }

    .section-services .service-card--accounting .service-heading {
        justify-content: center;
    }

    .section-services .service-card--accounting h3 {
        font-size: 0.98rem;
    }

    .hero {
        padding-top: 2px;
    }

    .hero-grid {
        min-height: calc(100svh - 88px);
        gap: 20px;
        padding: 20px 8px 8px;
    }

    .hero-copy {
        display: grid;
        justify-items: center;
        text-align: center;
        gap: 16px;
        transform: translateY(-18px);
    }

    .hero-kicker {
        margin-bottom: 0;
        justify-content: center;
    }

    .hero-copy h1 {
        font-size: clamp(1.62rem, 6.8vw, 2.2rem);
        line-height: 1.18;
        max-width: 17ch;
    }

    .hero-copy > p {
        margin-top: 0;
        line-height: 1.62;
        max-width: 34ch;
    }

    .hero-copy .br-mobile {
        display: inline;
    }

    .hero-copy .br-desktop {
        display: none;
    }

    .hero-meta {
        margin-top: 0;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-copy .hero-meta {
        display: none;
    }

    .hero-visual {
        order: 2;
        margin-top: -10px;
    }

    .hero-meta-mobile {
        display: flex;
        order: 3;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: -2px;
    }

    .hero-badge {
        font-size: 0.68rem;
    }

    .hero-visual-media {
        width: min(360px, 94%);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .service-card {
        padding: 20px;
    }

    .process-grid,
    .about-grid,
    .contact-grid {
        gap: 14px;
        margin-top: 18px;
    }

    .section-process .process-copy {
        order: 1;
    }

    .section-process .process-steps {
        order: 2;
    }

    .process-steps article,
    .about-points article,
    .contact-card,
    .contact-panel {
        padding: 20px;
    }

    .section-about .about-card,
    .section-about .about-points article {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-about .about-mobile-eyebrow {
        display: block;
        width: 90%;
        margin: 0 auto -4px;
        text-align: center;
        transform: translateY(-40px);
    }

    .section-about .about-card .eyebrow {
        display: none;
    }

    .section-about .about-card .eyebrow,
    .section-about .about-card h2,
    .section-about .about-card p,
    .section-about .about-points article h3,
    .section-about .about-points article p {
        text-align: center;
    }

    .section-about .about-card h2 {
        font-size: clamp(1.72rem, 6.7vw, 2.12rem);
        line-height: 1.1;
    }

    .section-contact .contact-panel {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .section-contact .contact-mobile-eyebrow {
        display: block;
        width: 90%;
        margin: 0 auto -4px;
        text-align: center;
        transform: translateY(-40px);
    }

    .section-contact .contact-panel-main .eyebrow {
        display: none;
    }

    .section-contact .contact-panel-main,
    .section-contact .contact-panel-main h2,
    .section-contact .contact-panel-main p,
    .section-contact .contact-panel-side,
    .section-contact .contact-side-title,
    .section-contact .social-title,
    .section-contact .contact-channel__content {
        text-align: center;
    }

    .section-contact .contact-panel-main h2 {
        font-size: clamp(1.34rem, 5.6vw, 1.68rem) !important;
        line-height: 1.16;
    }

    .section-contact .contact-panel-main__art {
        width: min(100%, 110px);
        margin-top: 22px;
    }

    .section-contact .contact-side-title {
        margin-left: auto;
        margin-right: auto;
    }

    .section-contact .contact-channels {
        justify-items: center;
    }

    .section-contact .contact-channel {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 12px;
        padding-right: 12px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-contact .contact-channel__content {
        justify-items: center;
        text-align: center;
        gap: 5px;
    }

    .section-contact .contact-channel__value {
        order: 2;
        font-size: 0.95rem;
        line-height: 1.32;
    }

    .section-contact .contact-channel__label {
        order: 1;
        justify-content: center;
        gap: 7px;
    }

    .section-contact .contact-channel__label img {
        width: 18px;
        height: 18px;
    }

    .section-contact .contact-channel__label-text {
        font-size: 0.9rem;
        letter-spacing: 0.01em;
        text-transform: none;
        line-height: 1;
    }

    .section-contact .social-links {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }

    .section-contact .social-links a {
        flex: 0 0 36px;
    }

    .section-process .process-steps {
        --timeline-inset: 16px;
        --mobile-step-card-width: 95%;
        --timeline-line-shift: calc((100% - var(--mobile-step-card-width)) / 2);
        gap: 12px;
    }

    .section-process .process-steps::before {
        left: calc(var(--timeline-axis) - 0.5px + var(--timeline-line-shift));
    }

    .section-process .process-steps article {
        width: var(--mobile-step-card-width);
        margin-left: auto;
        margin-right: auto;
    }

    body:not(.loaded) .site-nav {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    body:not(.loaded) .site-header.menu-open .site-nav {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100% - 20px, 1160px);
    }

    .brand-logo {
        height: 36px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .header-contact-actions {
        gap: 7px;
    }

    .header-contact-actions a {
        width: 36px;
        height: 36px;
    }

    .site-nav {
        padding: 10px;
        gap: 7px;
    }

    .site-nav a {
        font-size: 0.79rem;
        padding: 9px 11px;
    }

    .section {
        padding: 58px 0;
    }

    .hero-grid {
        min-height: calc(100svh - 80px);
        padding: 16px 2px 6px;
        gap: 16px;
    }

    .hero-copy {
        gap: 18px;
    }

    .hero-copy .hero-kicker,
    .hero-copy h1,
    .hero-copy > p,
    .hero-copy .hero-meta {
        position: relative;
        top: 52px;
    }

    .hero-copy h1 {
        font-size: clamp(1.34rem, 7.4vw, 1.74rem);
        line-height: 1.16;
        max-width: 17ch;
    }

    .hero-copy > p {
        font-size: 0.92rem;
        max-width: 32ch;
    }

    .hero-meta {
        align-items: center;
    }

    .button,
    .contact-actions .button {
        width: 100%;
    }

    .hero-meta {
        align-items: center;
    }

    .hero-arrow-btn {
        width: 42px !important;
        min-width: 42px;
        flex: 0 0 42px;
    }

    .service-card {
        padding: 18px;
    }

    .service-card h3 {
        font-size: 0.98rem;
    }

    .service-card p,
    .process-copy p,
    .about-card p,
    .about-points p,
    .contact-card p {
        font-size: 0.9rem;
    }

    .section-contact .contact-panel-main h2 {
        font-size: clamp(1.2rem, 5.9vw, 1.45rem) !important;
        line-height: 1.17;
    }

    .contact-channel__value {
        font-size: 0.83rem;
    }

    .contact-modal__channel strong {
        font-size: 0.95rem;
    }

    .site-footer {
        padding-bottom: 0;
    }

    .footer-minimal {
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
    }

    .footer-trademark {
        text-align: center;
    }
}

@media (max-width: 840px) {
    .contact-modal #contactModalTitle,
    .contact-modal #contactModalTitle + p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-modal #contactModalTitle + p {
        max-width: 34ch;
    }
}

@media (min-width: 841px) {
    .section-services .section-head {
        margin-inline: auto;
        text-align: center;
    }

    .section-services .services-grid {
        align-items: stretch;
    }

    .section-services .service-card {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .section-services .service-heading {
        justify-content: center;
    }

    .section-services .service-card p {
        text-align: center;
    }

    .section-process .process-copy {
        display: grid;
        justify-items: center;
        text-align: center;
        gap: 18px;
        max-width: 560px;
        margin-inline: auto;
    }

    .section-process .process-copy .eyebrow,
    .section-process .process-copy h2,
    .section-process .process-copy p {
        margin: 0;
    }

    .section-process .process-copy p {
        max-width: 34ch;
    }

    .section-process .process-copy .process-logo {
        margin-top: 8px;
        margin-inline: auto;
    }

    .section-about .about-card {
        display: grid;
        align-content: center;
        justify-items: center;
        min-height: 100%;
        text-align: center;
    }

    .section-about .about-card .eyebrow,
    .section-about .about-card h2,
    .section-about .about-card p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-about .about-card p {
        max-width: 40ch;
    }

    .section-about .about-card .eyebrow {
        margin-bottom: 18px;
    }

    .section-about .about-card h2 {
        margin-bottom: 24px;
    }

    .section-about .about-card p {
        margin-top: 0;
    }

    .section-contact .contact-panel-main {
        align-content: center;
        justify-items: center;
        min-height: 100%;
        text-align: center;
    }

    .section-contact .contact-panel-main .eyebrow,
    .section-contact .contact-panel-main h2,
    .section-contact .contact-panel-main p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-contact .contact-panel-main p {
        max-width: 40ch;
    }

    .section-contact .contact-panel-side {
        display: grid;
        align-content: center;
        justify-items: center;
    }

    .section-contact .contact-channels {
        width: min(100%, 500px);
        justify-items: center;
    }

    .section-contact .contact-channel {
        width: 100%;
        justify-content: center;
    }

    .section-contact .contact-channel__content {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-items: center;
    }

    .section-contact .contact-channel__label {
        justify-content: center;
    }

    .section-contact .contact-channel__value {
        text-align: center;
    }

    .section-contact .contact-side-title,
    .section-contact .social-title {
        width: 100%;
        text-align: center;
    }

    .section-contact .social-links {
        justify-content: center;
    }

    .contact-modal__topbar {
        position: relative;
        justify-content: center;
        gap: 10px;
    }

    .contact-modal__topbar .contact-modal__close {
        position: absolute;
        right: 0;
        margin-left: 0;
    }

    .contact-modal #contactModalTitle,
    .contact-modal #contactModalTitle + p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-modal #contactModalTitle + p {
        max-width: 48ch;
    }
}

@media (hover: none) and (pointer: coarse) and (max-width: 840px) {
    .header-contact-actions a:hover {
        border-color: rgba(215, 179, 110, 0.4);
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
    }

    .nav-toggle:hover {
        border-color: rgba(215, 179, 110, 0.45);
        background: rgba(255, 255, 255, 0.03);
    }
}

body.modal-open {
    overflow: hidden;
}

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

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 14, 0.8);
    opacity: 0;
    transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-visible .contact-modal__backdrop {
    opacity: 1;
}

.contact-modal__card {
    position: relative;
    width: min(640px, calc(100vw - 32px));
    border-radius: 26px;
    padding: 30px;
    border: 1px solid rgba(215, 179, 110, 0.34);
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.01) 32%
        ),
        linear-gradient(145deg, rgba(26, 28, 33, 0.97), rgba(18, 20, 24, 0.96));
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(215, 179, 110, 0.16),
        0 0 38px rgba(215, 179, 110, 0.2);
    transform: translateY(24px);
    opacity: 0;
    transition:
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 900ms ease;
    will-change: transform, opacity;
}

.contact-modal.is-open .contact-modal__card {
    transform: translateY(0);
    opacity: 1;
}

.contact-modal.is-closing .contact-modal__backdrop {
    transition-duration: 180ms;
    opacity: 0;
}

.contact-modal.is-closing .contact-modal__card {
    transition-duration: 220ms;
    transform: translateY(8px);
    opacity: 0;
}

.contact-modal__topbar,
.contact-modal h3,
.contact-modal p,
.contact-modal__channels,
.contact-modal__close {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 620ms ease,
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal__topbar {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 240ms;
}

.contact-modal.is-open #contactModalTitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 320ms;
}

.contact-modal.is-open #contactModalTitle + p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 400ms;
}

.contact-modal.is-open .contact-modal__channels {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 500ms;
}

.contact-modal.is-open .contact-modal__close {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 180ms;
}

.contact-modal__close {
    position: static;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    border: 1px solid rgba(215, 179, 110, 0.28);
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-soft);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.contact-modal__close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.contact-modal__close:hover {
    border-color: rgba(235, 87, 87, 0.9);
    color: #ff6b6b;
    box-shadow: 0 0 12px rgba(235, 87, 87, 0.28);
}

.contact-modal__logo {
    height: 44px;
    width: auto;
    margin-bottom: 12px;
}

.contact-modal__topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-modal__topbar .contact-modal__logo {
    margin-bottom: 0;
}

.contact-modal__social--top {
    margin-top: 0;
    margin-left: 0;
}

.contact-modal__topbar .contact-modal__close {
    margin-left: auto;
}

.contact-modal h3 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
    line-height: 1.1;
}

.contact-modal p {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 56ch;
}

.contact-modal #contactModalTitle + p {
    color: var(--gold-soft);
}

.contact-modal__channels {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.contact-modal__channel {
    display: grid;
    justify-items: center;
    row-gap: 4px;
    padding: 11px 12px;
    border: 1px solid rgba(215, 179, 110, 0.24);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 260ms ease;
}

.contact-modal__channel:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 221, 176, 0.88);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.24),
        0 0 14px rgba(215, 179, 110, 0.28);
}

.contact-modal__channel.modal-action-pulse {
    animation: modalActionPulse 620ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
    will-change: transform, border-color, box-shadow, background-color;
}

.section-contact .contact-channel.modal-action-pulse {
    animation: modalActionPulse 620ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
    will-change: transform, border-color, box-shadow, background-color;
}

.contact-modal__channel svg,
.contact-modal__channel img {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

.contact-modal__channel img {
    object-fit: contain;
    opacity: 0.95;
}

.contact-modal__channel-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.contact-modal__channel-label img {
    transform: translateX(-3px);
}

.contact-modal__channel-label span {
    text-align: center;
    color: #a9adb3;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1;
}

.contact-modal__channel strong {
    text-align: center;
    color: #eef1f6;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.32;
}

.contact-modal__channel strong .text-gold {
    color: var(--gold-soft);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
}

.contact-modal__social-label {
    margin-top: 16px;
    color: var(--gold-soft);
    letter-spacing: 0.12em;
    font-size: 0.66rem;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-modal__social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.contact-modal__social a {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    color: rgba(247, 250, 255, 0.94);
    border-radius: 11px;
    border: 1px solid rgba(215, 179, 110, 0.28);
    background: rgba(255, 255, 255, 0.03);
    transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 260ms ease;
}

.contact-modal__social a:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 221, 176, 0.88);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.22),
        0 0 12px rgba(215, 179, 110, 0.24);
}

.contact-modal__social a.modal-action-pulse {
    animation: modalActionPulse 620ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
    will-change: transform, border-color, box-shadow, background-color;
}

.section-contact .social-links a.modal-action-pulse {
    animation: modalActionPulse 620ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
    will-change: transform, border-color, box-shadow, background-color;
}

.contact-modal__social svg,
.contact-modal__social img {
    width: 16px;
    height: 16px;
}

.contact-modal__social a:hover svg {
    color: #ffffff;
}

.contact-modal__social img {
    object-fit: contain;
    opacity: 0.95;
}

.contact-modal__social a:hover img {
    opacity: 1;
}

@keyframes modalActionPulse {
    0% {
        transform: scale(1);
        border-color: rgba(215, 179, 110, 0.24);
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
    }
    40% {
        transform: scale(1.06);
        border-color: rgba(246, 221, 176, 0.92);
        background: rgba(215, 179, 110, 0.11);
        box-shadow:
            0 0 0 1px rgba(215, 179, 110, 0.2),
            0 0 14px rgba(215, 179, 110, 0.28);
    }
    100% {
        transform: scale(1);
        border-color: rgba(215, 179, 110, 0.24);
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
    }
}
