:root {
    --bg: #040807;
    --bg-soft: #08110e;
    --bg-elevated: #0b1512;
    --surface: rgba(10, 16, 14, 0.8);
    --surface-strong: rgba(14, 22, 19, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.025);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 122, 0, 0.2);
    --text: #f5f1ea;
    --text-soft: #b7beb8;
    --text-dim: #89928d;
    --accent: #ff7a00;
    --accent-soft: rgba(255, 122, 0, 0.18);
    --green: #0f3d2e;
    --green-soft: rgba(15, 61, 46, 0.48);
    --white-soft: rgba(255, 255, 255, 0.72);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.42);
    --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.28);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
    --transition: 420ms cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(15, 61, 46, 0.28), transparent 20%),
        radial-gradient(circle at 88% 8%, rgba(255, 122, 0, 0.14), transparent 18%),
        radial-gradient(circle at 85% 80%, rgba(15, 61, 46, 0.16), transparent 24%),
        linear-gradient(180deg, #040807 0%, #020403 100%);
    color: var(--text);
    font: 500 16px/1.75 "Jost", sans-serif;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        radial-gradient(circle at 22% 24%, rgba(255, 122, 0, 0.08), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(15, 61, 46, 0.18), transparent 26%),
        radial-gradient(circle at 50% 68%, rgba(255, 255, 255, 0.025), transparent 28%);
    animation: ambientShift 18s ease-in-out infinite alternate;
}

body::after {
    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: 72px 72px;
    mask-image: radial-gradient(circle at center, #000 45%, transparent 90%);
    opacity: 0.18;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.page-shell {
    position: relative;
    z-index: 1;
}

.page-transition {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255, 122, 0, 0.12), transparent 35%),
        linear-gradient(180deg, rgba(4, 8, 7, 0.08), rgba(4, 8, 7, 0.92));
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 360ms ease, transform 360ms ease;
    z-index: 120;
}

body.is-transitioning .page-transition {
    opacity: 1;
    transform: translateY(0);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 18px 0;
    backdrop-filter: blur(20px);
}

.header-bar,
.interactive-card,
.contact-panel,
.video-card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.header-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(8, 12, 11, 0.82);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #ffb067);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(255, 122, 0, 0.24);
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 1.18rem;
    line-height: 1.08;
}

.brand-copy span {
    color: var(--text-soft);
    font-size: 0.94rem;
    overflow-wrap: anywhere;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.site-nav a {
    position: relative;
    color: var(--text-soft);
    font-weight: 700;
    white-space: nowrap;
    transition: color var(--transition), transform var(--transition);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 22px;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--accent), #ffb067);
    box-shadow: 0 18px 36px rgba(255, 122, 0, 0.22);
}

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

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.hero-grid,
.section-grid,
.proof-grid,
.service-grid,
.skill-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.video-heading h1 {
    margin: 0;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
}

.hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.3rem, 4.5vw, 5rem);
    line-height: 0.98;
    text-wrap: balance;
    background: linear-gradient(180deg, #ffffff 0%, #f5f1ea 58%, #d0d7d3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.section-copy h2,
.section-heading h2,
.video-heading h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.02;
    text-wrap: balance;
}

.hero-lead,
.section-copy p,
.service-card p,
.timeline-item p,
.feature-stack p,
.proof-grid p,
.contact-copy p,
.video-subtitle,
.section-intro,
.hero-metrics span {
    color: var(--text-soft);
    overflow-wrap: anywhere;
}

.hero-lead {
    max-width: 58ch;
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.section-copy p,
.section-intro,
.video-subtitle {
    max-width: 64ch;
}

.section-intro {
    margin: 16px 0 0;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 34px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    transform: translateX(-120%);
    transition: transform 620ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateX(120%);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #ffb067);
    color: #fff;
    box-shadow: 0 16px 36px rgba(255, 122, 0, 0.24);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

.interactive-card,
.hero-metrics > div,
.proof-grid article,
.feature-stack article,
.service-card,
.timeline-item,
.skill-card,
.contact-meta {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(16, 24, 21, 0.92), rgba(11, 18, 16, 0.92));
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.interactive-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -55% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.interactive-card:hover,
.interactive-card:focus-within,
.hero-metrics > div:hover,
.proof-grid article:hover,
.feature-stack article:hover,
.service-card:hover,
.timeline-item:hover,
.skill-card:hover,
.contact-meta:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-xl);
}

