/* ========================================
   LEGAL WEBSITE - EDITORIAL DESIGN
   A sophisticated, warm approach
======================================== */

/* ----------------------------------------
   CSS VARIABLES
---------------------------------------- */
:root {
    /* Colors - Forest & Bronze Palette */
    --bg-cream: #f7f5f0;
    --bg-warm: #faf8f3;
    --bg-white: #ffffff;
    --bg-charcoal: #1a1d1c;
    --bg-forest: #1e3d34;
    --bg-forest-light: #264a40;
    --bg-forest-muted: #2d5a4e;
    
    --text-ink: #1a1d1c;
    --text-body: #3d4240;
    --text-muted: #6b706d;
    --text-soft: #9aa09c;
    --text-light: #c4c9c5;
    
    --accent-bronze: #b8956c;
    --accent-bronze-light: #d4b08a;
    --accent-bronze-dark: #8c7051;
    --accent-sage: #8fa89a;
    --accent-cream: #e8e4dc;
    
    /* Utility Colors */
    --success: #4a7c6f;
    --error: #a65d57;
    --border: #e0dbd3;
    --border-light: #ebe7df;
    
    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(26, 29, 28, 0.04);
    --shadow-medium: 0 8px 24px rgba(26, 29, 28, 0.08);
    --shadow-lift: 0 12px 40px rgba(26, 29, 28, 0.12);
    --shadow-glow: 0 0 60px rgba(184, 149, 108, 0.15);
    
    /* Border Radius */
    --radius-xs: 3px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.15s;
    --duration-base: 0.3s;
    --duration-slow: 0.5s;
}

/* ----------------------------------------
   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;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(184, 149, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 61, 52, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ----------------------------------------
   TYPOGRAPHY
---------------------------------------- */
h1, h2, h3, h4, h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--text-ink);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
}

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

h3 { 
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
}

h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.text-accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-style: italic;
    color: var(--accent-bronze);
}

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

/* Selection */
::selection {
    background: var(--accent-bronze);
    color: var(--bg-white);
}

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

/* ----------------------------------------
   LAYOUT
---------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 3.5rem; }
}

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section { padding: 5.5rem 0; }
}

@media (min-width: 1024px) {
    .section { padding: 7rem 0; }
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-bronze);
    opacity: 0.4;
}

.section-title {
    margin-bottom: 1rem;
}

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

/* ----------------------------------------
   HEADER & NAVIGATION
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 245, 240, 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-smooth);
}

.header.scrolled {
    background: rgba(247, 245, 240, 0.98);
    box-shadow: var(--shadow-soft);
}

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

@media (min-width: 1024px) {
    .header-inner { height: 80px; }
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
}

.logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-ink);
    letter-spacing: -0.03em;
}

.logo-title {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--accent-bronze);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-desktop {
    display: none;
}

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

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-bronze);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--duration-base) var(--ease-smooth);
}

.nav-link:hover {
    color: var(--text-ink);
}

.nav-link:hover::after {
    width: calc(100% - 2.25rem);
}

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

.nav-link.active::after {
    width: calc(100% - 2.25rem);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: all var(--duration-fast) var(--ease-smooth);
}

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

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

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-ink);
    border-radius: 2px;
    transition: all var(--duration-base) var(--ease-smooth);
    transform-origin: center;
}

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

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

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

.nav-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-cream);
    padding: 1.5rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-smooth);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.nav-mobile.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.nav-mobile .nav-link {
    display: flex;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
}

.nav-mobile .nav-link::after {
    display: none;
}

.nav-mobile .nav-link:last-child {
    border-bottom: none;
}

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

@media (min-width: 1024px) {
    .page { padding-top: 80px; }
}

.page.active {
    display: block;
    animation: pageReveal 0.6s var(--ease-smooth) forwards;
}

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

/* ----------------------------------------
   BUTTONS
---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.9375rem 1.875rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--accent-bronze);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(184, 149, 108, 0.25);
}

.btn-primary:hover {
    background: var(--accent-bronze-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 108, 0.35);
}

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

.btn-secondary {
    background: var(--bg-forest);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(30, 61, 52, 0.2);
}

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

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

.btn-outline:hover {
    border-color: var(--text-ink);
    background: var(--bg-white);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
}

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

@media (min-width: 1024px) {
    .hero { min-height: calc(100vh - 80px); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 140%;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(143, 168, 154, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 30% 60%, rgba(184, 149, 108, 0.08) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--bg-cream), transparent);
}

.hero-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.125rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s var(--ease-smooth) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-title {
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-body);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.hero-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-contact-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9375rem;
}

.hero-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-bronze);
    flex-shrink: 0;
}

.hero-contact-item a:hover {
    color: var(--accent-bronze);
}

/* Hero Card */
.hero-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lift), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

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

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.hero-card-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bg-forest), var(--bg-forest-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(30, 61, 52, 0.2);
}

