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

:root {
    --bg: #141414;
    --surface: #141414;
    --card: #404040;
    --accent: #c9b8a0;
    --white: #fff;
    --white-80: rgba(255,255,255,0.8);
    --white-60: rgba(255,255,255,0.6);
    --white-40: rgba(255,255,255,0.4);
    --white-20: rgba(255,255,255,0.2);
    --white-10: rgba(255,255,255,0.1);
    --ease: cubic-bezier(0.16,1,0.3,1);
    --serif: 'ivypresto-display', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;

       --white-15: rgba(255,255,255,0.15);
    --white-25: rgba(255,255,255,0.25);
    --white-30: rgba(255,255,255,0.3);
    --white-50: rgba(255,255,255,0.5);
}

html { font-size: 16px; scroll-behavior: smooth; }


/* Ensure images never overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
      padding-top: env(safe-area-inset-top);
  
}

@media (min-width: 1024px) {
/* Grain texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 10000;
    padding-top: env(safe-area-inset-top);
   
}
}


/* Container utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ========================================
   NAVIGATION - MINIMALIST & SLEEK
   ======================================== */


.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-10);
    transition: all 0.4s var(--ease);
    padding-top: env(safe-area-inset-top);
}

/* Soft beige glow underneath */
/* .nav::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(201, 184, 160, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.8;
} */

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-overlay {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* ========================================
   LOGO - Left (Icon only)
   ======================================== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.logo:hover {
    opacity: 0.7;
    transform: scale(0.97);
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: none;
}

/* ========================================
   NAV LINKS - Center (Clean, no wrapper)
   ======================================== */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--white-50);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s var(--ease);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

/* ========================================
   NAV RIGHT - CTA Button
   ======================================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bg);
    background: var(--accent);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 184, 160, 0.35);
}

.nav-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease);
}

.nav-cta:hover svg {
    transform: translateX(3px);
}

/* ========================================
   BURGER MENU - Mobile
   ======================================== */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 10px;
    transition: all 0.3s var(--ease);
    border-radius: 8px;
}

.nav-burger:hover {
    background: var(--white-10);
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white-60);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav-burger.active {
    background: var(--white-10);
}

.nav-burger.active span {
    background: var(--accent);
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(4.5px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-4.5px);
}

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay background decoration */
.nav-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 50% 30%, rgba(201, 184, 160, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.nav-overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 32px;
    width: 100%;
    max-width: 320px;
}

.nav-overlay .logo {
    margin-bottom: 8px;
}

.nav-overlay .logo-mark {
    width: 48px;
    height: 48px;
}

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.nav-overlay-links a {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-60);
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-overlay-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

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

.nav-overlay-links a:hover::after {
    width: 100%;
}

.nav-overlay .nav-cta {
    margin-top: 16px;
    padding: 16px 40px;
    font-size: 14px;
    border-radius: 8px;
}

/* Overlay decorative line */
.nav-overlay-divider {
    width: 40px;
    height: 1px;
    background: var(--white-15);
}



/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 184, 160, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    flex: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    /* width: 100%; */
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    padding: 60px 0px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT COLUMN */
.hero-left {
    max-width: 520px;
}

/* Custom bullet list styling */
.custom-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin-bottom: 16px;
    padding: 0;
}

.custom-bullet-list li {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--white-60);
}

.custom-bullet-list li::before {
    content: "";
    width: 3px;
    height: 12px;
    background-color: var(--accent);
    margin-right: 10px;
    display: inline-block;
    border-radius: 1px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--white-80);
    margin-bottom: 24px;
}

#OM-H1S4FBG.fluid-text {
    font-size: clamp(3.5rem, 2.5vw + 2.5rem, 6rem) !important;
}

.hero-title-accent {
    display: block;
    color: var(--accent);
    font-style: italic;
    position: relative;
}

.curved-underline {
    position: relative;
    display: inline-block;
}

.curved-underline::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 282.42 19.32'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23c9b8a0;stroke-width:0px;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='m4.21,18.27c-5.69-1.35-5.61-3.48.26-4.97,1.27-.32,2.77-.6,4.25-.87C45.47,5.59,86.76,1.24,133.8.21c32.37-.71,63.84.48,94.7,2.77,15.99,1.19,31.22,2.69,44.36,5.2,4.95.94,9.57,1.94,9.55,3.61.13,2.46-10.03,4.04-19.61,3.05-1.14-.12-2.33-.25-3.25-.44-19.57-4.11-44.08-5.49-68.76-6.66-55.89-2.65-106.45.48-152.65,8.01-4.34.71-8.26,1.57-12.13,2.42-6.76,1.49-15.74,1.56-21.82.11Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-sub {
    font-size: 15px;
    color: var(--white-60);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.btn-ghost {
    color: var(--white-80);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.btn-ghost:hover { color: var(--white); }

/* ========================================
   RIGHT COLUMN - CREATIVE WORKSPACE
   ======================================== */
.hero-right {
    position: relative;
    height: 100%;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-scene {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 520px;
}

/* ========================================
   BACKGROUND GRID - Subtle dark tiles
   ======================================== */
.grid-container {
    position: absolute;
    inset: -20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 6px;
    transform: perspective(1000px) rotateX(3deg) rotateY(-4deg);
    transform-style: preserve-3d;
    opacity: 0.6;
}

.grid-tile {
    background: #1f1f1f;
    border: 1px solid var(--white-10);
    border-radius: 10px;
    transition: all 0.5s var(--ease);
}

.grid-tile:hover {
    border-color: var(--white-15);
}

/* Subtle depth variations */
.tile-1 { transform: translateZ(-8px); opacity: 0.5; }
.tile-2 { transform: translateZ(-4px); opacity: 0.6; }
.tile-3 { transform: translateZ(-10px); opacity: 0.4; }
.tile-4 { transform: translateZ(-6px); opacity: 0.55; }
.tile-5 { transform: translateZ(-2px); opacity: 0.7; }
.tile-6 { transform: translateZ(-8px); opacity: 0.5; }
.tile-7 { transform: translateZ(-5px); opacity: 0.6; }
.tile-8 { transform: translateZ(-3px); opacity: 0.65; }
.tile-9 { transform: translateZ(-7px); opacity: 0.5; }

/* ========================================
   MAIN CANVAS CARD - Primary focus
   ======================================== */
.main-canvas {
    position: absolute;
    top: 45%;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 380px;
    background: var(--surface);
    border: 1px solid var(--white-15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 60px 120px rgba(0,0,0,0.6),
        0 30px 60px rgba(0,0,0,0.4);
    z-index: 10;
    animation: floatMain 12s ease-in-out infinite;
}

.main-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.canvas-text {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.selection-box {
    position: absolute;
    inset: -12px -18px;
    border: 1.5px solid var(--accent);
    border-radius: 3px;
    background: rgba(201, 184, 160, 0.08);
}

.selection-box::before,
.selection-box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid var(--surface);
    border-radius: 2px;
}

.selection-box::before { top: -6px; left: -6px; }
.selection-box::after { bottom: -6px; right: -6px; }

.text-label {
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    color: var(--white);
    white-space: nowrap;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.canvas-image {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 1;
}

.canvas-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.canvas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92) contrast(1.03);
}

/* ========================================
   SECONDARY CANVAS - Overlapping image
   ======================================== */
.secondary-canvas {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 200px;
    height: 260px;
    background: var(--surface);
    border: 1px solid var(--white-15);
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 20px 40px rgba(0,0,0,0.3);
    z-index: 12;
    animation: floatSecondary 10s ease-in-out infinite 1s;
}

.secondary-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

@keyframes floatSecondary {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
}

.secondary-canvas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.02);
}

/* Secondary canvas overlay label */
.secondary-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
}

.secondary-label span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
}



/* ========================================
   FLOATING CARDS - Refined positioning
   ======================================== */

/* Color Palette Card - Top left */
.float-palette {
    position: absolute;
    top: 60px;
    left: -10px;
    background: var(--surface);
    border: 1px solid var(--white-15);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        0 8px 16px rgba(0,0,0,0.3);
    z-index: 15;
    animation: floatPalette 9s ease-in-out infinite;
}

@keyframes floatPalette {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(-0.5deg); }
}

