/* ================================================
   MEIR ZRIHEN, ADV. — LAW FIRM WEBSITE
   ================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
    /* Colors */
    --navy:         #0F1B2D;
    --navy-deep:    #060D18;
    --navy-light:   #162236;
    --navy-mid:     #1B3A5C;
    --gold:         #C9A84C;
    --gold-hover:   #B89A40;
    --gold-glow:    rgba(201, 168, 76, 0.25);
    --cream:        #F8F6F2;
    --white:        #FFFFFF;
    --text-light:   #E8E8E8;
    --text-muted:   #B0B8C4;
    --text-subtle:  #8B95A5;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-dark:  rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py:   100px;
    --container-max: 1200px;
    --container-px:  24px;

    /* Transitions */
    --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast:       200ms;
    --t-medium:     400ms;
    --t-slow:       600ms;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md:    0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg:    0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold:  0 4px 20px rgba(201, 168, 76, 0.3);

    /* Radius */
    --radius:       8px;
    --radius-sm:    4px;
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--gold-hover);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.gold { color: var(--gold); }


/* ── SECTION LABELS & HEADINGS ── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-heading--light {
    color: var(--white);
}


/* ── SCROLL ANIMATIONS ── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero__accent-line,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__trust,
    .hero__scroll-indicator,
    .hero__scroll-line {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
    color: var(--navy);
}


/* ── FOCUS STYLES ── */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    box-shadow: var(--shadow-gold);
}

.contact__form input:focus-visible,
.contact__form select:focus-visible,
.contact__form textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}


/* ── FORM ERROR MESSAGE ── */
.contact__form-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f0a0a8;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}


/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    transition: background-color var(--t-medium) var(--ease-out),
                box-shadow var(--t-medium) var(--ease-out),
                height var(--t-medium) var(--ease-out);
}

.navbar.scrolled {
    background-color: rgba(15, 27, 45, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-light);
    height: 68px;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-decoration: none;
    z-index: 1001;
}

.navbar__logo:hover { color: var(--white); }

.navbar__logo-icon {
    font-size: 26px;
    color: var(--gold);
    line-height: 1;
}

.navbar__logo-svg {
    display: block;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.navbar__logo:hover .navbar__logo-svg { opacity: 0.85; }

.navbar__logo-elegant {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.navbar__logo-vbar {
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    flex-shrink: 0;
}

.navbar__logo-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: #8899aa;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.6;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color var(--t-fast) var(--ease-out);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--t-fast) var(--ease-out), left var(--t-fast) var(--ease-out);
}

.navbar__link:hover {
    color: var(--white);
}

.navbar__link:hover::after {
    width: 100%;
    left: 0;
}

.navbar__link--cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background var(--t-fast) var(--ease-out),
                transform var(--t-fast) var(--ease-out),
                box-shadow var(--t-fast) var(--ease-out);
}

.navbar__link--cta::after { display: none; }

.navbar__link--cta:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(27, 58, 92, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    z-index: 1;
}

/* Subtle geometric pattern */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(201, 168, 76, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 168, 76, 0.04);
    border-radius: 50%;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 750px;
}

.hero__accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 32px;
    animation: lineGrow 0.8s var(--ease-out) 0.3s both;
}

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to   { width: 60px; opacity: 1; }
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-subtle);
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero__trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s both;
}

.hero__scroll-indicator span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-subtle);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(1.1); }
}

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


/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all var(--t-fast) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
}

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

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}


/* ================================================
   STATS BAR
   ================================================ */
.stats {
    background: var(--navy-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 48px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stats__item {
    position: relative;
}

.stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-light);
}

.stats__prefix,
.stats__number {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}

.stats__plus {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--gold);
    font-weight: 700;
}

.stats__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}


/* ================================================
   ABOUT
   ================================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about .section-heading {
    color: var(--navy);
}

.about .section-label {
    color: #8B7530;
}

.about .section-label::before {
    background: #8B7530;
}

.about p {
    color: #5B6370;
    margin-bottom: 16px;
}

.about__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--navy) !important;
    font-weight: 400;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 15%;
    border-radius: var(--radius);
    display: block;
    filter: contrast(1.05) brightness(0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about__image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.3;
}

.about__credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}


/* ================================================
   PRACTICE AREAS
   ================================================ */
.practice {
    padding: var(--section-py) 0;
    background: var(--navy);
}

.practice__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.practice__header .section-label {
    padding-left: 0;
}

.practice__header .section-label::before {
    display: none;
}

.practice__intro {
    font-size: 17px;
    color: var(--text-muted);
}