.interactive-card:hover::before,
.interactive-card:focus-within::before,
.hero-metrics > div:hover::before,
.proof-grid article:hover::before,
.feature-stack article:hover::before,
.service-card:hover::before,
.timeline-item:hover::before,
.skill-card:hover::before,
.contact-meta:hover::before {
    opacity: 1;
}

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

.hero-metrics strong,
.feature-stack strong,
.timeline-item strong {
    display: block;
    margin-bottom: 8px;
}

.hero-visual {
    position: relative;
    min-height: 700px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.9;
    pointer-events: none;
}

.hero-glow-one {
    width: 210px;
    height: 210px;
    top: 48px;
    left: -28px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.22), transparent 72%);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    right: -20px;
    bottom: 70px;
    background: radial-gradient(circle, rgba(15, 61, 46, 0.42), transparent 72%);
}

.hero-portrait {
    position: relative;
    height: 100%;
    min-height: 700px;
    border-radius: var(--radius-xl);
    padding: 14px;
    background:
        linear-gradient(145deg, rgba(255, 122, 0, 0.12), rgba(15, 61, 46, 0.18)),
        rgba(12, 18, 16, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 122, 0, 0.12);
    pointer-events: none;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    min-height: 670px;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
    background: #0d1211;
}

.floating-card,
.hero-badge {
    position: absolute;
    display: grid;
    gap: 6px;
    max-width: 290px;
    padding: 18px;
    border-radius: 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
}

.floating-card span,
.hero-badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-top {
    top: 38px;
    right: -18px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.96), rgba(255, 176, 103, 0.88));
}

.card-bottom {
    left: -14px;
    bottom: 44px;
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.96), rgba(31, 104, 78, 0.86));
}

.hero-badge {
    right: 26px;
    bottom: 26px;
    max-width: 220px;
    background: rgba(7, 12, 11, 0.82);
}

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

.proof-grid article span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 900;
}

.section-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: start;
}

.section-copy {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.section-copy.narrow {
    max-width: 720px;
}

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

.section-highlight .service-card {
    background: linear-gradient(180deg, rgba(16, 24, 21, 0.92), rgba(8, 15, 13, 0.96));
}

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

.section-heading.compact-center {
    text-align: center;
}

.section-heading.compact-center h2,
.strengths-section .section-heading h2 {
    max-width: 16ch;
    margin-inline: auto;
}

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

.service-card,
.timeline-item {
    padding-top: 28px;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 22px;
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 122, 0, 0.12));
}

.service-card h3,
.timeline-item h3,
.video-card h2 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    line-height: 1.1;
}

.service-card ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: var(--text-soft);
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--green));
}

.timeline-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.timeline-top span {
    color: var(--accent);
    font-weight: 700;
}

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

.skill-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.04rem;
}

.skill-top strong {
    color: var(--accent);
}

.skill-bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.skill-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #ffb067 42%, #1f6a51 100%);
    transform-origin: left center;
    animation: pulseBar 6s ease-in-out infinite;
}

.contact-section {
    padding-bottom: 68px;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: 24px;
    padding: 32px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(15, 61, 46, 0.12)),
        rgba(10, 16, 14, 0.92);
}

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

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

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-row {
    display: grid;
    gap: 16px;
}

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

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

.contact-form label span {
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 10, 9, 0.9);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-dim);
}

.contact-form textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 122, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.08);
    background: rgba(10, 16, 14, 0.98);
}

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

.form-status {
    min-height: 28px;
    font-weight: 600;
}

.form-status.is-pending {
    color: var(--text-soft);
}

