:root {
    --wf-bg: #05070d;
    --wf-panel: rgba(255, 255, 255, 0.15);
    --wf-panel-hover: rgba(255, 255, 255, 0.22);
    --wf-border: rgba(255, 179, 107, 0.18);
    --wf-text: #ffffff;
    --wf-muted: rgba(255, 255, 255, 0.55);
    --wf-soft: rgba(255, 255, 255, 0.45);
    --wf-faint: rgba(255, 255, 255, 0.25);
    --wf-accent: #ffb36b;
    --wf-accent-soft: rgba(255, 179, 107, 0.6);
    --wf-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
    --wf-font: "Space Mono", monospace;
    --wf-display: "Anton SC", var(--wf-font);
    --nav-height: 5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: var(--wf-text);
    font-family: var(--wf-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

.whiskfox-shell {
    min-height: 100vh;
    background: #000;
    color: var(--wf-text);
}

.section-frame {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--nav-height);
}

.nav-desktop,
.nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}

.nav-mobile {
    display: none;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-pill,
.menu-pill,
.cta-pill {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--wf-shadow);
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    min-height: 3rem;
    padding: 0 1.25rem;
    border-radius: 0.875rem;
    background: var(--wf-panel);
    transition: transform 220ms ease, background-color 220ms ease;
}

.brand-pill:hover,
.brand-pill:focus-visible {
    transform: scale(1.02);
    background: var(--wf-panel-hover);
}

.brand-pill span,
.footer-brand span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.brand-logo {
    display: inline-block;
    height: 1.5rem;
    width: auto;
    object-fit: contain;
}

.menu-pill {
    display: flex;
    align-items: center;
    height: 3rem;
    padding: 0 0.4rem;
    border-radius: 0.875rem;
    background: var(--wf-panel);
    overflow: hidden;
    transition: width 320ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-pill.is-open {
    width: 25.75rem;
}

.menu-pill:not(.is-open) {
    width: 3rem;
}

.menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 0;
    border-radius: 0.75rem;
    background: transparent;
    color: var(--wf-text);
    cursor: pointer;
}

.menu-pill.is-open .menu-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
    display: block;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
    content: "";
}

.menu-toggle-bars {
    position: relative;
}

.menu-toggle-bars::before {
    position: absolute;
    transform: translateY(-5px);
}

.menu-toggle-bars::after {
    position: absolute;
    transform: translateY(5px);
}

.menu-pill.is-open .menu-toggle-bars {
    background: transparent;
}

.menu-pill.is-open .menu-toggle-bars::before {
    transform: rotate(45deg);
}

.menu-pill.is-open .menu-toggle-bars::after {
    transform: rotate(-45deg);
}

.menu-panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1.2rem;
    opacity: 0;
    transform: translateX(15px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    white-space: nowrap;
}

.menu-pill.is-open .menu-panel {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.menu-panel a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: color 180ms ease;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
    color: #fff;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0 1.5rem;
    border-radius: 999px;
    background: #fff;
    color: #000;
    transition: transform 220ms ease, background-color 220ms ease;
}

.cta-pill:hover,
.cta-pill:focus-visible {
    transform: scale(1.03);
    background: #e2e2e6;
}

.cta-star {
    font-size: 1rem;
}

.hero-section {
    display: flex;
    flex-direction: column;
    padding: 5rem 1rem 2rem;
}

.hero-spacer {
    position: relative;
    z-index: 10;
    flex: 1;
}

.hero-copy {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-copy.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-size: clamp(2.5rem, 10vw, 6.25rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 300;
}

.hero-title-right {
    text-align: right;
}

.scramble-line {
    display: inline-block;
    min-height: 0.95em;
}

.hero-description {
    max-width: 24rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    line-height: 1.75;
}

.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.04;
    pointer-events: none;
}

