/* ===================================
   JAFFE LAW - PREMIUM UNIFIED DESIGN
   Luxury transactional law firm
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   NAVIGATION - Premium & Sleeker
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.75;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 55px;
}

.contact-info {
    display: flex;
    gap: 40px;
    font-size: 0.9rem;
}

.contact-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 38px; 
}

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

/* ===================================
   HERO SECTIONS - PERFECTLY ALIGNED
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

/* Homepage hero - Full screen */
.hero-home {
    background: url() center/cover no-repeat;
    min-height: 100vh;
}

/* Practice page heroes - Consistent styling */
.hero-dental {
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%),
                url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=2000') center/cover no-repeat;
}

.hero-estate {
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%),
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=2000') center/cover no-repeat;
}

.hero-business {
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%),
                url('IMAGES/miamiskyline.webp') center/cover no-repeat;
}

.hero-talent {
    background: linear-gradient(rgba(40,30,0,0.3), rgba(0,0,0,0.6)),
                url('IMAGES/brand.webp') center/cover no-repeat;
}

/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

/* HERO CONTENT - Consistent spacing */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 180px 80px 100px;
}

.hero-label,
.practice-number {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 32px;
    color: #fff;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.hero-text {
    font-size: clamp(1.08rem, 1.9vw, 1.25rem);
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 48px;
    font-weight: 300;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 17px 42px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: rgba(255,255,255,0.96);
    color: #000;
    border-color: rgba(255,255,255,0.96);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

.btn-secondary {
    color: rgba(255,255,255,0.96);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-3px);
}

/* ===================================
   CONTENT SECTIONS - Perfect Alignment
   =================================== */
.content-section {
    padding: clamp(90px, 14vw, 140px) 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.content-section.alt {
    background: rgba(255,255,255,0.012);
}

.section-header {
    margin-bottom: 90px;
    max-width: 920px;
}

.section-header h2,
.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: #fff;
}

.section-header p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

.section-intro {
    max-width: 920px;
    margin-bottom: 90px;
}

.section-intro p {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
}

/* ===================================
   PRACTICE AREAS GRID (Homepage)
   =================================== */
.practices {
    padding: 140px 80px;
    max-width: 1480px;
    margin: 0 auto;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
}

.practice-card {
    background: #000;
    padding: 68px 58px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: #fff;
    transition: height 0.45s ease;
}

.practice-card:hover {
    background: rgba(255,255,255,0.02);
}

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

.practice-number {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.practice-card h3 {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
    color: #fff;
}

.practice-card p {
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1.02rem;
}

.see-more {
    color: rgba(255,255,255,0.82);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===================================
   SERVICES GRID - Practice Pages
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 90px;
}

.service-category {
    background: #000;
    padding: 56px 46px;
    transition: all 0.35s ease;
    border-left: 3px solid transparent;
}

.service-category:hover {
    background: rgba(255,255,255,0.02);
    border-left-color: rgba(255,255,255,0.35);
}

.service-category h3 {
    font-size: 1.48rem;
    font-weight: 500;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.92);
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    padding-left: 26px;
    position: relative;
    margin-bottom: 13px;
}

.service-category li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.32);
}

/* ===================================
   INFO BLOCKS
   =================================== */
.info-block {
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 68px;
    margin-bottom: 45px;
}

.info-block h2 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 34px;
    color: #fff;
}

.info-block p {
    font-size: 1.08rem;
    line-height: 1.82;
    color: rgba(255,255,255,0.65);
    margin-bottom: 22px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 140px 80px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headshot {
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease;
}

.headshot:hover {
    transform: translateY(-5px);
}

.headshot-caption {
    text-align: center;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.headshot-caption h3 {
    font-size: 1.18rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.headshot-caption p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.02em;
}

.about-text {
    flex: 1;
    max-width: 640px;
}

.about-text h2 {
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 34px;
    letter-spacing: -0.015em;
}

.about-text p {
    font-size: 1.08rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

.credentials {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credentials h3 {
    font-size: 1.14rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.98rem;
    line-height: 1.95;
    position: relative;
    padding-left: 22px;
}

.credentials li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.32);
}

/* ===================================
   CONSULTATION FORM
   =================================== */
.consultation-section {
    padding: 120px 80px;
    background: rgba(255,255,255,0.012);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.consultation-form {
    max-width: 740px;
    margin: 0 auto;
    background: rgba(255,255,255,0.022);
    padding: 68px;
    border: 1px solid rgba(255,255,255,0.09);
}

.consultation-form h2 {
    font-size: 1.95rem;
    font-weight: 300;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: #fff;
}

.form-intro {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 44px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 11px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.45);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 19px;
    background: rgba(255,255,255,0.96);
    color: #000;
    border: 1px solid rgba(255,255,255,0.96);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s;
    letter-spacing: 0.02em;
}

.form-submit:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.15);
}

.form-note {
    margin-top: 22px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.65;
}

