/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid var(--g2);
    transition: border-color 0.3s;
}

.site-nav.dark { border-bottom-color: var(--black); }

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--g4);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--white);
    background: var(--black);
    padding: 0.5rem 1.1rem;
    transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.7; }

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--black);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--black);
    z-index: 90;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.mobile-nav-inner {
    padding: 8px 0 24px;
}

.mobile-nav-link {
    font-family: 'Syne Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--g4);
    text-decoration: none;
    padding: 14px 24px;
    border-bottom: 1px solid var(--g2);
    display: block;
    transition: color 0.15s, background 0.15s;
    min-height: 48px;
}

.mobile-nav-link:active { background: var(--g1); color: var(--black); }

.mobile-nav-cta {
    display: block;
    text-align: center;
    background: var(--black);
    color: var(--white);
    font-family: 'Syne Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 16px 24px;
    text-decoration: none;
    margin: 20px 24px 0;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-cta:active { opacity: 0.7; }


/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--g2);
    animation: fadeUp 0.6s ease forwards;
}

.hero-left {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--g2);
}

.hero-index {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g3);
}

.hero-title-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
}

.hero-discipline {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 1.75rem;
}

.hero-name {
    font-weight: 800;
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
}

.hero-tagline {
    font-size: 15px;
    line-height: 1.65;
    color: var(--g4);
    max-width: 380px;
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-location {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g3);
}

.hero-scroll {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--g3);
}

.hero-time {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--g3);
}

.hero-right {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ── Availability card ── */
.avail-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    gap: 0;
}

.avail-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--g3);
}

/* Status variants */
.avail-card[data-status="available"] .avail-dot {
    background: #16a34a;
    animation: avail-pulse 2.4s ease-in-out infinite;
}

.avail-card[data-status="limited"] .avail-dot {
    background: #ca8a04;
}

.avail-card[data-status="busy"] .avail-dot {
    background: var(--g3);
}

@keyframes avail-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

.avail-label {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.avail-card[data-status="busy"] .avail-label { color: var(--g3); }

.avail-rule {
    height: 1px;
    background: var(--g2);
}

.avail-services {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.avail-services span {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g3);
    border: 1px solid var(--g2);
    padding: 3px 8px;
}

.avail-response {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--g3);
    padding: 16px 0 20px;
}

.avail-cta {
    display: inline-block;
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    padding: 14px 20px;
    transition: opacity 0.2s;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.avail-cta:hover,
.avail-cta:active { opacity: 0.7; }

.avail-card[data-status="busy"] .avail-cta { display: none; }


/* ═══════════════════════════════
   NOW PLAYING — no header, with cover art
═══════════════════════════════ */
.np-card {
    border: 1px solid var(--g2);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.3s;
}

.np-card.playing { border-color: var(--black); }

.np-art-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--g1);
    border: 1px solid var(--g2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.3s;
}

.np-card.has-art .np-cover { display: block; }
.np-card.has-art .np-icon { display: none; }

.np-icon {
    width: 16px;
    height: 16px;
    fill: var(--g3);
    flex-shrink: 0;
}

.np-details {
    flex: 1;
    min-width: 0;
}

.np-idle-text {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    color: var(--g3);
}

.np-card.playing .np-idle-text { display: none; }

.np-track-info { display: none; }
.np-card.playing .np-track-info { display: block; }

