/* ============================================
   T.FINCH - Strategic Brand Consultancy
   Brand Colors: Cyan #00ABBE | Amber #FDBA56 | Black #191919
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --cyan: #00ABBE;
    --cyan-dark: #008A9A;
    --cyan-light: #E6F7F9;
    --amber: #FDBA56;
    --amber-light: #FFF4E0;
    --black: #191919;
    --dark: #2D2D2D;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --text-muted: #9B9B9B;
    --border: #E8E8E8;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --white: #FFFFFF;

    --font-primary: 'Segoe UI Variable', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    --font-serif: 'DM Serif Display', 'Georgia', 'Times New Roman', serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --container-width: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 72px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: 120px;
}

.loader-bar {
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--cyan);
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* ===== Floating Pill Navbar (Top Center) ===== */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px 8px 16px;
    background: rgba(30, 30, 30, 0.75);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1002;
}

.floating-pill:hover {
    background: rgba(30, 30, 30, 0.85);
}

/* Pill Logo */
.pill-logo {
    display: flex;
    align-items: center;
    padding: 0 4px;
    flex-shrink: 0;
}

.pill-logo-img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Pill Menu Button */
.pill-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pill-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
}

.pill-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 16px;
    position: relative;
}

.pill-bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

/* X icon when open */
.pill-menu-toggle.active .pill-bar:first-child {
    transform: rotate(45deg) translate(1.5px, 1.5px);
}

.pill-menu-toggle.active .pill-bar:last-child {
    transform: rotate(-45deg) translate(1.5px, -1.5px);
}

.pill-menu-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.01em;
}

/* Pill CTA */
.pill-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--cyan);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.pill-cta:hover {
    background: var(--cyan-dark);
    color: var(--white);
    transform: scale(1.03);
}

/* ===== Menu Popup Card ===== */
.menu-card {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.96);
    width: 420px;
    background: #F5F1EB;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25),
                0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1001;
    transform-origin: top center;
}

.menu-card.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(12px) scale(1);
}

.menu-card-nav {
    padding: 24px 28px 20px;
}

/* Primary links - large */
.menu-card-primary {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-card-primary li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.menu-card-primary li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.menu-card-link {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    padding: 18px 0;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    transform: translateY(8px);
    opacity: 0;
}

.menu-card.open .menu-card-link {
    transform: translateY(0);
    opacity: 1;
}

.menu-card.open .menu-card-primary li:nth-child(1) .menu-card-link { transition-delay: 0.06s; }
.menu-card.open .menu-card-primary li:nth-child(2) .menu-card-link { transition-delay: 0.10s; }
.menu-card.open .menu-card-primary li:nth-child(3) .menu-card-link { transition-delay: 0.14s; }

.menu-card-link:hover {
    color: var(--cyan);
}

.menu-card-link.active {
    color: var(--cyan);
}

/* Secondary links - smaller, inline */
.menu-card-secondary {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.menu-card.open .menu-card-secondary {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.18s;
}

.menu-card-sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.menu-card-sub:hover {
    color: var(--black);
}

.menu-card-sub.active {
    color: var(--cyan);
}

/* Backdrop overlay when menu open */
.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Header hide on scroll */
.site-header.header-hidden {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding) 0;
}

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

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 72px;
}

.section-header .section-subtitle {
    margin-top: 8px;
}

/* ===== Text Utilities ===== */
.text-accent {
    color: var(--cyan);
}

.body-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

.body-text:last-child {
    margin-bottom: 0;
}

.body-text strong {
    color: var(--black);
    font-weight: 600;
}

/* Text Link */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cyan);
    margin-top: 16px;
    transition: gap var(--transition);
}

.text-link:hover {
    gap: 14px;
    color: var(--cyan-dark);
}

.text-link .arrow {
    transition: transform var(--transition);
}

/* ===== Content Grid (2-column) ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-left .section-title {
    margin-bottom: 0;
}

/* ===== Hero Cinematic (Full Screen Dark) ===== */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-cinematic-bg {
    position: absolute;
    inset: 0;
    /* Dark moody background - replace with actual image */
    background:
        linear-gradient(135deg,
            rgba(15, 12, 10, 0.95) 0%,
            rgba(35, 25, 20, 0.85) 40%,
            rgba(25, 20, 18, 0.9) 100%
        ),
        radial-gradient(ellipse at 20% 80%, rgba(0, 171, 190, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(253, 186, 86, 0.06) 0%, transparent 60%);
    background-color: #1a1410;
    /* When you have a real image, use:
       background-image: url('/static/images/hero-bg.jpg');
       background-size: cover;
       background-position: center;
    */
}

.hero-cinematic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-cinematic-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.hero-cinematic-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #F5EDE4;
}

.hero-cinematic-title u {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(245, 237, 228, 0.5);
}

