:root {
    --orange: #f05a22;
    --orange-bright: #ff6a28;
    --orange-soft: #ff8a52;
    --ink: #111111;
    --ink-soft: #171717;
    --ink-raised: #202020;
    --cream: #ffffff;
    --paper: #ffffff;
    --white: #ffffff;
    --grey-100: #eeeeeb;
    --grey-300: #c7c5c0;
    --grey-500: #85827c;
    --grey-700: #4e4b47;
    --line-light: rgba(255, 255, 255, 0.13);
    --line-dark: rgba(17, 17, 17, 0.12);
    --shadow-soft: 0 30px 80px rgba(25, 19, 15, 0.12);
    --shadow-dark: 0 32px 90px rgba(0, 0, 0, 0.42);
    --container: min(1280px, calc(100vw - 80px));
    --header-height: 88px;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-xl: 52px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-snappy: cubic-bezier(.16, 1, .3, 1);
    --font-display: "Space Grotesk", Arial, sans-serif;
    --font-body: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--orange) var(--ink);
    scrollbar-width: thin;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--orange);
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    border: 2px solid var(--ink);
    border-radius: 20px;
    background: var(--orange);
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

.ui-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ui-icon .icon-fill {
    fill: currentColor;
    stroke: none;
}

[hidden] {
    display: none !important;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100000;
    padding: 12px 18px;
    transform: translateY(-150%);
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
    font-weight: 700;
    transition: transform .25s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.section-dark {
    color: var(--white);
    background: var(--ink);
}

.section-light {
    color: var(--ink);
    background: var(--paper);
}

.section-cream {
    color: var(--ink);
    background: var(--cream);
}

.section-orange {
    color: var(--ink);
    background: var(--orange);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: currentColor;
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 18px color-mix(in srgb, var(--orange) 75%, transparent);
}

.display-heading {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.2vw, 6.9rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .94;
}

.display-heading span {
    color: var(--grey-500);
}

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

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 90px;
    align-items: end;
}

.section-heading__aside,
.section-heading__description {
    max-width: 430px;
    justify-self: end;
    color: var(--grey-700);
}

.section-heading__aside p,
.section-heading__description {
    margin-bottom: 30px;
    font-size: .98rem;
}

.section-heading--light .section-heading__description {
    color: rgba(255, 255, 255, .58);
}

.section-heading--light .display-heading span {
    color: rgba(255, 255, 255, .33);
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 7px 8px 7px 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: -.01em;
    cursor: pointer;
    isolation: isolate;
    transition: transform .35s var(--ease), border-color .35s ease, background .35s ease, color .35s ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: translateX(-102%);
    border-radius: inherit;
    background: var(--white);
    transition: transform .55s var(--ease);
}

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

.button:hover,
.button:focus-visible {
    color: var(--ink);
    transform: translateY(-3px);
}

.button__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform .45s var(--ease), background .35s ease, color .35s ease;
}

.button:hover .button__icon,
.button:focus-visible .button__icon {
    transform: rotate(45deg);
}

.button--primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 18px 40px rgba(240, 90, 34, .25);
}

.button--primary .button__icon {
    color: var(--ink);
    background: var(--white);
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
}

.button--ghost .button__icon {
    background: rgba(255, 255, 255, .11);
}

.button--light {
    color: var(--ink);
    background: var(--white);
}

.button--light::before {
    background: var(--orange);
}

.button--light .button__icon {
    color: var(--white);
    background: var(--ink);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 55% 50%, rgba(240, 90, 34, .16), transparent 30%),
        #0d0d0d;
    transition: opacity .65s var(--ease), visibility .65s var(--ease);
}

.site-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 80px 80px;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.site-loader__brand img {
    width: clamp(160px, 18vw, 250px);
    max-height: 82px;
    object-fit: contain;
}

.site-loader__fallback {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -.05em;
}

.site-loader__track {
    width: 120px;
    height: 3px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
}

.site-loader__track span {
    display: block;
    width: 72px;
    height: 100%;
    margin-left: -72px;
    border-radius: inherit;
    background: var(--orange);
    box-shadow: 0 0 16px rgba(240, 90, 34, .8);
    animation: loaderTravel 1s infinite var(--ease);
}

@keyframes loaderTravel {
    0% { width: 82px; margin-left: -100px; }
    100% { width: 32px; margin-left: 125px; }
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height);
    color: var(--white);
    transition: color .35s ease, background .35s ease, box-shadow .35s ease, transform .45s var(--ease);
}

.site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .11);
    transition: background .35s ease;
}

.site-header.is-scrolled {
    background: rgba(16, 16, 16, .82);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px) saturate(130%);
}

.site-header.is-hidden {
    transform: translateY(-105%);
}

.site-header__inner {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    width: max-content;
    height: 38px;
    align-items: center;
}

.brand-mark__image {
    width: 150px;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
}

.brand-mark__image--dark {
    display: none;
}

.brand-mark__fallback {
    display: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.04em;
}

.brand-mark__fallback span {
    color: var(--orange);
}

.brand-mark--fallback .brand-mark__fallback {
    display: inline;
}

.availability-pill {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 9px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .035);
    font-family: var(--font-display);
    font-size: .72rem;
    backdrop-filter: blur(12px);
}

.availability-pill__dot,
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ee690;
    box-shadow: 0 0 14px rgba(62, 230, 144, .75);
    animation: statusPulse 2.4s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.72); }
}

