*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --black: #0C0C0A;
    --dark: #141412;
    --dark2: #1C1C19;
    --white: #FFFFFF;
    --cream: #F5F2EE;
    --gold: #C4964A;
    --gold2: #D4AA6A;
    --muted: #8A8880;
    --border: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--cream);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    transition: all .4s ease;
}

#navbar.solid {
    background: rgba(12, 12, 10, 0.96);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none
}

.nav-logo img {
    height: 38px
}

.nav-logo-txt {
    display: flex;
    flex-direction: column
}

.nav-logo-txt strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: .04em
}

.nav-logo-txt span {
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold)
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 44px
}

.nav-menu a {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .25s;
    font-weight: 400
}

.nav-menu a:hover {
    color: var(--white)
}

.nav-btn {
    padding: 11px 28px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .45);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: all .25s;
    white-space: nowrap;
}

.nav-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white)
}

#navbar.solid .nav-btn {
    border-color: rgba(255, 255, 255, .6)
}

#navbar.solid .nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white)
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 8, .35) 0%,
            rgba(10, 10, 8, .2) 30%,
            rgba(10, 10, 8, .55) 70%,
            rgba(10, 10, 8, .92) 100%);
}

/* Fallback image if video fails */
.hero-video-wrap {
    background: #0A0A08 url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80') center/cover no-repeat
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    max-width: 720px
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-tag::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold)
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6.5vw, 88px);
    font-weight: 400;
    line-height: 1.03;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 28px;
}

.hero-h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, .75)
}

.hero-body {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    max-width: 520px;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-white {
    padding: 16px 38px;
    background: var(--white);
    color: var(--black);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s;
    display: inline-block;
}

.btn-white:hover {
    background: var(--gold);
    color: var(--white)
}

.btn-outline {
    padding: 15px 38px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: var(--white);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: all .25s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08)
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, .15);
    padding-left: 48px;
    min-width: 220px;
}

.hero-stat {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.hero-stat:last-child {
    border-bottom: none
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.hero-stat-num sup {
    font-size: 18px;
    color: var(--gold)
}

.hero-stat-label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 5px
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: .4;
        transform: scaleY(.8)
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

/* ── PRACTICE AREAS ── */
.section-white {
    background: var(--white);
    padding: 120px 60px
}

.section-cream {
    background: var(--cream);
    padding: 120px 60px
}

.section-dark {
    background: var(--dark);
    padding: 120px 60px
}

.section-black {
    background: var(--black);
    padding: 120px 60px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0
}

.section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 64px;
}

.section-h2.light {
    color: var(--white)
}

.section-h2.dark {
    color: var(--black)
}

.section-h2 em {
    font-style: italic;
    color: var(--gold2)
}

/* Practice grid */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #E8E4DE
}

.practice-card {
    background: var(--white);
    padding: 48px 40px 44px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
    cursor: default;
}

.practice-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.practice-card:hover {
    background: #FAF8F5
}

.practice-card:hover::before {
    transform: scaleX(1)
}

.pc-roman {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: #C8C4BC;
    letter-spacing: .1em;
    margin-bottom: 32px;
    display: block;
}

.pc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
}

.pc-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300
}

.pc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 28px;
    transition: gap .25s;
    text-decoration: none;
}

.practice-card:hover .pc-arrow {
    gap: 14px
}

/* More practice — tag row */
.practice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid #E8E4DE;
    margin-top: 1px;
    background: #E8E4DE;
}

.practice-tag-item {
    flex: 1 1 calc(33.333% - 1px);
    background: var(--white);
    padding: 24px 40px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .25s, background .25s;
    cursor: default;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.practice-tag-item::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    opacity: .4;
    transition: opacity .25s
}

.practice-tag-item:hover {
    color: var(--gold);
    background: #FAF8F5
}

.practice-tag-item:hover::before {
    opacity: 1
}

/* ── CASE RESULTS ── */
.results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 40px;
    flex-wrap: wrap
}

.results-intro {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 400px;
    font-weight: 300
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.result-card {
    
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

.result-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: grayscale(.3);
    transition: filter .4s
}

.result-card:hover .result-img {
    filter: grayscale(0)
}

.result-body {
    padding: 32px 28px
}

.result-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1;
}

.result-type {
    font-size: 9px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.result-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center
}

.about-img-col {
    position: relative
}

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    filter: grayscale(.1);
}

.about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--white);
    filter: grayscale(.1);
}

.about-text-col {}

.about-body {
    font-size: 15px;
    color: #4A4840;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 24px
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 4px;
}

.about-title-label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted)
}

.about-cta {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 36px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: background .25s;
}

.about-cta:hover {
    background: var(--gold)
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--border)
}

.why-col-img {
    position: relative;
    overflow: hidden
}

.why-col-img img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: brightness(.7) grayscale(.2)
}