/* ===== Buttons ===== */
.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--cyan);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary-cta:hover {
    background: var(--cyan-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 171, 190, 0.25);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary-cta:hover {
    border-color: var(--black);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* ===== Intro Section ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-left .section-title {
    margin-bottom: 0;
}

.intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}

/* ===== Philosophy Section ===== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-card {
    padding: 48px 40px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.philosophy-card:hover {
    background: var(--bg-white);
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.philosophy-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 24px;
    font-variant-numeric: tabular-nums;
}

.philosophy-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.philosophy-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== Services Section ===== */
.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: grid;
    grid-template-columns: 60px 1fr 48px;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

.service-item:first-child {
    border-top: 1px solid var(--border);
}

.service-item:hover {
    padding-left: 16px;
}

.service-item:hover .service-title {
    color: var(--cyan);
}

.service-item:hover .service-arrow {
    transform: translateX(4px);
    color: var(--cyan);
}

.service-index {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
    line-height: 1.3;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-arrow {
    color: var(--text-muted);
    transition: all var(--transition);
}

/* ===== Process Section ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-card {
    padding: 40px 32px;
    position: relative;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--cyan);
    border-radius: 2px;
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--cyan-light);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    padding: 40px 32px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.team-section.bg-light .team-card {
    background: var(--bg-white);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.avatar-initials {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.team-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== Quote Section ===== */
.quote-section {
    background: var(--black);
    padding: var(--section-padding) 0;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: -0.01em;
}

.quote-text::before {
    content: '\201C';
    display: block;
    font-size: 72px;
    color: var(--cyan);
    line-height: 0.5;
    margin-bottom: 24px;
    font-style: normal;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.quote-title {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Page Header ===== */
.page-header {
    padding-top: 100px;
    padding-bottom: 80px;
    background: var(--bg-light);
}

.page-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 800px;
}

/* ===== Service Detail Cards ===== */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-detail-card {
    padding: 48px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.service-detail-header {
    margin-bottom: 20px;
}

.service-detail-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.service-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.service-detail-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 15px;
    color: var(--text);
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--cyan);
    border-radius: 1px;
}

/* ===== Process Timeline ===== */
.process-timeline {
    max-width: 800px;
}

.process-timeline-item {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.process-timeline-item:first-child {
    border-top: 1px solid var(--border);
}

.process-timeline-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-timeline-marker span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.process-timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.process-timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-label .optional {
    font-weight: 400;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--black);
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 171, 190, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239B9B9B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

/* Contact Info */
.contact-info-card {
    padding: 36px;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 24px;
}

.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cyan-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
    font-size: 16px;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

a.contact-value:hover {
    color: var(--cyan);
}

.collaborate-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.collaborate-list li {
    font-size: 15px;
    color: var(--text);
    padding-left: 20px;
    position: relative;
}

.collaborate-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-cta {
    text-align: center;
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.footer-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.footer-cta .btn-primary-cta {
    background: var(--white);
    color: var(--black);
}

.footer-cta .btn-primary-cta:hover {
    background: var(--cyan);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 171, 190, 0.3);
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--cyan);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

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

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 171, 190, 0.1);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--cyan);
    transform: translateY(-2px);
}

/* ===== Works Page ===== */
.page-header-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.7;
    margin-top: 20px;
}

/* Filter Bar */
.works-filter-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
}

.works-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    color: var(--text-light);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    color: var(--black);
    border-color: var(--black);
}

.filter-btn.active {
    color: var(--white);
    background: var(--cyan);
    border-color: var(--cyan);
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.work-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.work-card-wide {
    grid-column: span 2;
}

.work-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card-wide .work-card-image {
    aspect-ratio: 21 / 9;
}

.work-card-placeholder {
    opacity: 0.6;
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-card-view {
    padding: 12px 28px;
    background: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.work-card:hover .work-card-view {
    transform: translateY(0);
}

.work-card-info {
    padding: 28px 32px 32px;
}

.work-card-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 8px;
    display: block;
}

.work-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.work-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 40px 24px;
}

.stat-number {
    display: block;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

/* ===== Reveal Animations ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 88px;
    }

    .container {
        padding: 0 32px;
    }

    .header-inner {
        padding: 0 32px;
    }

    .content-grid,
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-cinematic-content {
        padding: 0 32px;
    }

    .works-grid {
        gap: 24px;
    }

    .work-card-wide {
        grid-column: span 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .container {
        padding: 0 24px;
    }

    .hero-cinematic {
        min-height: 100vh;
    }

    .hero-cinematic-content {
        padding: 0 24px;
    }

    .hero-cinematic-title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .site-header {
        top: 12px;
    }

    .floating-pill {
        padding: 6px 6px 6px 14px;
    }

    .pill-menu-label {
        font-size: 13px;
    }

    .pill-cta {
        padding: 9px 20px;
        font-size: 13px;
    }

    .menu-card {
        width: calc(100vw - 32px);
        max-width: 420px;
    }

    .menu-card-link {
        font-size: 24px;
        padding: 16px 0;
    }

    .menu-card-nav {
        padding: 20px 24px 16px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .philosophy-card {
        padding: 32px 28px;
    }

    .service-item {
        grid-template-columns: 40px 1fr 32px;
        gap: 16px;
        padding: 28px 0;
    }

    .service-title {
        font-size: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 32px;
    }

    .process-timeline-item {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cta {
        padding: 72px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .page-header {
        padding-top: 72px;
        padding-bottom: 60px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .quote-text {
        font-size: 22px;
    }

    .works-filter-section {
        top: 0;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-card-wide {
        grid-column: span 1;
    }

    .work-card-wide .work-card-image {
        aspect-ratio: 16 / 10;
    }

    .work-card-info {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 28px 16px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 14px 28px;
        font-size: 14px;
    }

    .contact-info-card {
        padding: 28px;
    }
}