.np-track {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.np-track a { color: inherit; text-decoration: none; }

.np-artist {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    color: var(--g3);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.np-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.np-card.playing .np-eq { opacity: 1; }

.np-eq span {
    display: block;
    width: 3px;
    height: 16px;
    border-radius: 1px;
    background: var(--black);
    transform: scaleY(0.1875);
    transform-origin: center bottom;
    will-change: transform;
}

.np-card.playing .np-eq span:nth-child(1) { animation: npeq 0.9s ease-in-out infinite; }
.np-card.playing .np-eq span:nth-child(2) { animation: npeq 0.7s ease-in-out 0.15s infinite; }
.np-card.playing .np-eq span:nth-child(3) { animation: npeq 1.1s ease-in-out 0.05s infinite; }
.np-card.playing .np-eq span:nth-child(4) { animation: npeq 0.8s ease-in-out 0.3s infinite; }

@keyframes npeq {
    0%, 100% { transform: scaleY(0.1875); }
    50%       { transform: scaleY(1); }
}


/* ═══════════════════════════════
   SECTION BASE
═══════════════════════════════ */
.section { border-bottom: 1px solid var(--g2); }

.section-hd {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 40px 0;
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
}

.s-num {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--g3);
}

.s-title {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.s-count {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    color: var(--g3);
    margin-left: auto;
}


/* ═══════════════════════════════
   WORK GRID
═══════════════════════════════ */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--g2);
    gap: 1px;
    border-top: 1px solid var(--g2);
    margin-top: 40px;
}

.wi {
    background: var(--white);
    overflow: hidden;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.wi:hover { background: var(--g1); }

.wi-b1 { grid-column: 1 / 3; }
.wi-b2 { grid-column: 3 / 4; }
.wi-web { grid-column: 1 / -1; }
.wi-c1 { grid-column: 1 / 2; }
.wi-c2 { grid-column: 2 / -1; }

.wi-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--g1);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent, transparent 6px,
        rgba(0, 0, 0, 0.04) 6px, rgba(0, 0, 0, 0.04) 12px
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.wi:hover .wi-img img { transform: scale(1.02); }

.wi-web .wi-img { aspect-ratio: 16 / 6; }

.wi-img-lbl {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g3);
    position: absolute;
}

/* ── Coming Soon cards ── */

/* Hide img tag when src is empty — swap in real src to reveal */
[data-coming-soon] .wi-img img:not([src]),
[data-coming-soon] .wi-img img[src=""] {
    display: none;
}

/* Shimmer sweep over the placeholder background */
[data-coming-soon] .wi-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 70%
    );
    transform: translateX(-120%);
    animation: wi-shimmer 2.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wi-shimmer {
    0%   { transform: translateX(-120%); }
    100% { transform: translateX(220%); }
}

/* In Progress badge */
.wi-cs-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.wi-cs-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ca8a04;
    flex-shrink: 0;
    animation: cs-dot 1.8s ease-in-out infinite;
}

@keyframes cs-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* "Coming soon" link label */
.wi-link-soon {
    color: var(--g3);
    border-bottom-color: transparent;
}

[data-coming-soon] { cursor: pointer; }

/* Toast notification */
.wi-toast {
    position: fixed;
    bottom: calc(76px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--black);
    color: var(--white);
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    z-index: 500;
}

.wi-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wi-meta { padding: 20px 24px 28px; }

.wi-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.wi-tag {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g3);
    border: 1px solid var(--g2);
    padding: 2px 7px;
}

.wi-name {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.wi-desc {
    font-size: 13px;
    color: var(--g4);
    line-height: 1.6;
}

.wi-link {
    display: inline-block;
    margin-top: 12px;
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--g3);
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.wi:hover .wi-link {
    color: var(--black);
    border-bottom-color: var(--black);
}


/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--g2);
    gap: 1px;
    border-top: 1px solid var(--g2);
    margin-top: 40px;
}

.svc {
    background: var(--white);
    padding: 48px 40px;
}

.svc-idx {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--g3);
    margin-bottom: 2rem;
}

.svc-name {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.025em;
    line-height: 1.0;
    margin-bottom: 6px;
}

.svc-price {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--g3);
    margin-bottom: 2rem;
}

