/* ========================================
   EDICIÓN NOIR 
======================================== */

/* ----------------------------------------
   CSS VARIABLES
---------------------------------------- */
:root {
    /* Dark Theme Colors */
    --bg-dark: #0a0a0a;
    --bg-dark-elevated: #141414;
    --bg-dark-card: #1a1a1a;
    --bg-dark-hover: #222222;
    
    /* Light Accents */
    --bg-cream: #faf8f5;
    --bg-cream-warm: #f5f2ec;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e8e6e3;
    --text-muted: #8a8886;
    --text-dark: #0a0a0a;
    --text-dark-muted: #5a5856;
    
    /* Accent Colors */
    --accent-gold: #c9a962;
    --accent-gold-light: #dfc785;
    --accent-gold-dark: #a68b4b;
    --accent-warm: #d4a574;
    
    /* Utility */
    --success: #5a9a6e;
    --error: #c45c5c;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-dark-hover: rgba(255, 255, 255, 0.15);
    --border-light: rgba(0, 0, 0, 0.08);
    
    /* Shadows */
    --shadow-glow: 0 0 80px rgba(201, 169, 98, 0.15);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.2s;
    --duration-base: 0.4s;
    --duration-slow: 0.6s;
}

/* ----------------------------------------
   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: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

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

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

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

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
}

h1 em {
    font-style: italic;
    color: var(--accent-gold);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
}

h2 em {
    font-style: italic;
    color: var(--accent-gold);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-body);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

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

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

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

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

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

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

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
}

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

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

/* ----------------------------------------
   HEADER
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    transition: all var(--duration-base) var(--ease-out);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
}

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

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

.logo-initials {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.logo-line {
    width: 1px;
    height: 24px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.logo-title {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

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

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

.nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: var(--space-sm) var(--space-md);
    letter-spacing: 0.02em;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--accent-gold);
}

.nav-link-cta {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-left: var(--space-sm);
}

.nav-link-cta:hover {
    background: var(--accent-gold-light);
    color: var(--bg-dark);
}

.nav-link-cta.active {
    background: var(--accent-gold-light);
}

.nav-link-cta.active::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

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

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

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--duration-fast) var(--ease-out);
}

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

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    transform: translateX(100%);
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
    z-index: 999;
}

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

.nav-mobile-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    height: 100%;
    padding: var(--space-xl);
}

.nav-mobile .nav-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: var(--space-md);
    transition: color var(--duration-fast) var(--ease-out);
}

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

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

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

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

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

/* ----------------------------------------
   BUTTONS
---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

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

.btn-secondary {
    background: var(--bg-dark-elevated);
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
    background: var(--bg-dark-hover);
    border-color: var(--border-dark-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

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

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 90%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
}

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

.hero-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.hero-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--duration-fast) var(--ease-out);
}

.hero-phone:hover {
    color: var(--accent-gold);
}

.hero-phone svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

/* Hero Aside */
.hero-aside {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-card {
    position: relative;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.hero-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(201, 169, 98, 0.1), transparent 70%);
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-dark);
}

.hero-card-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.hero-card-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.hero-card-role {
    font-size: 0.8125rem;
    color: var(--accent-gold);
}

.hero-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 4px;
}

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

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-dark);
}

/* Hero Quote */
.hero-quote {
    padding: var(--space-md);
    border-left: 2px solid var(--accent-gold);
}

.hero-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

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

.practice-card {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--duration-base) var(--ease-out);
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-out);
}

.practice-card:hover {
    border-color: var(--border-dark-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

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

.practice-card--featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), var(--bg-dark));
}

.practice-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    transition: color var(--duration-base) var(--ease-out);
}

.practice-card:hover .practice-number {
    color: rgba(201, 169, 98, 0.15);
}

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

.practice-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-white);
}

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

.practice-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

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

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.06), transparent 70%);
}

.cta-section .section-title {
    color: var(--text-white);
    position: relative;
}

.cta-section .section-subtitle {
    color: var(--text-muted);
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    position: relative;
}

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

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

@media (min-width: 1024px) {
    .about-hero { padding: var(--space-3xl) 0; }
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-photo {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--bg-dark-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.8));
    z-index: 1;
}

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

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

