/* ============================================
   AT THE STRIPE SOFTWARE — V2 DESIGN
   Editorial / Magazine Style with Diagonal Sections
   ============================================ */

/* --- Font Faces --- */
@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation_Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation_Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sansation';
    src: url('../assets/fonts/Sansation_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --bg-deep: #1A1D21;
    --bg-charcoal: #2B2E33;
    --border-steel: #3A3D44;
    --accent: #C87E2A;
    --accent-bright: #D4922E;
    --accent-dark: #7A4E15;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #999;
    --font: 'Sansation', 'Segoe UI', Arial, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --skew-angle: -3deg;
}

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

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

body {
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-bright);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--text-white);
}

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

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-accent { color: var(--accent-bright); }
.text-white { color: var(--text-white); }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================
   HEADER / NAV — Minimal floating bar
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(26, 29, 33, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 32px;
    width: auto;
    transition: opacity var(--transition);
}
.logo:hover img { opacity: 0.8; }

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    transition: transform var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute;
    left: 0;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%; transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 29, 33, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 24px;
    transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-bright);
}

/* ============================================
   HERO — Split-screen diagonal
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Diagonal clip on the image side */
.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80px;
    width: 160px;
    height: 100%;
    background: var(--bg-deep);
    transform: skewX(-6deg);
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 24px;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .line-accent {
    display: block;
    color: var(--accent-bright);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    padding: 14px 44px;
}
.btn-primary:hover {
    background: var(--accent-bright);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-steel);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    padding: 14px 44px;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    color: var(--accent-bright);
    padding: 8px 0;
    border: none;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.btn-text:hover {
    color: var(--text-white);
}
.btn-text i { transition: transform var(--transition); }
.btn-text:hover i { transform: translateX(4px); }

/* ============================================
   SECTIONS — Skewed transitions
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section--dark {
    background: var(--bg-charcoal);
}

.section--skew {
    margin-top: -40px;
    padding-top: 140px;
}

.section--skew::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 80px;
    background: inherit;
    transform: skewY(var(--skew-angle));
    transform-origin: top left;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================
   EDITORIAL GRID — Asymmetric layout
   ============================================ */
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 60px;
}

.editorial-card {
    padding: 60px 48px;
    position: relative;
    border: 1px solid rgba(58, 61, 68, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.editorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.5s ease;
}

.editorial-card:hover::before {
    height: 100%;
}

.editorial-card:hover {
    background: rgba(43, 46, 51, 0.5);
}

.editorial-card .card-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(200, 126, 42, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.editorial-card .card-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-dark);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.editorial-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.editorial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Feature card — spans 2 cols on occasion */
.editorial-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ============================================
   STAT STRIP
   ============================================ */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-steel);
    border-bottom: 1px solid var(--border-steel);
}

.stat-item {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--border-steel);
    transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200, 126, 42, 0.05); }

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-bright);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   DIVISION BLOCKS — Side-by-side editorial
   ============================================ */
.division-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
}

.division-block--reverse {
    direction: rtl;
}
.division-block--reverse > * {
    direction: ltr;
}

.division-visual {
    position: relative;
    overflow: hidden;
    background: var(--bg-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.division-visual .icon-display {
    font-size: 8rem;
    color: rgba(200, 126, 42, 0.15);
    transition: transform 0.6s ease;
}

.division-block:hover .icon-display {
    transform: scale(1.1) rotate(5deg);
}

.division-visual::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--bg-deep));
    pointer-events: none;
}

.division-block--reverse .division-visual::after {
    right: auto;
    left: 0;
    background: linear-gradient(to left, transparent, var(--bg-deep));
}

/* Geometric pattern overlay */
.division-visual .geo-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        linear-gradient(45deg, var(--accent) 25%, transparent 25%),
        linear-gradient(-45deg, var(--accent) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--accent) 75%),
        linear-gradient(-45deg, transparent 75%, var(--accent) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.division-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.division-content .division-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.division-content .division-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
}

.division-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.division-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 480px;
}

.division-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 32px;
}

.division-features .tag {
    padding: 6px 16px;
    background: rgba(200, 126, 42, 0.1);
    border: 1px solid rgba(200, 126, 42, 0.2);
    color: var(--accent-bright);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}

/* ============================================
   SERVICES PAGE — Capability grid
   ============================================ */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border-steel);
    margin-top: 60px;
}

.capability-item {
    background: var(--bg-deep);
    padding: 48px 36px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.capability-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.5s ease;
}

.capability-item:hover::after {
    width: 100%;
}

.capability-item:hover {
    background: var(--bg-charcoal);
}

.capability-item .cap-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.capability-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.capability-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Tech stack list */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.tech-badge {
    padding: 10px 20px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-steel);
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.tech-badge:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
}

/* ============================================
   PROCESS STEPS — Vertical timeline style
   ============================================ */
.process-timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--border-steel), transparent);
}

.process-step {
    position: relative;
    padding: 0 0 60px;
}

.process-step:last-child { padding-bottom: 0; }

.process-step .step-dot {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--accent);
    background: var(--bg-deep);
    border-radius: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
}

/* ============================================
   MEDIA PAGE — Services Showcase
   ============================================ */
