/* === Layout: container, bands, hero === */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.container--fees {
    max-width: var(--container-fees);
}

.container--form {
    max-width: var(--container-form);
}

.section {
    padding-block: var(--section-y);
}

.section--stone {
    background: var(--stone);
}

.section--surface {
    background: var(--surface);
}

.section--muted {
    background: var(--surface-muted);
}

.section--pine {
    background: var(--pine-deep);
    color: var(--text-on-dark);
}

.eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-line);
}

.section--pine .eyebrow {
    color: rgba(242, 243, 241, 0.72);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.section--pine .section-title {
    color: var(--text-on-dark);
}

.section-lead {
    margin-top: 0.75rem;
    max-width: 38rem;
    color: var(--text-secondary);
}

.section--pine .section-lead {
    color: rgba(242, 243, 241, 0.82);
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    body {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
}

/* Sponsored */
.sponsored-bar {
    position: relative;
    z-index: 40;
    background: var(--sponsored-bg);
    color: var(--sponsored-text);
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: center;
    padding: 0.4rem var(--pad);
}

/* Hero full-bleed */
.practice-hero {
    position: relative;
    min-height: clamp(520px, 72vh, 680px);
    display: flex;
    align-items: flex-end;
    color: var(--text-on-dark);
    background-color: var(--pine-deep);
    overflow: hidden;
}

.practice-hero__media {
    position: absolute;
    inset: 0;
}

.practice-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.practice-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(22, 24, 26, 0.22) 0%,
        rgba(22, 24, 26, 0.18) 38%,
        rgba(27, 42, 34, 0.78) 78%,
        rgba(27, 42, 34, 0.9) 100%
    );
}

.practice-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding: 2rem var(--pad) 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.practice-hero__eyebrow {
    margin-bottom: 0;
    color: rgba(242, 243, 241, 0.78);
    letter-spacing: 0.12em;
}

.practice-hero__brand {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin: 0;
}

.practice-hero__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    max-width: 22rem;
    margin: 0.15rem 0 0;
    text-wrap: balance;
}

.practice-hero__sub {
    max-width: 28rem;
    margin: 0;
    color: rgba(242, 243, 241, 0.9);
    font-size: 1rem;
    line-height: 1.55;
    text-wrap: pretty;
}

.practice-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.55rem;
}

.practice-hero__eyebrow,
.practice-hero__brand,
.practice-hero__title,
.practice-hero__sub,
.practice-hero__actions {
    opacity: 0;
    transform: translateY(10px);
}

.practice-hero.is-ready .practice-hero__eyebrow,
.practice-hero.is-ready .practice-hero__brand,
.practice-hero.is-ready .practice-hero__title,
.practice-hero.is-ready .practice-hero__sub,
.practice-hero.is-ready .practice-hero__actions {
    animation: hero-fade-up 0.65s ease forwards;
}

.practice-hero.is-ready .practice-hero__brand {
    animation-delay: 0.08s;
}

.practice-hero.is-ready .practice-hero__title {
    animation-delay: 0.16s;
}

.practice-hero.is-ready .practice-hero__sub {
    animation-delay: 0.24s;
}

.practice-hero.is-ready .practice-hero__actions {
    animation-delay: 0.32s;
}

@keyframes hero-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .practice-hero {
        min-height: clamp(560px, 74vh, 720px);
    }

    .practice-hero__content {
        padding: 2.5rem var(--pad) 2.75rem;
        gap: 0.65rem;
    }

    .practice-hero__title {
        font-size: 1.85rem;
        max-width: 26rem;
    }

    .practice-hero__sub {
        max-width: 32rem;
        font-size: 1.0625rem;
        line-height: 1.6;
    }
}

@media (min-width: 1024px) {
    .practice-hero {
        min-height: clamp(600px, 78vh, 780px);
    }

    .practice-hero__brand {
        font-size: 2.875rem;
        letter-spacing: 0.02em;
    }

    .practice-hero__title {
        font-size: 2.2rem;
        line-height: 1.2;
        max-width: 30rem;
    }

    .practice-hero__content {
        padding-bottom: 3.25rem;
    }
}

/* Intro strip */
.intro-strip {
    padding-block: 2.5rem;
    background: var(--surface);
}

.intro-strip__inner {
    border-left: 3px solid var(--cta);
    padding-left: 1.25rem;
}

.intro-strip__text {
    max-width: 40rem;
    color: var(--text);
}

.intro-strip__meta {
    margin-top: 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Health note */
.health-note {
    padding-block: 2rem;
    background: var(--highlight-soft);
}

.health-note__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 48rem;
}

/* Contact snippet */
.contact-snippet {
    padding-block: var(--section-y);
    background: var(--surface);
}

.contact-snippet__list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.contact-snippet__item {
    display: grid;
    gap: 0.35rem;
}

.contact-snippet__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-line);
}

.contact-snippet__value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
}

.contact-snippet__value:hover {
    color: var(--cta);
}

.contact-snippet__row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.contact-snippet__row img {
    width: 20px;
    height: 20px;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .contact-snippet__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .contact-snippet__value {
        font-size: 1.375rem;
    }
}