.watermark-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.watermark {
    transform: translateY(50px);
    font-family: var(--wf-display);
    font-size: clamp(7.5rem, 28vw, 30rem);
    line-height: 1;
    letter-spacing: -4px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.09;
    background: radial-gradient(circle, rgba(255, 170, 90, 0) 0%, #ffb36b 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.fox-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0a1018;
    pointer-events: none;
}

.fox-atmosphere,
.fox-image,
.fox-glow,
.fox-overlay,
.rain-layer {
    position: absolute;
    inset: 0;
}

.fox-atmosphere {
    background-image: var(--fox-image);
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.55) saturate(1.05);
    transform: scale(1.15);
    opacity: 0.85;
}

.fox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* video inside fox-stage needs display:block + explicit fill so browsers don't collapse it */
video.fox-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.fox-image-gif {
    opacity: 0;
    transition: opacity 260ms ease;
}

.hero-section.is-hovering .fox-image-gif {
    opacity: 1;
}

.hero-section.is-hovering .fox-image-static {
    opacity: 0;
}

.fox-glow {
    background: radial-gradient(circle at 50% 60%, rgba(255, 140, 60, 0.05) 0%, rgba(0, 0, 0, 0.5) 75%);
}

.fox-overlay {
    background: rgba(8, 12, 20, 0.5);
}

.fox-overlay-hero {
    background: rgba(8, 12, 20, 0.32);
}

.fox-overlay-strong {
    background: rgba(8, 12, 20, 0.62);
}

.fox-overlay-footer {
    background: rgba(8, 12, 20, 0.18);
}

.rain-layer {
    background-image:
        repeating-linear-gradient(
            105deg,
            rgba(180, 210, 235, 0) 0,
            rgba(180, 210, 235, 0) 6px,
            rgba(180, 210, 235, 0.06) 6px,
            rgba(180, 210, 235, 0.06) 7px
        );
    background-size: 100% 200%;
    animation: rainfall 1.6s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.55;
}

@keyframes rainfall {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -60px 200%;
    }
}

.section-gradient-top {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 180px;
    z-index: 10;
    background: linear-gradient(to bottom, #060810 0%, transparent 100%);
    pointer-events: none;
}

.cinematic-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinematic-section .fox-stage {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-section:hover .fox-stage {
    transform: scale(1.03);
}

.cinematic-section .fox-image {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    animation: floatFox 6s ease-in-out infinite alternate;
}

.cinematic-section:hover .fox-image {
    transform: scale(1.05) translateY(-5px);
    filter: brightness(1.1) contrast(1.05);
}

@keyframes floatFox {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-8px) scale(1.02);
    }
}


.cinematic-card {
    position: relative;
    z-index: 20;
    max-width: 72rem;
    padding: 0 1.5rem;
    perspective: 400px;
}

.cinematic-text {
    margin: 0;
    padding: 0 1rem;
    font-family: var(--wf-font);
    font-size: clamp(1.375rem, 3vw, 2.625rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-align: center;
    transform: rotateX(24deg) translateY(60px) translateZ(15px);
    opacity: 0;
    transition: opacity 260ms linear;
}

.metrics-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metrics-inner {
    position: relative;
    z-index: 10;
    width: min(100%, 72rem);
    padding: 8rem 1.5rem;
}

.eyebrow {
    margin: 0 0 5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

.eyebrow-warm {
    margin-bottom: 2rem;
    color: rgba(255, 179, 107, 0.6);
}

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

.metric-card {
    text-align: center;
}

.metric-value {
    color: #ffc58a;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: -0.04em;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 170, 90, 0.18);
}

.metric-label {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    letter-spacing: 0.05em;
}

.services-section {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
}

.services-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.section-title {
    margin: 0;
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 300;
}

.section-support {
    max-width: 18rem;
    margin: 0;
    color: var(--wf-muted);
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    line-height: 1.75;
    text-align: right;
}

.services-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 4rem;
}

.service-card h3 {
    margin: 0 0 0.625rem;
    font-size: 1rem;
    font-weight: 400;
}

.service-card p {
    margin: 0;
    color: var(--wf-soft);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    line-height: 1.7;
}

.process-section {
    position: relative;
    background: #0a0d14;
}

.process-inner {
    width: min(100%, 52rem);
    margin: 0 auto;
    padding: 8rem 1.5rem;
    text-align: center;
}

.process-title {
    margin: 0 0 2.5rem;
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 300;
}

.process-copy {
    max-width: 40rem;
    margin: 0 auto;
    color: var(--wf-muted);
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.75;
}

.process-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 5rem;
    align-items: center;
}