.palette-title {
    display: block;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.palette-dots {
    display: flex;
    gap: 5px;
}

.palette-dots span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s var(--ease);
    border: 1px solid var(--white-10);
}

.palette-dots span:nth-child(1) { background: var(--bg); }
.palette-dots span:nth-child(2) { background: #1a1a1a; }
.palette-dots span:nth-child(3) { background: var(--accent); border-color: transparent; }
.palette-dots span:nth-child(4) { background: var(--white-40); }
.palette-dots span:nth-child(5) { background: var(--white-60); }
.palette-dots span:nth-child(6) { background: var(--white); border-color: var(--white-20); }

.palette-dots span:hover { transform: scale(1.15); }

.eyedropper-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--white-40);
    opacity: 0.5;
}

/* Analytics Card - Bottom left */
.float-analytics {
    position: absolute;
    bottom: 100px;
    left: -20px;
    background: var(--surface);
    border: 1px solid var(--white-15);
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        0 8px 16px rgba(0,0,0,0.3);
    z-index: 14;
    animation: floatAnalytics 11s ease-in-out infinite 0.5s;
    min-width: 130px;
}

@keyframes floatAnalytics {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.5deg); }
}

.analytics-label {
    display: block;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.analytics-value {
    display: block;
    font-size: 26px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.analytics-change {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    font-size: 9px;
    color: var(--white-50);
}

.change-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Calendar Card - Top right, larger */
.float-calendar {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--surface);
    border: 1px solid var(--white-15);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow:
        0 24px 48px rgba(0,0,0,0.4),
        0 12px 24px rgba(0,0,0,0.3);
    z-index: 16;
    animation: floatCalendar 10s ease-in-out infinite 1s;
    min-width: 170px;
}

@keyframes floatCalendar {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-7px) rotate(-0.5deg); }
}

.calendar-month {
    display: block;
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 10px;
    text-align: center;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.calendar-header span {
    font-size: 6px;
    font-weight: 500;
    color: var(--white-40);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-grid .day {
    font-size: 8px;
    color: var(--white-60);
    text-align: center;
    padding: 3px 2px;
    border-radius: 3px;
    transition: all 0.2s var(--ease);
}

.calendar-grid .day.muted {
    color: var(--white-20);
}

.calendar-grid .day.published {
    background: var(--accent);
    color: var(--bg);
    font-weight: 500;
}

.calendar-grid .day.scheduled {
    background: var(--white-15);
    color: var(--white-80);
    font-weight: 500;
}

.calendar-legend {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    justify-content: center;
    padding-top: 6px;
    border-top: 1px solid var(--white-10);
}

.calendar-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    color: var(--white-40);
}

.calendar-legend .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.calendar-legend .dot.published {
    background: var(--accent);
}

.calendar-legend .dot.scheduled {
    background: var(--white-40);
}

/* ========================================
   IMPACT SECTION - REFINED STATS
   ======================================== */
.impact { 
    padding: 30px 0 80px;
    position: relative;
    background: var(--bg);
}

/* Subtle top glow */
.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 80px;
    background: radial-gradient(ellipse at center top, rgba(201, 184, 160, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-minimal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.stat-minimal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 48px;
    flex: 1;
    max-width: 340px;
    transition: all 0.4s var(--ease);
}

/* Divider lines between stats */
.stat-minimal:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--white-15), transparent);
}

/* Hover effect - subtle glow */
.stat-minimal:hover .stat-minimal-number {
    color: var(--accent);
    transform: scale(1.02);
}

/* Dominant numbers */
.stat-minimal-number {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 14px;
    transition: all 0.4s var(--ease);
}

/* Accent label */
.stat-minimal-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Context text */
.stat-minimal-context {
    font-size: 13px;
    line-height: 1.55;
    color: var(--white-50);
    max-width: 200px;
}



/* ========================================
   WORKFLOW SECTION - BENTO GRID
   ======================================== */
.workflow { 
    padding: 80px 0 120px;
    position: relative;
    background: var(--bg);
}

.workflow::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-15), transparent);
}

.workflow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(201, 184, 160, 0.02));
    pointer-events: none;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 56px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
  
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--white);
}

.section-intro {
    font-size: 15px;
    color: var(--white-50);
    max-width: 360px;
    line-height: 1.6;
}

/* ========================================
   BENTO GRID LAYOUT
   Row 1: span-2, 1, 1
   Row 2: 1, span-2, 1 (CTA)
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Grid positioning */
.bento-span-2 {
    grid-column: span 2;
}

.bento-span-1 {
    grid-column: span 1;
}

/* ========================================
   BENTO CARD STYLES
   ======================================== */
.bento-card {
    background: var(--surface);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.bento-card:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
}

/* ========================================
   BENTO HEADER - Icon + Title left, Number right
   ======================================== */
.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.bento-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bento-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--white-20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.bento-card:hover .bento-icon {
    border-color: var(--accent);
    background: rgba(201, 184, 160, 0.1);
}

.bento-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white-60);
    transition: stroke 0.3s var(--ease);
}

.bento-card:hover .bento-icon svg {
    stroke: var(--accent);
}

.bento-header h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.bento-number {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
}

/* ========================================
   BENTO BODY - Text bottom left
   ======================================== */
.bento-body {
    margin-bottom: auto;
    position: relative;
    z-index: 2;
}

.bento-body p {
    font-size: 13px;
    color: var(--white-50);
    line-height: 1.6;
    max-width: 260px;
    margin: 0;
}

.bento-body p strong {
    color: var(--white-80);
    font-weight: 500;
}

/* ========================================
   STRATEGY VISUAL - ORBITAL SYSTEM
   ======================================== */
.bento-visual-strategy {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    overflow: visible;
    pointer-events: none;
}

.strategy-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Dot grid background pattern */
.diagram-grid {
    position: absolute;
    inset: -50px;
    background-image: radial-gradient(circle, var(--white-10) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 70% 70% at 100% 100%, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 100% 100%, black 0%, transparent 60%);
}

/* ========================================
   CENTRAL ORB - Bottom right corner (half visible)
   ======================================== */
.diagram-orb {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 30%, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(255, 255, 255, 0.18) 25%,
        rgba(255, 255, 255, 0.08) 45%,
        rgba(201, 184, 160, 0.12) 65%,
        transparent 100%);
    z-index: 10;
}



.diagram-orb::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(201, 184, 160, 0.25) 0%,
        transparent 50%);
    filter: blur(20px);
}

/* ========================================
   ORBITAL RINGS - Centered on orb (half visible)
   ======================================== */
.diagram-orbits {
    position: absolute;
    inset: 0;
    overflow: visible;
}

