/* ========================================
   GOOD BY ART PRODUCTIONS - MAIN STYLES
   Design System: Light Editorial (Premium)
   ======================================== */

/* ========== CSS VARIABLES / DESIGN TOKENS ========== */
:root {
    /* Colors - Light Editorial Premium Palette */
    --color-bg-primary: #F7F5F0;
    --color-bg-secondary: #EFECE5;
    --color-bg-elevated: #FFFFFF;
    --color-bg-card: #FFFFFF;
    --color-bg-glass: rgba(247, 245, 240, 0.85);
    
    --color-accent-gold: #E8C44A;
    --color-accent-gold-light: #F0D66A;
    --color-accent-gold-dark: #C4A030;
    --color-accent-gold-glow: rgba(232, 196, 74, 0.2);
    
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-overlay: rgba(0, 0, 0, 0.4);
    --color-overlay-heavy: rgba(0, 0, 0, 0.7);
    --color-border: rgba(232, 196, 74, 0.25);
    --color-border-subtle: rgba(0, 0, 0, 0.08);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-light));
    --gradient-gold-dark: linear-gradient(135deg, var(--color-accent-gold-dark), var(--color-accent-gold));
    --gradient-section: linear-gradient(to bottom, transparent 0%, rgba(232, 196, 74, 0.04) 50%, transparent 100%);
    --gradient-hero: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(232, 196, 74, 0.08), transparent 70%);
    --gradient-gold-text: linear-gradient(135deg, #E8C44A, #F5D864, #C4A030);
    
    /* Typography */
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Effects */
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s ease-in-out;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 0 30px rgba(232, 196, 74, 0.2);
    --shadow-gold-intense: 0 0 40px rgba(232, 196, 74, 0.3);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-gold-dark) var(--color-bg-primary);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

html::-webkit-scrollbar-thumb {
    background: var(--color-accent-gold-dark);
    border-radius: 3px;
    transition: background var(--transition-fast);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold);
}

body {
    font-family: var(--font-body);
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


::selection {
    background-color: var(--color-accent-gold);
    color: #1A1A1A;
}

:focus-visible {
    outline: 2px solid var(--color-accent-gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

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

/* ========== SECTION BASE ========== */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 164, 50, 0.12), transparent);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.15;
}

.section-title-wrapper .section-title {
    display: inline-block;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative gold line under section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    box-shadow: 0 0 10px rgba(232, 196, 74, 0.3);
}

.section-title.visible::after {
    width: 80px;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: background-color var(--transition-smooth), 
                backdrop-filter var(--transition-smooth),
                box-shadow var(--transition-smooth),
                padding var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 0.5rem 0;
}

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

.navbar-logo {
    position: relative;
    z-index: 1001;
}

.navbar-logo .logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    filter: none;
}

.navbar-logo .logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.navbar-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast), background-color var(--transition-fast);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
    transition: width var(--transition-fast);
    box-shadow: 0 0 6px rgba(232, 196, 74, 0.3);
}

.nav-link:hover {
    color: var(--color-accent-gold-dark);
    background-color: rgba(232, 196, 74, 0.05);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--color-accent-gold-dark);
}

