/*
Theme Name: Facade Sculpture
Theme URI: https://facadesculpture.com
Author: CCS / Facade Sculpture
Description: Custom WordPress theme for Facade Sculpture - precision foam/stone design and installation. Sister division of CCS.
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: facade-sculpture
*/

/* =========================================================
   Tokens
   ========================================================= */
:root {
    --fs-ink: #1a1814;
    --fs-bone: #ebe5d8;
    --fs-stone: #c9b89a;
    --fs-stone-dark: #8a7a5e;
    --fs-accent: #c79a14;
    --fs-accent-deep: #c79a14;
    --fs-muted: #6b6358;
    --fs-line: rgba(26, 24, 20, 0.12);
    --fs-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.08);
    --fs-radius: 4px;
    --fs-container: 1200px;
    --fs-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --fs-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--fs-font-body);
    color: var(--fs-ink);
    background: var(--fs-bone);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fs-accent-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--fs-ink); }

h1, h2, h3, h4 {
    font-family: var(--fs-font-display);
    font-weight: 500;
    color: var(--fs-ink);
    line-height: 1.15;
    margin: 0 0 .5em;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }
p { margin: 0 0 1.1em; }

.fs-container {
    max-width: var(--fs-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   Header / nav
   ========================================================= */
.fs-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(235,229,216, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--fs-line);
}
.fs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(24px, 4vw, 56px);
    max-width: none;
    margin: 0;
    width: 100%;
}
.fs-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--fs-font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--fs-ink);
}
.fs-brand-logo {
    width: 40px;
    height: 40px;
    display: block;
    flex: 0 0 auto;
    /* Force the whole mark to solid black for visibility on the bone header. */
    filter: brightness(0);
}
.fs-brand-footer .fs-brand-logo {
    /* Footer logo stays as the original PNG (no filter). */
    filter: none;
}
.fs-brand-text { line-height: 1; }
.fs-brand-text span,
.fs-brand > span { color: var(--fs-accent-deep); }
.fs-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}
.fs-nav a {
    color: var(--fs-ink);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.fs-nav a:hover { color: var(--fs-accent-deep); }

/* Mobile nav toggle (burger) - hidden on desktop */
.fs-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
}
.fs-nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fs-ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.fs-nav-toggle.is-open .fs-nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.fs-nav-toggle.is-open .fs-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.fs-nav-toggle.is-open .fs-nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
body.fs-nav-locked { overflow: hidden; }

/* =========================================================
   Buttons
   ========================================================= */
.fs-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--fs-ink);
    color: var(--fs-bone);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--fs-radius);
    border: 1px solid var(--fs-ink);
    transition: all .25s ease;
}
.fs-btn:hover { background: var(--fs-accent); border-color: var(--fs-accent); color: var(--fs-ink); }
.fs-btn-ghost {
    background: transparent;
    color: var(--fs-ink);
}
.fs-btn-ghost:hover { background: var(--fs-ink); color: var(--fs-bone); }

/* =========================================================
   Hero - split editorial layout (text panel + image panel)
   Modern luxury pattern: text on solid bone (always readable),
   image on its own panel (no overlay fighting the type).
   ========================================================= */
.fs-hero {
    position: relative;
    background: var(--fs-bone);
}
.fs-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    min-height: 88vh;
}
.fs-hero-panel {
    background: var(--fs-bone);
    display: flex;
    align-items: center;
    padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 88px);
    position: relative;
    z-index: 2;
}
.fs-hero-panel::after {
    /* hairline divider where the panels meet on desktop */
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 1px;
    background: var(--fs-line);
}
.fs-hero-panel-inner {
    max-width: 580px;
}
.fs-hero .fs-eyebrow {
    color: var(--fs-accent-deep);
    margin-bottom: 28px;
}
.fs-hero h1 {
    color: var(--fs-ink);
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.022em;
    margin: 0 0 28px;
    font-weight: 500;
}
.fs-hero-sub {
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    line-height: 1.65;
    color: var(--fs-ink);
    opacity: 0.78;
    margin: 0 0 40px;
    max-width: 52ch;
}
.fs-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.fs-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    padding-top: 28px;
    border-top: 1px solid var(--fs-line);
    color: var(--fs-muted);
    font-size: .9rem;
    line-height: 1.5;
}
.fs-hero-meta-num {
    display: block;
    font-family: var(--fs-font-display);
    font-size: 1.65rem;
    color: var(--fs-ink);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.fs-hero-image {
    position: relative;
    overflow: hidden;
    background: var(--fs-stone-dark);
}
.fs-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.fs-hero-tag {
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    bottom: clamp(20px, 3vw, 40px);
    background: rgba(26, 24, 20, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--fs-bone);
    font-size: .78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--fs-radius);
    z-index: 2;
}