/* All rings centered on the orb center point */
.orbit-ring {
    position: absolute;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    /* Center point is at bottom: 0, right: 0 (orb center) */
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

/* Tighter ring spacing - all emanating from same center */
.orbit-ring-1 {
    width: 150px;
    height: 150px;
    opacity: 0.6;
}

.orbit-ring-2 {
    width: 220px;
    height: 220px;
    opacity: 0.5;
}

.orbit-ring-3 {
    width: 290px;
    height: 290px;
    opacity: 0.4;
}

.orbit-ring-4 {
    width: 360px;
    height: 360px;
    border-style: dashed;
    opacity: 0.35;
}

.orbit-ring-5 {
    width: 430px;
    height: 430px;
    border-style: dotted;
    opacity: 0.3;
}

/* ========================================
   ORBIT LABELS - Each on different ring, offset positions
   ======================================== */
.orbit-labels {
    position: absolute;
    inset: 0;
    overflow: visible;
}

.orbit-label {
    position: absolute;
    font-size: 9px;
    font-weight: 500;
    color: var(--white-50);
    padding: 5px 11px;
    background: var(--surface);
    border: 1px solid var(--white-15);
    border-radius: 20px;
    white-space: nowrap;
    z-index: 5;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    /* Anchor at bottom-right corner (orb center) */
    bottom: 0;
    right: 0;
}

.bento-card:hover .orbit-label {
    border-color: var(--white-25);
    color: var(--white-80);
    background: rgba(30, 30, 30, 0.95);
}

/* Label 1: Ring 1 (innermost) - radius 50px */
.orbit-label:nth-child(1) {
    animation: orbit-r50 10s linear infinite;
}

/* Label 2: Ring 2 - radius 75px */
.orbit-label:nth-child(2) {
    animation: orbit-r75 14s linear infinite;
}

/* Label 3: Ring 3 - radius 100px */
.orbit-label:nth-child(3) {
    animation: orbit-r100 18s linear infinite;
}

/* Label 4: Ring 4 - radius 130px */
.orbit-label:nth-child(4) {
    animation: orbit-r130 22s linear infinite;
}

/* Label 5: Ring 5 (outermost) - radius 160px */
.orbit-label:nth-child(5) {
    animation: orbit-r160 26s linear infinite;
}

/* Label 6: Ring 3 again - radius 100px, different start */
.orbit-label:nth-child(6) {
    animation: orbit-r100-alt 20s linear infinite;
}

/* Orbit keyframes - each label on its own ring with different starting angles */
@keyframes orbit-r50 {
    0% { transform: rotate(45deg) translateX(50px) rotate(-45deg); }
    100% { transform: rotate(405deg) translateX(50px) rotate(-405deg); }
}

@keyframes orbit-r75 {
    0% { transform: rotate(120deg) translateX(75px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(75px) rotate(-480deg); }
}

@keyframes orbit-r100 {
    0% { transform: rotate(200deg) translateX(100px) rotate(-200deg); }
    100% { transform: rotate(560deg) translateX(100px) rotate(-560deg); }
}

@keyframes orbit-r130 {
    0% { transform: rotate(280deg) translateX(130px) rotate(-280deg); }
    100% { transform: rotate(640deg) translateX(130px) rotate(-640deg); }
}

@keyframes orbit-r160 {
    0% { transform: rotate(20deg) translateX(160px) rotate(-20deg); }
    100% { transform: rotate(380deg) translateX(160px) rotate(-380deg); }
}

@keyframes orbit-r100-alt {
    0% { transform: rotate(340deg) translateX(100px) rotate(-340deg); }
    100% { transform: rotate(700deg) translateX(100px) rotate(-700deg); }
}



/* ========================================
   PLANNING CARD - Full width calendar grid
   ======================================== */
.bento-planning {
    overflow: hidden;
}

.bento-planning .bento-body-top {
    margin-top: 0;
    margin-bottom: auto;
}

/* Planning visual: Full width calendar grid */
.bento-planning .bento-visual-planning {
    position: absolute;
    bottom: -50px;
    left: -34px;
    right: -34px;
    height: 60%;
    pointer-events: none;
    mask-image: linear-gradient(to top, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
}

.planning-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px 40px;
    /* height: 100%; */
    justify-content: flex-end;
}

.planning-row {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.plan-cell {
    width: 28px;
    height: 28px;
    background: var(--white-10);
    border-radius: 6px;
    transition: all 0.8s var(--ease);
}

/* Active cells that will animate */
.plan-cell.active {
    background: var(--white-10);
}

/* Elegant slow pulse animations - staggered */
.planning-row:nth-child(1) .plan-cell:nth-child(3).active { animation: elegantPulse 8s ease-in-out 0.5s infinite; }
.planning-row:nth-child(1) .plan-cell:nth-child(5).active { animation: elegantPulse 9s ease-in-out 3s infinite; }
.planning-row:nth-child(1) .plan-cell:nth-child(8).active { animation: elegantPulse 7.5s ease-in-out 6s infinite; }

.planning-row:nth-child(2) .plan-cell:nth-child(1).active { animation: elegantPulse 8.5s ease-in-out 1.5s infinite; }
.planning-row:nth-child(2) .plan-cell:nth-child(4).active { animation: elegantPulse 9.5s ease-in-out 4.5s infinite; }
.planning-row:nth-child(2) .plan-cell:nth-child(7).active { animation: elegantPulse 8s ease-in-out 7.5s infinite; }

.planning-row:nth-child(3) .plan-cell:nth-child(2).active { animation: elegantPulse 7s ease-in-out 2s infinite; }
.planning-row:nth-child(3) .plan-cell:nth-child(5).active { animation: elegantPulse 8.5s ease-in-out 5s infinite; }
.planning-row:nth-child(3) .plan-cell:nth-child(7).active { animation: elegantPulse 9s ease-in-out 0s infinite; }
.planning-row:nth-child(3) .plan-cell:nth-child(9).active { animation: elegantPulse 7.5s ease-in-out 8s infinite; }

.planning-row:nth-child(4) .plan-cell:nth-child(2).active { animation: elegantPulse 8s ease-in-out 3.5s infinite; }
.planning-row:nth-child(4) .plan-cell:nth-child(6).active { animation: elegantPulse 9s ease-in-out 1s infinite; }
.planning-row:nth-child(4) .plan-cell:nth-child(8).active { animation: elegantPulse 7s ease-in-out 6.5s infinite; }

.planning-row:nth-child(5) .plan-cell:nth-child(1).active { animation: elegantPulse 8.5s ease-in-out 7s infinite; }
.planning-row:nth-child(5) .plan-cell:nth-child(4).active { animation: elegantPulse 7.5s ease-in-out 2.5s infinite; }
.planning-row:nth-child(5) .plan-cell:nth-child(6).active { animation: elegantPulse 9.5s ease-in-out 4s infinite; }
.planning-row:nth-child(5) .plan-cell:nth-child(9).active { animation: elegantPulse 8s ease-in-out 0.5s infinite; }

.planning-row:nth-child(6) .plan-cell:nth-child(3).active { animation: elegantPulse 9s ease-in-out 5.5s infinite; }
.planning-row:nth-child(6) .plan-cell:nth-child(5).active { animation: elegantPulse 7s ease-in-out 1.5s infinite; }
.planning-row:nth-child(6) .plan-cell:nth-child(8).active { animation: elegantPulse 8.5s ease-in-out 8.5s infinite; }

@keyframes elegantPulse {
    0%, 100% {
        background: var(--white-10);
        transform: scale(1);
    }
    20% {
        background: var(--accent);
        transform: scale(1);
    }
    35% {
        background: var(--accent);
        transform: scale(1.02);
    }
    65% {
        background: var(--accent);
        transform: scale(1.02);
    }
    80% {
        background: var(--accent);
        transform: scale(1);
    }
}

/* Hover enhancement */
.bento-planning:hover .plan-cell {
    background: var(--white-15);
}

.bento-planning:hover .plan-cell.active {
    background: var(--white-15);
}



.bento-visual-production {
    position: absolute;
    bottom: -40px;
    right: 0px;
    left: 0px;
    height: 140px;
    pointer-events: none;
    overflow: visible;
}

.viewfinder {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white-20);
    border-radius: 8px;
    overflow: hidden;
    background: #1b1b1b;
}

/* Corner brackets */
.viewfinder::before,
.viewfinder::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--white-40);
    border-style: solid;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 0.3s forwards;
}

.viewfinder::before {
    top: 12px;
    left: 12px;
    border-width: 1px 0 0 1px;
}

.viewfinder::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 1px 1px 0;
}

/* Rule of thirds grid */
.vf-grid {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: vfFadeIn 0.5s ease-out 0.2s forwards;
}

/* Grid lines */
.vf-grid-line {
    position: absolute;
    background: var(--white-15);
}

.vf-grid-line.vertical-1 {
    left: 33.33%;
    top: 0;
    bottom: 0;
    width: 1px;
}

.vf-grid-line.vertical-2 {
    left: 66.66%;
    top: 0;
    bottom: 0;
    width: 1px;
}

.vf-grid-line.horizontal-1 {
    top: 33.33%;
    left: 0;
    right: 0;
    height: 1px;
}

.vf-grid-line.horizontal-2 {
    top: 66.66%;
    left: 0;
    right: 0;
    height: 1px;
}

/* Focus point - center crosshair */
.vf-focus {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    opacity: 0;
    animation: vfFadeIn 0.4s ease-out 0.5s forwards;
}

.vf-focus-ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--white-50);
    border-radius: 50%;
    animation: focusPulse 3s ease-in-out infinite;
}

.vf-focus-ring:nth-child(2) {
    inset: 10px;
    border-color: var(--white-30);
    animation-delay: 0.15s;
}

.vf-focus-ring:nth-child(3) {
    display: none;
}