.about-photo-caption {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.about-photo-caption span {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

/* About Content */
.about-content {
    padding-top: var(--space-xl);
}

.about-intro-wrapper {
    margin-bottom: var(--space-xl);
}

.about-intro-wrapper h1 {
    margin-bottom: var(--space-lg);
}

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

.about-text {
    margin-bottom: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-dark);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.85;
}

.about-cta {
    padding-top: var(--space-lg);
}

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

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

.credentials-box {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.credentials-box h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-dark);
    font-size: 1rem;
    font-family: var(--font-body);
}

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

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

.credentials-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-muted);
}

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

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

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(201, 169, 98, 0.05), transparent 60%);
}

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

.values-section .section-subtitle {
    color: var(--text-muted);
}

.values-grid {
    display: grid;
    gap: var(--space-lg);
    position: relative;
}

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

.value-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--duration-base) var(--ease-out);
}

.value-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}

.value-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.value-card h3 {
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    font-size: 1.0625rem;
    font-family: var(--font-body);
}

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

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

.blog-hero h1 {
    margin-top: var(--space-md);
}

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

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

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

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

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

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

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

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

.blog-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 98, 0.1), transparent);
}

.blog-card-img svg {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    opacity: 0.4;
}

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

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

.blog-card-category {
    background: rgba(201, 169, 98, 0.15);
    color: var(--accent-gold);
    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-sm);
}

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

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

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

.sidebar-widget {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.sidebar-widget h3 {
    font-size: 0.875rem;
    font-family: var(--font-body);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

.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-light);
    display: block;
    line-height: 1.5;
}

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

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

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

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

.sidebar-cta p {
    color: var(--bg-dark);
    opacity: 0.8;
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

/* ----------------------------------------
   ARTICLE PAGE
---------------------------------------- */
.article-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
}

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

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

.article-category {
    background: rgba(201, 169, 98, 0.15);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
}

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

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

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

.article-content h2 {
    margin: var(--space-2xl) 0 var(--space-md);
    font-size: 1.75rem;
}

.article-content h3 {
    margin: var(--space-xl) 0 var(--space-md);
    font-size: 1.375rem;
    font-family: var(--font-display);
    font-weight: 500;
}

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

.article-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.75;
    color: var(--text-muted);
}

.article-content blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-dark-elevated);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.article-content .highlight-box {
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.article-content .highlight-box h4 {
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.article-footer {
    max-width: 720px;
    margin: var(--space-2xl) auto 0;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-dark);
}

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

.article-author-avatar {
    width: 52px;
    height: 52px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--bg-dark);
}

.article-author-info h4 {
    color: var(--text-white);
    margin-bottom: 2px;
}

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

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

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

.article-nav-link {
    padding: var(--space-lg);
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
}

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

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

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

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

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

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

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

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

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

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

.contact-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-dark-elevated);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
}

.contact-item:hover {
    border-color: var(--border-dark-hover);
    background: var(--bg-dark-card);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.contact-item-content h4 {
    color: var(--text-white);
    margin-bottom: 2px;
}

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

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

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

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

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

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-white);
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-dark-card);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

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

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

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

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

.form-disclaimer svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    vertical-align: middle;
    margin-right: var(--space-xs);
    margin-top: -2px;
}

.form-submit {
    width: 100%;
}

.form-message {
    display: none;
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
    text-align: center;
}

.form-message.success {
    background: rgba(90, 154, 110, 0.15);
    border: 1px solid rgba(90, 154, 110, 0.3);
    color: var(--success);
}

.form-message.error {
    background: rgba(196, 92, 92, 0.15);
    border: 1px solid rgba(196, 92, 92, 0.3);
    color: var(--error);
}

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

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    padding: var(--space-xl) 0;
}

.footer-inner {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: var(--space-xl);
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.footer-tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
}

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

.footer-nav a:hover {
    color: var(--accent-gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: right;
}

@media (max-width: 767px) {
    .footer-contact {
        text-align: center;
    }
}

.footer-contact a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-dark);
    margin-top: var(--space-md);
}

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

.animate-in {
    animation: fadeInUp 0.6s 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; }
}