.form-status.is-success {
    color: #80f4bc;
}

.form-status.is-error {
    color: #ff9b9b;
}

.contact-meta span {
    display: block;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.video-page {
    min-height: 100vh;
    padding: 34px 0 70px;
}

.video-header {
    margin-bottom: 34px;
}

.video-heading {
    max-width: 780px;
}

.video-subtitle {
    margin-top: 16px;
    font-size: 1.04rem;
}

.video-card {
    padding: 26px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(11, 17, 15, 0.96), rgba(7, 11, 10, 0.98));
}

.video-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.video-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
}

.video-status::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #39d98a;
    box-shadow: 0 0 16px rgba(57, 217, 138, 0.7);
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    filter: blur(8px);
    transition: opacity 900ms ease, transform 900ms cubic-bezier(.22, 1, .36, 1), filter 900ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

[data-parallax-group] {
    transform-style: preserve-3d;
}

[data-parallax-item] {
    will-change: transform;
    transition: transform 260ms ease-out;
}

@keyframes ambientShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.82;
    }
    100% {
        transform: translate3d(0, -18px, 0) scale(1.05);
        opacity: 1;
    }
}

@keyframes pulseBar {
    0%, 100% {
        filter: saturate(1);
    }
    50% {
        filter: saturate(1.18);
    }
}

@keyframes heroTextIn {
    0% {
        opacity: 0;
        transform: translateY(26px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-copy.is-visible .eyebrow,
.hero-copy.is-visible h1,
.hero-copy.is-visible .hero-lead,
.hero-copy.is-visible .hero-actions,
.hero-copy.is-visible .hero-metrics {
    animation: heroTextIn 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-copy.is-visible h1 {
    animation-delay: 60ms;
}

.hero-copy.is-visible .hero-lead {
    animation-delay: 120ms;
}

.hero-copy.is-visible .hero-actions {
    animation-delay: 180ms;
}

.hero-copy.is-visible .hero-metrics {
    animation-delay: 240ms;
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .section-grid,
    .timeline-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .hero-metrics,
    .service-grid,
    .proof-grid,
    .skill-grid,
    .contact-quick-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual,
    .hero-portrait,
    .hero-portrait img {
        min-height: 560px;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px;
        border-radius: 24px;
        background: rgba(8, 12, 11, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-xl);
    }

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

    .site-nav .nav-cta {
        text-align: center;
    }

    .hero-metrics,
    .service-grid,
    .proof-grid,
    .skill-grid,
    .contact-quick-info,
    .form-row.two-col {
        grid-template-columns: 1fr;
    }

    .floating-card,
    .hero-badge {
        position: static;
        max-width: none;
        margin-top: 16px;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-portrait,
    .hero-portrait img {
        min-height: 460px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-header {
        padding-top: 12px;
    }

    .header-bar {
        padding: 12px 14px;
        border-radius: 28px;
    }

    .brand-copy span {
        display: none;
    }

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

    .hero-copy h1,
    .section-copy h2,
    .section-heading h2,
    .video-heading h1 {
        max-width: none;
        font-size: clamp(1.8rem, 8vw, 2.7rem);
        line-height: 1.06;
    }

    .hero-lead {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .hero-actions,
    .form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-portrait,
    .hero-portrait img {
        min-height: 360px;
    }

    .interactive-card,
    .hero-metrics > div,
    .proof-grid article,
    .feature-stack article,
    .service-card,
    .timeline-item,
    .skill-card,
    .contact-panel,
    .video-card,
    .contact-form,
    .contact-meta {
        padding: 18px;
        border-radius: 20px;
    }

    .video-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 460px) {
    .brand {
        gap: 10px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .header-bar {
        padding: 10px 12px;
    }

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

    .hero-portrait,
    .hero-portrait img {
        min-height: 320px;
    }

    .hero-copy h1,
    .section-copy h2,
    .section-heading h2,
    .video-heading h1 {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
        line-height: 1.08;
    }
}
