/* ==========================================================================
   PINK MANTIS — EDITORIAL LIGHT CONSULTANCY STYLESHEET (LEAFGROW-INSPIRED)
   Design System: Clean Pure White (#FFFFFF), Warm Off-White (#FAF8F6),
   Deep Charcoal (#111111), and Restrained Soft Rose (#C86B91) Accents.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds: Clean White Majority */
    --background-primary: #FFFFFF;
    --background-secondary: #FAF8F6;
    --background-elevated: #F2EFEA;
    --background-dark: #111111;
    
    /* Text: Deep Charcoal for Crisp Readability */
    --text-primary: #111111;
    --text-secondary: #4A484C;
    --text-muted: #78757A;
    --text-on-dark: #F8F7F6;
    
    /* Soft Rose Accents (Used Selectively) */
    --accent-rose: #C86B91;
    --accent-rose-soft: #B5587E;
    --accent-rose-pale: #F8EDF2;
    --accent-rose-border: rgba(200, 107, 145, 0.3);
    
    /* Logo Colors */
    --logo-primary: #111111;
    --logo-accent: #c77d9d;
    --logo-accent-soft: #d9a3b8;
    
    /* Hairline Borders */
    --border-subtle: rgba(17, 17, 17, 0.08);
    --border-medium: rgba(17, 17, 17, 0.16);
    --border-dark: rgba(248, 247, 246, 0.12);
    
    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-editorial: 'Space Grotesk', monospace;

    /* Spacing & Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & General Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--background-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

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

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* --------------------------------------------------------------------------
   3. Utility Classes & Layout Containers
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.container-narrow {
    max-width: 860px;
}

.section-padding {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
}

/* Black & White Stripes Design System (Subtle Editorial Micro-Stripe Rule) */
.bw-stripe-bar {
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(17, 17, 17, 0.75),
        rgba(17, 17, 17, 0.75) 10px,
        rgba(240, 238, 235, 0.9),
        rgba(240, 238, 235, 0.9) 20px
    );
    border: none;
    position: relative;
    z-index: 10;
    opacity: 0.65;
}

.bw-stripe-accent-line {
    height: 6px;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        #111111,
        #111111 8px,
        #FFFFFF 8px,
        #FFFFFF 16px
    );
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.bg-secondary { background-color: var(--background-secondary); }
.bg-elevated { background-color: var(--background-elevated); }
.bg-dark { background-color: var(--background-dark); color: var(--text-on-dark); }
.bg-contrast-canvas { 
    background-color: #EFEAE2; 
    border-top: 1px solid rgba(200, 107, 145, 0.25); 
    border-bottom: 1px solid rgba(200, 107, 145, 0.25); 
    position: relative;
}

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

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 2.25rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-rose { color: var(--accent-rose); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-dark { color: var(--text-primary); }

.border-bottom { border-bottom: 1px solid var(--border-subtle); }
.border-top { border-top: 1px solid var(--border-subtle); }

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--background-dark);
    color: #FFFFFF;
    border: 1px solid var(--background-dark);
}