.desktop-nav {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 26px;
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 500;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, .72);
    transition: color .25s ease;
}

.desktop-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--orange);
    transition: transform .35s var(--ease);
}

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

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

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--ink) !important;
    background: var(--white);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: transparent;
}

.menu-button span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .35s var(--ease);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

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

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    padding: 130px 28px 38px;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    background: rgba(12, 12, 12, .98);
    transition: opacity .4s ease, visibility .4s ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
}

.mobile-menu nav {
    display: grid;
}

.mobile-menu nav a {
    display: flex;
    padding: 18px 0;
    align-items: baseline;
    gap: 18px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-display);
    font-size: clamp(2rem, 10vw, 4rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1;
}

.mobile-menu nav a span {
    color: var(--orange);
    font-size: .68rem;
    letter-spacing: .08em;
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
}

.section-dock {
    position: fixed;
    top: 50%;
    right: 24px;
    z-index: 700;
    display: flex;
    width: 52px;
    padding: 9px 6px;
    transform: translateY(-50%);
    align-items: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 26px;
    color: var(--white);
    background: rgba(24, 24, 24, .8);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.section-dock a {
    position: relative;
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, .55);
    transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.section-dock a:hover,
.section-dock a:focus-visible,
.section-dock a.is-active {
    color: var(--ink);
    background: var(--white);
    transform: scale(1.05);
}

.section-dock svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-dock a:first-child svg path:first-child {
    fill: none;
}

.section-dock a span {
    position: absolute;
    right: 50px;
    padding: 7px 10px;
    visibility: hidden;
    opacity: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--font-display);
    font-size: .68rem;
    white-space: nowrap;
    transform: translateX(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.section-dock a:hover span,
.section-dock a:focus-visible span {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 79% 36%, rgba(240, 90, 34, .11), transparent 28%),
        radial-gradient(circle at 15% 90%, rgba(240, 90, 34, .07), transparent 24%),
        #0c0c0c;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-position: center;
    background-size: min(25vw, 340px) min(25vw, 340px);
    mask-image: linear-gradient(to bottom, transparent 2%, #000 18%, #000 85%, transparent 100%);
}

.hero__ambient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.hero__orb--one {
    top: 20%;
    right: -10%;
    width: 42vw;
    height: 42vw;
    border: 1px solid rgba(240, 90, 34, .18);
    box-shadow: inset 0 0 130px rgba(240, 90, 34, .04);
}

.hero__orb--two {
    bottom: -22%;
    left: 15%;
    width: 30vw;
    height: 30vw;
    border: 1px solid rgba(255, 255, 255, .06);
}

.hero__line {
    position: absolute;
    width: 780px;
    height: 150px;
    border: 3px solid var(--orange);
    border-color: var(--orange) transparent transparent transparent;
    border-radius: 50%;
    opacity: .22;
    filter: blur(8px);
    animation: ambientFloat 9s infinite alternate var(--ease);
}

.hero__line--one {
    top: 39%;
    right: -230px;
    transform: rotate(-18deg);
}

.hero__line--two {
    bottom: 4%;
    left: -340px;
    transform: rotate(12deg);
    animation-delay: -4s;
}

@keyframes ambientFloat {
    from { translate: -14px -8px; scale: .96; opacity: .15; }
    to { translate: 18px 12px; scale: 1.05; opacity: .3; }
}

.hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 28px;
    flex-direction: column;
}

.hero__meta {
    display: flex;
    min-height: 48px;
    align-items: flex-start;
    justify-content: space-between;
    color: rgba(255, 255, 255, .48);
    font-family: var(--font-display);
    font-size: .7rem;
    line-height: 1.45;
}

.hero__meta a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .66);
}

.hero__meta--social-only {
    justify-content: flex-end;
}