.vf-focus-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(201, 184, 160, 0.6);
}

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

/* HUD Elements - Minimal */
.vf-hud {
    position: absolute;
    inset: 14px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 9px;
    color: var(--white-50);
    letter-spacing: 0.03em;
}

.vf-rec {
    position: absolute;
    top: 3px;
    left: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 0.7s forwards;
}

.vf-rec-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: recBlink 2s ease-in-out infinite;
}

.vf-rec span {
    color: var(--accent);
    font-weight: 500;
    font-size: 8px;
}

@keyframes recBlink {
    0%, 40%, 100% { opacity: 1; }
    20% { opacity: 0.3; }
}

.vf-format {
    position: absolute;
    top: 3px;
    right: 6px;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 0.8s forwards;
    color: var(--white-40);
    font-size: 8px;
}

.vf-settings {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 0.9s forwards;
    color: var(--white-35);
    font-size: 8px;
}

.vf-timecode {
    position: absolute;
    bottom: 0;
    right: 0;
    font-variant-numeric: tabular-nums;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 1s forwards;
    color: var(--white-40);
    font-size: 8px;
}

@keyframes vfFadeIn {
    to { opacity: 1; }
}

/* Additional corner brackets (bottom-left, top-right) */
.vf-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--white-40);
    border-style: solid;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 0.4s forwards;
}

.vf-corner.top-right {
    top: 12px;
    right: 12px;
    border-width: 1px 1px 0 0;
}

.vf-corner.bottom-left {
    bottom: 12px;
    left: 12px;
    border-width: 0 0 1px 1px;
}



/* ========================================
   EXECUTION CARD - LAYERED TIMELINE
   ======================================== */
.bento-visual-execution {
    position: absolute;
    bottom: -5px;
    left: -40px;
    right: -40px;
    pointer-events: none;
}

.timeline-editor {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-track {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 18px;
    opacity: 0;
    transform: translateX(-20px);
    animation: trackSlideIn 0.5s var(--ease) forwards;
}

.timeline-track:nth-child(1) { animation-delay: 0.2s; }
.timeline-track:nth-child(2) { animation-delay: 0.3s; }
.timeline-track:nth-child(3) { animation-delay: 0.4s; }
.timeline-track:nth-child(4) { animation-delay: 0.5s; }

.track-label {
    font-size: 7px;
    font-weight: 500;
    color: var(--white-40);
    width: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.track-bar {
    flex: 1;
    height: 100%;
    background: var(--white-10);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.track-clip {
    position: absolute;
    top: 2px;
    bottom: 2px;
    border-radius: 2px;
    opacity: 0;
    animation: clipFadeIn 0.4s var(--ease) forwards;
}

/* Track 1: Video clips */
.timeline-track:nth-child(1) .track-clip:nth-child(1) {
    left: 5%;
    width: 25%;
    background: var(--white-25);
    animation-delay: 0.5s;
}

.timeline-track:nth-child(1) .track-clip:nth-child(2) {
    left: 35%;
    width: 40%;
    background: var(--white-20);
    animation-delay: 0.6s;
}

.timeline-track:nth-child(1) .track-clip:nth-child(3) {
    left: 80%;
    width: 15%;
    background: var(--white-25);
    animation-delay: 0.7s;
}

/* Track 2: Audio */
.timeline-track:nth-child(2) .track-clip:nth-child(1) {
    left: 0;
    width: 60%;
    background: var(--accent);
    opacity: 0.4;
    animation-delay: 0.6s;
}

.timeline-track:nth-child(2) .track-clip:nth-child(2) {
    left: 65%;
    width: 30%;
    background: var(--accent);
    opacity: 0.3;
    animation-delay: 0.7s;
}

/* Track 3: Graphics */
.timeline-track:nth-child(3) .track-clip:nth-child(1) {
    left: 10%;
    width: 15%;
    background: var(--white-30);
    animation-delay: 0.7s;
}

.timeline-track:nth-child(3) .track-clip:nth-child(2) {
    left: 50%;
    width: 20%;
    background: var(--white-25);
    animation-delay: 0.8s;
}

/* Track 4: Text */
.timeline-track:nth-child(4) .track-clip:nth-child(1) {
    left: 20%;
    width: 30%;
    background: var(--white-20);
    animation-delay: 0.8s;
}

.timeline-track:nth-child(4) .track-clip:nth-child(2) {
    left: 70%;
    width: 25%;
    background: var(--white-15);
    animation-delay: 0.9s;
}

/* Playhead */
.timeline-playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    left: 0;
    z-index: 5;
    animation: playheadMove 8s linear infinite;
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out 1s forwards, playheadMove 8s linear 3.3s infinite;
}

.timeline-playhead::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--accent);
}

.timeline-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Time markers */
.timeline-markers {
    display: flex;
    justify-content: space-evenly;
    padding-top: 6px;
    border-top: 1px solid var(--white-10);
    margin-top: 4px;
}

.timeline-markers span {
    font-size: 7px;
    font-family: 'SF Mono', 'Monaco', monospace;
    color: var(--white-30);
}

@keyframes trackSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes clipFadeIn {
    to { opacity: 1; }
}

@keyframes playheadMove {
    0% { left: 0; }
    100% { left: calc(100% - 2px); }
}

/* ========================================
   ANALYTICS CARD - LINE GRAPH CONCEPT
   ======================================== */
.bento-visual-analytics {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    height: 90px;
    pointer-events: none;
}

.analytics-graph {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Grid lines */
.graph-grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding: 5px 0; */
    opacity: 0;
    animation: vfFadeIn 0.3s ease-out forwards;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-10) 10%, var(--white-10) 90%, transparent);
}


.grid-line:nth-child(1) {
   opacity: 0.3;
}
.grid-line:nth-child(2) {
   opacity: 0.4;
}
.grid-line:nth-child(3) {
   opacity: 0.4;
}
.grid-line:nth-child(4) {
   opacity: 0.5;
}
.grid-line:nth-child(5) {
   opacity: 0.6;
}

/* SVG Line and Fill */
.graph-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.graph-line {
    fill: none;
    stroke: var(--white-50);
    stroke-width: 2;
    opacity: 0.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s var(--ease) 0.4s forwards;
    vector-effect: non-scaling-stroke;
}

.graph-fill {
    fill: url(#graphGradient);
    opacity: 0;
    animation: fillFadeIn 1.2s var(--ease) 1.2s forwards;
}

/* Data nodes - positioned to match SVG path points */
.graph-nodes {
    position: absolute;
    inset: 0;
}

.graph-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2px solid var(--surface);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 16px rgba(201, 184, 160, 0.5);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.graph-node:nth-child(1) {
    left: 0%;
    top: 90%;
    animation: nodeAppear 0.4s var(--ease) 0.6s forwards;
}

.graph-node:nth-child(2) {
    left: 16.66%;
    top: 75%;
    animation: nodeAppear 0.4s var(--ease) 0.85s forwards;
}

.graph-node:nth-child(3) {
    left: 33.33%;
    top: 60%;
    animation: nodeAppear 0.4s var(--ease) 1.1s forwards;
}

.graph-node:nth-child(4) {
    left: 50%;
    top: 50%;
    animation: nodeAppear 0.4s var(--ease) 1.35s forwards;
}

.graph-node:nth-child(5) {
    left: 66.66%;
    top: 55%;
    animation: nodeAppear 0.4s var(--ease) 1.6s forwards;
}

.graph-node:nth-child(6) {
    left: 83.33%;
    top: 35%;
    animation: nodeAppear 0.4s var(--ease) 1.85s forwards;
}

.graph-node:nth-child(7) {
    left: 100%;
    top: 15%;
    animation: nodeAppear 0.4s var(--ease) 2.1s forwards;
}

@keyframes graphFadeIn {
    to { opacity: 1; }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fillFadeIn {
    to { opacity: 1; }
}

@keyframes nodeAppear {
    to { transform: translate(-50%, -50%) scale(1); }
}

/* Node glow on hover */
.bento-card:hover .graph-node {
    box-shadow: 0 0 16px rgba(201, 184, 160, 0.7);
}


/* ========================================
   BENTO CTA CARD
   ======================================== */
.bento-cta {
    background: #b5ab9c;
    border-color: var(--accent);
    justify-content: center;
    /* align-items: center; */
    /* text-align: center; */
}

.bento-cta:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(201, 184, 160, 0.2);
}

.bento-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bento-cta-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(20, 20, 20, 0.5);
}

