/* ========================================
   AREAS OF PRACTICE - MOBILE-FIRST (RESPONSIVE FIXES)
   ======================================== */

/* HERO SECTION (RESPONSIVE FIXES) */
.practice-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 15vh, 120px) clamp(20px, 5vw, 20px) clamp(60px, 10vh, 80px);
    background: linear-gradient(135deg, #0a1628 0%, #1a2642 50%, #0f1d35 100%);
    overflow: hidden;
    width: 100%;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(194, 166, 115, 0.1) 2px, rgba(194, 166, 115, 0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(194, 166, 115, 0.1) 2px, rgba(194, 166, 115, 0.1) 4px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: min(900px, 95vw);
    box-sizing: border-box;
    padding: 0 clamp(1rem, 3vw, 0);
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    font-weight: 600;
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-transform: uppercase;
    color: #c2a673;
    margin-bottom: 1.5rem;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(1.25rem, 3vw, 1.5rem);
    border: 1px solid rgba(194, 166, 115, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background: rgba(194, 166, 115, 0.1);
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
}

.hero-title .modern-accent {
    color: #c2a673;
    font-style: italic;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: min(700px, 90vw);
    margin: 0 auto 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(194, 166, 115, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    animation: bounce 2s infinite;
    cursor: pointer;
    margin-top: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* HEXAGON SECTION (RESPONSIVE FIXES) */
.hexagon-section {
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.section-header {
    margin-bottom: 4rem;
    padding: 0 clamp(1rem, 3vw, 1rem);
    max-width: 100%;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.3vw, 2px);
    text-transform: uppercase;
    color: #c2a673;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: #555;
    max-width: min(600px, 90vw);
    margin: 0 auto;
}

/* MOBILE CARDS (RESPONSIVE FIXES) */
.practice-cards {
    display: grid;
    gap: 1.5rem;
    padding: 0 clamp(1rem, 3vw, 1rem);
    max-width: 100%;
}

.practice-card {
    background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(194, 166, 115, 0.2);
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.15);
    box-sizing: border-box;
    max-width: 100%;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(194, 166, 115, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    max-width: 100%;
    word-wrap: break-word;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 0.9375rem);
    font-weight: 600;
    color: #c2a673;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:active {
    color: #d4b980;
}

/* DESKTOP ONLY */
.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

/* PRACTICE DETAILS (RESPONSIVE FIXES) */
.practice-detail {
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 3vw, 1rem);
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.practice-detail:nth-child(odd) {
    background: #ffffff;
}

.practice-detail:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
}

.practice-detail-grid {
    max-width: min(1200px, 100%);
    margin: 0 auto;
    box-sizing: border-box;
}

.practice-detail-number {
    margin-bottom: 2rem;
}

.large-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 5rem);
    font-weight: 700;
    color: #c2a673;
    line-height: 1;
    display: block;
    opacity: 0.3;
}

.number-accent-line {
    width: min(60px, 20vw);
    height: 3px;
    background: linear-gradient(90deg, #c2a673 0%, transparent 100%);
    margin-top: 1rem;
}

.practice-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

.practice-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    max-width: 100%;
}

.practice-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    max-width: 100%;
}

.practice-features li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    color: #555;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.practice-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: #c2a673;
    border-radius: 50%;
}

.practice-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 600;
    color: #0a1628;
    text-decoration: none;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(194, 166, 115, 0.15) 0%, rgba(194, 166, 115, 0.05) 100%);
    border: 2px solid #c2a673;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.practice-cta:active {
    background: linear-gradient(135deg, #c2a673 0%, #b08f5e 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 166, 115, 0.3);
}

/* UTILITY CLASSES (RESPONSIVE FIXES) */
.py-section {
    padding: clamp(40px, 10vw, 60px) 0;
}

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

.bg-light {
    background: #f8f9fa;
}

/* ========================================
   CTA SECTION STYLES (RESPONSIVE FIXES)
   ======================================== */
.cta-enhanced-section {
    position: relative;
    overflow: hidden;
    background: #0a1628;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: min(700px, 95vw);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2rem);
    box-sizing: border-box;
    padding: 0 clamp(1rem, 3vw, 0);
}

.cta-icon-badge {
    width: clamp(64px, 12vw, 80px);
    height: clamp(64px, 12vw, 80px);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #c2a673;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2a673;
    transition: all 0.3s ease;
}

.cta-content-wrapper:hover .cta-icon-badge {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
    max-width: 100%;
    word-wrap: break-word;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: min(500px, 90vw);
}

.cta-contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: min(600px, 100%);
}

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