.media-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.media-service-card {
    background: var(--bg-charcoal);
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(58, 61, 68, 0.5);
    transition: all 0.4s ease;
    overflow: hidden;
}

.media-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.media-service-card:hover::before {
    transform: scaleX(1);
}

.media-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 126, 42, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.media-service-card .service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.media-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.media-service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   STUDIO SUPPLIES PAGE
   ============================================ */
.category-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-steel);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all var(--transition);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.category-chip i {
    color: var(--accent);
    font-size: 1.1rem;
}

.category-chip:hover {
    background: rgba(200, 126, 42, 0.1);
    border-color: var(--accent);
    color: var(--accent-bright);
    transform: translateY(-2px);
}

/* ============================================
   ABOUT PAGE — Staggered layout
   ============================================ */
.about-split {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.about-sidebar {
    position: sticky;
    top: 120px;
}

.about-sidebar .sidebar-stat {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-steel);
}

.about-sidebar .sidebar-stat:first-child {
    padding-top: 0;
}

.about-sidebar .stat-val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-bright);
    line-height: 1;
}

.about-sidebar .stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.about-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 32px 0 12px;
}

.about-body h3:first-child {
    margin-top: 0;
}

.about-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-block {
    padding: 40px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-steel);
}

.contact-info-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-info-item .info-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-item .info-value {
    color: var(--text-white);
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-charcoal);
    border: 1px solid var(--border-steel);
    color: var(--text-white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--accent);
}

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

/* ============================================
   PAGE HERO — Interior pages
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(200, 126, 42, 0.03) 100%);
    transform: skewX(-15deg);
}

.page-hero .page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-hero .page-hero-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-hero .page-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    line-height: 1.8;
}

/* Decorative geometric elements */
.geo-deco {
    position: absolute;
    border: 1px solid rgba(200, 126, 42, 0.1);
    pointer-events: none;
}

.geo-deco--1 {
    width: 200px;
    height: 200px;
    top: 80px;
    right: 10%;
    transform: rotate(45deg);
}

.geo-deco--2 {
    width: 120px;
    height: 120px;
    top: 180px;
    right: 22%;
    transform: rotate(45deg);
    border-color: rgba(200, 126, 42, 0.05);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-bright) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 60px;
    background: var(--bg-deep);
    transform: skewY(-2deg);
    transform-origin: top right;
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 60px;
    background: var(--bg-deep);
    transform: skewY(2deg);
    transform-origin: bottom left;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-band p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-band .btn {
    position: relative;
    z-index: 1;
}

.cta-band .btn-primary {
    background: var(--bg-deep);
    color: var(--accent-bright);
}
.cta-band .btn-primary:hover {
    background: var(--text-white);
    color: var(--bg-deep);
}

/* ============================================
   FOOTER — Minimal editorial
   ============================================ */
.site-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-steel);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--accent-bright);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-steel);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

.footer-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color var(--transition);
}
.footer-social a:hover {
    color: var(--accent-bright);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   MARQUEE TEXT — Large background text
   ============================================ */
.marquee-text {
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 700;
    color: rgba(200, 126, 42, 0.04);
    white-space: nowrap;
    position: absolute;
    bottom: 20px;
    left: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ============================================
   FEATURE LIST — For service pages
   ============================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(58, 61, 68, 0.3);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 20px;
    flex-shrink: 0;
}

/* ============================================
   HORIZONTAL RULE WITH DIAMOND
   ============================================ */
.diamond-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 60px 0;
}

.diamond-rule::before,
.diamond-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-steel);
}

.diamond-rule .diamond {
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-card--wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .division-block {
        grid-template-columns: 1fr;
    }

    .division-block--reverse {
        direction: ltr;
    }

    .division-visual {
        min-height: 300px;
    }

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

    .stat-item:nth-child(2) { border-right: none; }

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

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

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

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

    .about-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }

    .hero {
        flex-direction: column;
    }

    .hero-left {
        padding: 120px 24px 40px;
        min-height: 60vh;
    }

    .hero-right {
        min-height: 40vh;
    }

    .hero-right::before {
        display: none;
    }

    .hero-right::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, var(--bg-deep), transparent);
        z-index: 2;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-scroll-indicator { display: none; }

    .section {
        padding: 60px 0;
    }

    .section--skew {
        padding-top: 100px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .editorial-card {
        padding: 36px 24px;
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item { padding: 32px 20px; }
    .stat-number { font-size: 2rem; }

    .division-content {
        padding: 40px 24px;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .media-services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .geo-deco { display: none; }

    .about-sidebar {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .category-ribbon {
        flex-direction: column;
    }

    .cta-band {
        padding: 60px 0;
    }

    .process-timeline {
        padding-left: 40px;
    }

    .process-timeline::before {
        left: 14px;
    }

    .process-step .step-dot {
        left: -34px;
    }

    .marquee-text {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 100px 20px 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-primary, .btn-outline {
        padding: 12px 32px;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

    .stat-item { border-right: none; border-bottom: 1px solid var(--border-steel); }
    .stat-item:last-child { border-bottom: none; }

    .about-sidebar {
        grid-template-columns: 1fr;
    }
}