.hero__social-link {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.hero__social-link:hover,
.hero__social-link:focus-visible {
    color: var(--white);
    border-color: rgba(240, 90, 34, .55);
    background: rgba(240, 90, 34, .1);
}

.hero__social-link .ui-icon {
    width: 15px;
    height: 15px;
}

.hero__social-link .ui-icon--arrow {
    width: 13px;
    height: 13px;
}

.hero__location {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.hero__location .status-dot {
    margin-top: 4px;
}

.hero__grid {
    display: grid;
    flex: 1;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    align-items: center;
    gap: 70px;
    padding: 38px 0 28px;
}

.hero__copy {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__copy .eyebrow {
    color: rgba(255, 255, 255, .55);
}

.hero__title {
    margin-bottom: 34px;
    font-family: var(--font-display);
    font-size: clamp(4rem, 7.2vw, 8.2rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .84;
}

.hero__title-line {
    display: block;
    overflow: hidden;
    padding-bottom: .09em;
}

.hero__title-line > span {
    display: block;
    transform: translateY(110%);
    animation: heroLineIn 1.15s var(--ease) forwards;
}

.hero__title-line:nth-child(1) > span { animation-delay: .18s; }
.hero__title-line:nth-child(2) > span { animation-delay: .28s; }
.hero__title-line:nth-child(3) > span { animation-delay: .38s; }

@keyframes heroLineIn {
    to { transform: translateY(0); }
}

.hero__title-line--accent {
    color: var(--orange);
}

.hero__lead {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .58);
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
}

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

.hero__portrait-wrap {
    position: relative;
    width: min(100%, 440px);
    justify-self: end;
}

.hero__portrait-card {
    position: relative;
    aspect-ratio: .82;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 220px 220px 34px 34px;
    background:
        linear-gradient(180deg, rgba(240, 90, 34, .44), rgba(240, 90, 34, .05) 48%, rgba(0, 0, 0, .2)),
        #171717;
    box-shadow: var(--shadow-dark);
}

.hero__portrait-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
    pointer-events: none;
}

.hero__portrait-glow,
.hero__portrait-fallback {
    display: none !important;
}

.hero__portrait {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    width: 100%;
    height: 92%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 25px 28px rgba(0, 0, 0, .4));
}

.hero__portrait-label {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    z-index: 4;
    display: flex;
    padding: 15px 17px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    color: rgba(255, 255, 255, .95);
    background: rgba(10, 10, 10, .62);
    backdrop-filter: blur(16px);
    font-family: var(--font-display);
}

.hero__portrait-label span {
    font-size: .78rem;
    font-weight: 700;
}

.hero__portrait-label small {
    color: rgba(255, 255, 255, .5);
    font-size: .62rem;
}

.hero__floating-card {
    position: absolute;
    z-index: 6;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    color: var(--white);
    background: rgba(22, 22, 22, .78);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
    font-family: var(--font-display);
    font-size: .65rem;
    line-height: 1.35;
    animation: cardFloat 5s infinite alternate var(--ease);
}

.hero__floating-card--top {
    top: 15%;
    left: -70px;
    display: grid;
}

.hero__floating-card--top span {
    color: rgba(255, 255, 255, .46);
}

.hero__floating-card--bottom {
    right: -42px;
    bottom: 18%;
    display: flex;
    align-items: center;
    gap: 13px;
    animation-delay: -2.4s;
}

@keyframes cardFloat {
    from { transform: translateY(-5px) rotate(-1deg); }
    to { transform: translateY(8px) rotate(1deg); }
}

.mini-wave {
    display: flex;
    height: 24px;
    align-items: center;
    gap: 2px;
}

.mini-wave i {
    display: block;
    width: 2px;
    height: 35%;
    border-radius: 3px;
    background: var(--orange);
    animation: wave 1.1s infinite ease-in-out;
}

.mini-wave i:nth-child(2) { animation-delay: -.2s; }
.mini-wave i:nth-child(3) { animation-delay: -.4s; }
.mini-wave i:nth-child(4) { animation-delay: -.6s; }
.mini-wave i:nth-child(5) { animation-delay: -.8s; }

@keyframes wave {
    0%, 100% { height: 30%; }
    50% { height: 100%; }
}

.hero__footer {
    display: grid;
    min-height: 50px;
    grid-template-columns: repeat(4, auto) 1fr;
    align-items: end;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    font-family: var(--font-display);
    font-size: .61rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.scroll-cue {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 11px;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 99px;
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 7px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: var(--orange);
    animation: scrollDot 1.8s infinite ease-in-out;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

.work-section {
    padding: 140px 0 110px;
    overflow: hidden;
}

.portfolio-controls {
    display: flex;
    gap: 9px;
}

.circle-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: color .3s ease, background .3s ease, transform .3s var(--ease);
}

.circle-button:hover,
.circle-button:focus-visible {
    color: var(--white);
    background: var(--ink);
    transform: scale(1.05);
}

.portfolio-track {
    display: grid;
    grid-auto-columns: minmax(290px, 32%);
    grid-auto-flow: column;
    gap: 22px;
    padding-bottom: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar {
    display: none;
}

.portfolio-card {
    min-width: 0;
    scroll-snap-align: start;
}

.portfolio-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: .72;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-md);
    color: var(--white);
    background: #161616;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(17, 17, 17, .08);
}

.portfolio-card--landscape .portfolio-card__media {
    aspect-ratio: 1.05;
}

.portfolio-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease), filter .5s ease;
}

.portfolio-card__media:hover img,
.portfolio-card__media:focus-visible img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.portfolio-card__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 40%, rgba(240, 90, 34, .35), transparent 32%),
        linear-gradient(145deg, #161616, #090909);
}

.portfolio-card__placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 44px 44px;
}

.portfolio-card__placeholder strong {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 500;
    letter-spacing: -.08em;
    opacity: .15;
}

.portfolio-card__vortex {
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border: 1px solid rgba(240, 90, 34, .55);
    border-radius: 50%;
    box-shadow: inset 0 0 70px rgba(240, 90, 34, .12), 0 0 35px rgba(240, 90, 34, .12);
    animation: placeholderOrbit 9s infinite linear;
}

.portfolio-card__vortex::before,
.portfolio-card__vortex::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(240, 90, 34, .25);
    border-radius: 50%;
}

.portfolio-card__vortex::before { inset: 15%; }
.portfolio-card__vortex::after { inset: 29%; }

@keyframes placeholderOrbit {
    to { transform: rotate(360deg) scale(1.05); }
}

.portfolio-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .03) 45%, rgba(0, 0, 0, .72));
}

.portfolio-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%) scale(.86);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity .35s ease, transform .45s var(--ease);
}

.portfolio-card__media:hover .portfolio-card__play,
.portfolio-card__media:focus-visible .portfolio-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-card__index,
.portfolio-card__duration {
    position: absolute;
    bottom: 17px;
    z-index: 3;
    font-family: var(--font-display);
    font-size: .66rem;
    letter-spacing: .08em;
}