/* Buttons used by the hero - cleaner variants */
.fs-btn-primary {
    background: var(--fs-ink);
    color: var(--fs-bone);
    border-color: var(--fs-ink);
}
.fs-btn-primary:hover {
    background: var(--fs-accent);
    color: var(--fs-ink);
    border-color: var(--fs-accent);
}
.fs-btn-outline {
    background: transparent;
    color: var(--fs-ink);
    border-color: var(--fs-ink);
}
.fs-btn-outline:hover {
    background: var(--fs-ink);
    color: var(--fs-bone);
}

/* --- compact split hero (used by interior pages: process, projects,
       gallery, start-project). Shorter than the homepage split hero. --- */
.fs-hero-split.fs-hero-split-compact {
    min-height: 52vh;
}
.fs-hero-split-compact .fs-hero-panel {
    padding: clamp(40px, 5vw, 72px) clamp(24px, 4.5vw, 64px);
}
.fs-hero-split-compact h1 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    margin-bottom: 20px;
}
.fs-hero-split-compact .fs-hero-sub {
    margin-bottom: 0;
}

/* --- mobile: stack image on top, text below on solid bone --- */
@media (max-width: 880px) {
    .fs-hero-split {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .fs-hero-image {
        aspect-ratio: 4/3;
        order: -1;
    }
    .fs-hero-tag {
        font-size: .7rem;
        letter-spacing: 0.12em;
        padding: 8px 12px;
    }
    .fs-hero-panel {
        padding: 40px 24px 48px;
    }
    .fs-hero-panel::after { display: none; }
    .fs-hero h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
    .fs-hero-sub { font-size: 1rem; margin-bottom: 28px; }
    .fs-hero-ctas { margin-bottom: 32px; }
    .fs-hero-ctas .fs-btn { flex: 1 1 auto; text-align: center; }
    .fs-hero-meta { gap: 12px 24px; }
    .fs-hero-meta-num { font-size: 1.4rem; }
    .fs-hero-split-compact .fs-hero-image { aspect-ratio: 16/10; }
    .fs-hero-split-compact .fs-hero-panel { padding: 32px 24px 40px; }
    .fs-hero-split-compact h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}
.fs-eyebrow {
    display: inline-block;
    font-size: .8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fs-stone);
    margin-bottom: 16px;
    font-weight: 500;
}

/* =========================================================
   Sections
   ========================================================= */
.fs-section {
    padding: 96px 0;
}
.fs-section-alt {
    background: #fff;
}
.fs-section-dark {
    background: var(--fs-ink);
    color: var(--fs-bone);
}
.fs-section-dark h2,
.fs-section-dark h3 { color: var(--fs-bone); }

.fs-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.fs-section-head .fs-eyebrow { color: var(--fs-accent-deep); }
.fs-section-head p { color: var(--fs-muted); font-size: 1.1rem; }

/* =========================================================
   Editorial mosaic (homepage "Selected Work")
   1 tall feature image on left, 3 stacked on the right.
   Each tile links to the full /projects/ gallery.
   ========================================================= */
.fs-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 14px;
    aspect-ratio: 16/10;
    max-width: 1100px;
    margin: 0 auto;
}
.fs-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--fs-radius);
    background: var(--fs-stone-dark);
    display: block;
    color: var(--fs-bone);
    box-shadow: var(--fs-shadow);
    isolation: isolate;
}
.fs-mosaic-feature {
    grid-row: 1 / span 3;
    grid-column: 1;
}
.fs-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.fs-mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26,24,20,0.55) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.fs-mosaic-item:hover img { transform: scale(1.045); }
.fs-mosaic-item:hover::after { opacity: 1; }
.fs-mosaic-caption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: var(--fs-bone);
    font-size: .82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.fs-mosaic-item:hover .fs-mosaic-caption {
    opacity: 1;
    transform: translateY(0);
}