.practice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.practice__card {
    background: var(--navy-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: transform var(--t-fast) var(--ease-out),
                border-color var(--t-fast) var(--ease-out),
                box-shadow var(--t-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.practice__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-medium) var(--ease-out);
}

.practice__card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.practice__card:hover::before {
    transform: scaleX(1);
}

.practice__icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: var(--radius);
}

.practice__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.practice__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}


/* ================================================
   FAQ
   ================================================ */
.faq {
    padding: var(--section-py) 0;
    background: var(--navy);
}

.faq__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.faq__header .section-label {
    padding-left: 0;
}

.faq__header .section-label::before {
    display: none;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border-light);
}

.faq__item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    transition: color var(--t-fast) var(--ease-out);
}

.faq__question:hover {
    color: var(--gold);
}

.faq__chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--t-fast) var(--ease-out);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-medium) var(--ease-out);
}

.faq__answer p {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}


/* ================================================
   CONTACT
   ================================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact .section-heading {
    color: var(--navy);
}

.contact .section-label {
    color: #8B7530;
}

.contact .section-label::before {
    background: #8B7530;
}

.contact__lead {
    font-size: 17px;
    color: #5B6370;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.6;
}

.contact__detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail a {
    color: var(--navy);
    transition: color var(--t-fast) var(--ease-out);
}

.contact__detail a:hover {
    color: var(--gold);
}

.contact__phone {
    font-family: var(--font-heading);
    font-size: 22px !important;
    font-weight: 700;
    color: var(--navy) !important;
}

.contact__phone-secondary {
    font-size: 15px;
    color: var(--navy);
}

.contact__address-link {
    color: var(--navy);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-out);
}

.contact__address-link:hover {
    color: var(--gold);
}

.contact__privacy-link {
    color: var(--text-muted);
    text-decoration: underline;
}

/* Form */
.contact__form-wrapper {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form-group {
    margin-bottom: 20px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--t-fast) var(--ease-out),
                background var(--t-fast) var(--ease-out);
    outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: var(--text-subtle);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.contact__form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact__form select option {
    background: var(--navy);
    color: var(--white);
}

.contact__form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form .btn {
    margin-top: 8px;
    font-size: 16px;
    padding: 18px 32px;
}

.contact__privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-subtle);
}

.contact__privacy svg {
    flex-shrink: 0;
}


/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--navy-deep);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.footer__logo {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer__logo .navbar__logo-elegant {
    align-items: center;
}

.footer__tagline {
    font-size: 14px;
    color: var(--text-subtle);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__col a,
.footer__col span {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-out);
}

.footer__col a:hover {
    color: var(--white);
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--text-subtle);
}

.footer__disclaimer {
    max-width: 600px;
    font-size: 12px !important;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer__privacy-link {
    color: var(--text-muted);
    text-decoration: underline;
    margin-left: 8px;
}

.footer__privacy-link:hover {
    color: var(--gold);
}


/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform var(--t-fast) var(--ease-out),
                box-shadow var(--t-fast) var(--ease-out);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}


/* ================================================
   MOBILE STICKY CTA
   ================================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    border-top: 1px solid var(--border-light);
    padding: 12px 16px;
    gap: 12px;
    transform: translateY(100%);
    transition: transform var(--t-medium) var(--ease-out);
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px;
    min-height: 44px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-cta__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 14px;
    min-height: 44px;
    background: #25D366;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-cta__consult {
    flex: 1;
    padding: 14px;
    min-height: 44px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}


/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .practice__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid {
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    /* Nav */
    .navbar__hamburger {
        display: flex;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--t-medium) var(--ease-out),
                    visibility var(--t-medium) var(--ease-out);
    }

    .navbar__links.open {
        opacity: 1;
        visibility: visible;
    }

    .navbar__link {
        font-size: 20px;
        color: var(--white);
    }

    .navbar__link--cta {
        font-size: 16px;
        padding: 14px 32px;
    }

    /* Hero */
    .hero__content {
        padding: 140px 0 120px;
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* Stats */
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats__item:nth-child(2)::after {
        display: none;
    }

    .stats__item::after {
        display: none;
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-col {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Practice */
    .practice__grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__form-wrapper {
        padding: 32px 24px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
    }

    /* Mobile CTA */
    .mobile-cta {
        display: flex;
    }

    /* Hide WhatsApp float on mobile (sticky bar has it) */
    .whatsapp-float {
        display: none;
    }

    /* Extra bottom padding for sticky bar */
    .footer {
        padding-bottom: 80px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero__trust-dot {
        display: none;
    }
}


/* ================================================
   FORM SUCCESS STATE
   ================================================ */
.contact__form--success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.contact__form--success .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact__form--success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}

.contact__form--success p {
    color: var(--text-muted);
    font-size: 15px;
}