.portfolio-card__index { left: 18px; }
.portfolio-card__duration { right: 18px; }

.portfolio-card__caption {
    display: flex;
    padding: 18px 4px 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.portfolio-card__caption span {
    color: var(--grey-500);
    font-family: var(--font-display);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.portfolio-card__caption-icon {
    width: 18px;
    height: 18px;
    color: var(--ink);
}

.portfolio-card__caption h3 {
    margin: 4px 0 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -.035em;
}

.portfolio-status {
    display: flex;
    margin-top: 50px;
    padding-top: 20px;
    justify-content: space-between;
    border-top: 1px solid var(--line-dark);
    color: var(--grey-500);
    font-family: var(--font-display);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.portfolio-status strong {
    color: var(--ink);
}

.portfolio-status--single {
    justify-content: flex-start;
}

.statement-section {
    position: relative;
    overflow: hidden;
    padding: 130px 0 120px;
}

.statement-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -4%;
    width: 530px;
    aspect-ratio: 1;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 50%;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, .08);
}

.statement-marquee {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    overflow: hidden;
    opacity: .13;
}

.statement-marquee div {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 22px;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    white-space: nowrap;
    animation: marquee 24s infinite linear;
}

.statement-marquee i {
    font-style: normal;
    font-size: 1.5rem;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.statement-section__inner {
    position: relative;
    z-index: 2;
}

.statement-section .eyebrow::before {
    background: var(--ink);
    box-shadow: none;
}

.statement-section blockquote {
    max-width: 1050px;
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.5vw, 7.4rem);
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: .94;
}

.statement-section blockquote strong {
    font-weight: 600;
}

.about-section {
    padding: 150px 0 130px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 100px;
}

.about-intro {
    position: sticky;
    top: 135px;
    align-self: start;
}

.about-signature {
    display: inline-grid;
    margin-top: 56px;
    transform: rotate(-4deg);
    color: var(--orange);
    font-family: var(--font-display);
    line-height: .8;
}

.about-signature span {
    font-size: 1rem;
    letter-spacing: .3em;
}

.about-signature strong {
    font-size: 2.8rem;
    letter-spacing: -.07em;
}

.about-copy__lead {
    max-width: 770px;
    margin-bottom: 46px;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.3vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.12;
}

.about-copy__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 70px;
    color: var(--grey-700);
}

.about-copy__columns p {
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image__frame {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 52% 40%, rgba(240, 90, 34, .75), transparent 35%),
        #171717;
    box-shadow: var(--shadow-soft);
}

.about-image__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .38));
}

.about-image__frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.about-image__note {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: grid;
    min-width: 240px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    color: var(--white);
    background: rgba(15, 15, 15, .65);
    backdrop-filter: blur(16px);
}

.about-image__note span {
    color: rgba(255, 255, 255, .48);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.about-image__note strong {
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: .9rem;
}

.reason-grid {
    display: grid;
    margin-top: 110px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.reason-card {
    min-height: 250px;
    padding: 28px 28px 34px;
    border-right: 1px solid var(--line-dark);
}

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

.reason-card > span {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: .65rem;
    font-weight: 700;
}

.reason-card h3 {
    margin: 70px 0 12px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -.04em;
}

.reason-card p {
    margin-bottom: 0;
    color: var(--grey-700);
    font-size: .88rem;
}

.services-section {
    padding: 150px 0;
}

.services-list {
    border-top: 1px solid var(--line-dark);
}

.service-card {
    position: relative;
    display: grid;
    min-height: 270px;
    padding: 38px 64px 38px 0;
    overflow: hidden;
    grid-template-columns: 90px minmax(260px, .8fr) minmax(300px, 1.2fr);
    gap: 45px;
    border-bottom: 1px solid var(--line-dark);
    transition: color .45s ease, padding .45s var(--ease);
    isolation: isolate;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    background: var(--ink);
    transition: transform .55s var(--ease);
}

.service-card:hover {
    padding-left: 28px;
    color: var(--white);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card__number {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
}

.service-card__heading h3 {
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.1vw, 3.4rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1;
}

.service-card__heading p,
.service-card__body p {
    color: var(--grey-700);
    transition: color .35s ease;
}

.service-card__heading p {
    max-width: 370px;
    margin-bottom: 0;
    font-size: .88rem;
}

.service-card__body p {
    max-width: 620px;
    font-size: .92rem;
}

.service-card:hover .service-card__heading p,
.service-card:hover .service-card__body p {
    color: rgba(255, 255, 255, .58);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.tag-list span {
    padding: 7px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: var(--grey-700);
    font-family: var(--font-display);
    font-size: .62rem;
    transition: color .35s ease, border-color .35s ease;
}

.service-card:hover .tag-list span {
    color: rgba(255, 255, 255, .72);
    border-color: rgba(255, 255, 255, .18);
}

.service-card__arrow {
    position: absolute;
    top: 38px;
    right: 8px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    transition: color .35s ease, border-color .35s ease, background .35s ease, transform .45s var(--ease);
}

.service-card:hover .service-card__arrow {
    color: var(--ink);
    border-color: var(--orange);
    background: var(--orange);
    transform: rotate(45deg);
}

.process-section {
    position: relative;
    padding: 150px 0 110px;
    overflow: hidden;
}

.process-section__glow {
    position: absolute;
    top: 5%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 90, 34, .12), transparent 65%);
    pointer-events: none;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.process-card {
    min-height: 350px;
    padding: 30px 28px 38px;
    border-right: 1px solid var(--line-light);
}

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

.process-card__number {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: .65rem;
}

.process-card__icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 55px 0 42px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
}

.process-card__icon {
    display: grid;
    place-items: center;
    color: var(--orange);
    background: radial-gradient(circle, rgba(240, 90, 34, .12), transparent 68%);
    transition: color .35s ease, border-color .35s ease, background .35s ease, transform .45s var(--ease);
}

.process-card:hover .process-card__icon {
    color: var(--white);
    border-color: rgba(240, 90, 34, .7);
    background: var(--orange);
    transform: translateY(-5px);
}

.process-card__svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card h3 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -.045em;
}

.process-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .87rem;
}