.bento-cta h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--bg);
    margin: 0;
    line-height: 1.3;
}

.bento-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 20px;
    background: var(--bg);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
}

.bento-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bento-cta-button svg {
    width: 14px;
    height: 14px;
}






/* ========================================
   MAGAZINE GALLERY - REFERENCE GRID LAYOUT
   ======================================== */
.magazine-gallery {
    background: var(--bg);
    padding: 60px 0 80px;
    position: relative;
}

/* Top connecting gradient */
/* .magazine-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(201, 184, 160, 0.02), transparent);
    pointer-events: none;
} */

/* Connecting line element */
.magazine-gallery::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--white-15), transparent);
}

.magazine-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========================================
   MAGAZINE HEADER
   ======================================== */
.magazine-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 42px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--white-10);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.magazine-issue {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.magazine-title {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    /* font-style: italic; */
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--white-80);
}

.header-right {
    max-width: 380px;
    justify-self: end;
    padding-bottom: 6px;
}

.magazine-intro {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-50);
}

 
/* ========================================
   MAGAZINE SPREAD - 3x3 GRID LAYOUT
   ======================================== */
.magazine-spread {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    aspect-ratio: 3 / 2;
    min-height: 600px;
    border-bottom: 1px solid var(--white-10);
    padding-bottom: 42px;
}

/* ========================================
   SPREAD ITEMS - IMAGE CONTAINERS
   ======================================== */
.spread-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.spread-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--card);
}

.spread-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s var(--ease);
}

.spread-item:hover .spread-image img {
    transform: scale(1.03);
}

/* ========================================
   GRID POSITIONING
   Column 1: 2-row image (rows 1-2), meta (row 3)
   Column 2: image (row 1), 2-row image (rows 2-3)
   Column 3: meta (row 1), image (row 2), image (row 3)
   ======================================== */

/* COLUMN 1 */
/* Image spanning rows 1-2 */
.spread-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Meta block in row 3 */
.meta-1 {
    grid-column: 1;
    grid-row: 3;
}

/* COLUMN 2 */
/* Image in row 1 */
.spread-2 {
    grid-column: 2;
    grid-row: 1;
}

/* Image spanning rows 2-3 */
.spread-3 {
    grid-column: 2;
    grid-row: 2 / 4;
}

/* COLUMN 3 */
/* Meta block in row 1 */
.meta-2 {
    grid-column: 3;
    grid-row: 1;
}

/* Image in row 2 */
.spread-4 {
    grid-column: 3;
    grid-row: 2;
}

/* Image in row 3 */
.spread-5 {
    grid-column: 3;
    grid-row: 3;
    display: block;
}

/* ========================================
   META BLOCKS - TYPOGRAPHY PANELS
   ======================================== */
.meta-block {
    background: var(--bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--white-10);
    border-radius: 4px;
}

.meta-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.meta-value-large {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.meta-divider-line {
    width: 40px;
    height: 1px;
    background: var(--white-20);
    margin: 4px 0;
}

.meta-specs-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.meta-spec {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.spec-symbol {
    font-size: 10px;
    font-weight: 500;
    color: var(--white-40);
}

.spec-number {
    font-size: 16px;
    font-family: 'SF Mono', 'Monaco', monospace;
    font-weight: 400;
    color: var(--white-80);
    letter-spacing: -0.02em;
}

/* Meta Block 2: Processing panel */
.processing-title {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.adjustment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adjustment {
    display: grid;
    grid-template-columns: 65px 1fr 32px;
    align-items: center;
    gap: 8px;
}

.adj-label {
    font-size: 10px;
    color: var(--white-50);
}

.adj-bar {
    height: 3px;
    background: var(--white-10);
    border-radius: 2px;
    overflow: hidden;
}

.adj-bar span {
    display: block;
    height: 100%;
    width: var(--width);
    background: var(--accent);
    border-radius: 2px;
}

.adj-value {
    font-size: 10px;
    font-family: 'SF Mono', 'Monaco', monospace;
    color: var(--white-60);
    text-align: right;
}

/* Meta Block 3: Note + specs */
.meta-note-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: auto;
}

.note-number {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.note-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--white-50);
    font-style: italic;
    margin: 0;
}

.meta-strip-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--white-10);
    margin-top: auto;
    flex-wrap: wrap;
}

.strip-item {
    font-size: 11px;
    color: var(--white-60);
    font-family: 'SF Mono', 'Monaco', monospace;
}

.strip-item strong {
    color: var(--accent);
    font-weight: 500;
}

.strip-divider {
    color: var(--white-20);
    font-size: 10px;
}

/* ========================================
   MAGAZINE STATEMENT
   ======================================== */
.magazine-statement {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--white-10);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

.statement-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.statement-text {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: var(--white-80);
    margin: 0;
}

/* ========================================
   MAGAZINE FOOTER
   ======================================== */
.magazine-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--white-10);
}

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

.footer-tagline {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: var(--white-50);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(201, 184, 160, 0.25);
}

.footer-cta svg {
    width: 16px;
    height: 16px;
}




/* ========================================
   SELECTED WORK - PORTFOLIO SHOWCASE
   ======================================== */
.selected-work {
    padding: 80px 0 120px;
    background: var(--bg);
    position: relative;
}

.selected-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(201, 184, 160, 0.015), transparent);
    pointer-events: none;
}

.selected-work-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header - Matching other sections */
.selected-work .section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 56px;
    padding: 0;
}

/* ========================================
   WORK GRID - Asymmetric layout
   ======================================== */
.work-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
}

/* ========================================
   WORK CARD - Base styles
   ======================================== */
.work-card {
    background: var(--surface);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
}

/* Card sizes */
.work-card.featured {
    grid-column: span 7;
}

.work-card.standard {
    grid-column: span 5;
}

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

.work-card.narrow {
    grid-column: span 4;
}

/* ========================================
   WORK IMAGE
   ======================================== */
.work-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.work-card.featured .work-image {
    aspect-ratio: 16 / 9;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.work-card:hover .work-image img {
    transform: scale(1.03);
}

/* Image overlay gradient */
.work-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.work-card:hover .work-image::after {
    opacity: 1;
}

/* Image placeholder */
.work-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--card) 0%, #1a1a1a 100%);
}

/* ========================================
   WORK CONTENT
   ======================================== */
.work-content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Header: Category + Client */
.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.work-category {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(201, 184, 160, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

.work-year {
    font-size: 11px;
    color: var(--white-40);
    font-family: 'SF Mono', 'Monaco', monospace;
}

/* Client name */
.work-client {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.work-card.standard .work-client {
    font-size: 20px;
}

/* Description */
.work-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-50);
    margin: 0;
}

/* ========================================
   SERVICES LIST
   ======================================== */
.work-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--white-10);
}

.service-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--white-50);
    background: var(--white-10);
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.3s var(--ease);
}

.work-card:hover .service-tag {
    background: var(--white-15);
    color: var(--white-60);
}

/* ========================================
   KEY METRICS - Impact numbers
   ======================================== */
.work-metrics {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.metric-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-40);
}

/* Highlight metrics */
.metric.highlight .metric-value {
    color: var(--accent);
}

/* ========================================
   CASE STUDY LINK
   ======================================== */
.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white-60);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    margin-top: auto;
}

.work-link:hover {
    color: var(--accent);
    gap: 12px;
}

.work-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease);
}

.work-link:hover svg {
    transform: translateX(2px);
}

/* Coming soon state */
.work-link.coming-soon {
    color: var(--white-40);
    cursor: default;
}

.work-link.coming-soon::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.work-link.coming-soon:hover {
    color: var(--white-40);
    gap: 8px;
}

/* ========================================
   FEATURED HIGHLIGHT - Special treatment
   ======================================== */
.work-card.featured .work-content {
    padding: 24px 28px 28px;
}

.work-card.featured .work-metrics {
    gap: 32px;
}

.work-card.featured .metric-value {
    font-size: 28px;
}

/* ========================================
   TESTIMONIAL BLOCK
   ======================================== */