.nav-link.active::after {
    width: 60%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    z-index: 1001;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.hamburger:hover {
    background-color: rgba(232, 196, 74, 0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 20px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 20px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(247, 245, 240, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.5rem 2rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: block;
    color: var(--color-text-muted);
}

.mobile-nav-link:hover {
    color: var(--color-accent-gold);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo .logo {
        height: 38px;
    }
    
    .navbar-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .mobile-nav-link {
        font-size: 2rem;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    .mobile-nav-link {
        font-size: 1.6rem;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 35vh;
    background: var(--gradient-hero), var(--color-bg-primary);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 900px;
    opacity: 1;
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-tagline {
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

.hero-tagline span {
    color: var(--color-accent-gold-dark);
}

/* Hero Divider */
.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(232, 196, 74, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.scroll-indicator.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

.scroll-indicator-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 400;
}

.scroll-arrow {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--color-accent-gold-dark));
    position: relative;
    animation: scrollBounce 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-accent-gold-dark);
    border-bottom: 2px solid var(--color-accent-gold-dark);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.7;
    }
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    background-color: var(--color-bg-secondary);
}

.portfolio-section .section-title-wrapper {
    margin-bottom: var(--spacing-md);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--color-text-muted);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 0;
    border-radius: 100px;
}

.filter-btn:hover {
    color: var(--color-accent-gold);
    border-color: rgba(232, 196, 74, 0.3);
    transform: translateY(-1px);
}

.filter-btn.active {
    color: #1A1A1A;
    border-color: var(--color-accent-gold);
    background: var(--gradient-gold);
    box-shadow: 0 4px 15px rgba(232, 196, 74, 0.3);
}

.filter-btn.active:hover {
    box-shadow: 0 6px 20px rgba(232, 196, 74, 0.4);
    transform: translateY(-1px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.portfolio-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
    will-change: transform;
    box-shadow: var(--shadow-sm);
}

.portfolio-card.hidden-card {
    display: none;
}

.portfolio-card.fade-out {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), var(--shadow-md);
    border-color: rgba(232, 196, 74, 0.2);
}

.portfolio-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.portfolio-card:hover .portfolio-thumbnail::after {
    opacity: 1;
}

.portfolio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.8;
    transition: opacity var(--transition-fast), transform var(--transition-bounce);
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.portfolio-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-accent-gold);
    font-family: var(--font-body);
    border: 1px solid rgba(232, 196, 74, 0.15);
}

.portfolio-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button svg {
    width: 56px;
    height: 56px;
}

.portfolio-info {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}

.portfolio-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
    padding: 0.15rem 0.75rem;
    background-color: rgba(232, 196, 74, 0.1);
    border-radius: 100px;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.portfolio-client {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Clamped so cards of varying copy length keep an even grid rhythm. */
.portfolio-description {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(247, 245, 240, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

/* Sits above the player, not on it: the modal backdrop is light, so a dark
   glyph reads clearly there, and it no longer overlaps YouTube's own
   top-right controls (settings / CC) the way an inset button did. */
.modal-close {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    color: var(--color-text-primary);
    background-color: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    z-index: 2001;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-accent-gold-dark);
    background-color: rgba(232, 196, 74, 0.22);
    transform: rotate(90deg);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

#videoPlayer {
    width: 100%;
    height: 100%;
}

/* The wrapper's contents are swapped out for a YouTube iframe on open. */
.video-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shown only for cards that have no data-video-id yet. */
.video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-md);
    text-align: center;
}

.video-fallback h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.video-fallback p {
    font-size: 1rem;
    color: #666;
}

.video-fallback-note {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: #999;
}

.video-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.video-fallback h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.video-fallback p {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.video-fallback-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

/* ========== SERVICES SECTION ========== */
.services-section {
    background-color: var(--color-bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md) var(--spacing-md);
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: var(--shadow-sm);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle corner accent */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-gold);
    transition: height var(--transition-smooth);
    border-radius: 0 0 2px 0;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-gold);
    transition: height var(--transition-smooth);
    border-radius: 2px 0 0 0;
}

.service-card:hover::before,
.service-card:hover::after {
    height: 60%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), var(--shadow-gold);
    border-color: rgba(232, 196, 74, 0.15);
    background-color: rgba(232, 196, 74, 0.02);
}

.service-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.service-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background-color: var(--color-bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 196, 74, 0.08), transparent 50%);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-paragraph strong {
    color: var(--color-accent-gold-dark);
    font-weight: 600;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--color-bg-card);
    box-shadow: var(--shadow-sm);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    position: relative;
    transition: background-color var(--transition-fast);
}

.stat-item:hover {
    background-color: rgba(232, 196, 74, 0.03);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(232, 196, 74, 0.15), transparent);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--radius-lg);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .stat-item:nth-child(4)::after {
        display: none;
    }
    
    .about-paragraph {
        font-size: 0.95rem;
    }
}

/* ========== TEAM SECTION ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
}

.team-card {
    text-align: center;
    transition: transform var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    padding: 1rem 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background-color: var(--color-bg-card);
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-4px);
    background-color: var(--color-bg-elevated);
    border-color: rgba(232, 196, 74, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Gold left border accent on hover */