.location-banner {
    position: relative;
    display: grid;
    margin-top: 100px;
    padding: 50px;
    overflow: hidden;
    grid-template-columns: 1.05fr .7fr auto;
    align-items: end;
    gap: 45px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 78% 50%, rgba(240, 90, 34, .23), transparent 27%),
        #181818;
}

.location-banner::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(240, 90, 34, .28);
    border-radius: 50%;
}

.location-banner .eyebrow {
    color: rgba(255, 255, 255, .48);
}

.location-banner h3 {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4.6rem);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .98;
}

.location-banner > p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
}

.location-banner .button {
    position: relative;
    z-index: 2;
}

.instagram-section {
    padding: 140px 0;
    overflow: hidden;
}

.instagram-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.instagram-section__copy > p:not(.eyebrow) {
    max-width: 520px;
    margin: 36px 0 32px;
    color: var(--grey-700);
}

.instagram-link {
    display: grid;
    max-width: 470px;
    padding: 17px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: rgba(255, 255, 255, .45);
    transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}

.instagram-link:hover,
.instagram-link:focus-visible {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-4px);
}

.instagram-link__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: var(--orange);
}

.instagram-link__icon .ui-icon {
    width: 23px;
    height: 23px;
}

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

.instagram-link small {
    color: var(--grey-500);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.instagram-link strong {
    font-family: var(--font-display);
    font-size: .9rem;
}

.instagram-section__visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.phone-frame {
    position: relative;
    z-index: 2;
    width: min(330px, 78%);
    aspect-ratio: .53;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 44px;
    background: #121212;
    box-shadow: 0 45px 90px rgba(29, 22, 17, .25);
    transform: rotate(6deg);
}

.phone-frame__top {
    position: absolute;
    top: 19px;
    left: 50%;
    z-index: 3;
    width: 92px;
    height: 24px;
    transform: translateX(-50%);
    border-radius: 99px;
    background: #080808;
}

.phone-frame__screen {
    position: relative;
    height: 100%;
    padding: 34px 18px 20px;
    overflow: hidden;
    border-radius: 35px;
    color: var(--white);
    background:
        radial-gradient(circle at 54% 35%, rgba(240, 90, 34, .55), transparent 30%),
        linear-gradient(160deg, #232323, #090909 70%);
}

.phone-frame__profile {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
}

.phone-frame__bars {
    display: flex;
    margin: 34px 0;
    gap: 5px;
}

.phone-frame__bars i {
    display: block;
    width: 38px;
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .18);
}

.phone-frame__bars i:first-child {
    background: var(--orange);
}

.phone-frame__screen > strong {
    display: block;
    max-width: 210px;
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: -.06em;
    line-height: 1;
}

.phone-frame__reel {
    position: absolute;
    right: 18px;
    bottom: 20px;
    left: 18px;
    display: grid;
    height: 50%;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(240, 90, 34, .15), rgba(0, 0, 0, .2)),
        #171717;
}

.phone-frame__reel span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
}

.instagram-section__orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(17, 17, 17, .1);
    border-radius: 50%;
    animation: slowRotate 20s infinite linear;
}

.instagram-section__orbit::before,
.instagram-section__orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 50%;
}

.instagram-section__orbit::before { inset: 14%; }
.instagram-section__orbit::after { inset: 29%; }

.instagram-section__orbit span {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 20px rgba(240, 90, 34, .45);
}

.instagram-section__orbit span:nth-child(1) { top: 5%; left: 32%; }
.instagram-section__orbit span:nth-child(2) { right: 7%; bottom: 22%; }
.instagram-section__orbit span:nth-child(3) { bottom: 7%; left: 19%; }

@keyframes slowRotate {
    to { transform: rotate(360deg); }
}

.contact-section {
    position: relative;
    padding: 150px 0 120px;
    overflow: hidden;
}

.contact-section__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 86% 15%, rgba(240, 90, 34, .14), transparent 25%),
        radial-gradient(circle at 10% 88%, rgba(240, 90, 34, .07), transparent 22%);
}

.contact-heading {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin-bottom: 80px;
}

.contact-heading__title {
    margin-bottom: 30px;
    font-family: var(--font-display);
    font-size: clamp(4rem, 8.5vw, 9.4rem);
    font-weight: 500;
    letter-spacing: -.08em;
    line-height: .85;
}

.contact-heading__title span {
    color: var(--orange);
}