.hero-card-name {
    font-weight: 700;
    color: var(--text-ink);
    font-size: 1rem;
}

.hero-card-title {
    font-size: 0.8125rem;
    color: var(--accent-bronze);
    font-weight: 500;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ----------------------------------------
   HOME PAGE - PRACTICE AREAS
---------------------------------------- */
.practice-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.practice-grid {
    display: grid;
    gap: 1.5rem;
}

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

.practice-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-smooth);
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-bronze);
    border-radius: 0 2px 2px 0;
    transition: height var(--duration-base) var(--ease-smooth);
}

.practice-card:hover {
    border-color: var(--accent-bronze);
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

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

.practice-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--duration-base) var(--ease-smooth);
}

.practice-card:hover .practice-icon {
    background: var(--accent-bronze);
    border-color: var(--accent-bronze);
}

.practice-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-bronze);
    transition: color var(--duration-base) var(--ease-smooth);
}

.practice-card:hover .practice-icon svg {
    color: var(--bg-white);
}

.practice-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.practice-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

.practice-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--border);
    line-height: 1;
}

/* ----------------------------------------
   HOME PAGE - CTA SECTION
---------------------------------------- */
.cta-section {
    background: var(--bg-forest);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(184, 149, 108, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(143, 168, 154, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .section-title {
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.cta-section .section-subtitle {
    color: var(--accent-sage);
    position: relative;
    z-index: 1;
}

.cta-section .section-label {
    color: var(--accent-bronze-light);
}

.cta-section .section-label::before,
.cta-section .section-label::after {
    background: var(--accent-bronze-light);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ----------------------------------------
   ABOUT PAGE
---------------------------------------- */
.about-hero {
    padding: 4rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
    .about-hero { padding: 5rem 0; }
}

.about-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 5rem;
        align-items: start;
    }
}

.about-photo {
    position: relative;
}

.about-photo-img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--border-light) 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

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

.about-photo-frame {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
    border: 2px solid var(--accent-bronze);
    border-radius: var(--radius-md);
    opacity: 0.3;
    z-index: -1;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.85;
}

/* Credentials */
.credentials-grid {
    display: grid;
    gap: 1.5rem;
}

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

.credentials-box {
    padding: 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-smooth);
}

.credentials-box:hover {
    border-color: var(--accent-sage);
    box-shadow: var(--shadow-soft);
}

.credentials-box h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
}

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

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

.credentials-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(184, 149, 108, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(143, 168, 154, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.values-section .section-label::before,
.values-section .section-label::after {
    background: var(--accent-bronze-light);
}

.values-section .section-title {
    color: var(--bg-white);
}

.values-section .section-subtitle {
    color: var(--accent-sage);
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.value-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-smooth);
    backdrop-filter: blur(8px);
}

.value-card:hover {
    border-color: var(--accent-bronze);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    color: var(--bg-white);
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.value-card p {
    color: var(--accent-sage);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.65;
}

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

.blog-layout {
    display: grid;
    gap: 3.5rem;
}

@media (min-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 340px;
        gap: 5rem;
    }
}

.blog-grid {
    display: grid;
    gap: 1.75rem;
}

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

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-smooth);
}

.blog-card:hover {
    border-color: var(--accent-bronze);
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-forest) 0%, var(--bg-forest-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(184, 149, 108, 0.15) 0%, transparent 50%);
}