.process-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 32rem);
    min-height: 4.5rem;
    padding: 0 1.5rem;
    border: 1px solid var(--wf-border);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.process-layer {
    color: rgba(255, 179, 107, 0.53);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.process-name {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 300;
}

.site-footer {
    display: flex;
    min-height: 25rem;
    background: #0a0d14;
}

.footer-media,
.footer-copy {
    width: 50%;
}

.footer-media {
    position: relative;  /* fox-stage inside needs a positioned parent */
    min-height: 25rem;
}

.footer-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 4rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 2rem;
    color: var(--wf-accent);
}

.footer-copy p {
    max-width: 22rem;
    margin: 0;
    color: var(--wf-soft);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.footer-copy a {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--wf-accent);
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.footer-meta {
    margin-top: 3rem;
    color: var(--wf-faint);
    font-size: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--wf-border);
    border-radius: 50%;
    color: var(--wf-soft);
    font-size: 1rem;
    text-decoration: none;
    transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.footer-social a:hover {
    color: var(--wf-accent);
    border-color: var(--wf-accent-soft);
    transform: translateY(-2px);
}

.reveal-on-scroll,
.reveal-on-load {
    opacity: 0;
    transform: translateY(28px);
}

.reveal-on-scroll.is-visible,
.reveal-on-load.is-ready {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.whiskfox-fallback {
    display: grid;
    place-items: center;
    padding: 4rem 1.5rem;
}

.fallback-copy {
    max-width: 40rem;
    text-align: center;
}

.fallback-copy h1 {
    margin-bottom: 1rem;
}

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

    .nav-mobile {
        display: flex;
        gap: 0.75rem;
    }

    .brand-pill-mobile {
        min-height: 2.25rem;
        padding: 0 0.75rem;
        border-radius: 0.625rem;
    }

    .brand-pill-mobile span {
        font-size: 0.8125rem;
        white-space: nowrap;
    }

    .menu-pill-mobile {
        margin-left: auto;
        height: 2.25rem;
        border-radius: 0.625rem;
    }

    .menu-pill-mobile.is-open {
        width: 100%;
    }

    .menu-pill-mobile:not(.is-open) {
        width: 2.25rem;
    }

    .menu-pill-mobile .menu-toggle {
        width: 2.25rem;
        height: 2.25rem;
    }

    .menu-pill-mobile .menu-panel {
        gap: 1rem;
        margin-left: 0.75rem;
    }

    .menu-pill-mobile .menu-panel a,
    .cta-pill-mobile {
        font-size: 0.8125rem;
    }

    .cta-pill-mobile {
        min-height: 2.25rem;
        padding: 0 0.875rem;
    }

    .hero-section {
        padding: 5rem 1rem 1.5rem;
    }

    .hero-copy,
    .services-header,
    .site-footer {
        flex-direction: column;
    }

    .hero-title-right {
        text-align: left;
    }

    .cinematic-text {
        padding: 0;
    }

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

    .section-support {
        text-align: left;
        max-width: none;
    }

    .services-grid {
        margin-top: 3rem;
    }

    .footer-media,
    .footer-copy {
        width: 100%;
    }

    .footer-media {
        min-height: 18rem;
    }

    .footer-copy {
        padding: 2.5rem;
    }
}

/* ── tap-for-audio button ──────────────────────────────────────────────────── */
.tap-for-audio {
    position: absolute;
    bottom: clamp(4rem, 14vh, 7.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    z-index: 30;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 179, 107, 0.5);
    border-radius: 999px;
    background: rgba(8, 12, 20, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 0 0 1px rgba(255, 179, 107, 0.12),
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 179, 107, 0.07);
    color: var(--wf-text);
    font-family: var(--wf-font);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.tap-for-audio.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tap-for-audio:hover {
    transform: translateX(-50%) scale(1.05);
}

.tap-for-audio:active {
    transform: translateX(-50%) scale(0.95);
}

.tap-audio-icon {
    color: var(--wf-accent);
    font-size: 0.9375rem;
    animation: tapIconPulse 1.8s ease-in-out infinite;
}

.tap-audio-text {
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}

.tap-audio-dot {
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--wf-accent);
    flex-shrink: 0;
    animation: tapDotBlink 1.4s ease-in-out infinite;
}

@keyframes tapIconPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.18); }
}