.btn-primary:hover {
    background-color: var(--accent-rose);
    border-color: var(--accent-rose);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--background-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    background-color: var(--background-elevated);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-arrow {
    width: 14px;
    height: 14px;
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

.eyebrow {
    font-size: 0.78rem;
    font-family: var(--font-editorial);
    color: #B5587E;
    background: linear-gradient(135deg, #F8EDF2 0%, #F5E5EC 100%);
    border: 1px solid rgba(200, 107, 145, 0.4);
    box-shadow: 0 2px 10px rgba(200, 107, 145, 0.08);
    padding: 0.35rem 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
}

/* Premium Gradient Text & Ambient Glow Utilities */
.text-gradient-rose {
    background: linear-gradient(135deg, #B5587E 0%, #C86B91 50%, #D988A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-secondary { 
    background: linear-gradient(180deg, #FAF8F6 0%, #F8F4F1 100%); 
}

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

.bg-dark { 
    background-color: var(--background-dark); 
    color: var(--text-on-dark); 
}

.bg-contrast-canvas { 
    background: radial-gradient(circle at 50% 50%, #FAF2F5 0%, #EFEAE2 100%); 
    border-top: 1px solid rgba(200, 107, 145, 0.25); 
    border-bottom: 1px solid rgba(200, 107, 145, 0.25); 
    position: relative;
}

/* --------------------------------------------------------------------------
   5. Site Header & Sticky Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-logo-icon {
    width: 26px;
    height: 26px;
    color: var(--logo-accent);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.brand-logo:hover .brand-logo-icon {
    transform: scale(1.08);
    color: var(--logo-accent-soft);
}

.logo-wordmark {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--logo-primary);
    line-height: 1;
}

/* Ambient Viewport Edge Glow (Subtle Low-Opacity Environmental Light) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    background: 
        radial-gradient(circle at 0% 0%, rgba(140, 185, 230, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(140, 185, 230, 0.035) 0%, transparent 40%);
}

@media (max-width: 768px) {
    body::after { display: none; }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent-rose);
}

.nav-cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-medium);
    background-color: var(--background-primary);
    color: var(--text-primary);
}

.nav-cta:hover {
    background-color: var(--background-dark);
    color: #FFFFFF;
    border-color: var(--background-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 7rem;
    padding-bottom: 6rem;
    background: 
        radial-gradient(circle at 85% 25%, rgba(200, 107, 145, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 15% 75%, rgba(245, 235, 230, 0.6) 0%, transparent 60%);
    position: relative;
}

.hero-content {
    max-width: 840px;
}

.hero-headline {
    font-size: 3.35rem;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-supporting {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hero-supporting-secondary {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. Problem Section ("Good digital work starts with clarity")
   -------------------------------------------------------------------------- */
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    color: var(--text-primary);
}

.section-lead {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.clarity-challenges-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.clarity-challenge-item {
    background-color: var(--background-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.clarity-challenge-item:hover {
    border-color: var(--border-medium);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.challenge-num {
    font-family: var(--font-editorial);
    font-size: 0.9rem;
    color: var(--accent-rose);
    font-weight: 700;
    margin-top: 0.2rem;
}

.challenge-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.challenge-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. What We Do (Services Journey: Clarify, Create, Connect, Continue)
   -------------------------------------------------------------------------- */
.journey-step {
    background-color: var(--background-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.85rem;
    position: relative;
    transition: var(--transition-smooth);
}

.principles-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3.5rem;
    margin-top: 2rem;
}

.principle-editorial-item {
    border-top: 1px solid var(--border-medium);
    padding-top: 1.75rem;
}

.principle-editorial-num {
    font-family: var(--font-editorial);
    font-size: 0.9rem;
    color: var(--accent-rose);
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.principle-editorial-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.principle-editorial-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Credibility Band */
.credibility-band {
    background-color: var(--background-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 3.5rem 0;
}

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

.credibility-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.credibility-item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.principle-desc {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.journey-step:hover {
    border-color: var(--accent-rose-border);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.journey-num {
    font-family: var(--font-editorial);
    font-size: 0.85rem;
    color: var(--accent-rose);
    font-weight: 700;
    margin-bottom: 1rem;
}

.journey-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.journey-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.journey-examples {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
    margin-bottom: 0.75rem;
}

.journey-outcome {
    font-size: 0.85rem;
    color: var(--accent-rose-soft);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. Service Architecture Details
   -------------------------------------------------------------------------- */
.service-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.service-block:last-child {
    border-bottom: none;
}

.service-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.service-price-tag {
    font-family: var(--font-editorial);
    font-size: 0.9rem;
    color: var(--accent-rose);
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 600;
}

.service-includes-list {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.service-includes-list li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
    position: relative;
    padding-left: 1.35rem;
}

.service-includes-list li::before {
    content: "•";
    color: var(--accent-rose);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-outcome-box {
    background-color: var(--background-primary);
    border-left: 3px solid var(--accent-rose);
    padding: 0.9rem 1.35rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* --------------------------------------------------------------------------
   10. Selected Work & Strategic Narrative Case Studies (With Layered Accent Shapes)
   -------------------------------------------------------------------------- */

/* Subtle Layered Brand Accent Shapes (Unclipped & Perfectly Positioned) */
.bg-shape-layered {
    position: relative;
    overflow: visible;
}

.bg-shape-layered::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 4L50 22L32 42L14 22Z' stroke='%23C86B91' stroke-width='1.5' stroke-opacity='0.14'/%3E%3Cpath d='M32 42L44 60L32 50L20 60Z' stroke='%23C86B91' stroke-width='1.5' stroke-opacity='0.14'/%3E%3Ccircle cx='32' cy='22' r='10' stroke='%23111111' stroke-width='1.2' stroke-opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    transition: var(--transition-smooth);
}

.bg-shape-layered:hover::before {
    transform: scale(1.08) rotate(3deg);
    opacity: 0.8;
}

.bg-shape-layered-dark {
    position: relative;
    overflow: visible;
}

.bg-shape-layered-dark::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 4L50 22L32 42L14 22Z' stroke='%23F8EDF2' stroke-width='1.5' stroke-opacity='0.10'/%3E%3Cpath d='M32 42L44 60L32 50L20 60Z' stroke='%23F8EDF2' stroke-width='1.5' stroke-opacity='0.10'/%3E%3Ccircle cx='32' cy='22' r='10' stroke='%23C86B91' stroke-width='1.2' stroke-opacity='0.20'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.work-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
}

.work-card:hover {
    border-color: var(--accent-rose);
    transform: translateY(-2px);
}

.work-card-header {
    padding: 2.5rem;
}

.work-card-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .work-card-grid {
        grid-template-columns: 1fr;
    }
}

.case-study-thumb-box {
    background-color: var(--background-secondary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

.case-study-thumb-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-rose-border);
}

.case-study-thumb-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.work-client-name {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.work-tagline {
    font-size: 1.08rem;
    color: var(--accent-rose);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.case-study-narrative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.case-study-label {
    font-size: 0.82rem;
    font-family: var(--font-editorial);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.case-study-text {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.case-study-strategic-block {
    background-color: #FAF5F7;
    border-left: 3px solid var(--accent-rose);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.15rem 1.35rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.work-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
    margin-top: 0.65rem;
    margin-bottom: 1.5rem;
}

.work-deliverable-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.work-deliverable-item span {
    color: var(--accent-rose);
    font-weight: bold;
}

/* Deliverable Snapshot Card Grid */
.deliverable-snapshots-heading {
    font-size: 0.85rem;
    font-family: var(--font-editorial);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.deliverable-snapshots-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-subtle);
}

.deliverable-snapshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .deliverable-snapshots-grid {
        grid-template-columns: 1fr;
    }
}

.deliverable-snapshot-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.deliverable-snapshot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-color: var(--accent-rose-border);
}

.deliverable-snapshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--border-subtle);
}

.deliverable-snapshot-caption {
    padding: 0.85rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--background-secondary);
}

.work-outcome-banner {
    background-color: var(--background-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 1.35rem 1.75rem;
    font-size: 0.94rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-used-footer {
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.85rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-used-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.tech-used-items {
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. Approach ("How We Work") Section
   -------------------------------------------------------------------------- */
.approach-step-row {
    display: grid;
    grid-template-columns: 80px 1fr 2fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.85rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.approach-step-num {
    font-family: var(--font-editorial);
    font-size: 1rem;
    color: var(--accent-rose);
    font-weight: 700;
}

.approach-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.approach-step-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   12. About Section (Rich Charcoal Contrast Panel)
   -------------------------------------------------------------------------- */
.about-box {
    background-color: var(--background-dark);
    color: var(--text-on-dark);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-box .eyebrow {
    color: var(--accent-rose);
}

.about-box .section-heading {
    color: #FFFFFF;
}

.about-paragraph {
    font-size: 1.05rem;
    color: #D5D2D8;
    line-height: 1.75;
    margin-bottom: 1.35rem;
}

.background-capsules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.capsule {
    background-color: rgba(248, 247, 246, 0.08);
    border: 1px solid rgba(248, 247, 246, 0.15);
    padding: 0.45rem 0.95rem;
    border-radius: 50px;
    font-size: 0.82rem;
    color: #F8F7F6;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   13. Pricing Guide Section
   -------------------------------------------------------------------------- */
.pricing-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pricing-item-card {
    background-color: var(--background-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pricing-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.pricing-item-rate {
    font-family: var(--font-editorial);
    font-size: 1.15rem;
    color: var(--accent-rose);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pricing-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-note {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   14. Contact Form Section
   -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: var(--background-secondary);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-rose);
    background-color: var(--background-primary);
    box-shadow: 0 0 10px rgba(200, 107, 145, 0.15);
}

.next-steps-list {
    margin-top: 2.25rem;
}

.next-step-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.35rem;
}

.next-step-num {
    font-family: var(--font-editorial);
    font-size: 0.95rem;
    color: var(--accent-rose);
    font-weight: 700;
}

.next-step-text {
    font-size: 0.94rem;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   15. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

/* --------------------------------------------------------------------------
   16. Comprehensive Mobile View Optimisations
   -------------------------------------------------------------------------- */

/* Tablet & Large Mobile Screens (<= 992px) */
@media (max-width: 992px) {
    .container {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }
    
    .section-padding {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .hero-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-headline { 
        font-size: clamp(2.1rem, 7vw, 2.75rem); 
        letter-spacing: -0.03em;
        line-height: 1.15;
    }

    .hero-supporting {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .grid-2, .grid-3, .grid-4, .pricing-guide-grid, .contact-layout, .work-card-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1.25rem;
    }

    .principles-editorial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .approach-step-row {
        grid-template-columns: 44px 1fr;
        gap: 1rem;
    }

    .approach-step-desc {
        grid-column: 1 / -1;
        margin-top: 0.25rem;
    }

    .about-box { 
        padding: 1.85rem 1.35rem; 
        border-radius: var(--radius-md);
    }

    .work-outcome-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .work-outcome-banner .btn {
        margin-left: 0 !important;
        width: 100%;
    }

    .tech-used-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }
}

/* Small Mobile Screens (<= 768px - iPhones & Android Phones) */
@media (max-width: 768px) {
    .site-header {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .logo-wordmark {
        font-size: 1.25rem;
    }

    .brand-logo-icon {
        width: 22px;
        height: 22px;
    }

    /* Mobile Navigation Drawer & Touch Menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-medium);
        flex-direction: column;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.6rem 0;
        font-weight: 600;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.85rem;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 0.5rem;
        min-height: 44px;
        min-width: 44px;
        align-items: center;
        justify-content: center;
    }

    /* Full Width Mobile Buttons */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* Work Preview Mockup & Cards Scaling */
    .case-study-thumb-box {
        max-width: 100%;
        margin-top: 1.25rem;
    }

    .work-card {
        padding: 1.5rem 1.15rem;
    }

    .work-card-header {
        padding-bottom: 1.15rem;
        margin-bottom: 1.15rem;
    }

    .work-deliverables-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Credibility Band Mobile Stacking */
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .credibility-band {
        padding: 2.25rem 0;
    }

    /* Pricing & Form Mobile Optimisations */
    .pricing-item-card {
        padding: 1.65rem 1.25rem;
    }

    .grid-2.gap-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-input, .form-select, .form-textarea {
        font-size: 16px; /* Prevents auto-zoom on iOS Safari */
        padding: 0.8rem 0.9rem;
    }

    /* Mobile Footer Alignment & Spacing */
    .site-footer {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .site-footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.35rem;
    }

    .footer-nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.85rem 1.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid var(--border-subtle);
        border-bottom: 1px solid var(--border-subtle);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
