/* ========================================
   SOFT CONTEMPORARY - LEGAL WEBSITE
   Warm, minimal, organic
======================================== */

/* ----------------------------------------
   CSS VARIABLES
---------------------------------------- */
:root {
    /* Primary Colors - Warm Earth Tones */
    --color-cream: #FBF8F4;
    --color-sand: #F5EFE6;
    --color-stone: #E8E2D9;
    --color-terracotta: #C67B5C;
    --color-terracotta-dark: #A85D3F;
    --color-terracotta-light: #D99B7E;
    --color-sage: #8BA888;
    --color-sage-dark: #6B8A68;
    --color-navy: #2C3E50;
    --color-navy-light: #3D5266;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --text-light: #A5A5A5;
    --text-inverse: #FFFFFF;
    
    /* Background Colors */
    --bg-page: #FBF8F4;
    --bg-card: #FFFFFF;
    --bg-muted: #F5EFE6;
    --bg-dark: #2C3E50;
    
    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --border-accent: var(--color-terracotta);
    
    /* Feedback Colors */
    --success: #6B9B6A;
    --success-bg: #E8F0E8;
    --error: #C45C5C;
    --error-bg: #F5E8E8;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-soft: 0 4px 20px rgba(198, 123, 92, 0.15);
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 400ms;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-secondary);
    background-color: var(--bg-page);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--color-terracotta);
    color: var(--text-inverse);
}

/* Focus */
:focus-visible {
    outline: 2px solid var(--color-terracotta);
    outline-offset: 3px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-default);
}

/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-4);
}

.text-accent {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    color: var(--color-terracotta);
}

/* ----------------------------------------
   LAYOUT
---------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--space-8); }
}

@media (min-width: 1024px) {
    .container { padding: 0 var(--space-10); }
}

.section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .section { padding: var(--space-20) 0; }
}

@media (min-width: 1024px) {
    .section { padding: var(--space-24) 0; }
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-terracotta);
    margin-bottom: var(--space-3);
}

.section-title {
    margin-bottom: var(--space-4);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ----------------------------------------
   HEADER
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--duration-base) var(--ease-default);
}

.header.scrolled {
    background: rgba(251, 248, 244, 0.98);
    box-shadow: var(--shadow-xs);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--color-terracotta);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-inverse);
    transition: transform var(--duration-base) var(--ease-bounce);
}

.logo:hover .logo-mark {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.logo-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: var(--space-1);
    }
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-default);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-muted);
}

.nav-link.active {
    color: var(--color-terracotta);
    background: rgba(198, 123, 92, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-default);
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
}

.menu-toggle:hover {
    border-color: var(--color-terracotta);
}

.menu-toggle-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle-icon i {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-default);
}

.menu-toggle.active .menu-toggle-icon i:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .menu-toggle-icon i:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-page);
    transform: translateY(-100%);
    visibility: hidden;
    transition: all var(--duration-slow) var(--ease-out);
    z-index: 999;
    overflow-y: auto;
}

.nav-mobile.active {
    transform: translateY(0);
    visibility: visible;
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 72px);
    padding: var(--space-8);
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.nav-mobile .nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile .nav-link:hover {
    background: none;
    color: var(--color-terracotta);
}

.nav-mobile .nav-link.active {
    color: var(--color-terracotta);
    background: none;
}

.nav-mobile-footer {
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.nav-mobile-footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

/* ----------------------------------------
   PAGES
---------------------------------------- */
.page {
    display: none;
    opacity: 0;
    padding-top: 72px;
}

.page.active {
    display: block;
    animation: pageFade 0.5s var(--ease-out) forwards;
}

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------
   BUTTONS
---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-default);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
    background: var(--color-navy);
    color: var(--text-inverse);
}

.btn-secondary:hover {
    background: var(--color-navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-outline:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: var(--space-3) var(--space-4);
}

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

.btn-small {
    padding: var(--space-3) var(--space-5);
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ----------------------------------------
   HOME - HERO
---------------------------------------- */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: var(--space-12) 0;
    overflow: hidden;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(198, 123, 92, 0.2), rgba(139, 168, 136, 0.15));
    top: -200px;
    right: -200px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.2), rgba(198, 123, 92, 0.1));
    bottom: -100px;
    left: -100px;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Hero Layout */
.hero-layout {
    display: grid;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

/* Hero Main */
.hero-main {
    max-width: 560px;
}

.hero-intro {
    margin-bottom: var(--space-10);
}

.hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-terracotta);
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: rgba(198, 123, 92, 0.1);
    border-radius: var(--radius-full);
}

.hero-title {
    margin-bottom: var(--space-6);
}

.hero-title-accent {
    color: var(--color-terracotta);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-sage));
}

.hero-form-header {
    margin-bottom: var(--space-6);
}

.hero-form-header h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.hero-form-header p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Form Styles */
.hero-form,
.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-row-2col {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 480px) {
    .form-row-2col {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: var(--space-4);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-page);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-default);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-terracotta);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(198, 123, 92, 0.1);
}

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

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-2);
}