.team-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-gold);
    border-radius: 0 2px 2px 0;
    transition: height var(--transition-smooth);
    box-shadow: 0 0 8px rgba(232, 196, 74, 0.3);
}

.team-card:hover::before {
    height: 50%;
}

.team-card.featured:hover {
    background-color: var(--color-bg-card);
    border-color: rgba(232, 196, 74, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(232, 196, 74, 0.05);
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    border: 2px solid rgba(0, 0, 0, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

.team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 50%);
    opacity: 1;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.team-card:hover .team-photo::after {
    opacity: 0.6;
}

.team-card:hover .team-photo {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 25px rgba(232, 196, 74, 0.15);
}

.team-card:hover .team-photo::after {
    opacity: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.team-card:hover .team-name {
    color: var(--color-accent-gold);
}

.team-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: 2rem 0.75rem 1.25rem;
    background: linear-gradient(to top, var(--color-bg-card) 45%, rgba(255,255,255,0.6) 70%, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 2;
    text-align: center;
}

.team-card:hover .team-bio {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .team-bio {
        position: static;
        background: none;
        opacity: 1;
        transform: none;
        padding: 0.6rem 0.5rem 0;
        font-size: 0.78rem;
    }
}

.team-card.featured .team-photo {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 20px rgba(232, 196, 74, 0.15);
}

.team-card.featured .team-name {
    color: var(--color-accent-gold);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .team-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* ========== CLIENT LOGOS SECTION ========== */
.logos-section {
    background-color: var(--color-bg-primary);
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.logo-ticker {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* max-content is required for the seamless loop: the track must be as wide as
   its own content so the -50% keyframe lands exactly one copy along. Left at
   the default `auto` it fills the container instead, so the animation shifts
   by half a viewport and snaps back — most logos never scroll into view. */
.logo-track {
    display: flex;
    width: max-content;
    gap: var(--spacing-md);
    animation: scroll 45s linear infinite;
    will-change: transform;
}

.logo-track:hover {
    animation-play-state: paused;
}

/* An explicit height is load-bearing, not cosmetic: the images are lazy-loaded
   and size from `height: auto`, so without it the row collapses to 0px, the
   images never intersect the viewport, and the lazy load never fires. */
.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 72px;
    /* `.logo-track`'s will-change isolates blending, so the images have no page
       backdrop to multiply against — this supplies one inside that context. */
    background-color: var(--color-bg-primary);
}

/* Shown in full brand colour. `multiply` is what hides the opaque white plates
   several of these PNGs ship with; against the light section background they'd
   otherwise read as boxes. */
.logo-item img {
    max-height: 56px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform var(--transition-fast);
}

.logo-item:hover img {
    transform: scale(1.06);
}

.logo-placeholder {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    background-color: rgba(0, 0, 0, 0.02);
}

.logo-item:hover .logo-placeholder {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    background-color: rgba(232, 196, 74, 0.04);
    box-shadow: 0 0 20px rgba(232, 196, 74, 0.08);
    transform: scale(1.03);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: var(--spacing-sm);
        animation-duration: 32s;
    }

    .logo-item {
        min-width: 120px;
        height: 56px;
    }

    .logo-item img {
        max-height: 40px;
        max-width: 130px;
    }

    .logo-placeholder {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Decorative background element */
.contact-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 196, 74, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Two-column layout: form | contact sidebar */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-md);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Form */
.contact-form-wrapper {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem 2.25rem 2.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-of-type {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.form-group:focus-within label {
    color: var(--color-accent-gold);
}

/* Input icon wrapper */
.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    opacity: 0.5;
    transition: opacity var(--transition-fast), color var(--transition-fast);
    pointer-events: none;
    z-index: 1;
}

.input-icon-top {
    top: 1rem;
    transform: none;
}

.input-wrap:focus-within .input-icon {
    color: var(--color-accent-gold);
    opacity: 0.8;
}

/* Apply left padding to inputs inside wrap */
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    padding-left: 2.8rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.3;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #FFFFFF;
    color: var(--color-text-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 0, 0, 0.14);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background-color: rgba(232, 196, 74, 0.02);
    box-shadow: 0 0 0 3px rgba(232, 196, 74, 0.08);
}

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

/* Custom select arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E8C44A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option:first-child {
    color: var(--color-text-muted);
}

.form-group select option {
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    padding: 0.5rem;
}

.form-group select option:hover,
.form-group select option:checked {
    background-color: var(--color-accent-gold-dark);
    color: #1A1A1A;
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gradient-gold);
    color: #1A1A1A;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-intense);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ========== CONTACT SIDEBAR ========== */
.contact-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    background-color: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.contact-bar-item:hover {
    border-color: rgba(232, 196, 74, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 0 15px rgba(232, 196, 74, 0.04);
    transform: translateY(-2px);
}

.contact-bar-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-accent-gold);
    opacity: 0.7;
}

.contact-bar-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-bar-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.1rem;
}

.contact-bar-value {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--transition-fast);
    line-height: 1.3;
}

.contact-bar-value:hover {
    color: var(--color-accent-gold);
}

.contact-bar-social {
    display: flex;
    gap: 0.4rem;
}

.contact-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.contact-bar-social a:hover {
    color: var(--color-accent-gold);
    background-color: rgba(232, 196, 74, 0.08);
    transform: translateY(-1px);
}

.contact-bar-social a svg {
    width: 16px;
    height: 16px;
}

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

    .contact-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .contact-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .contact-bar-item {
        padding: 0.75rem;
    }

    .contact-bar-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-bar {
        grid-template-columns: 1fr;
    }
}

/* ========== FOOTER ========== */
.footer {
    background-color: #2C2820;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    display: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-md);
}

.footer-brand h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-accent-gold);
    letter-spacing: 0.1em;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 0.25rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--color-accent-gold);
    background-color: rgba(232, 196, 74, 0.08);
}