.fs-mosaic-cta {
    text-align: center;
    margin-top: 48px;
}
.fs-mosaic-cta .fs-btn { padding: 14px 36px; }

@media (max-width: 768px) {
    .fs-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
        gap: 10px;
    }
    .fs-mosaic-feature {
        grid-row: 1;
        grid-column: 1 / span 2;
        aspect-ratio: 16/10;
    }
    .fs-mosaic-item:not(.fs-mosaic-feature) {
        aspect-ratio: 1/1;
    }
    .fs-mosaic-caption { opacity: 1; transform: none; font-size: .72rem; }
    .fs-mosaic-cta { margin-top: 32px; }
    .fs-mosaic-hide-mobile { display: none; }
}

/* =========================================================
   Gallery grid (legacy, still used elsewhere)
   ========================================================= */
.fs-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.fs-gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--fs-radius);
    background: var(--fs-stone-dark);
}
.fs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.fs-gallery-item:hover img { transform: scale(1.05); }
.fs-gallery-item-wide { aspect-ratio: 1/1; }

/* =========================================================
   Process steps
   ========================================================= */
.fs-process {
    display: grid;
    gap: 32px;
    counter-reset: step;
}
.fs-process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    box-shadow: var(--fs-shadow);
    align-items: flex-start;
}
.fs-process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--fs-font-display);
    font-size: 3rem;
    color: var(--fs-accent-deep);
    line-height: 1;
}
.fs-process-step h3 { margin-bottom: 8px; }
.fs-process-step p { color: var(--fs-muted); margin: 0; }

/* =========================================================
   Footer
   ========================================================= */
.fs-footer {
    background: var(--fs-ink);
    color: rgba(235,229,216, 0.7);
    padding: 64px 0 32px;
    font-size: .95rem;
}
.fs-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.fs-footer h4 {
    color: var(--fs-bone);
    font-family: var(--fs-font-body);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.fs-footer a { color: rgba(235,229,216, 0.7); }
.fs-footer a:hover { color: var(--fs-stone); }
.fs-footer ul { list-style: none; padding: 0; margin: 0; }
.fs-footer ul li { margin-bottom: 8px; }
.fs-footer-bottom {
    border-top: 1px solid rgba(235,229,216, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .85rem;
}

/* =========================================================
   CTA band
   ========================================================= */
.fs-cta {
    text-align: center;
    padding: 88px 24px;
}
.fs-cta h2 {
    color: var(--fs-bone);
    margin-bottom: 16px;
}
.fs-cta p {
    color: rgba(235,229,216, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

/* =========================================================
   Compact hero (used by interior pages: projects, team, process,
   start-project). Single-panel image-with-overlay layout.
   ========================================================= */
.fs-hero-compact {
    min-height: 52vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.fs-hero-compact .fs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.fs-hero-compact .fs-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 18% center;
}
.fs-hero-compact .fs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(235,229,216,0.85) 0%,
        rgba(235,229,216,0.62) 28%,
        rgba(235,229,216,0.15) 58%,
        rgba(235,229,216,0) 80%);
    pointer-events: none;
}
.fs-hero-compact .fs-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--fs-container);
    margin: 0 auto;
    padding: 64px 24px;
    color: var(--fs-ink);
    width: 100%;
}
.fs-hero-compact h1 {
    max-width: 800px;
    color: var(--fs-ink);
}
.fs-hero-compact .fs-hero-sub {
    max-width: 640px;
    color: var(--fs-ink);
    opacity: 0.78;
    margin-bottom: 0;
}
@media (max-width: 880px) {
    .fs-hero-compact { min-height: 42vh; }
    .fs-hero-compact .fs-hero-content { padding: 48px 24px; }
    .fs-hero-compact .fs-hero-bg::after {
        background: linear-gradient(180deg,
            rgba(235,229,216,0.92) 0%,
            rgba(235,229,216,0.75) 35%,
            rgba(235,229,216,0.5) 65%,
            rgba(235,229,216,0.4) 100%);
    }
}