.why-col-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(12, 12, 10, .6))
}

.why-col-content {
    background: var(--dark2);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px
}

.why-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    align-items: start;
}

.why-item:first-child {
    border-top: 1px solid var(--border)
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--gold);
    padding-top: 2px;
}

.why-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: .01em
}

.why-body {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    font-weight: 300
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start
}

.contact-left .section-h2 {
    margin-bottom: 40px
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px
}

.contact-row {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.contact-row-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid #E0DCD5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-row-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    stroke-width: 1.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.contact-row-label {
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px
}

.contact-row-val {
    font-size: 15px;
    color: var(--black)
}

.contact-row-val a {
    color: var(--black);
    text-decoration: none;
    transition: color .25s
}

.contact-row-val a:hover {
    color: var(--gold)
}

.contact-row-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
    font-weight: 300
}

.urgent-bar {
    background: var(--black);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55);
}

.urgent-bar strong {
    color: var(--gold);
    font-weight: 500
}

.urgent-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 1.6s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.form-group {
    margin-bottom: 16px
}

.form-label {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 8px
}

.form-input {
    width: 100%;
    background: #F8F6F3;
    border: 1px solid #E8E4DE;
    color: var(--black);
    padding: 15px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    outline: none;
    transition: border-color .25s;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--gold);
    background: var(--white)
}

.form-input::placeholder {
    color: #B8B4AC
}

select.form-input option {
    background: var(--white)
}

textarea.form-input {
    resize: vertical;
    min-height: 120px
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background .25s;
    margin-top: 6px;
}

.form-submit:hover {
    background: var(--gold)
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    padding: 56px 60px 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    gap: 40px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: .02em;
}

.footer-brand span {
    color: var(--gold)
}

.footer-logo-center {
    display: flex;
    justify-content: center
}

.footer-logo-center img {
    height: 52px;
    filter: brightness(1.1)
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 36px
}

.footer-links a {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .25s
}

.footer-links a:hover {
    color: var(--white)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .06em
}

.footer-lpc {
    font-size: 10px;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .25)
}

.footer-lpc span {
    color: var(--gold)
}

/* ── SCROLL REVEAL ── */
.sr {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

.sr.in {
    opacity: 1;
    transform: none
}

.sr-l {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

.sr-l.in {
    opacity: 1;
    transform: none
}

.sr-r {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1)
}

.sr-r.in {
    opacity: 1;
    transform: none
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    padding: 10px;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .25s;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--white);
    transition: all .3s;
    transform-origin: center
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(12, 12, 10, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-drawer.open {
    display: flex
}

.nav-drawer a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    padding: 16px 0;
    width: 280px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: color .25s;
}

.nav-drawer a:first-child {
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.nav-drawer a:hover {
    color: var(--gold)
}

.nav-drawer .d-cta {
    margin-top: 36px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .35) !important;
    padding: 14px 44px;
    color: var(--white) !important;
    transition: background .25s, border-color .25s;
}

.nav-drawer .d-cta:hover {
    background: var(--gold);
    border-color: var(--gold) !important
}

@media(max-width:1024px) {

    html,
    body {
        overflow-x: hidden
    }

    #navbar,
    #navbar.solid {
        padding: 20px 24px
    }

    .nav-menu a:not(.nav-btn) {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

    .hero-content {
        padding: 0 24px 64px;
        flex-direction: column;
        align-items: flex-start
    }

    .hero-left {
        width: 100%;
        max-width: 100%
    }

    .hero-right {
        display: none
    }

    .hero-scroll {
        display: none
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px
    }

    .btn-white,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 15px;
        display: block;
        box-sizing: border-box
    }

    .section-white,
    .section-cream,
    .section-dark,
    .section-black {
        padding: 72px 24px
    }

    .practice-grid {
        grid-template-columns: 1fr 1fr
    }

    .practice-tag-item {
        white-space: normal
    }

    .results-grid {
        grid-template-columns: 1fr
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .about-img-accent {
        display: none
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .why-col-img {
        display: none
    }

    .why-col-content {
        padding: 72px 24px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    footer {
        padding: 48px 24px 28px
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-logo-center {
        display: none
    }

    .footer-links {
        justify-content: flex-start
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }
}

@media(max-width:600px) {
    .hero-h1 {
        font-size: clamp(34px, 9vw, 46px)
    }

    .nav-logo-txt {
        display: none
    }

    .practice-grid {
        grid-template-columns: 1fr
    }

    .practice-tag-item {
        flex: 1 1 100%;
        padding: 18px 24px
    }

    .practice-card {
        padding: 36px 24px
    }

    .section-white,
    .section-cream,
    .section-dark,
    .section-black {
        padding: 60px 20px
    }

    .hero-content {
        padding: 0 20px 52px
    }
}