.footer-bottom {
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-md) 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* ========== CURSOR GLOW ========== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 196, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: normal;
}

@media (hover: none) {
    .cursor-glow {
        display: none;
    }
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--color-bg-elevated);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    color: var(--color-text-primary);
    font-size: 0.9rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.toast.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast.success {
    border-color: rgba(76, 175, 80, 0.3);
}

.toast.success .toast-icon {
    color: #4CAF50;
}

.toast.error {
    border-color: rgba(244, 67, 54, 0.3);
}

.toast.error .toast-icon {
    color: #F44336;
}

.toast-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

.preloader-bar {
    width: 160px;
    height: 2px;
    background: rgba(232, 196, 74, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    background: transparent;
}

.scroll-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(232, 196, 74, 0.4);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

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

.back-to-top:hover {
    background-color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    color: #1A1A1A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-intense);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background-color: var(--color-bg-primary);
}

/* A horizontal snap rail rather than a stacked grid — six cards of secondary
   content cost too much vertical space, and this swipes natively on touch. */
.testimonials-carousel {
    position: relative;
}

.testimonials-grid {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* overflow-x forces overflow-y to compute to auto, which would clip the
       cards' hover lift and shadow — this gives them room. */
    padding: 0.5rem 0.25rem 1.5rem;
    scrollbar-width: none;
    cursor: grab;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid.dragging {
    cursor: grabbing;
    /* snapping and smooth scrolling both fight a drag in progress */
    scroll-snap-type: none;
    scroll-behavior: auto;
}

/* Stops a drag from registering as a hover/click on the card underneath. */
.testimonials-grid.dragging .testimonial-card {
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    background-color: var(--color-bg-card);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 2;
    transition: opacity var(--transition-fast),
                background-color var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast);
}

.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }

.carousel-btn:hover:not(:disabled) {
    background-color: var(--color-accent-gold);
    color: #1A1A1A;
    border-color: transparent;
}

.carousel-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    color: rgba(232, 196, 74, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    /* Three across on desktop; fixed basis so the rail scrolls rather than squashing. */
    flex: 0 0 calc((100% - 2 * var(--spacing-md)) / 3);
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(232, 196, 74, 0.06);
    border-color: rgba(232, 196, 74, 0.15);
}

.testimonial-stars {
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: var(--color-text-primary);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex-basis: calc((100% - var(--spacing-md)) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        gap: var(--spacing-sm);
    }

    /* Under a full card wide, so the next one peeks and signals it swipes. */
    .testimonial-card {
        flex-basis: 86%;
        padding: var(--spacing-sm);
    }

    /* Touch users swipe directly; the arrows would only cover content. */
    .carousel-btn {
        display: none;
    }
}