.work-testimonial {
    background: var(--white-10);
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    color: var(--white-60);
    margin: 0 0 8px 0;
}

.testimonial-author {
    font-size: 10px;
    font-weight: 500;
    color: var(--white-40);
    letter-spacing: 0.05em;
}

/* ========================================
   VIRAL BADGE
   ======================================== */
.viral-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(201, 184, 160, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

.viral-badge svg {
    width: 14px;
    height: 14px;
}



/* ========================================
   CASE STUDY CARD - EXPANDED FORMAT
   ======================================== */
.work-card.case-study {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.case-study-hero {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}

.case-study-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.work-card.case-study:hover .case-study-hero img {
    transform: scale(1.02);
}

.case-study-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}

.case-study-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.case-study-hero .work-header {
    margin-bottom: 12px;
}

.case-study-hero .work-client {
    font-size: 36px;
    margin-bottom: 8px;
}

.case-study-hero .work-description {
    max-width: 600px;
    font-size: 14px;
    color: var(--white-80);
}


/* ========================================
   CASE STUDY CARD - COOK TOGETHER LAYOUT
   ======================================== */
.work-card.case-study {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ========================================
   CASE STUDY HEADER - Image Left, Info Right
   ======================================== */
.case-study-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.case-study-image {
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.work-card.case-study:hover .case-study-image img {
    transform: scale(1.02);
}

.case-study-info {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: var(--surface);
}

.case-study-info .work-header {
    margin-bottom: 16px;
}

.case-study-info .work-client {
    font-size: 32px;
    margin-bottom: 12px;
}

.case-study-info .work-description {
    font-size: 14px;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Quick stats row */
.case-study-stats {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    margin-bottom: 24px;
}

.case-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case-stat-value {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.case-stat-value.accent {
    color: var(--accent);
}

.case-stat-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
}

/* Services summary tags */
.case-study-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

/* Expand button */
.case-study-expand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--white-10);
    border: 1px solid var(--white-15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: auto;
}

.case-study-expand:hover {
    background: var(--white-15);
    border-color: var(--white-20);
}

.expand-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--white-80);
}

.expand-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
}

.expand-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white-50);
}

.case-study-expand.active .expand-icon {
    transform: rotate(180deg);
}

.case-study-expand.active .expand-text {
    color: var(--accent);
}

/* ========================================
   COLLAPSIBLE DETAILS SECTION
   ======================================== */
.case-study-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.case-study-details.open {
    max-height: 3000px;
}

.case-study-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    border-top: 1px solid var(--white-10);
}

/* ========================================
   SERVICE SECTION - Horizontal Layout
   ======================================== */
.service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--white-10);
}

.service-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* Reverse layout for alternating sections */
.service-section.reverse {
    direction: rtl;
}

.service-section.reverse > * {
    direction: ltr;
}

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

.service-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.service-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin: 0;
}

.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========================================
   PHOTOGRAPHY GRID - Refined
   ======================================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.photo-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    background: var(--card);
}

.photo-grid-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.photo-grid-item:hover img {
    transform: scale(1.05);
}

/* Photo placeholder */
.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--card) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder span {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-30);
}

/* ========================================
   BOOK DESIGN - Images Left, Info Right
   ======================================== */
.book-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.book-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.book-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card);
}

.book-item.cover {

    grid-row: span 2;
}


.book-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.book-item:hover img {
    transform: scale(1.03);
}

.book-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-80);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 4px;
}

.book-info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 20px;
}

/* Book specs grid */
.book-specs {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

.book-spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.book-spec-value {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.book-spec-value.accent {
    color: var(--accent);
}

.book-spec-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
}

/* ========================================
   SOCIAL MEDIA - Two-Column Layouts
   ======================================== */
.social-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Row 1: Service Info Left, Stats Right */
.social-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

.social-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-stats-card {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    flex-wrap: wrap;
}

.social-stats-title {
    display: none;
}

.social-stats-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.social-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-stat-value {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.social-stat-value.accent {
    color: var(--accent);
}

.social-stat-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
}


/* ========================================
   VIRAL SUCCESS SHOWCASE
   ======================================== */
.viral-showcase {
    background: rgba(201, 184, 160, 0.06);
    border: 1px solid rgba(201, 184, 160, 0.15);
    border-radius: 12px;
    padding: 28px;
}

.viral-showcase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white-10);
}

.viral-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(201, 184, 160, 0.2);
    padding: 10px 16px;
    border-radius: 24px;
}

.viral-badge-large svg {
    width: 18px;
    height: 18px;
}

.viral-showcase-subtitle {
    font-size: 13px;
    color: var(--white-50);
}

.viral-featured-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.viral-video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card);
    flex-shrink: 0;
}

.viral-video-player .photo-placeholder {
    position: absolute;
    inset: 0;
}

.viral-video-player img,
.viral-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viral-video-player .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s var(--ease);
    cursor: pointer;
}

.viral-video-player:hover .play-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
}

.play-overlay svg {
    width: 56px;
    height: 56px;
    color: var(--white);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.viral-video-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.viral-video-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.viral-video-title {
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.viral-video-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0;
    max-width: 480px;
}

.viral-video-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.viral-metrics-large {
    display: flex;
    /* justify-content: space-between; */
    gap: 28px;
    flex-wrap: wrap;
}

.viral-metric-large {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.viral-metric-value {
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
}

.viral-metric-value.highlight {
    color: var(--accent);
}

.viral-metric-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
}

.viral-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--white-50);
    padding-top: 12px;
    border-top: 1px solid var(--white-10);
}

.viral-platform svg {
    width: 18px;
    height: 18px;
}

/* Secondary Videos */
.viral-secondary {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--white-10);
}

.viral-secondary-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-bottom: 16px;
}

.viral-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 0.5fr);
    gap: 16px;
}

.viral-video-card {
    background: var(--white-10);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.viral-video-card:hover {
    background: var(--white-15);
    transform: translateY(-2px);
}

.viral-video-thumb {
    position: relative;
    aspect-ratio: 9 / 14;
    overflow: hidden;
    background: var(--card);
}

.viral-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viral-video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.viral-video-card:hover .play-icon {
    opacity: 1;
}

.play-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
    margin-left: 2px;
}

.viral-video-card-info {
    padding: 14px;
}

.viral-video-card-metrics {
    display: flex;
    gap: 20px;
}

.card-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-metric-value {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.card-metric-label {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-40);
}



/* ========================================
   CASE STUDY FOOTER
   ======================================== */
.case-study-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--white-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}



/* ========================================
   CASE STUDY HEADER - REVERSED (Info Left, Image Right)
   ======================================== */
.case-study-header-reverse {
    grid-template-columns: 1fr 1fr;
}

.case-study-header-reverse .case-study-info {
    order: 1;
}

.case-study-header-reverse .case-study-image {
    order: 2;
}

/* ========================================
   DIGITAL PRESENCE SECTION
   ======================================== */
.digital-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--white-10);
}

.digital-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--white-60);
}

.digital-service-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.digital-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.digital-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card);
}

.digital-item.website {
    grid-row: span 2;
    aspect-ratio: auto;
}

.digital-item.google,
.digital-item.email {
    aspect-ratio: 16 / 10;
}

.digital-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.digital-item:hover img {
    transform: scale(1.03);
}

.digital-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-80);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 4px;
}

/* ========================================
   CONTENT CREATION SECTION
   ======================================== */
.content-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.barber-grid {
    grid-template-columns: repeat(3, 1fr);
}

.barber-grid .photo-grid-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.content-stats {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
    margin-top: 20px;
}

.content-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.content-stat-value {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.content-stat-value.accent {
    color: var(--accent);
}

.content-stat-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
}

/* ========================================
   CUSTOMER JOURNEY FLOW
   ======================================== */
.journey-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 24px;
    background: var(--white-10);
    border-radius: 12px;
    overflow-x: auto;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 120px;
    text-align: center;
}

.journey-step-number {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.journey-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.journey-step-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.journey-step-desc {
    font-size: 10px;
    color: var(--white-40);
    line-height: 1.4;
}

.journey-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--white-20));
    margin-top: 18px;
    min-width: 24px;
}

/* ========================================
   GRAPHICS SHOWCASE
   ======================================== */