.contact-heading > p:last-child {
    max-width: 620px;
    color: rgba(255, 255, 255, .52);
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(280px, .52fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.contact-details {
    position: sticky;
    top: 120px;
}

.contact-details__portrait {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 90, 34, .8), #171717 65%);
}

.contact-details__portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.contact-details__status {
    display: flex;
    margin-bottom: 38px;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .5);
    font-size: .7rem;
}

.contact-details__status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ee690;
    box-shadow: 0 0 14px rgba(62, 230, 144, .65);
}

.contact-detail {
    display: grid;
    padding: 17px 0;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line-light);
}

.contact-detail__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    color: var(--orange);
    background: rgba(255, 255, 255, .035);
}

.contact-detail__icon .ui-icon {
    width: 18px;
    height: 18px;
}

.contact-detail__copy {
    min-width: 0;
}

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

.contact-detail small {
    color: rgba(255, 255, 255, .35);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.contact-detail strong {
    max-width: 100%;
    margin-top: 3px;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 500;
}

.contact-detail__arrow {
    width: 17px;
    height: 17px;
    transition: transform .35s var(--ease), color .3s ease;
}

.contact-detail:hover .contact-detail__arrow,
.contact-detail:focus-visible .contact-detail__arrow {
    color: var(--orange);
    transform: rotate(45deg);
}

.brief-form {
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.brief-form__header {
    display: grid;
    margin-bottom: 45px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line-light);
}

.brief-form__header span {
    color: var(--orange);
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.brief-form__header strong {
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -.05em;
}

.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

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

.field {
    display: grid;
    gap: 9px;
}

.field > span,
.choice-field legend {
    color: rgba(255, 255, 255, .74);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 600;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    outline: 0;
    color: var(--white);
    background: transparent;
    transition: border-color .3s ease, background .3s ease;
}

.field input {
    height: 52px;
}

.field textarea {
    min-height: 140px;
    padding: 16px 0;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, .27);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--orange);
}

.field.has-error input,
.field.has-error textarea {
    border-color: #ff746c;
}

.field__error {
    min-height: 13px;
    color: #ff8f89;
    font-size: .62rem;
}

.choice-field {
    min-width: 0;
    margin: 0 0 30px;
    padding: 0;
    border: 0;
}

.choice-field legend {
    margin-bottom: 14px;
}

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

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

.choice-grid label {
    position: relative;
    cursor: pointer;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid span {
    display: flex;
    min-height: 50px;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    color: rgba(255, 255, 255, .53);
    background: rgba(255, 255, 255, .025);
    font-family: var(--font-display);
    font-size: .67rem;
    text-align: center;
    transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease);
}

.choice-grid input:checked + span {
    color: var(--ink);
    border-color: var(--orange);
    background: var(--orange);
    transform: translateY(-2px);
}

.choice-grid input:focus-visible + span {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.field--message {
    margin-bottom: 22px;
}

.consent-field {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .46);
    font-size: .7rem;
    cursor: pointer;
}

.consent-field input {
    accent-color: var(--orange);
}

.button--submit {
    width: 100%;
    margin-top: 28px;
    border: 0;
}

.button--submit.is-loading {
    pointer-events: none;
    opacity: .72;
}

.button__loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s infinite linear;
}

.button--submit.is-loading .button__label,
.button--submit.is-loading .button__icon {
    display: none;
}

.button--submit.is-loading .button__loading {
    display: block;
}

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

.form-note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .3);
    font-size: .62rem;
    text-align: center;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding: 84px 0 26px;
    color: var(--white);
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__top {
    display: flex;
    padding-bottom: 56px;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-light);
}

.footer-brand {
    display: grid;
}

.footer-brand__eyebrow {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .36);
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 8rem);
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .85;
}

.footer-back {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .56);
    font-size: .72rem;
}

.footer-back span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.site-footer__grid {
    display: grid;
    padding: 55px 0 70px;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 60px;
}

.footer-label {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .33);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.site-footer__grid p,
.site-footer__grid a {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: .84rem;
}

.footer-contact-links {
    display: grid;
    gap: 9px;
}

.site-footer__grid .footer-contact-links a {
    display: flex;
    margin-bottom: 0;
    align-items: center;
    gap: 9px;
    transition: color .25s ease;
}

.footer-contact-links a:hover,
.footer-contact-links a:focus-visible {
    color: var(--white);
}

.footer-contact-links .ui-icon {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.mobile-menu__footer a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mobile-menu__footer .ui-icon {
    width: 17px;
    height: 17px;
    color: var(--orange);
}

.site-footer__bottom {
    display: flex;
    padding-top: 24px;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, .35);
    font-size: .63rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.site-footer__bottom strong {
    color: var(--white);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    padding: 32px;
    visibility: hidden;
    opacity: 0;
    place-items: center;
    transition: opacity .4s ease, visibility .4s ease;
}

.video-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .84);
    backdrop-filter: blur(18px);
}