@keyframes tapDotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* ── contact section ───────────────────────────────────────────────────────── */
.contact-section {
    position: relative;
    background: #0a0d14;
    overflow: hidden;
}

.contact-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.025;
    pointer-events: none;
}

.contact-glow {
    position: absolute;
    top: -16rem;
    left: -8rem;
    width: 37.5rem;
    height: 37.5rem;
    background: radial-gradient(circle, rgba(255, 179, 107, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 10;
    width: min(100%, 42rem);
    margin: 0 auto;
    padding: 8rem 1.5rem 10rem;
}

.contact-heading {
    margin-bottom: 4rem;
}

.contact-title {
    margin: 0;
    font-size: clamp(2rem, 6.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--wf-text);
}

/* ── form ──────────────────────────────────────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 179, 107, 0.6);
}

.field-optional {
    margin-left: 0.5rem;
    font-size: 0.5625rem;
    letter-spacing: normal;
    text-transform: none;
    opacity: 0.5;
}

.field-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 179, 107, 0.2);
    padding-bottom: 0.75rem;
    color: var(--wf-text);
    font-family: var(--wf-font);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.field-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.field-input:focus {
    border-bottom-color: rgba(255, 179, 107, 0.6);
}

.field-textarea {
    resize: none;
    line-height: 1.7;
}

/* error states */
.field-error {
    display: block;
    min-height: 1em;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    color: #ff7070;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.field-group.has-error .field-error {
    opacity: 1;
    transform: translateY(0);
}

.field-group.has-error .field-input,
.field-group.has-error .mobile-row {
    border-bottom-color: rgba(255, 100, 100, 0.5);
}

/* ── mobile row ────────────────────────────────────────────────────────────── */
.mobile-row {
    display: flex;
    align-items: flex-end;
    gap: 0;
    border-bottom: 1px solid rgba(255, 179, 107, 0.2);
    padding-bottom: 0.75rem;
    transition: border-color 0.25s;
}

.mobile-row:focus-within {
    border-bottom-color: rgba(255, 179, 107, 0.6);
}

.country-wrap {
    position: relative;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.country-select {
    background: transparent;
    border: none;
    color: var(--wf-accent);
    font-family: var(--wf-font);
    font-size: 0.8125rem;
    padding-right: 1.25rem;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.country-select option {
    background: #0a0d14;
    color: #fff;
}

.country-caret {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.625rem;
    color: var(--wf-accent);
    pointer-events: none;
}

.mobile-divider {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.mobile-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--wf-text);
    font-family: var(--wf-font);
    font-size: 0.9375rem;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* ── service pills ─────────────────────────────────────────────────────────── */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding-top: 0.25rem;
}

.service-pill {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 179, 107, 0.2);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--wf-font);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.service-pill:hover {
    border-color: rgba(255, 179, 107, 0.4);
    color: rgba(255, 255, 255, 0.65);
}

.service-pill.is-active {
    border-color: var(--wf-accent);
    color: var(--wf-accent);
    background: rgba(255, 179, 107, 0.08);
}

/* ── submit button ─────────────────────────────────────────────────────────── */
.contact-submit {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 999px;
    background: var(--wf-accent);
    color: #0a0d14;
    font-family: var(--wf-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.contact-submit:hover {
    transform: scale(1.03);
}

.contact-submit:active {
    transform: scale(0.97);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ── success state ─────────────────────────────────────────────────────────── */
.contact-thankyou {
    text-align: center;
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-thankyou.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.thankyou-fox {
    margin: 0 0 1.5rem;
    font-size: 2.5rem;
    line-height: 1;
    user-select: none;
}

.thankyou-heading {
    margin: 0 0 0.75rem;
    font-size: clamp(1.375rem, 4vw, 2.125rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--wf-text);
}

.thankyou-sub {
    max-width: 18rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    line-height: 1.7;
}

.contact-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 179, 107, 0.08);
}

/* ── contact mobile ────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .contact-inner {
        padding: 5rem 1.25rem 7rem;
    }

    .service-pills {
        gap: 0.5rem;
    }

    .service-pill {
        font-size: 0.625rem;
        padding: 0.4375rem 0.875rem;
    }

    .tap-for-audio {
        padding: 0.625rem 1rem;
    }

    .tap-audio-text {
        font-size: 0.625rem;
    }
}

/* ==================== PORTFOLIO SUBPAGE ==================== */
.portfolio-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 1.5rem 6rem;
    min-height: 70vh;
}

.portfolio-hero-inner {
    position: relative;
    z-index: 10;
    width: min(100%, 52rem);
    margin: 0 auto;
}

.portfolio-title {
    margin: 0 0 1.5rem;
    font-family: var(--wf-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.portfolio-lead {
    color: var(--wf-muted);
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto 3rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--wf-soft);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--wf-font);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    background: rgba(255, 179, 107, 0.08);
    border-color: var(--wf-accent-soft);
    color: var(--wf-accent);
}

.filter-btn.is-active {
    background: var(--wf-accent);
    color: #000;
    border-color: var(--wf-accent);
    font-weight: 700;
}

/* Grid */
.portfolio-grid-section {
    position: relative;
    padding: 2rem 1.5rem 8rem;
    background: #000;
    z-index: 10;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card.is-hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    display: none;
}

.portfolio-card-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #05070d;
}

.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.portfolio-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.portfolio-card-tag {
    color: var(--wf-accent);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-card-name {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Card Hover States */
.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--wf-border);
    box-shadow: 0 20px 40px rgba(255, 179, 107, 0.04);
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.04);
}

.portfolio-card:hover .portfolio-card-name {
    color: var(--wf-accent);
}

/* ── glassmorphic modal ───────────────────────────────────────────── */
.portfolio-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.portfolio-modal-container {
    position: relative;
    z-index: 10;
    width: min(100%, 64rem);
    max-height: calc(100vh - 3rem);
    background: rgba(10, 13, 20, 0.8);
    border: 1px solid rgba(255, 179, 107, 0.15);
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: var(--wf-shadow);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.portfolio-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 30;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--wf-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-modal-close:hover {
    background: rgba(255, 179, 107, 0.15);
    border-color: var(--wf-accent);
    color: var(--wf-accent);
    transform: rotate(90deg);
}

.portfolio-modal-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 32rem;
}

.portfolio-modal-media {
    position: relative;
    background: #020306;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 16/11;
}

.portfolio-modal-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-modal-slider-nav {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    pointer-events: none;
    z-index: 20;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--wf-text);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--wf-accent);
    color: #000;
    border-color: var(--wf-accent);
}

.portfolio-modal-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-modal-tag {
    color: var(--wf-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-modal-title {
    margin: 0 0 1.5rem;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.25;
}

.portfolio-modal-desc {
    color: var(--wf-soft);
    font-size: 0.875rem;
    line-height: 1.75;
    margin: 0 0 2.5rem;
}

.portfolio-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--wf-accent);
    color: #000;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.portfolio-modal-btn:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 179, 107, 0.15);
}

/* Responsive Grid and Modal */
@media (max-width: 960px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .portfolio-modal-content {
        grid-template-columns: 1fr;
    }

    .portfolio-modal-details {
        padding: 2rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-hero {
        padding-top: 8rem;
        min-height: 50vh;
    }

    .portfolio-title {
        font-size: 2.25rem;
    }

    .portfolio-modal-container {
        border-radius: 12px;
    }
}