.graphics-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.graphic-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card);
}

.graphic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.graphic-item:hover img {
    transform: scale(1.05);
}



/* ========================================
   VIDEO SHOWCASE GRID
   ======================================== */
.video-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.video-item {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card);
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.video-item:hover {
    transform: translateY(-4px);
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s var(--ease);
}

.video-item:hover .video-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.video-play-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
    margin-left: 3px;
}

/* ========================================
   SOCIAL PLANNING VISUAL
   ======================================== */
.social-planning-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: var(--white-10);
    border-radius: 12px;
    padding: 24px;
}

.planning-calendar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day-label {
    font-size: 9px;
    font-weight: 500;
    color: var(--white-40);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day {
    aspect-ratio: 1;
    background: var(--white-10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.calendar-day.scheduled {
    background: var(--accent);
    color: var(--bg);
}

.planning-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.planning-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--white-60);
}

.planning-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   MIXED CONTENT GRID (Photo, Video, Graphics)
   ======================================== */
.mixed-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.content-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--card);
    aspect-ratio: 1;
}

.content-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.content-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.content-item:hover img {
    transform: scale(1.03);
}

.content-item .video-play-icon {
    width: 56px;
    height: 56px;
}

.content-item .video-play-icon svg {
    width: 22px;
    height: 22px;
}

.content-type-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-80);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 4px;
}

/* ========================================
   SEE MORE SECTION
   ======================================== */
.work-see-more-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -60px;
    padding-top: 100px;
    z-index: 10;
}

.work-fade-overlay {
    position: absolute;
    top: 0;
    left: -32px;
    right: -32px;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 80%);
    pointer-events: none;
}

.see-more-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white-10);
    border: 1px solid var(--white-15);
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    z-index: 2;
}

.see-more-button:hover {
    background: var(--white-15);
    border-color: var(--white-25);
    transform: translateY(-2px);
}

.see-more-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-80);
}

.see-more-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
}

.see-more-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white-50);
}

.see-more-button.active .see-more-icon {
    transform: rotate(180deg);
}

.see-more-button.active .see-more-text {
    color: var(--accent);
}

/* ========================================
   ADDITIONAL WORK SECTION
   ======================================== */
.work-additional {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s var(--ease), opacity 0.4s var(--ease);
    margin-top: 0;
}

.work-additional.open {
    max-height: 100%;
    opacity: 1;
    margin-top: 48px;
}

/* Compact Work Grid */
.work-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ========================================
   COMPACT WORK CARD
   ======================================== */
.work-card.compact {
    grid-column: span 1;
    background: var(--surface);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.work-card.compact:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
}

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

.work-card.compact .work-content {
    padding: 16px 18px 18px;
    gap: 10px;
}

.work-card.compact .work-header {
    margin-bottom: 0;
}

.work-card.compact .work-client {
    font-size: 18px;
    margin-bottom: 8px;
}

.work-card.compact .work-services {
    margin-top: 8px;
    padding-top: 10px;
}



/* ========================================
   ENGAGEMENT MODELS SECTION
   ======================================== */
.engagement-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 50%, #0a0a0a 100%);
    position: relative;
}

.engagement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 10%, var(--white-10) 50%, transparent 90%);
}

.engagement-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 120px;
    background: radial-gradient(ellipse at center top, rgba(201, 184, 160, 0.06) 0%, transparent 70%);
    pointer-events: none;
}


.engagement-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
    align-items: stretch;
}

/* Engagement Card */
.engagement-card {
    background: var(--surface);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.engagement-card:hover {
    border-color: var(--white-20);
    transform: translateY(-4px);
}

/* Featured Card */
.engagement-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(201, 184, 160, 0.08) 0%, var(--surface) 100%);
}

.engagement-card.featured:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(201, 184, 160, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: var(--bg);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.engagement-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.engagement-number {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.engagement-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin: 0;
}

.engagement-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0;
}

/* Features List */
.engagement-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.engagement-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--white-60);
}

.engagement-features svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

/* Footer */
.engagement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--white-10);
    margin-top: auto;
}

.engagement-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
}

.engagement-pricing {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

/* Integration Benefits */
.integration-benefits {
    background: var(--white-10);
    border-radius: 10px;
    padding: 20px;
    margin-top: 8px;
}

.benefits-title {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.integration-benefits p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-60);
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION - SCATTERED CARDS
   ======================================== */
.testimonials-section {
    padding: 100px 0 100px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Ambient background effects */
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 40% 50% at 15% 30%, rgba(201, 184, 160, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 35% 40% at 85% 70%, rgba(201, 184, 160, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative corner lines */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 80px;
    right: 10%;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-15), transparent);
    transform: rotate(-45deg);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* Header - Centered */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-header .magazine-issue {
    margin-bottom: 12px;
    display: block;
}

.testimonials-header .section-title {
    margin: 0 auto 16px;
}

.testimonials-header-intro {
    font-size: 15px;
    color: var(--white-50);
    max-width: 400px;
    line-height: 1.6;
    margin: 0 auto;
}

/* ========================================
   SCATTERED CARDS LAYOUT
   ======================================== */
.testimonials-grid {
    position: relative;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-scatter {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 420px;
}

/* ========================================
   TESTIMONIAL CARD - Floating Style
   ======================================== */
.testimonial-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--white-15);
    border-radius: 16px;
    padding: 28px;
    width: 320px;
    transition: all 0.5s var(--ease);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 184, 160, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.testimonial-card:nth-child(1):hover {
    transform: translateY(-8px) rotate(0deg) !important;
    border-color: rgba(201, 184, 160, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 184, 160, 0.1);
    z-index: 20 !important;
}
.testimonial-card:nth-child(2):hover {
    /* transform: rotate(0deg) !important; */
    border-color: rgba(201, 184, 160, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 184, 160, 0.1);
    z-index: 20 !important;
}
.testimonial-card:nth-child(3):hover {
    transform: translateY(-8px) rotate(0deg) !important;
    border-color: rgba(201, 184, 160, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 184, 160, 0.1);
    z-index: 20 !important;
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Card Positions - 3 card scattered layout */
.testimonial-card:nth-child(1) {
    left: -25px;
    top: 20px;
    transform: rotate(-2deg);
    z-index: 3;
    width: 340px;
    background: linear-gradient(135deg, rgba(201, 184, 160, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(201, 184, 160, 0.2);
}

.testimonial-card:nth-child(2) {
    left: 50%;
    top: 60px;
    transform: translateX(-50%) rotate(1deg);
    z-index: 4;
}

.testimonial-card:nth-child(3) {
    right: 0;
    top: 0;
    transform: rotate(2deg);
    z-index: 2;
}

/* Quote text */
.testimonial-quote {
    margin-bottom: 20px;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-80);
    margin: 0;
    font-weight: 400;
}

.quote-text-large {
    font-size: 18px;
    font-weight: 400;
}

.quote-context {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-50);
    margin: 12px 0 0;
    font-style: italic;
}

/* Author section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--white-10);
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(201, 184, 160, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--bg);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.author-details {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--white-40);
}

.author-company {
    color: var(--white-50);
}

.author-location::before {
    content: '•';
    margin-right: 8px;
    color: var(--white-20);
}

/* Decorative elements */
.testimonials-decoration {
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 250px;
    height: 250px;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

.testimonials-decoration::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px dashed var(--white-10);
    border-radius: 50%;
}

.testimonials-decoration-2 {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 150px;
    height: 150px;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}





/* ========================================
   WHO WE WORK WITH SECTION
   ======================================== */
.who-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 30%, var(--bg) 100%);
    position: relative;
}

.who-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--white-10), transparent);
}

.who-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Header - Matching other sections */
.who-section .section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 56px;
    padding: 0;
    max-width: none;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Industries - Left Side */
.who-industries {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industry-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--white-10);
    border-radius: 14px;
    transition: all 0.4s var(--ease);
}

.industry-item:hover {
    border-color: var(--white-20);
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, var(--surface) 100%);
}

.industry-icon {
    width: 44px;
    height: 44px;
    background: var(--white-10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.industry-item:hover .industry-icon {
    background: rgba(201, 184, 160, 0.15);
}

.industry-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
}

.industry-info h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 4px;
}