.cta-contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 3vw, 1.5rem);
    background: #0f1d35;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    max-width: 100%;
}

.cta-contact-method:hover {
    border-color: #c2a673;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(194, 166, 115, 0.2);
}

.contact-method-icon {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2a673;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-contact-method:hover .contact-method-icon {
    background: #c2a673;
    color: #0a1628;
    transform: scale(1.1);
}

.contact-method-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex-grow: 1;
    min-width: 0;
}

.contact-method-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.75rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-method-value {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #ffffff;
    font-weight: 500;
}

.cta-button-large {
    padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0a1628;
    text-decoration: none;
    background: linear-gradient(135deg, #c2a673 0%, #b08f5e 100%);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 166, 115, 0.4);
}

.cta-button-large svg {
    transition: transform 0.3s ease;
}

.cta-button-large:hover svg {
    transform: translateX(5px);
}

/* ========================================
   FOOTER & CREDIT BAR - CONTINUED (RESPONSIVE FIXES)
   ======================================== */

/* TABLET (768px+) */
@media (min-width: 768px) {
    .hero-title {
        font-size: clamp(3.5rem, 6vw, 4.5rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 5vw, 3.5rem);
    }
    
    .practice-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 clamp(2rem, 4vw, 2rem);
    }
    
    .practice-card:hover::before {
        opacity: 1;
    }
    
    .practice-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(194, 166, 115, 0.2);
    }
    
    .card-link:hover {
        color: #d4b980;
    }
    
    .practice-cta:hover {
        background: linear-gradient(135deg, #c2a673 0%, #b08f5e 100%);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(194, 166, 115, 0.3);
    }
    
    .practice-detail {
        padding: clamp(4rem, 8vw, 5rem) clamp(2rem, 4vw, 2rem);
    }
    
    .practice-detail-grid {
        display: grid;
        grid-template-columns: min(150px, 25%) 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-grid {
        grid-template-columns: 1fr min(150px, 25%);
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-number {
        order: 2;
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-content {
        order: 1;
    }
    
    .py-section {
        padding: clamp(60px, 12vw, 80px) 0;
    }
}

/* DESKTOP (1024px+) */
@media (min-width: 1024px) {
    .hero-title {
        font-size: clamp(4.5rem, 6vw, 5rem);
    }
    
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
    
    .hexagon-container {
        position: relative;
        width: 100%;
        max-width: min(1120px, 95vw);
        height: clamp(680px, 68vh, 780px);
        margin: 0 auto;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid rgba(194, 166, 115, 0.15);
        box-shadow: 0 10px 50px rgba(10, 22, 40, 0.08);
        box-sizing: border-box;
    }
    
    #hexagon-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    
    .hexagon-center {
        position: absolute;
        z-index: 100;
        pointer-events: none;
    }
    
    .center-logo-wrapper {
        width: clamp(100px, 15vw, 120px);
        height: clamp(100px, 15vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transform: translate(-50%, -50%);
    }
    
    .center-logo {
        width: clamp(60px, 10vw, 80px);
        height: auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 4px 15px rgba(194, 166, 115, 0.3));
    }
    
    .center-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(194, 166, 115, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        animation: glow 3s ease-in-out infinite;
    }
    
    @keyframes glow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.5;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.8;
        }
    }
    
    .hexagon-nodes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hexagon-node {
        position: absolute;
        cursor: pointer;
        z-index: 10;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hexagon-node:hover {
        z-index: 50;
        transform: scale(1.08);
    }
    
    .node-content {
        background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
        border: 2px solid #c2a673;
        border-radius: 15px;
        padding: clamp(1rem, 2vw, 1.2rem) clamp(1.25rem, 2.5vw, 1.6rem);
        box-shadow: 0 8px 30px rgba(10, 22, 40, 0.2);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        width: clamp(220px, 22vw, 260px);
        min-height: 132px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .node-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(194, 166, 115, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .hexagon-node:hover .node-content::before {
        left: 100%;
    }
    
    .hexagon-node:hover .node-content {
        background: linear-gradient(135deg, #1a2642 0%, #0a1628 100%);
        border-color: #d4b980;
        box-shadow: 0 16px 60px rgba(194, 166, 115, 0.5), 0 8px 30px rgba(10, 22, 40, 0.3);
    }
    
    .node-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.12rem, 1.8vw, 1.32rem);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.25rem;
        line-height: 1.1;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        text-wrap: balance;
    }
    
    .node-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: clamp(0.8rem, 1.5vw, 0.875rem);
        color: rgba(194, 166, 115, 0.8);
        font-weight: 500;
        line-height: 1.3;
    }
    
    .practice-detail {
        padding: clamp(5rem, 10vw, 6rem) clamp(2rem, 4vw, 2rem);
    }
    
    .practice-detail-grid {
        grid-template-columns: min(200px, 30%) 1fr;
        gap: 4rem;
    }
    
    .practice-detail.practice-detail-reverse .practice-detail-grid {
        grid-template-columns: 1fr min(200px, 30%);
    }
    
    .py-section {
        padding: clamp(80px, 15vw, 100px) 0;
    }
}

/* LARGE DESKTOP (1440px+) */
@media (min-width: 1440px) {
    .hero-title {
        font-size: clamp(5rem, 6vw, 5rem);
    }
    
    .section-title {
        font-size: clamp(3.5rem, 4vw, 3.5rem);
    }
    
    .hexagon-container {
        height: clamp(760px, 70vh, 860px);
        max-width: min(1280px, 95vw);
    }
    
    .center-logo-wrapper {
        width: clamp(120px, 15vw, 140px);
        height: clamp(120px, 15vw, 140px);
    }
    
    .center-logo {
        width: clamp(80px, 10vw, 100px);
    }
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.hexagon-node:focus {
    outline: 2px solid #c2a673;
    outline-offset: 4px;
}

.practice-cta:focus {
    outline: 2px solid #c2a673;
    outline-offset: 4px;
}

/* ========================================
   FOOTER STYLES (RESPONSIVE FIXES)
   ======================================== */
.footer-main {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
}

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

.footer-logo img {
    height: clamp(40px, 6vw, 45px);
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: min(280px, 100%);
    margin: 0;
}

.footer-address {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-address p {
    margin: 0.25rem 0;
    max-width: 100%;
}

.footer-column-title {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #c2a673;
    padding-left: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    color: #c2a673;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #c2a673;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

.footer-copyright {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #c2a673;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   CREDIT BAR (RESPONSIVE FIXES)
   ======================================== */
.credit-bar {
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        rgba(212, 175, 55, 0.08) 50%, 
        rgba(212, 175, 55, 0.03) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0.75rem;
    text-align: center;
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.credit-bar a {
    color: #c2a673;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.credit-bar a:hover {
    color: #d4b980;
    text-decoration: underline;
}

/* ========================================
   MOBILE SPECIFIC OPTIMIZATIONS
   ======================================== */
@media (max-width: 767px) {
    .practice-hero {
        min-height: 90vh;
        padding: clamp(80px, 12vh, 100px) 20px clamp(40px, 8vh, 60px);
    }
    
    .hero-eyebrow {
        margin-bottom: 1rem;
        padding: 0.4rem 1.25rem;
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .practice-cards {
        padding: 0 1rem;
    }
    
    .practice-card {
        padding: 1.5rem;
    }
    
    .contact-method-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-contact-method {
        padding: 1rem 1.25rem;
    }
}

/* ========================================
   PRACTICE AREAS SCROLL EXPERIENCE
   ======================================== */

.hexagon-section {
    padding-top: clamp(5rem, 9vw, 7rem);
    padding-bottom: clamp(5rem, 9vw, 7.5rem);
    background:
        linear-gradient(90deg, rgba(7, 18, 28, 0.026) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, #f8f7f2 0%, #f0ebe2 100%);
    background-size: 88px 100%, 100% 100%;
}

.hexagon-container {
    max-width: min(1360px, calc(100vw - 2rem));
    height: clamp(800px, 70vw, 940px);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 52%, rgba(194, 166, 115, 0.12), transparent 24rem),
        linear-gradient(90deg, rgba(10, 22, 40, 0.022) 1px, transparent 1px),
        linear-gradient(180deg, rgba(10, 22, 40, 0.018) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 240, 230, 0.88));
    background-size: 100% 100%, 72px 72px, 72px 72px, 100% 100%;
    border: 1px solid rgba(194, 166, 115, 0.18);
    box-shadow: 0 24px 80px rgba(10, 22, 40, 0.08);
}

.hexagon-container::before {
    display: none;
}

.hexagon-container::after {
    content: "Connected practice platform";
    position: absolute;
    left: 2rem;
    bottom: 1.75rem;
    color: rgba(10, 22, 40, 0.42);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hexagon-node {
    width: clamp(220px, 17vw, 268px);
}

.node-content {
    width: 100%;
    min-height: 128px;
    padding: 1.25rem 1.45rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 185, 128, 0.72);
    background:
        linear-gradient(135deg, rgba(246, 240, 230, 0.055), transparent 42%),
        #0a1628;
    box-shadow: 0 22px 60px rgba(10, 22, 40, 0.18);
}

.node-content::before {
    display: none;
}

.hexagon-node:hover .node-content,
.hexagon-node:focus .node-content {
    background:
        linear-gradient(135deg, rgba(212, 185, 128, 0.14), transparent 46%),
        #0a1628;
    box-shadow: 0 28px 70px rgba(10, 22, 40, 0.28);
}

.center-logo-wrapper {
    width: clamp(150px, 14vw, 180px);
    height: clamp(150px, 14vw, 180px);
    border: 1px solid rgba(194, 166, 115, 0.46);
    background:
        radial-gradient(circle at 50% 28%, rgba(212, 185, 128, 0.16), transparent 58%),
        #0a1628;
    box-shadow: 0 0 0 12px rgba(194, 166, 115, 0.06), 0 28px 80px rgba(10, 22, 40, 0.2);
}

.center-logo {
    width: clamp(112px, 10vw, 138px);
    filter: none;
}

.center-glow {
    display: none;
}

.practice-detail {
    --detail-bg: #f8f5ee;
    --detail-ink: #0a1628;
    --detail-body: #3f4852;
    --detail-muted: #65717d;
    --detail-line: rgba(10, 22, 40, 0.12);
    --detail-chip: rgba(255, 255, 255, 0.76);
    --detail-orb: rgba(194, 166, 115, 0.12);
    scroll-margin-top: 110px;
    min-height: min(860px, 92vh);
    display: flex;
    align-items: center;
    padding: clamp(6rem, 10vw, 9rem) clamp(1rem, 3vw, 1rem);
    background:
        linear-gradient(90deg, rgba(10, 22, 40, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 12% 18%, var(--detail-orb), transparent 25rem),
        linear-gradient(180deg, var(--detail-bg), #efe8db);
    background-size: 82px 82px, 100% 100%, 100% 100%;
    overflow: hidden;
}

.practice-detail:nth-of-type(even) {
    --detail-bg: #0a1628;
    --detail-ink: #f6f0e6;
    --detail-body: rgba(246, 240, 230, 0.78);
    --detail-muted: rgba(246, 240, 230, 0.66);
    --detail-line: rgba(246, 240, 230, 0.14);
    --detail-chip: rgba(246, 240, 230, 0.055);
    --detail-orb: rgba(194, 166, 115, 0.18);
    background:
        linear-gradient(90deg, rgba(246, 240, 230, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 86% 18%, rgba(194, 166, 115, 0.19), transparent 25rem),
        linear-gradient(180deg, #0a1628, #1a2642);
}

.practice-detail::before {
    display: none;
}

.practice-detail::after {
    content: "";
    position: absolute;
    left: clamp(1rem, 5vw, 5rem);
    right: clamp(1rem, 5vw, 5rem);
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--detail-line), transparent);
}

.practice-detail-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1180px, 100%);
    align-items: center;
}

.practice-detail-content {
    max-width: 760px;
}

.practice-detail-number {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: clamp(8rem, 13vw, 11rem);
    min-height: clamp(7rem, 12vw, 10rem);
    padding: 1.25rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(194, 166, 115, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(194, 166, 115, 0.14), transparent 54%),
        var(--detail-chip);
    box-shadow: 0 26px 70px rgba(10, 22, 40, 0.1);
}

.practice-detail-number::before,
.practice-detail-number::after {
    display: none;
}

.practice-detail-number::before {
    inset: -0.85rem;
}

.practice-detail-number::after {
    inset: 1.1rem;
    border-color: rgba(194, 166, 115, 0.14);
}

.large-number {
    color: var(--detail-ink);
    font-size: clamp(3.65rem, 6.2vw, 5.9rem);
    opacity: 1;
}

.number-accent-line {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1rem;
    width: auto;
    height: 2px;
    margin: 0;
    background: linear-gradient(90deg, rgba(194, 166, 115, 0.8), transparent);
}

.practice-title {
    color: var(--detail-ink);
    font-size: clamp(2.65rem, 4.6vw, 5rem);
    line-height: 0.98;
    margin-bottom: 1.4rem;
}

.practice-description {
    color: var(--detail-body);
    font-size: clamp(1.04rem, 1.55vw, 1.22rem);
    line-height: 1.74;
    margin-bottom: clamp(1.7rem, 3vw, 2.5rem);
}

.practice-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practice-features li {
    min-height: 4rem;
    display: flex;
    align-items: center;
    color: var(--detail-muted);
    line-height: 1.45;
    padding: 0.95rem 1rem 0.95rem 2.35rem;
    margin: 0;
    border: 1px solid var(--detail-line);
    border-radius: 8px;
    background: var(--detail-chip);
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.04);
}

.practice-features li::before {
    left: 1.15rem;
    top: 50%;
    width: 0.48rem;
    height: 0.48rem;
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: none;
}

.practice-cta {
    min-height: 4.35rem;
    padding: 1.05rem 1.25rem 1.05rem 1.75rem;
    border-radius: 8px;
    border-color: rgba(194, 166, 115, 0.72);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 45px rgba(10, 22, 40, 0.08);
}

.practice-detail:nth-of-type(even) .practice-cta {
    color: #f6f0e6;
    background: rgba(246, 240, 230, 0.05);
}

.practice-cta svg {
    flex: 0 0 auto;
    width: 2.45rem;
    height: 2.45rem;
    padding: 0.62rem;
    border-radius: 6px;
    color: #0a1628;
    background: #c2a673;
    transition: transform 0.25s ease;
}

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

@media (min-width: 768px) {
    .practice-detail-grid {
        grid-template-columns: minmax(11rem, 0.36fr) minmax(0, 1fr);
        gap: clamp(3rem, 8vw, 7rem);
    }

    .practice-detail.practice-detail-reverse .practice-detail-grid {
        grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.36fr);
    }

    .practice-detail.practice-detail-reverse .practice-detail-number {
        justify-self: end;
    }
}

@media (max-width: 1100px) {
    .practice-features {
        grid-template-columns: 1fr;
    }

    .practice-features li {
        border-radius: 8px;
    }
}

@media (max-width: 1023px) {
    .hexagon-container {
        height: auto;
        background:
            linear-gradient(90deg, rgba(10, 22, 40, 0.035) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 230, 0.88));
        background-size: 64px 64px, 100% 100%;
    }

    .hexagon-container::before {
        border-radius: 8px;
    }
}

@media (max-width: 767px) {
    .practice-detail {
        min-height: auto;
        align-items: flex-start;
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .practice-detail-grid {
        display: grid;
        gap: 2rem;
    }

    .practice-detail.practice-detail-reverse .practice-detail-number,
    .practice-detail.practice-detail-reverse .practice-detail-content {
        order: initial;
    }

    .practice-detail-number {
        width: 8.5rem;
        justify-self: start;
    }

    .practice-title {
        font-size: clamp(2.3rem, 12vw, 3.25rem);
    }

    .practice-features li {
        min-height: 0;
    }

    .practice-cta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hexagon-node {
        width: clamp(164px, 12vw, 190px);
    }

    .node-content {
        aspect-ratio: 1;
        min-height: 0;
        display: grid;
        place-items: center;
        align-content: center;
        justify-items: center;
        gap: 0.35rem;
        padding: 1.1rem;
        border-radius: 50%;
        text-align: center;
    }

    .node-title {
        font-size: clamp(1.08rem, 1.35vw, 1.32rem);
        line-height: 1.02;
        margin: 0;
        max-width: 9.4rem;
    }

    .node-subtitle {
        font-size: clamp(0.66rem, 0.78vw, 0.78rem);
        line-height: 1.22;
        max-width: 9.2rem;
    }
}

@media (min-width: 1024px) {
    .hexagon-container {
        height: clamp(700px, 62vw, 820px);
    }

    .hexagon-node {
        width: clamp(198px, 16vw, 230px);
    }

    .node-content {
        aspect-ratio: auto;
        min-height: 104px;
        display: grid;
        place-items: initial;
        align-content: center;
        justify-items: start;
        gap: 0.2rem;
        padding: 1rem 1.2rem;
        border-radius: 8px;
        text-align: left;
    }

    .node-title {
        font-size: clamp(1.16rem, 1.55vw, 1.46rem);
        line-height: 1.04;
        max-width: 100%;
    }

    .node-subtitle {
        font-size: clamp(0.72rem, 0.88vw, 0.86rem);
        line-height: 1.22;
        max-width: 100%;
    }

    .center-logo-wrapper {
        width: clamp(132px, 11vw, 158px);
        height: clamp(132px, 11vw, 158px);
        border: 1px solid rgba(194, 166, 115, 0.24);
        border-radius: 50%;
        background:
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(246, 240, 230, 0.34) 62%, transparent 70%);
        box-shadow: 0 0 0 10px rgba(194, 166, 115, 0.055), 0 20px 60px rgba(10, 22, 40, 0.1);
    }

    .center-logo {
        width: clamp(88px, 7.2vw, 112px);
        opacity: 0.96;
        filter: drop-shadow(0 8px 18px rgba(10, 22, 40, 0.12));
    }
}