/* =========================================================
   Projects page
   ========================================================= */
.fs-project { padding: 96px 0; }
.fs-project-head {
    max-width: 820px;
    margin: 0 auto 48px;
}
.fs-project-head h2 { margin-bottom: 16px; }
.fs-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 20px;
    font-size: .92rem;
    color: var(--fs-muted);
    padding-top: 18px;
    border-top: 1px solid var(--fs-line);
}
.fs-project-meta strong {
    color: var(--fs-ink);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: .75rem;
    margin-right: 6px;
}
.fs-project-feature {
    margin: 0 auto 48px;
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow);
    background: var(--fs-stone-dark);
    aspect-ratio: 16/9;
    max-width: 100%;
}
.fs-project-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fs-project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.fs-project-video-gallery {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
    .fs-project-video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
.fs-project-gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--fs-radius);
    background: var(--fs-stone-dark);
    box-shadow: var(--fs-shadow);
}
.fs-project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.fs-project-gallery-item:hover img { transform: scale(1.04); }
.fs-project-body {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
}
.fs-project-body p { color: var(--fs-ink); }

/* =========================================================
   Dedicated Gallery page - photo grid
   ========================================================= */
.fs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fs-gallery-tile {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--fs-radius);
    aspect-ratio: 4/5;
    background: var(--fs-stone-dark);
    box-shadow: var(--fs-shadow);
    isolation: isolate;
}
.fs-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.fs-gallery-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26,24,20,0.55) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.fs-gallery-tile figcaption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: var(--fs-bone);
    font-size: .8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s ease, transform .35s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.fs-gallery-tile:hover img { transform: scale(1.04); }
.fs-gallery-tile:hover::after { opacity: 1; }
.fs-gallery-tile:hover figcaption { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .fs-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fs-gallery-tile figcaption { opacity: 1; transform: none; font-size: .72rem; }
}
@media (max-width: 540px) {
    .fs-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .fs-gallery-tile { aspect-ratio: 4/3; }
}

/* =========================================================
   Process in Motion - video grid
   ========================================================= */
.fs-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.fs-video-item {
    margin: 0;
    background: var(--fs-ink);
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow);
}
.fs-video-item video {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
    background: var(--fs-ink);
    object-fit: cover;
}
.fs-video-item figcaption {
    padding: 12px 14px 14px;
    font-size: .85rem;
    color: var(--fs-muted);
    background: #fff;
    line-height: 1.45;
}

/* =========================================================
   Our Team page
   ========================================================= */
.fs-team-hero {
    padding: 80px 0 32px;
    text-align: center;
    background: var(--fs-bone);
}
.fs-team-hero .fs-eyebrow {
    color: var(--fs-accent-deep);
    margin-bottom: 18px;
}
.fs-team-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 0 auto 16px;
    max-width: 18ch;
}
.fs-team-hero-sub {
    max-width: 640px;
    margin: 0 auto;
    color: var(--fs-ink);
    opacity: 0.78;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Featured Artist - photo on left, bio on right */
.fs-featured-artist {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}
.fs-featured-photo {
    position: sticky;
    top: 96px;
    aspect-ratio: 3/4;
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow);
    background: var(--fs-stone-dark);
}
.fs-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fs-featured-body .fs-eyebrow {
    color: var(--fs-accent-deep);
    margin-bottom: 18px;
}
.fs-featured-body h2 {
    margin: 0 0 6px;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
}
.fs-featured-role {
    color: var(--fs-muted);
    font-size: .9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.fs-featured-body p {
    color: var(--fs-ink);
    line-height: 1.75;
    font-size: 1.02rem;
}
.fs-featured-body h3 {
    margin-top: 36px;
    font-size: 1.3rem;
    color: var(--fs-accent-deep);
}

@media (max-width: 900px) {
    .fs-featured-artist {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .fs-featured-photo {
        position: relative;
        top: auto;
        max-width: 340px;
        margin: 0 auto;
    }
    .fs-team-hero { padding: 56px 0 16px; }
}

.fs-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.fs-team-card {
    background: #fff;
    border-radius: var(--fs-radius);
    overflow: hidden;
    box-shadow: var(--fs-shadow);
    border: 1px solid var(--fs-line);
    display: flex;
    flex-direction: column;
}
.fs-team-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--fs-stone-dark);
}
.fs-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fs-team-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-stone) 0%, var(--fs-stone-dark) 100%);
    color: var(--fs-bone);
    font-size: .85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.fs-team-meta { padding: 24px; }