.form-success {
    display: none;
    padding: 22px;
    background: rgba(0,255,0,0.08);
    border: 1px solid rgba(0,255,0,0.25);
    color: rgba(0,255,0,0.9);
    margin-bottom: 22px;
    text-align: center;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-section {
    padding: 120px 80px;
    text-align: center;
    background: rgba(255,255,255,0.012);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    margin-bottom: 34px;
    color: #fff;
}

.cta-section p {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 44px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-section .hero-cta {
    justify-content: center;
}

/* ===================================
   FOOTER - Balanced & Premium
   =================================== */
.footer {
    position: relative;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.88) 100%),
        url('IMAGES/Miaminight.webp') center 30%/cover no-repeat;
    color: rgba(255, 255, 255, 0.92);
    padding: 90px 80px 70px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.footer-overlay {
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: 0.06em;
}

.footer-col h4 {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    line-height: 2.1;
    display: block;
    font-size: 0.97rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

/* ===================================
   MODALS
   =================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    backdrop-filter: blur(25px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 90px 45px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(0,0,0,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 88px;
    max-width: 960px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    color: rgba(255,255,255,0.72);
    box-shadow: 0 0 70px rgba(0,0,0,0.85);
}

.modal-close {
    position: absolute;
    top: 34px;
    right: 38px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.62);
    font-size: 2.1rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h2 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    font-size: 2.2rem;
}

.modal-content h3 {
    color: rgba(255,255,255,0.92);
    margin-top: 44px;
    margin-bottom: 18px;
    font-size: 1.28rem;
    font-weight: 500;
}

.modal-content p {
    line-height: 1.82;
    font-size: 1.02rem;
    margin-bottom: 22px;
}

.modal-content a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.22);
    transition: all 0.3s ease;
}

.modal-content a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
    nav {
        padding: 18px 50px;
    }
    
    .hero-content {
        padding: 160px 50px 90px;
    }
    
    .content-section,
    .practices,
    .about-section,
    .consultation-section,
    .cta-section {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .practices-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .about-container {
        gap: 70px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (Premium & Clean)
   =================================== */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }
    
    /* Navigation - Compact & Clean */
    nav {
        padding: 16px 24px;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    
    .logo {
        font-size: 1.05rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    /* Hide contact info on mobile for cleaner nav */
    .contact-info {
        display: none;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 20px;
        font-size: 0.82rem;
    }
    
    /* HERO - CONSISTENT SPACING ACROSS ALL PAGES */
    .hero {
        min-height: 100vh;
    }
    
    .hero-home {
        min-height: 100vh;
    }
    
    /* All practice page heroes - same background behavior */
    .hero-dental,
    .hero-estate,
    .hero-business,
    .hero-talent {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }
    
    /* Fix Business & Real Estate background on mobile */
    .hero-business {
        background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%),
                    url('IMAGES/miamiskyline.webp') center center/cover no-repeat scroll !important;
    }
    
    /* HERO CONTENT - UNIFORM ACROSS ALL PAGES */
    .hero-content {
        text-align: center;
        padding: 140px 24px 70px !important;
    }
    
    .hero-label,
    .practice-number {
        font-size: 0.65rem;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 90%;
        margin-bottom: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 15px 36px;
    }
    
    /* Content sections - Uniform spacing */
    .content-section {
        padding: 60px 24px;
    }
    
    .practices {
        padding: 70px 24px;
    }
    
    .about-section,
    .consultation-section,
    .cta-section {
        padding: 70px 24px;
    }
    
    .section-intro,
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .practice-card {
        padding: 40px 24px;
    }
    
    .service-category {
        padding: 40px 24px;
    }
    
    .info-block {
        padding: 40px 24px;
    }
    
    /* About section - Centered */
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .about-image {
        flex: none;
        max-width: 340px;
        width: 100%;
    }
    
    .about-text {
        max-width: 100%;
        text-align: center;
    }
    
    .credentials {
        text-align: left;
    }
    
    /* Form - Mobile optimized */
    .consultation-form {
        padding: 40px 24px;
    }
    
    /* Footer - Compact & Premium */
    .footer {
        padding: 60px 24px 50px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.90) 100%),
                    url('IMAGES/Miaminight.webp') center center/cover no-repeat scroll;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .footer-col h4 {
        margin-bottom: 16px;
        font-size: 0.82rem;
    }
    
    .footer-col p,
    .footer-col a {
        line-height: 1.9;
        font-size: 0.92rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding-top: 32px;
    }
    
    /* Modals - Mobile friendly */
    .modal-overlay {
        padding: 20px;
    }
    
    .modal-content {
        padding: 40px 24px;
        border-radius: 8px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        font-size: 1.8rem;
    }
}

/* ===================================
   EXTRA SMALL DEVICES (< 480px)
   =================================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 14px 32px;
    }
    
    .nav-links {
        gap: 12px 16px;
        font-size: 0.78rem;
    }
}

/* ===================================
   GLOBAL SMOOTHNESS & POLISH
   =================================== */
html {
    scroll-behavior: smooth;
}

a, .btn, .logo, .practice-card, .headshot {
    transition: all 0.3s ease;
}

:root {
    --shadow-soft: 0 6px 20px rgba(0,0,0,0.25);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.4);

}