.form-disclaimer svg {
    color: var(--color-sage);
    flex-shrink: 0;
}

/* Form Message */
.form-message {
    display: none;
    padding: var(--space-4);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    text-align: center;
}

.form-message.success {
    background: var(--success-bg);
    color: var(--success);
}

.form-message.error {
    background: var(--error-bg);
    color: var(--error);
}

.form-message.visible {
    display: block;
}

/* ----------------------------------------
   HOME - PRACTICE AREAS
---------------------------------------- */
.practice-section {
    background: var(--bg-muted);
}

.practice-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .practice-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.practice-header-content {
    max-width: 500px;
}

.practice-header-content h2 {
    margin-bottom: var(--space-3);
}

.practice-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.practice-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all var(--duration-base) var(--ease-default);
    position: relative;
    overflow: hidden;
}

.practice-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-terracotta);
    transform: scaleX(0);
    transition: transform var(--duration-base) var(--ease-default);
}

.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.practice-card:hover::after {
    transform: scaleX(1);
}

.practice-card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--duration-base) var(--ease-default);
}

.practice-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-terracotta);
}

.practice-card:hover .practice-card-icon {
    background: var(--color-terracotta);
}

.practice-card:hover .practice-card-icon svg {
    color: var(--text-inverse);
}

.practice-card-content h3 {
    margin-bottom: var(--space-3);
}

.practice-card-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.practice-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-terracotta);
}

.practice-link svg {
    transition: transform var(--duration-fast) var(--ease-default);
}

.practice-link:hover svg {
    transform: translateX(4px);
}

/* ----------------------------------------
   HOME - CTA SECTION
---------------------------------------- */
.cta-section {
    background: var(--bg-page);
}

.cta-card {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    display: grid;
    gap: var(--space-8);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-card {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: var(--space-12) var(--space-16);
    }
}

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

.cta-content .section-label {
    color: var(--color-terracotta-light);
}

.cta-content h2 {
    color: var(--text-inverse);
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    margin-bottom: var(--space-6);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-inverse);
    font-weight: 600;
}

.cta-phone-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-terracotta-light);
}

.cta-phone:hover {
    color: var(--color-terracotta-light);
}

.cta-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.cta-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(198, 123, 92, 0.2);
    top: -100px;
    right: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 168, 136, 0.15);
    bottom: -50px;
    left: 30%;
}

/* ----------------------------------------
   ABOUT PAGE
---------------------------------------- */
.about-hero {
    padding: var(--space-16) 0;
    background: var(--bg-page);
}

@media (min-width: 768px) {
    .about-hero { padding: var(--space-24) 0; }
}

.about-layout {
    display: grid;
    gap: var(--space-12);
    align-items: start;
}

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr 1.4fr;
        gap: var(--space-16);
    }
}

/* About Image Section */
.about-image-section {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-muted);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-default);
}

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

.about-image-accent {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
    right: calc(-1 * var(--space-6));
    bottom: calc(-1 * var(--space-6));
    border: 3px solid var(--color-terracotta);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.about-credentials-mini {
    position: absolute;
    bottom: var(--space-6);
    right: var(--space-6);
}

.credential-badge {
    background: var(--bg-card);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.credential-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-terracotta);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.credential-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* About Content Section */
.about-content-section h1 {
    margin-bottom: var(--space-4);
}

.about-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.about-bio {
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
    margin-bottom: var(--space-8);
}

.about-bio p {
    line-height: 1.85;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.credentials-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.credentials-box h3 {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

.credentials-box h3 svg {
    width: 20px;
    height: 20px;
    color: var(--color-terracotta);
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    position: relative;
    padding-left: var(--space-5);
    margin-bottom: var(--space-3);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.credentials-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--color-terracotta);
    border-radius: 50%;
}

/* Values Section */
.values-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 123, 92, 0.1), transparent);
    pointer-events: none;
}

.values-section .section-label {
    color: var(--color-terracotta-light);
}

.values-section .section-title {
    color: var(--text-inverse);
}

.values-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.values-grid {
    display: grid;
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all var(--duration-base) var(--ease-default);
}

.value-card:hover {
    border-color: var(--color-terracotta);
    background: rgba(255, 255, 255, 0.08);
}

.value-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-terracotta);
    margin-bottom: var(--space-4);
    line-height: 1;
}

.value-card h3 {
    color: var(--text-inverse);
    margin-bottom: var(--space-3);
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin: 0;
}

/* ----------------------------------------
   BLOG PAGE
---------------------------------------- */
.blog-hero {
    padding: var(--space-16) 0;
    background: var(--bg-page);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.blog-hero h1 em {
    color: var(--color-terracotta);
}

.blog-layout {
    display: grid;
    gap: var(--space-10);
}

@media (min-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
        gap: var(--space-16);
    }
}