.industry-info p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--white-50);
    margin: 0;
}

/* Values - Right Side */
.who-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.values-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white-10);
}

.values-label {
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--white-60);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: flex;
    gap: 18px;
}

.value-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    padding-top: 4px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 6px;
}

.value-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-50);
    margin: 0;
}



/* ========================================
   SECTION DIVIDERS - Reusable connecting elements
   ======================================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    position: relative;
    background: var(--bg);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--white-15) 30%, var(--white-15) 70%, transparent);
}

.section-divider-dot {
    width: 6px;
    height: 6px;
    top: -4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 1;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 12px rgba(201, 184, 160, 0.4);
}





/* ========================================
   CAPABILITIES SECTION - REFINED
   ======================================== */
.capabilities-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
    position: relative;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 20%, var(--white-10) 50%, transparent 80%);
}

/* Soft glow connecting element */
.capabilities-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 100px;
    background: radial-gradient(ellipse at center top, rgba(201, 184, 160, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.capabilities-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.capabilities-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 56px;
}

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

/* Capabilities Grid - 2x3 layout */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Capability Card - Matching engagement card style */
.capability-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, var(--surface) 100%);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

/* Hover glow effect */
.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 184, 160, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.capability-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 184, 160, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.capability-card:hover {
    border-color: rgba(201, 184, 160, 0.25);
    transform: translateY(-6px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(201, 184, 160, 0.1);
}

.capability-card:hover::before,
.capability-card:hover::after {
    opacity: 1;
}

.capability-icon {
    width: 48px;
    height: 48px;
    background: var(--white-10);
    border: 1px solid var(--white-10);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 2;
}

.capability-card:hover .capability-icon {
    background: rgba(201, 184, 160, 0.15);
    border-color: rgba(201, 184, 160, 0.25);
    transform: scale(1.05);
}

.capability-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: transform 0.3s var(--ease);
}

.capability-card:hover .capability-icon svg {
    transform: scale(1.1);
}

.capability-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 2;
}

.capability-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-50);
    margin: 0;
    position: relative;
    z-index: 2;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    padding-top: 16px;
    border-top: 1px solid var(--white-10);
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.capability-list li {
    font-size: 11px;
    color: var(--white-40);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s var(--ease);
}

.capability-card:hover .capability-list li {
    color: var(--white-50);
}

.capability-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.capability-card:hover .capability-list li::before {
    transform: scale(1.2);
}

/* Capabilities Note - Enhanced */
.capabilities-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(201, 184, 160, 0.1) 0%, rgba(201, 184, 160, 0.04) 100%);
    border: 1px solid rgba(201, 184, 160, 0.2);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.capabilities-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 184, 160, 0.5), transparent);
}

.note-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--bg);
}

.note-content h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin: 0 0 6px;
}

.note-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--white-60);
    margin: 0;
}



/* ========================================
   INTEGRATED FOOTER WITH CTA
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Background effects */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 184, 160, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 184, 160, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0px;
    position: relative;
    z-index: 2;
}

/* ========================================
   FOOTER CTA - The Invitation
   ======================================== */
.footer-cta-section {
    padding: 120px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-bottom: 1px solid var(--white-10);
}

.footer-cta-content {
    position: relative;
}

.footer-cta-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.footer-cta-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 20px;
}

.rotating-text-wrapper {
    display: inline-block;
    position: relative;
    color: var(--accent);
}

.rotating-text {
    display: inline-block;
    transition: all 0.4s var(--ease);
}

.footer-cta-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0 0 32px;
    max-width: 440px;
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(201, 184, 160, 0.3);
}

.cta-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-note {
    font-size: 12px;
    color: var(--white-40);
}

/* Visual Element */
.footer-cta-visual {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-orb {
    width: 180px;
    height: 180px;
    background: radial-gradient(ellipse at 30% 30%, 
        var(--accent) 0%,
        rgba(201, 184, 160, 0.4) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.visual-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    animation: ringExpand 4s ease-out infinite;
}

.visual-ring:nth-child(1) {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.visual-ring:nth-child(2) {
    width: 200px;
    height: 200px;
    animation-delay: 1.3s;
}

.visual-ring:nth-child(3) {
    width: 280px;
    height: 280px;
    animation-delay: 2.6s;
}

@keyframes ringExpand {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ========================================
   FOOTER MAIN - Refined Layout
   ======================================== */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding: 64px 0;
    border-bottom: 1px solid var(--white-10);
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 280px;
}

.footer-logo-link {
    display: inline-flex;
    transition: all 0.3s var(--ease);
}

.footer-logo-link:hover {
    opacity: 0.8;
    transform: scale(0.98);
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white-10);
    border: 1px solid var(--white-10);
    border-radius: 10px;
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: rgba(201, 184, 160, 0.15);
    border-color: rgba(201, 184, 160, 0.25);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: var(--white-50);
    transition: color 0.3s var(--ease);
}

.footer-social a:hover svg {
    color: var(--accent);
}

/* Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

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

.footer-column-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.footer-column a,
.footer-column span {
    font-size: 14px;
    color: var(--white-50);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-email {
    font-weight: 500;
    color: var(--white-70) !important;
}

.footer-email:hover {
    color: var(--accent) !important;
}

.footer-location-detail {
    font-size: 13px !important;
    color: var(--white-40) !important;
}

/* ========================================
   FOOTER BOTTOM - Refined
   ======================================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 32px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--white-40);
    letter-spacing: 0.02em;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--white-40);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

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

.footer-divider {
    color: var(--white-20);
    font-size: 12px;
}


/* Remove old invitation section styles - now integrated into footer */
.invitation-section {
    display: none;
}



/* ========================================
   WORK STRIP - Cinematic Horizon
   ======================================== */
.work-strip {
    padding: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient glow behind the strip */
.work-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 184, 160, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Top edge fade */
.work-strip-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #0a0a0a, transparent);
    z-index: 10;
    pointer-events: none;
}

/* Bottom edge fade */
.work-strip-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    z-index: 10;
    pointer-events: none;
}

/* Left edge fade */
.work-strip-fade-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 20%;
    background: linear-gradient(to right, #0a0a0a 0%, #0a0a0a 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Right edge fade */
.work-strip-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 20%;
    background: linear-gradient(to left, #0a0a0a 0%, #0a0a0a 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* The 3D stage */
.work-strip-stage {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    perspective-origin: 50% 50%;
}

/* The track that holds images - recedes into distance */
.work-strip-track {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    gap: 42px;
    transform: translate(-50%, -50%) rotateX(12deg);
    transform-style: preserve-3d;
}

.work-strip-item {
    position: relative;
    width: 280px;
    height: 460px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: var(--surface);
    transition: all 0.5s var(--ease);
    transform-style: preserve-3d;
}

/* Subtle depth variation */
.work-strip-item:nth-child(1),
.work-strip-item:nth-child(7) {
    transform: translateZ(-60px) scale(0.92);
    opacity: 0.5;
}

.work-strip-item:nth-child(2),
.work-strip-item:nth-child(6) {
    transform: translateZ(-30px) scale(0.96);
    opacity: 0.7;
}

.work-strip-item:nth-child(3),
.work-strip-item:nth-child(5) {
    transform: translateZ(-10px) scale(0.98);
    opacity: 0.85;
}

.work-strip-item:nth-child(4) {
    transform: translateZ(10px) scale(1.02);
    opacity: 1;
    border: 1px solid rgba(201, 184, 160, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.work-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) brightness(0.95);
    transition: all 0.5s var(--ease);
}

.work-strip-item:nth-child(4) img {
    filter: saturate(1) brightness(1);
}

/* Hover states */
.work-strip-item:hover {
    transform: translateZ(20px) scale(1.04) !important;
    opacity: 1 !important;
    z-index: 15;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.work-strip-item:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.05);
}

/* Subtle reflection effect */
.work-strip-reflection {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg) scaleY(0.3);
    display: flex;
    gap: 16px;
    opacity: 0.08;
    filter: blur(2px);
    pointer-events: none;
    transform-style: preserve-3d;
}

.work-strip-reflection .work-strip-item {
    opacity: 1 !important;
    transform: none !important;
}

/* Hide labels - too distracting for this minimal approach */
.work-strip-label {
    display: none;
}