.svc-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.svc-list li {
    font-size: 13px;
    color: var(--g4);
    padding: 10px 0;
    border-bottom: 1px solid var(--g2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.svc-list li::before {
    content: '—';
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    color: var(--g3);
    flex-shrink: 0;
}

.svc-cta {
    display: inline-block;
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--black);
    text-decoration: none;
    border: 1px solid var(--black);
    padding: 0.6rem 1.2rem;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.svc-cta:hover,
.svc-cta:active { background: var(--black); color: var(--white); }


/* ═══════════════════════════════
   BRANDS
═══════════════════════════════ */
.brands-strip { border-bottom: 1px solid var(--g2); }

.brands-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.brands-lbl {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--g3);
    white-space: nowrap;
}

.brands-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.brand-link {
    opacity: 0.45;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.brand-link:hover,
.brand-link:active { opacity: 1; }

.brand-link img { height: 30px; width: auto; }

.services-dots { display: none; }


/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--g2);
    gap: 1px;
    border-top: 1px solid var(--g2);
    margin-top: 40px;
}

.about-text {
    background: var(--white);
    padding: 60px 40px;
}

.about-bio {
    font-size: 15px;
    line-height: 1.8;
    color: var(--g4);
    max-width: 480px;
}

.about-bio p { margin-bottom: 1.25rem; }
.about-bio p:last-child { margin-bottom: 0; }

.about-bio a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--g2);
    transition: border-color 0.2s;
}

.about-bio a:hover { border-bottom-color: var(--black); }

.about-img-col {
    background: var(--white);
    padding: 60px 40px;
}

.about-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--g1);
}

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


/* ═══════════════════════════════
   INQUIRE
═══════════════════════════════ */
.inquire-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: var(--g2);
    gap: 1px;
    border-top: 1px solid var(--g2);
    margin-top: 40px;
}

.inquire-left {
    background: var(--white);
    padding: 60px 40px;
}

.inquire-hl {
    font-weight: 800;
    font-size: clamp(28px, 3vw, 48px);
    letter-spacing: -0.03em;
    line-height: 1.0;
    margin-bottom: 1.5rem;
}

.inquire-sub {
    font-size: 14px;
    color: var(--g4);
    line-height: 1.65;
    max-width: 300px;
}

.inquire-right {
    background: var(--white);
    padding: 60px 40px;
}

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

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
}

.fg-lbl {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g3);
}

.f-input,
.f-select,
.f-textarea {
    font-family: 'Syne', sans-serif;
    font-size: 16px; /* ≥16px prevents iOS auto-zoom */
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--g2);
    padding: 12px;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s;
    border-radius: 0;
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus { border-color: var(--black); }

.f-textarea { resize: vertical; min-height: 120px; }

.f-sel-wrap { position: relative; }

.f-sel-wrap::after {
    content: '↓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--g3);
    pointer-events: none;
}