/* ========== HERO IMPROVEMENTS ========== */
/* Background pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(232, 196, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(232, 196, 74, 0.02) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8C44A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

/* Staggered hero title */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroLineIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title-line-1 {
    animation-delay: 0.1s;
}

.hero-title-line-2 {
    animation-delay: 0.3s;
}

.hero-title-line-3 {
    animation-delay: 0.5s;
}

@keyframes heroLineIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle floating gold element */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 100px;
    height: 100px;
    border: 1.5px solid rgba(232, 196, 74, 0.12);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: floatGold 8s ease-in-out infinite;
}

@keyframes floatGold {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(15px, -20px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-10px, 10px) scale(0.95);
        opacity: 0.6;
    }
}

/* Floating element inner dot */
.hero-section .hero-float-dot {
    position: absolute;
    bottom: 18%;
    right: 12%;
    width: 6px;
    height: 6px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    animation: floatDot 6s ease-in-out infinite;
}

@keyframes floatDot {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.2;
    }
    50% {
        transform: translate(20px, -25px);
        opacity: 0.5;
    }
}

/* Hero 3D Container */
.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-3d-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    animation: hero3DFadeIn 1.5s ease 0.5s forwards;
}

@keyframes hero3DFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Override the old hero-title styles that might conflict */
.hero-section .hero-overlay {
    z-index: 10;
}

/* ========== MICRO-INTERACTIONS ========== */
/* Filter button click bounce */
.filter-btn.clicked {
    animation: filterBounce 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes filterBounce {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

/* Stat "+" suffix */
.stat-number .stat-suffix {
    display: inline;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-number .stat-suffix.show {
    opacity: 1;
}

/* Submit button loading spinner */
.submit-btn.loading {
    pointer-events: none;
    position: relative;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn .btn-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.15);
    border-top-color: #1A1A1A;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.submit-btn.loading .btn-spinner {
    display: block;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.submit-btn.sent {
    background: #4CAF50;
}

.submit-btn.sent .btn-text {
    opacity: 1;
}

.submit-btn.sent .btn-spinner {
    display: none;
}

/* ========== LOGO TICKER SMOOTH PAUSE ========== */
.logo-track {
    transition: animation-play-state 0.4s ease;
}

.logo-track.paused {
    animation-play-state: paused;
}

/* ========== MOBILE PLAY BUTTON ========== */
@media (hover: none) and (pointer: coarse) {
    .play-button {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.95);
    }
    
    .portfolio-card .play-button {
        opacity: 0.7;
    }
}

/* ========== NAV SLIDING UNDERLINE ========== */
.nav-indicator {
    position: absolute;
    bottom: 2px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 8px rgba(232, 196, 74, 0.4);
    pointer-events: none;
}

.navbar-links {
    position: relative;
}

/* Remove old nav-link ::after since we use the indicator */
.nav-link::after {
    display: none;
}

/* ========== PARALLAX SECTION BACKGROUNDS ========== */
.section {
    will-change: transform;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 196, 74, 0.02) 0%, transparent 60%);
}

/* ========== CONTACT FORM SUCCESS ANIMATION ========== */
.contact-form-wrapper.success {
    animation: formSuccessPulse 0.6s ease;
}

@keyframes formSuccessPulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 196, 74, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(232, 196, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 196, 74, 0); }
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successIconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successIconPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
    stroke: #4CAF50;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.form-success-reset {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-gold-dark);
    border: 1px solid rgba(232, 196, 74, 0.3);
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-success-reset:hover {
    background: rgba(232, 196, 74, 0.06);
    border-color: var(--color-accent-gold);
}

.form-fade-out {
    animation: formFadeOut 0.4s ease forwards;
}

@keyframes formFadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.form-fade-in {
    animation: formFadeIn 0.5s ease forwards;
}

@keyframes formFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ── DRONE 3D OVERLAY ────────────────────────────────── */
#droneContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;   /* never blocks clicks/scrolls */
    z-index: 500;           /* above page, below navbar (1001) & modals (2000+) */
}