.fs-team-meta h3 { margin-bottom: 4px; }
.fs-team-role {
    color: var(--fs-accent-deep);
    font-size: .85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 14px;
}
.fs-team-meta p { color: var(--fs-muted); font-size: .95rem; }
.fs-team-link {
    display: inline-block;
    margin-top: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--fs-accent-deep);
}
.fs-team-card-placeholder .fs-team-meta { color: var(--fs-muted); }
.fs-bio h3 {
    margin-top: 40px;
    font-size: 1.4rem;
    color: var(--fs-accent-deep);
}
.fs-bio p {
    color: var(--fs-ink);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* =========================================================
   Start a Project page - form-first layout
   ========================================================= */
.fs-start-page {
    padding: clamp(40px, 5vw, 72px) 0 96px;
    background: var(--fs-bone);
}
.fs-start-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
.fs-start-form-head {
    margin-bottom: 28px;
}
.fs-start-form-head .fs-eyebrow {
    color: var(--fs-accent-deep);
    margin-bottom: 14px;
}
.fs-start-form-head h1 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin: 0 0 14px;
    line-height: 1.08;
}
.fs-start-form-head p {
    color: var(--fs-ink);
    opacity: 0.78;
    margin: 0;
    max-width: 56ch;
    font-size: 1.02rem;
    line-height: 1.6;
}
.fs-form-shell {
    background: #fff;
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    box-shadow: var(--fs-shadow);
    padding: clamp(20px, 3vw, 36px);
}
.fs-form-shell input,
.fs-form-shell textarea,
.fs-form-shell select {
    color: var(--fs-ink);
    font-family: var(--fs-font-body);
}
.fs-form-fallback h3 { margin-bottom: 14px; }
.fs-form-fallback ul { list-style: none; padding: 0; margin: 0; }
.fs-form-fallback ul li { padding: 8px 0; border-bottom: 1px solid var(--fs-line); }
.fs-form-fallback ul li:last-child { border-bottom: none; }

/* Trust column (right) */
.fs-start-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 92px;
}
.fs-start-card {
    background: #fff;
    border: 1px solid var(--fs-line);
    border-radius: var(--fs-radius);
    padding: 22px 24px;
}
.fs-start-card h3 {
    font-family: var(--fs-font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fs-muted);
    margin: 0 0 14px;
}
.fs-start-card p { margin: 0 0 8px; line-height: 1.55; }
.fs-start-card p:last-child { margin-bottom: 0; }
.fs-start-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: stepc;
}
.fs-start-steps li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    padding: 8px 0;
    color: var(--fs-ink);
    font-size: .92rem;
    line-height: 1.55;
}
.fs-start-steps li + li { border-top: 1px solid var(--fs-line); }
.fs-start-steps li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fs-accent);
    color: var(--fs-ink);
    font-family: var(--fs-font-display);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
}
.fs-start-contact {
    font-size: 1rem;
    line-height: 1.7;
}
.fs-start-contact a {
    color: var(--fs-ink);
    border-bottom: 1px dotted var(--fs-line);
}
.fs-start-contact a:hover {
    color: var(--fs-accent-deep);
    border-bottom-color: var(--fs-accent-deep);
}
.fs-start-card-dark {
    background: var(--fs-ink);
    color: var(--fs-bone);
    border-color: var(--fs-ink);
}
.fs-start-card-dark a {
    color: var(--fs-accent);
    border-bottom: 1px dotted rgba(235,229,216,0.3);
}
.fs-start-credentials {
    color: var(--fs-bone);
    font-size: .95rem;
}
.fs-start-credentials strong {
    color: var(--fs-bone);
    letter-spacing: 0.06em;
    font-size: .82rem;
    text-transform: uppercase;
}
.fs-start-card-meta {
    color: rgba(235,229,216,0.7);
    font-size: .82rem;
    line-height: 1.55;
}