.video-modal__panel {
    position: relative;
    z-index: 2;
    width: min(1100px, 94vw);
    max-height: 92vh;
    padding: 18px;
    transform: translateY(24px) scale(.98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    color: var(--white);
    background: #111;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
    transition: transform .5s var(--ease);
}

.video-modal.is-open .video-modal__panel {
    transform: translateY(0) scale(1);
}

.video-modal__header {
    display: flex;
    padding: 6px 4px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.video-modal__header span {
    color: var(--orange);
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.video-modal__header h2 {
    margin: 2px 0 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
}

.video-modal__close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-modal__stage {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 18px;
    background: #050505;
}

.video-modal__stage iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 6000;
    max-width: min(420px, calc(100vw - 48px));
    padding: 15px 18px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    color: var(--white);
    background: rgba(17, 17, 17, .94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .26);
    transform: translateY(12px);
    backdrop-filter: blur(16px);
    font-size: .78rem;
    transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease);
}

.toast.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.toast.is-success {
    border-color: rgba(62, 230, 144, .35);
}

.toast.is-error {
    border-color: rgba(255, 116, 108, .45);
}

.js .reveal-up,
.js .reveal-scale {
    opacity: 0;
    transition: opacity .8s var(--ease), transform .9s var(--ease);
}

.js .reveal-up {
    transform: translateY(34px);
}

.js .reveal-scale {
    transform: translateY(24px) scale(.96);
}

.js .reveal-up.is-visible,
.js .reveal-scale.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1180px) {
    :root {
        --container: min(100% - 48px, 1120px);
    }

    .desktop-nav {
        gap: 18px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
        gap: 35px;
    }

    .hero__floating-card--top {
        left: -30px;
    }

    .hero__floating-card--bottom {
        right: -12px;
    }

    .portfolio-track {
        grid-auto-columns: minmax(280px, 38%);
    }

    .service-card {
        grid-template-columns: 60px minmax(250px, .85fr) minmax(280px, 1.15fr);
        gap: 28px;
    }

    .location-banner {
        grid-template-columns: 1fr .7fr;
    }

    .location-banner .button {
        grid-column: 1 / -1;
        width: max-content;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 78px;
        --container: min(100% - 40px, 900px);
    }

    .availability-pill,
    .desktop-nav {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .menu-button {
        display: flex;
    }

    .section-dock {
        display: none;
    }

    .hero__container {
        padding-top: calc(var(--header-height) + 20px);
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding-top: 55px;
    }

    .hero__copy {
        max-width: 780px;
    }

    .hero__portrait-wrap {
        width: min(440px, 78vw);
        margin: 30px auto 20px;
        justify-self: center;
    }

    .hero__footer {
        grid-template-columns: repeat(4, auto);
    }

    .scroll-cue {
        display: none;
    }

    .section-heading--split,
    .about-grid,
    .instagram-section__grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .section-heading__aside,
    .section-heading__description {
        max-width: 590px;
        justify-self: start;
    }

    .portfolio-track {
        grid-auto-columns: minmax(280px, 47%);
    }

    .about-intro,
    .contact-details {
        position: static;
    }

    .about-copy__lead {
        max-width: 850px;
    }

    .about-image__frame {
        height: 560px;
    }

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

    .reason-card:nth-child(2),
    .process-card:nth-child(2) {
        border-right: 0;
    }

    .reason-card:nth-child(-n+2),
    .process-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--line-dark);
    }

    .process-card:nth-child(-n+2) {
        border-bottom-color: var(--line-light);
    }

    .service-card {
        grid-template-columns: 54px 1fr;
    }

    .service-card__body {
        grid-column: 2;
    }

    .location-banner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .location-banner .button {
        grid-column: auto;
    }

    .instagram-section__visual {
        min-height: 560px;
    }

    .contact-details {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 24px;
    }

    .contact-details__status {
        align-self: end;
    }

    .contact-detail {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    :root {
        --container: calc(100% - 28px);
        --radius-lg: 26px;
    }

    body {
        font-size: 15px;
    }

    .display-heading {
        font-size: clamp(2.85rem, 14vw, 4.5rem);
    }

    .site-header {
        height: 70px;
    }

    .brand-mark__image {
        width: 125px;
        max-height: 32px;
    }

    .hero__container {
        padding-top: 90px;
    }

    .hero__meta {
        min-height: 0;
    }

    .hero__meta > a {
        display: none;
    }

    .hero__grid {
        padding-top: 42px;
    }

    .hero__title {
        margin-bottom: 26px;
        font-size: clamp(3.5rem, 17vw, 5.5rem);
        line-height: .87;
    }

    .hero__lead {
        max-width: 92%;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__portrait-wrap {
        width: min(360px, 88vw);
    }

    .hero__floating-card--top {
        top: 10%;
        left: -2px;
    }

    .hero__floating-card--bottom {
        right: -2px;
        bottom: 16%;
    }

    .hero__footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px 18px;
        padding: 18px 0 0;
    }

    .work-section,
    .about-section,
    .services-section,
    .process-section,
    .instagram-section,
    .contact-section {
        padding-top: 100px;
        padding-bottom: 90px;
    }

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

    .section-heading--split {
        gap: 34px;
    }

    .portfolio-track {
        grid-auto-columns: minmax(265px, 82%);
        gap: 14px;
    }

    .portfolio-card__play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.86);
    }

    .portfolio-status {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .statement-section {
        padding: 100px 0 110px;
    }

    .statement-section blockquote {
        font-size: clamp(2.8rem, 13vw, 5rem);
    }

    .about-grid {
        gap: 58px;
    }

    .about-signature {
        margin-top: 35px;
    }

    .about-copy__lead {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .about-copy__columns {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 45px;
    }

    .about-image__frame {
        height: 470px;
    }

    .about-image__note {
        right: 14px;
        bottom: 14px;
        left: 14px;
        min-width: 0;
    }

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

    .reason-card,
    .reason-card:nth-child(2),
    .process-card,
    .process-card:nth-child(2) {
        min-height: 220px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .process-card,
    .process-card:nth-child(2) {
        border-bottom-color: var(--line-light);
    }

    .reason-card:last-child,
    .process-card:last-child {
        border-bottom: 0;
    }

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

    .service-card {
        min-height: 0;
        padding: 30px 50px 30px 0;
        grid-template-columns: 34px 1fr;
        gap: 18px;
    }

    .service-card:hover {
        padding-left: 14px;
    }

    .service-card__heading h3 {
        font-size: 2rem;
    }

    .service-card__body {
        grid-column: 1 / -1;
        padding-left: 52px;
    }

    .service-card__arrow {
        top: 28px;
        width: 38px;
        height: 38px;
    }

    .process-card {
        min-height: 280px;
    }

    .process-card__icon {
        margin: 35px 0 30px;
    }

    .location-banner {
        margin-top: 70px;
        padding: 30px 24px;
        gap: 28px;
    }

    .location-banner h3 {
        font-size: 2.7rem;
    }

    .location-banner .button {
        width: 100%;
    }

    .instagram-section__grid {
        gap: 25px;
    }

    .instagram-section__visual {
        min-height: 490px;
    }

    .instagram-section__orbit {
        width: 420px;
        height: 420px;
    }

    .phone-frame {
        width: 260px;
    }

    .contact-heading__title {
        font-size: clamp(3.7rem, 17vw, 6rem);
    }

    .contact-grid {
        gap: 50px;
    }

    .contact-details {
        grid-template-columns: 100px 1fr;
    }

    .contact-details__portrait {
        width: 100px;
        height: 100px;
    }

    .brief-form {
        padding: 28px 18px;
        border-radius: 24px;
    }

    .form-row--two,
    .choice-grid,
    .choice-grid--budget {
        grid-template-columns: 1fr;
    }

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

    .site-footer {
        padding-top: 70px;
    }

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand strong {
        font-size: 4.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .video-modal {
        padding: 10px;
    }

    .video-modal__panel {
        width: 100%;
        padding: 11px;
        border-radius: 21px;
    }

    .video-modal__stage {
        min-height: 60vh;
    }
}

@media (max-width: 410px) {
    .hero__floating-card {
        display: none;
    }

    .hero__portrait-wrap {
        width: 92vw;
    }

    .footer-brand strong {
        font-size: 3.8rem;
    }
}

@media (hover: none) {
    .magnetic {
        transform: none !important;
    }
}

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

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

    .js .reveal-up,
    .js .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* Revision 03: replace platform-dependent emoji glyphs with crisp inline SVG icons. */
.button__icon .ui-icon,
.circle-button .ui-icon,
.portfolio-card__play .ui-icon,
.service-card__arrow .ui-icon,
.instagram-link__arrow .ui-icon,
.phone-frame__reel .ui-icon,
.footer-back .ui-icon {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.portfolio-card__play .ui-icon,
.phone-frame__reel .ui-icon {
    width: 1.15em;
    height: 1.15em;
}

.portfolio-card__play .icon-fill,
.phone-frame__reel .icon-fill,
.ticker__spark .icon-fill {
    fill: currentColor;
    stroke: none;
}

.circle-button {
    display: inline-grid;
    place-items: center;
}

.circle-button .ui-icon {
    width: 19px;
    height: 19px;
}

.service-card__arrow {
    display: grid;
    place-items: center;
}

.service-card__arrow .ui-icon {
    width: 22px;
    height: 22px;
}

.instagram-link__arrow {
    display: grid;
    place-items: center;
}

.instagram-link__arrow .ui-icon {
    width: 20px;
    height: 20px;
}

.ticker i {
    display: inline-grid;
    place-items: center;
}

.ticker__spark {
    width: 14px;
    height: 14px;
    display: block;
}

/* Revision 04: mobile navigation contact layout */
@media (max-width: 700px) {
    .mobile-menu {
        padding: 100px 28px max(26px, env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain;
        justify-content: flex-start;
        gap: 34px;
    }

    .mobile-menu nav {
        flex: 0 0 auto;
    }

    .mobile-menu nav a {
        padding: clamp(13px, 2.2vh, 18px) 0;
        gap: 16px;
        font-size: clamp(2.25rem, 9.6vw, 3.5rem);
    }

    .mobile-menu__footer {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: auto;
        padding-top: 8px;
        gap: 10px;
    }

    .mobile-menu__footer a {
        display: grid;
        grid-template-columns: 22px minmax(0, 1fr);
        width: 100%;
        min-height: 42px;
        padding: 8px 0;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        color: rgba(255, 255, 255, .72);
        font-size: .9rem;
        line-height: 1.35;
    }

    .mobile-menu__footer a:last-child {
        border-bottom: 0;
    }

    .mobile-menu__footer span {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .mobile-menu__footer .ui-icon {
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
    }
}

@media (max-width: 700px) and (max-height: 760px) {
    .mobile-menu {
        padding-top: 88px;
        gap: 22px;
    }

    .mobile-menu nav a {
        padding: 11px 0;
        font-size: clamp(2rem, 8.7vw, 3rem);
    }

    .mobile-menu__footer a {
        min-height: 36px;
        padding: 5px 0;
        font-size: .82rem;
    }
}