.f-submit {
    font-family: 'Syne Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--white);
    background: var(--black);
    border: none;
    padding: 16px 28px;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 0.5rem;
    min-height: 48px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.f-submit:hover,
.f-submit:active { opacity: 0.7; }

.f-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Honeypot — visually hidden, not announced */
.f-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* WhatsApp phone input */
.f-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.f-phone-prefix {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: var(--g3);
}

.f-phone-prefix svg {
    width: 14px;
    height: 14px;
}

.f-phone-input { padding-left: 34px; }

/* Optional label badge */
.fg-optional {
    font-family: 'Syne Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.08em;
    color: var(--g3);
    text-transform: none;
    margin-left: 4px;
}

/* Currency toggle */
.currency-wrap {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.currency-toggle {
    display: flex;
    border: 1px solid var(--g2);
}

.cur-btn {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--g3);
    transition: background 0.15s, color 0.15s;
    min-height: 32px;
    -webkit-tap-highlight-color: transparent;
}

.cur-btn.active {
    background: var(--black);
    color: var(--white);
}

.cur-btn:not(.active):hover { color: var(--black); }

.cur-rate {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    color: var(--g3);
}

/* Price value — fades during currency switch */
.price-val {
    transition: opacity 0.15s ease;
}

/* Form feedback panels */
.f-success,
.f-error {
    display: none;
    border: 1px solid var(--g2);
    padding: 3rem 2rem;
    text-align: center;
}

.f-success.show { display: block; }
.f-error.show   { display: block; border-color: #e0e0e0; }

.f-success-title,
.f-error-title {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.f-success-sub,
.f-error-sub {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    color: var(--g3);
    letter-spacing: 0.04em;
}

.f-error-sub a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--g2);
    transition: border-color 0.2s;
}

.f-error-sub a:hover { border-bottom-color: var(--black); }


/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer { border-top: 1px solid var(--g2); }

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand {
    font-family: 'Syne Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
}

.footer-tagline,
.footer-location {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--g3);
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-label {
    font-family: 'Syne Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 4px;
}

.footer-nav-link {
    font-family: 'Syne Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--g4);
    text-decoration: none;
    transition: color 0.2s;
    min-height: 24px;
    display: flex;
    align-items: center;
}

.footer-nav-link:hover,
.footer-nav-link:active { color: var(--black); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--g2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-stamp {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--g3);
}

.footer-cta {
    font-family: 'Syne Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--g4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-cta:hover,
.footer-cta:active { color: var(--black); }


/* ═══════════════════════════════
   MOBILE STICKY CTA
   Appears only on mobile, hides near the inquire section
═══════════════════════════════ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 80;
    background: var(--white);
    border-top: 1px solid var(--g2);
    padding: 10px 24px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.mobile-cta-bar a {
    display: block;
    text-align: center;
    background: var(--black);
    color: var(--white);
    font-family: 'Syne Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 14px;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s;
}

.mobile-cta-bar a:active { opacity: 0.7; }

.mobile-cta-bar.hidden { display: none !important; }


/* ═══════════════════════════════
   RESPONSIVE — Tablet (≤960px)
═══════════════════════════════ */
@media (max-width: 960px) {
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-cta-bar { display: block; }

    /* Account for sticky mobile CTA bar */
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-left {
        border-right: none;
        border-bottom: 1px solid var(--g2);
        padding: 64px 24px 40px;
    }

    .hero-right { padding: 32px 24px 48px; }

    .avail-card { padding: 24px 0; }
    .avail-cta { display: none; }

    .work-grid { grid-template-columns: 1fr; }
    .wi-b1, .wi-b2, .wi-web, .wi-c1, .wi-c2 { grid-column: 1; }
    .wi-web .wi-img { aspect-ratio: 4 / 3; }
    .wi-img { aspect-ratio: 16 / 9; }

    /* Services: full-screen snap scroll on mobile */
    .services-scroll-wrap {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .services-scroll-wrap::-webkit-scrollbar { display: none; }

    .services-grid {
        grid-template-columns: calc(100vw - 48px) calc(100vw - 48px) calc(100vw - 48px);
        min-width: max-content;
        background: transparent;
        gap: 8px;
        border-top: none;
        margin-top: 0;
        padding: 24px;
    }

    .svc {
        border: 1px solid var(--g2);
        scroll-snap-align: start;
        padding: 32px 28px;
    }

    /* Scroll indicator dots */
    .services-dots {
        display: flex;
        gap: 6px;
        justify-content: center;
        padding: 16px 24px;
        border-bottom: 1px solid var(--g2);
    }

    .svc-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--g2);
        transition: background 0.25s ease;
        flex-shrink: 0;
    }

    .svc-dot.active { background: var(--black); }

    .section-hd { padding: 32px 24px 0; }
    .about-grid { grid-template-columns: 1fr; }
    .about-text { padding: 40px 24px; }
    .about-img-col { padding: 0 24px 40px; }
    .about-photo { height: 280px; }

    .inquire-grid { grid-template-columns: 1fr; }
    .inquire-left { padding: 40px 24px 32px; }
    .inquire-right { padding: 32px 24px 48px; }
    .form-row { grid-template-columns: 1fr; }

    .brands-inner { padding: 28px 24px; }
    .footer-inner { padding: 40px 24px 28px; }
    .footer-top { flex-direction: column; gap: 2rem; }
    .footer-nav { gap: 2rem; }
}


/* ═══════════════════════════════
   RESPONSIVE — Phone (≤480px)
═══════════════════════════════ */
@media (max-width: 480px) {
    .hero-name { font-size: 46px; }
    .hero-title-block { padding: 32px 0; }
    .brands-list { gap: 1.5rem; }
    .brand-link img { height: 24px; }
}