@media (max-width: 880px) {
    .fs-start-grid { grid-template-columns: 1fr; gap: 24px; }
    .fs-start-aside { position: static; top: auto; }
    .fs-start-page { padding: 32px 0 64px; }
}

/* =========================================================
   Header nav CTA link styling
   ========================================================= */
.fs-nav a.fs-nav-cta {
    color: var(--fs-ink);
    background: var(--fs-accent);
    padding: 8px 16px;
    border-radius: var(--fs-radius);
    transition: background .2s ease, color .2s ease;
}
.fs-nav a.fs-nav-cta:hover {
    color: var(--fs-bone);
    background: var(--fs-ink);
}

/* =========================================================
   Sticky tap-to-call FAB (site-wide, bottom-right)
   ========================================================= */
.fs-call-fab {
    position: fixed;
    right: clamp(16px, 2.5vw, 28px);
    bottom: clamp(16px, 2.5vw, 28px);
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--fs-accent);
    color: var(--fs-ink);
    padding: 13px 20px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px rgba(26,24,20,0.28), 0 2px 6px rgba(26,24,20,0.18);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.fs-call-fab:hover {
    background: var(--fs-ink);
    color: var(--fs-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26,24,20,0.35), 0 4px 10px rgba(26,24,20,0.22);
}
.fs-call-fab-icon {
    flex: 0 0 auto;
}
@media (max-width: 640px) {
    .fs-call-fab {
        padding: 14px;
        right: 16px;
        bottom: 16px;
    }
    .fs-call-fab-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        white-space: nowrap;
        border: 0;
    }
}

/* =========================================================
   Footer license + address
   ========================================================= */
.fs-footer-license,
.fs-footer-address {
    font-size: .88rem;
    color: rgba(235,229,216, 0.75);
    margin-top: 16px;
    line-height: 1.55;
}
.fs-footer-license strong {
    color: var(--fs-bone);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: .78rem;
}
.fs-footer-license a,
.fs-footer-address a {
    color: rgba(235,229,216, 0.75);
    border-bottom: 1px dotted rgba(235,229,216, 0.3);
}
.fs-footer-license a:hover,
.fs-footer-address a:hover {
    color: var(--fs-accent);
    border-bottom-color: var(--fs-accent);
}
.fs-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.fs-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(235,229,216, 0.25);
    border-radius: 50%;
    color: rgba(235,229,216, 0.75);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.fs-footer-social a:hover {
    color: var(--fs-ink);
    background: var(--fs-accent);
    border-color: var(--fs-accent);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
    .fs-section { padding: 64px 0; }
    .fs-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .fs-nav-toggle { display: inline-flex; }
    .fs-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 73px);
        overflow-y: auto;
        background: var(--fs-bone);
        border-bottom: 1px solid var(--fs-line);
        box-shadow: 0 12px 24px rgba(26,24,20,0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: transform .25s ease, opacity .25s ease, visibility .25s;
        z-index: 99;
    }
    .fs-nav.fs-nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
    .fs-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
    }
    .fs-nav li {
        border-bottom: 1px solid var(--fs-line);
    }
    .fs-nav li:last-child { border-bottom: 0; }
    .fs-nav a {
        display: block;
        padding: 16px clamp(24px, 4vw, 56px);
        font-size: 1rem;
    }
    .fs-nav a.fs-nav-cta {
        margin: 12px clamp(24px, 4vw, 56px);
        text-align: center;
        border-radius: 999px;
    }
    .fs-process-step { grid-template-columns: 1fr; padding: 24px; }
    .fs-process-step::before { font-size: 2.2rem; }
    .fs-btn { padding: 12px 24px; font-size: .9rem; }
    .fs-project { padding: 64px 0; }
    .fs-project-feature { aspect-ratio: 4/3; }
    .fs-project-meta { flex-direction: column; gap: 8px; }
    .fs-team-grid { gap: 24px; }
    .fs-form-shell { padding: 24px; }
    .fs-video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .fs-video-item figcaption { padding: 10px 12px; font-size: .8rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .fs-video-grid { grid-template-columns: repeat(3, 1fr); }
}