#droneContainer canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* ========== WORK PAGE (work.html) ========== */
/* No hero on this page, so the top bar provides the clearance the fixed nav needs. */
.work-topbar {
    padding: calc(60px + var(--spacing-md)) 0 var(--spacing-sm);
    background-color: var(--color-bg-primary);
}

.work-back {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.35rem 0.6rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    background-color: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;   /* not --radius-full (50%) — that would ellipse it */
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-fast),
                border-color var(--transition-fast),
                box-shadow var(--transition-fast),
                transform var(--transition-fast);
}

.work-back svg {
    transition: transform var(--transition-fast);
}

.work-back:hover {
    background-color: var(--color-accent-gold);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(196, 160, 48, 0.28);
    transform: translateY(-1px);
}

.work-back:hover svg {
    transform: translateX(-3px);
}

/* ========== SHORTS GRID (9:16) ========== */
.shorts-section {
    background-color: var(--color-bg-secondary);
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-sm);
}

.shorts-card {
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-bg-card);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.shorts-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(232, 196, 74, 0.08);
}

/* Vertical frame — the whole point of a separate grid for short-form. */
.shorts-thumbnail {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
}

.shorts-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shorts-card:hover .shorts-thumbnail img {
    transform: scale(1.06);
}

.shorts-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
}

.shorts-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Placeholder tiles: no video attached yet, so they must not look clickable. */
.shorts-card.placeholder {
    cursor: default;
    box-shadow: none;
    background-color: transparent;
}

.shorts-card.placeholder:hover {
    transform: none;
    box-shadow: none;
}

.shorts-info {
    padding: 0.75rem 0.85rem 0.9rem;
}

.shorts-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text-primary);
}

.shorts-client {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.shorts-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 100%;
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-lg);
    color: var(--color-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .shorts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Vertical videos need a portrait modal, not the 16:9 one. */
.video-modal-content.vertical {
    aspect-ratio: 9/16;
    width: auto;
    height: 82vh;
    max-width: 95vw;
}

/* ========== "SEE ALL WORK" CTA (homepage -> work.html) ========== */
.work-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

/* Solid gold pill: the gradient runs slightly off-horizontal so the fill reads
   as brushed metal rather than a flat swatch, with a pale inner rim for the
   raised edge and a gold-tinted drop shadow so it lifts off the cream page. */
.work-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1.15rem 3.25rem;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A1A1A;
    background-image: linear-gradient(100deg,
        var(--color-accent-gold-dark) 0%,
        var(--color-accent-gold) 45%,
        var(--color-accent-gold-light) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Not --radius-full (50%): a percentage radius curves the full side and
       turns a wide button into an ellipse. A large px value gives a true pill. */
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(196, 160, 48, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform var(--transition-fast),
                box-shadow var(--transition-fast),
                filter var(--transition-fast);
}

.work-cta-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08) brightness(1.03);
    box-shadow: 0 14px 34px rgba(196, 160, 48, 0.38),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.work-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(196, 160, 48, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* The arrow travels on hover instead of the whole label reflowing. */
.work-cta-btn svg {
    transition: transform var(--transition-fast);
}

.work-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Rules flanking the caption. Each pseudo-element draws a 1px hairline that
   fades outward plus a dot at its inner end (two layered backgrounds). */
.work-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.work-cta-note::before,
.work-cta-note::after {
    content: '';
    flex: 0 1 150px;
    height: 6px;
    background-repeat: no-repeat;
    background-size: 100% 1px, 6px 6px;
}

.work-cta-note::before {
    background-image:
        linear-gradient(to right, transparent, var(--color-accent-gold-dark)),
        radial-gradient(circle, var(--color-accent-gold-dark) 3px, transparent 3px);
    background-position: left center, right center;
}

.work-cta-note::after {
    background-image:
        linear-gradient(to left, transparent, var(--color-accent-gold-dark)),
        radial-gradient(circle, var(--color-accent-gold-dark) 3px, transparent 3px);
    background-position: right center, left center;
}

@media (max-width: 600px) {
    .work-cta-btn {
        gap: 1.25rem;
        padding: 1rem 2rem;
        letter-spacing: 0.06em;
    }

    /* Hairlines would crowd the caption once it wraps. */
    .work-cta-note::before,
    .work-cta-note::after {
        display: none;
    }
}