.blog-card-img svg {
    width: 48px;
    height: 48px;
    color: var(--accent-bronze);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.blog-card-content {
    padding: 1.75rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-card-category {
    background: var(--bg-warm);
    color: var(--accent-bronze-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.6875rem;
}

.blog-card h2 {
    font-size: 1.1875rem;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

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

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

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

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

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

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.sidebar-widget h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

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

.recent-posts-list li {
    padding: 0.875rem 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-body);
    display: block;
    line-height: 1.5;
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

.recent-posts-list .post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.375rem;
    display: block;
}

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

.sidebar-cta h3 {
    color: var(--bg-white);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sidebar-cta p {
    color: var(--accent-sage);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

/* ----------------------------------------
   ARTICLE PAGE
---------------------------------------- */
.article-hero {
    padding: 4rem 0 3rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

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

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.article-category {
    background: var(--bg-warm);
    color: var(--accent-bronze-dark);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.6875rem;
}

.article-title {
    margin-bottom: 1.25rem;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.0625rem;
}

.article-content h2 {
    margin: 2.5rem 0 1.25rem;
    font-size: 1.5rem;
}

.article-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.article-content li {
    margin-bottom: 0.625rem;
    line-height: 1.75;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-warm);
    border-left: 4px solid var(--accent-bronze);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-body);
    font-size: 1.125rem;
    line-height: 1.75;
}

.article-content .highlight-box {
    background: linear-gradient(135deg, var(--bg-warm), var(--accent-cream));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin: 2rem 0;
}

.article-content .highlight-box h4 {
    color: var(--accent-bronze-dark);
    margin-bottom: 0.625rem;
    font-size: 1rem;
}

.article-content .highlight-box p {
    margin: 0;
    font-size: 1rem;
}

.article-footer {
    max-width: 720px;
    margin: 4rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.article-author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--bg-forest), var(--bg-forest-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1rem;
}

.article-author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.article-nav {
    display: grid;
    gap: 1rem;
}

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

.article-nav-link {
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-smooth);
}

.article-nav-link:hover {
    border-color: var(--accent-bronze);
    box-shadow: var(--shadow-soft);
}

.article-nav-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

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

.contact-grid {
    display: grid;
    gap: 3.5rem;
}

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

.contact-info h2 {
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-smooth);
}

.contact-item:hover {
    border-color: var(--accent-bronze);
    box-shadow: var(--shadow-soft);
}

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

.contact-item:hover .contact-item-icon {
    background: var(--accent-bronze);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent-bronze);
    transition: color var(--duration-base) var(--ease-smooth);
}

.contact-item:hover .contact-item-icon svg {
    color: var(--bg-white);
}

.contact-item-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

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

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
    .contact-form-wrapper { padding: 3rem; }
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-ink);
    margin-bottom: 0.625rem;
}

.form-label .required {
    color: var(--error);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.125rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-ink);
    background: var(--bg-warm);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-bronze);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(184, 149, 108, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: var(--error);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

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

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

.form-disclaimer {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.form-disclaimer svg {
    width: 18px;
    height: 18px;
    color: var(--accent-bronze);
    vertical-align: middle;
    margin-right: 0.5rem;
    margin-top: -2px;
}

.form-submit {
    width: 100%;
}

/* Form Messages */
.form-message {
    display: none;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(74, 124, 111, 0.1);
    border: 1px solid rgba(74, 124, 111, 0.2);
    color: var(--success);
}

.form-message.error {
    background: rgba(166, 93, 87, 0.1);
    border: 1px solid rgba(166, 93, 87, 0.2);
    color: var(--error);
}

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

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
    background: var(--bg-charcoal);
    color: var(--text-soft);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.footer-brand-name {
    font-weight: 700;
    color: var(--bg-white);
    font-size: 1.0625rem;
}

.footer-brand-title {
    font-size: 0.875rem;
    color: var(--accent-bronze-light);
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-soft);
    font-weight: 500;
}

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

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

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

.animate-in {
    animation: fadeInUp 0.6s var(--ease-smooth) 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; }
}