.blog-grid {
    display: grid;
    gap: var(--space-6);
}

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

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-default);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card-img svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-card-content {
    padding: var(--space-6);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.blog-card-category {
    background: rgba(198, 123, 92, 0.1);
    color: var(--color-terracotta);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
}

.blog-card h2 a:hover {
    color: var(--color-terracotta);
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-terracotta);
}

.blog-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--duration-fast) var(--ease-default);
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.sidebar-widget h3 {
    font-size: 0.875rem;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
}

.recent-posts-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-posts-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    line-height: 1.5;
}

.recent-posts-list a:hover {
    color: var(--color-terracotta);
}

.recent-posts-list .post-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.sidebar-cta {
    background: var(--color-terracotta);
    border: none;
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--text-inverse);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    margin-bottom: var(--space-5);
}

/* ----------------------------------------
   ARTICLE PAGE
---------------------------------------- */
.article-hero {
    padding: var(--space-16) 0 var(--space-10);
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-light);
}

.article-header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.article-category {
    background: rgba(198, 123, 92, 0.1);
    color: var(--color-terracotta);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-5);
}

.article-excerpt {
    font-size: 1.1875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.article-content {
    max-width: 680px;
    margin: 0 auto;
}

.article-content p {
    font-size: 1.0625rem;
    margin-bottom: var(--space-6);
    line-height: 1.85;
}

.article-content h2 {
    margin: var(--space-12) 0 var(--space-5);
    font-size: 1.625rem;
}

.article-content h3 {
    margin: var(--space-10) 0 var(--space-4);
    font-size: 1.375rem;
    font-family: var(--font-display);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-6);
    padding-left: var(--space-6);
}

.article-content li {
    margin-bottom: var(--space-3);
    line-height: 1.75;
}

.article-content blockquote {
    margin: var(--space-8) 0;
    padding: var(--space-6) var(--space-8);
    background: var(--bg-muted);
    border-left: 3px solid var(--color-terracotta);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1875rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.article-content .highlight-box {
    background: var(--bg-muted);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-8) 0;
}

.article-content .highlight-box h4 {
    color: var(--color-terracotta);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
}

.article-content .highlight-box p {
    margin: 0;
}

.article-footer {
    max-width: 680px;
    margin: var(--space-16) auto 0;
    padding-top: var(--space-10);
    border-top: 1px solid var(--border-light);
}

.article-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.article-author-avatar {
    width: 56px;
    height: 56px;
    background: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-inverse);
}

.article-author-info h4 {
    margin-bottom: 2px;
}

.article-author-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.article-nav {
    display: grid;
    gap: var(--space-4);
}

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

.article-nav-link {
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-default);
}

.article-nav-link:hover {
    border-color: var(--color-terracotta);
}

.article-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.article-nav-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ----------------------------------------
   CONTACT PAGE
---------------------------------------- */
.contact-hero {
    padding: var(--space-16) 0;
    background: var(--bg-page);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.contact-hero h1 em {
    color: var(--color-terracotta);
}

.contact-grid {
    display: grid;
    gap: var(--space-10);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.contact-info h2 {
    margin-bottom: var(--space-3);
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast) var(--ease-default);
}

.contact-item:hover {
    border-color: var(--color-terracotta);
    box-shadow: var(--shadow-sm);
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--duration-fast) var(--ease-default);
}

.contact-item:hover .contact-item-icon {
    background: var(--color-terracotta);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-terracotta);
    transition: color var(--duration-fast) var(--ease-default);
}

.contact-item:hover .contact-item-icon svg {
    color: var(--text-inverse);
}

.contact-item-content h4 {
    margin-bottom: 2px;
}

.contact-item-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-item-content a {
    font-weight: 600;
    color: var(--text-primary);
}

.contact-item-content a:hover {
    color: var(--color-terracotta);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

@media (min-width: 768px) {
    .contact-form-wrapper { padding: var(--space-10); }
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-textarea {
    min-height: 120px;
}

.form-error {
    display: none;
    font-size: 0.8125rem;
    color: var(--error);
    margin-top: var(--space-2);
}

.form-error.visible {
    display: block;
}

.form-submit {
    width: 100%;
}

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
    background: var(--bg-dark);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-main {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: var(--space-10);
    }
}

.footer-logo {
    width: 48px;
    height: 48px;
    background: var(--color-terracotta);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: var(--space-4);
}

.footer-brand-info h3 {
    color: var(--text-inverse);
    font-size: 1rem;
    margin-bottom: 2px;
}

.footer-brand-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-nav h4,
.footer-contact h4,
.footer-hours h4 {
    color: var(--text-inverse);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
}

.footer-nav a,
.footer-contact a,
.footer-contact span,
.footer-hours span {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-3);
    transition: color var(--duration-fast) var(--ease-default);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-terracotta-light);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--color-terracotta-light);
}

/* ----------------------------------------
   ANIMATIONS
---------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s var(--ease-out) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ----------------------------------------
   REDUCED MOTION
---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html { scroll-behavior: auto; }
}