/* =========================================================
   DU TOIT ASSOCIATES
   CLEAN MASTER STYLESHEET
========================================================= */

/* =========================
   1. ROOT
========================= */
:root {
    --dt-blue: #0a3793;
    --dt-blue-dark: #072d78;
    --dt-white: #ffffff;
    --dt-black: #111111;
    --dt-text: #222222;
    --dt-text-soft: #707070;
    --dt-light: #f2f2f2;
    --dt-light-2: #efefef;
    --dt-footer: #1d1d1f;
    --dt-footer-bottom: #0f0f11;
    --dt-border-dark: rgba(255, 255, 255, 0.05);
    --dt-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    --dt-transition: all 0.3s ease;
    --dt-container: 1280px;
}

/* =========================
   2. RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dt-text);
    background: var(--dt-light);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--dt-transition);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: calc(var(--dt-container) + 30px);
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================
   3. GLOBAL SECTION HEADINGS
========================= */
.section-heading {
    margin-bottom: 65px;
}

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

.section-heading--welcome {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading__title {
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1f1f1f;
}

.section-heading__title span {
    color: var(--dt-blue);
}

.section-heading__title--small {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.section-heading__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--dt-blue);
    color: var(--dt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.section-heading__line {
    width: 210px;
    height: 2px;
    background: var(--dt-blue);
    margin: 25px auto 28px;
}

.section-heading__text {
    max-width: 980px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dt-text-soft);
}

/* =========================
   4. NORMAL HEADER
========================= */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--dt-white);
}

.site-header__top {
    background: #f3f3f3;
}

.site-header__top-inner {
    min-height: 122px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__branding {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 240px;
}

.site-header__contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header__contact-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--dt-blue);
    color: var(--dt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.site-header__contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-header__phone {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #202020;
}

.site-header__email {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    color: #777777;
}

.main-nav {
    background: var(--dt-blue);
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: 48px;
}

.main-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--dt-white);
}

.main-nav__item.current-menu-item .main-nav__link,
.main-nav__link:hover {
    opacity: 0.9;
}

/* =========================
   5. STICKY HEADER
========================= */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    z-index: 1200;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.sticky-header.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.sticky-header__branding {
    flex: 0 0 auto;
}

.sticky-logo img {
    width: 95px;
}

.sticky-nav {
    flex: 1 1 auto;
}

.sticky-nav__list {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sticky-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.sticky-nav__item:not(:last-child)::after {
    content: "★";
    color: var(--dt-blue);
    font-size: 10px;
    margin-left: 18px;
    line-height: 1;
}

.sticky-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.sticky-nav__item.current-menu-item .sticky-nav__link::after,
.sticky-nav__link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--dt-blue);
}

/* =========================
   6. HERO SLIDER
========================= */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider__track {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 755px;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-slide--active {
    display: flex;
}

.hero-slide__overlay,
.hero-slide__overlay--light,
.hero-slide__overlay--blue {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4) !important;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 80px 20px;
}

.hero-slide__eyebrow {
    font-family: "Great Vibes", cursive;
    font-size: 44px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-slide__title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #ffffff;
    text-transform: none;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.hero-slide__divider {
    width: 520px;
    max-width: 100%;
    height: 2px;
    background: var(--dt-blue);
    margin: 28px auto 22px;
}

.hero-slide__subtitle {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-slide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 56px;
    padding: 0 28px;
    margin-top: 28px;
    background: var(--dt-blue);
    color: var(--dt-white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--dt-shadow);
}

.hero-slide__button:hover {
    background: var(--dt-blue-dark);
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 62px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--dt-white);
    font-size: 40px;
    line-height: 1;
    z-index: 5;
}

.hero-slider__arrow--prev {
    left: 0;
}

.hero-slider__arrow--next {
    right: 0;
}

.hero-slider__arrow:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* =========================
   7. INTRO STRIP
========================= */
.intro-strip {
    background: var(--dt-blue);
    padding: 42px 0 46px;
}

.intro-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.intro-strip__item {
    padding: 0 42px;
    color: var(--dt-white);
    border-left: 1px solid rgba(255, 255, 255, 0.65);
}

.intro-strip__item:first-child {
    border-left: 0;
}

.intro-strip__title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.intro-strip__text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* =========================
   8. WELCOME SECTION
========================= */
.welcome-section {
    padding: 50px 0 35px;
    background: var(--dt-light);
}

.welcome-section__grid {
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.welcome-section__media {
    position: relative;
    background: none !important;
    padding: 0 !important;
}

.welcome-section__media-stack {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    background: none !important;
    padding: 0 !important;
    position: relative !important;
    max-width: 520px;
}

.welcome-section__media-stack img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    box-shadow: none !important;
}

.welcome-section__content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--dt-text-soft);
    margin-bottom: 22px;
}

.welcome-section__signature {
    margin-top: 24px;
    font-family: "Great Vibes", cursive;
    font-size: 54px;
    line-height: 1;
    color: var(--dt-blue);
}

/* =========================
   9. PRACTICE AREAS
========================= */
.practice-areas-home {
    padding: 55px 0 70px;
    background: var(--dt-light);
}

.practice-areas-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.practice-card__link {
    display: block;
}

.practice-card__image-wrap {
    position: relative;
}

.practice-card__image-wrap img {
    width: 100%;
    height: 255px;
    object-fit: cover;
}

.practice-card__icon {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--dt-blue);
    color: var(--dt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 2;
}

.practice-card__content {
    background: var(--dt-blue);
    text-align: center;
    padding: 24px 18px 22px;
}

.practice-card__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dt-white);
    margin-bottom: 6px;
}

.practice-card__script {
    font-family: "Great Vibes", cursive;
    font-size: 24px;
    line-height: 1.2;
    color: var(--dt-white);
}

/* =========================
   10. CTA STRIP
========================= */
.cta-strip {
    background: var(--dt-light);
}

.cta-strip__bar {
    height: 52px;
    background: var(--dt-blue);
}

.cta-strip__inner {
    position: relative;
    background: #f4f4f4;
    min-height: 146px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 110px;
}

.cta-strip__text {
    font-size: 20px;
    line-height: 1.4;
    color: var(--dt-text-soft);
}

.cta-strip__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 166px;
    min-height: 50px;
    padding: 0 24px;
    background: #231f20;
    color: var(--dt-white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-strip__button:hover {
    opacity: 0.92;
}

/* =========================
   11. TEAM PREVIEW
========================= */
.team-preview {
    padding: 92px 0 70px;
    background: var(--dt-light);
}

.team-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.team-card__link {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    text-align: inherit;
    cursor: pointer;
}

.team-card__photo {
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 385px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card__link:hover .team-card__photo img {
    transform: scale(1.02);
}

.team-card__info {
    background: var(--dt-blue);
    text-align: center;
    padding: 18px 18px 20px;
    margin: -12px auto 0;
    width: calc(100% - 28px);
    position: relative;
    z-index: 2;
}

.team-card__name {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dt-white);
    margin-bottom: 8px;
}

.team-card__role {
    font-family: "Great Vibes", cursive;
    font-size: 24px;
    line-height: 1.35;
    color: var(--dt-white);
}

/* =========================
   12. AUTHORITY STATEMENT
========================= */
.authority-statement {
    padding: 78px 0 58px;
    background: var(--dt-light);
}

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

.authority-statement__line {
    width: 180px;
    height: 2px;
    background: var(--dt-blue);
    margin: 0 auto 32px;
}

.authority-statement__title {
    max-width: 1300px;
    margin: 0 auto 28px;
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
}

.authority-statement__title span {
    color: var(--dt-blue);
}

.authority-statement__text {
    max-width: 1360px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dt-text-soft);
}

/* =========================
   13. IMAGE STRIP
========================= */
.image-strip {
    background: var(--dt-light);
}

.image-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.image-strip__item img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}

/* =========================
   14. CONTACT PANEL
========================= */
.contact-panel {
    background: #706c6d;
    padding-bottom: 0;
}

.contact-panel__blue-bar {
    height: 84px;
    background: var(--dt-blue);
}

.contact-panel__inner {
    background: #f4f4f4;
    min-height: 148px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 110px;
}

.contact-panel__text {
    font-size: 20px;
    line-height: 1.5;
    color: var(--dt-text-soft);
}

.contact-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 52px;
    background: #231f20;
    color: var(--dt-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 24px;
}

.contact-panel__button:hover {
    opacity: 0.92;
}

/* =========================
   15. FOOTER
========================= */
.site-footer {
    position: relative;
    background: var(--dt-footer);
    color: var(--dt-white);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    overflow: hidden;
}

.site-footer__topline {
    height: 3px;
    background: var(--dt-blue);
}

.site-footer__main {
    background: var(--dt-footer);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr 1fr 1.05fr;
}

.site-footer__col {
    padding: 46px 42px 38px;
    border-left: 1px solid var(--dt-border-dark);
}

.site-footer__col:first-child {
    border-left: 0;
}

.site-footer__logo img {
    width: 320px;
    max-width: 100%;
    margin-bottom: 22px;
}

.site-footer__about {
    max-width: 310px;
    font-size: 17px;
    line-height: 1.75;
    color: #d8d8d8;
}

.site-footer__links li + li {
    margin-top: 14px;
}

.site-footer__links a {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dt-white);
}

.site-footer__heading {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: #d0d0d0;
    margin-bottom: 8px;
}

.site-footer__hours-group + .site-footer__hours-group {
    margin-top: 18px;
}

.site-footer__hours-day {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #d0d0d0;
}

.site-footer__hours-time {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--dt-white);
    margin-top: 4px;
}

.site-footer__address {
    font-size: 17px;
    line-height: 1.7;
    color: #d8d8d8;
    margin-bottom: 22px;
}

.site-footer__call-label {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #d0d0d0;
    margin-bottom: 6px;
}

.site-footer__phone a {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--dt-white);
}

.site-footer__bottom {
    background: var(--dt-footer-bottom);
    text-align: center;
    padding: 22px 20px 24px;
}

.site-footer__bottom p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #d1d1d1;
}

.site-footer__bottom a {
    color: #2d6dff;
}

.back-to-top {
    position: absolute;
    right: 22px;
    bottom: 96px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f8f8f8;
    color: var(--dt-blue);
    font-size: 22px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.28);
    z-index: 8;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

/* =========================
   16. TEAM POPUPS
========================= */
.team-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.team-popup.is-active {
    display: block;
}

.team-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.team-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 40px));
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    background: #f2f2f2;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.team-popup__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0a3793;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    z-index: 3;
}

.team-popup__inner {
    display: grid;
    grid-template-columns: 360px 1px 1fr;
    gap: 40px;
    padding: 40px 30px;
    align-items: start;
}

.team-popup__image img {
    width: 100%;
    display: block;
}

.team-popup__divider {
    width: 1px;
    min-height: 480px;
    background: #0a3793;
}

.team-popup__content {
    text-align: center;
    padding-top: 6px;
}

.team-popup__name {
    font-family: "Great Vibes", cursive;
    font-size: 58px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.team-popup__qualification {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #777777;
    margin-bottom: 14px;
}

.team-popup__role-line {
    width: 380px;
    max-width: 100%;
    height: 2px;
    background: #0a3793;
    margin: 0 auto 24px;
}

.team-popup__role {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
    color: #0a3793;
    margin-bottom: 28px;
}

.team-popup__bio {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
    color: #777777;
}

body.popup-open {
    overflow: hidden;
}

/* =========================
   17. RESPONSIVE
========================= */
@media (max-width: 1399.98px) {
    .hero-slide {
        min-height: 680px;
    }

    .hero-slide__title {
        font-size: 60px;
    }

    .authority-statement__title {
        font-size: 54px;
    }

    .welcome-section__grid {
        grid-template-columns: 470px minmax(0, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .main-nav__list {
        gap: 28px;
    }

    .hero-slide__title {
        font-size: 52px;
    }

    .welcome-section__grid,
    .practice-areas-home__grid,
    .team-preview__grid,
    .site-footer__grid,
    .intro-strip__grid {
        gap: 24px;
    }

    .practice-areas-home__grid,
    .team-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .authority-statement__title {
        font-size: 46px;
    }

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

    .welcome-section__grid {
        grid-template-columns: 1fr;
    }

    .welcome-section__media-stack {
        max-width: 520px;
        margin: 0 auto;
    }

    .team-popup__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-popup__divider {
        display: none;
    }

    .team-popup__content,
    .team-popup__bio {
        text-align: center;
    }

    .team-popup__name {
        font-size: 58px;
    }

    .team-popup__role {
        font-size: 44px;
    }

    .team-popup__bio {
        font-size: 21px;
    }
}

@media (max-width: 991.98px) {
    .site-header__top-inner {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .site-header__contact {
        justify-content: center;
    }

    .main-nav__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 24px;
        padding: 12px 0;
    }

    .main-nav__link {
        min-height: auto;
        padding: 8px 0;
    }

    .sticky-header {
        display: none;
    }

    .hero-slide {
        min-height: 580px;
    }

    .hero-slide__title {
        font-size: 44px;
    }

    .hero-slide__eyebrow {
        font-size: 34px;
    }

    .intro-strip__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .intro-strip__item,
    .site-footer__col {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .intro-strip__item:first-child,
    .site-footer__col:first-child {
        border-top: 0;
    }

    .cta-strip__inner,
    .contact-panel__inner {
        padding: 20px 32px;
    }

    .cta-strip__inner,
    .contact-panel__inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .authority-statement__title {
        font-size: 38px;
    }

    .section-heading__title {
        font-size: 46px;
    }
}

@media (max-width: 767.98px) {
    .site-logo img {
        width: 190px;
    }

    .site-header__contact-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .site-header__phone {
        font-size: 20px;
    }

    .site-header__email {
        font-size: 13px;
    }

    .hero-slide {
        min-height: 500px;
    }

    .hero-slide__title {
        font-size: 34px;
    }

    .hero-slide__subtitle {
        font-size: 18px;
    }

    .section-heading__title {
        font-size: 34px;
    }

    .section-heading__title--small {
        font-size: 28px;
    }

    .section-heading__text,
    .welcome-section__content p,
    .authority-statement__text,
    .intro-strip__text {
        font-size: 16px;
    }

    .practice-areas-home__grid,
    .team-preview__grid,
    .image-strip__grid {
        grid-template-columns: 1fr;
    }

    .team-card__photo img {
        height: auto;
    }

    .authority-statement__title {
        font-size: 31px;
    }

    .welcome-section__media-stack {
        min-height: auto;
        display: block;
        gap: 0;
    }

    .welcome-section__media-stack img {
        position: static;
        width: 100% !important;
    }

    .site-footer__phone a {
        font-size: 24px;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        font-size: 18px;
        right: 16px;
        bottom: 84px;
    }

    .team-popup__dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
        max-height: calc(100vh - 20px);
    }

    .team-popup__inner {
        padding: 50px 18px 24px;
    }

    .team-popup__name {
        font-size: 42px;
        line-height: 1.1;
    }

    .team-popup__qualification {
        font-size: 20px;
    }

    .team-popup__role {
        font-size: 32px;
    }

    .team-popup__bio {
        font-size: 18px;
    }

    .team-popup__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
/* =========================
   18. ABOUT PAGE
========================= */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/slides/slide-2.png') center center / cover no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 60px 20px;
}

.about-hero-number {
    font-size: 132px;
    line-height: 0.95;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    margin-bottom: 10px;
}

.about-hero-small {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-hero-since {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
}

.about-hero-script {
    font-family: "Great Vibes", cursive;
    font-size: 58px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.about-content-section {
    padding: 70px 0 55px;
    background: var(--dt-light);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--dt-text-soft);
    margin-bottom: 18px;
}

.help-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dt-black);
    margin: 18px 0 16px;
}

.du-blue {
    color: var(--dt-blue);
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    margin-top: 10px;
    background: #231f20;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-button:hover {
    opacity: 0.92;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--dt-shadow);
}

/* make active nav state work on About / Practice pages too */
.main-nav__link.active,
.sticky-nav__link.active {
    opacity: 0.9;
}

.main-nav__link.active::after,
.sticky-nav__link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--dt-blue);
}

/* =========================
   19. PRACTICE PAGE
========================= */
.practice-page {
    padding: 70px 0 90px;
    background: var(--dt-light);
}

.practice-page__intro {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.practice-page__intro-text {
    font-size: 18px;
    line-height: 1.65;
    color: var(--dt-text-soft);
    margin-bottom: 18px;
}

.practice-page__intro-line {
    width: 260px;
    height: 2px;
    background: var(--dt-blue);
    margin: 0 auto;
}

.practice-page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    background: rgba(255, 255, 255, 0.35);
    padding: 36px 28px 24px;
}

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

.practice-page__image {
    margin-bottom: 24px;
}

.practice-page__image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.practice-page__title {
    font-family: "Great Vibes", cursive;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    color: #111111;
    margin-bottom: 20px;
}

.practice-page__line {
    width: 72%;
    height: 4px;
    background: var(--dt-blue);
    margin: 0 auto 24px;
}

.practice-page__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--dt-text-soft);
}

@media (max-width: 1199.98px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image {
        max-width: 520px;
    }

    .about-hero-number {
        font-size: 100px;
    }

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

@media (max-width: 767.98px) {
    .about-hero {
        min-height: 400px;
    }

    .about-hero-number {
        font-size: 72px;
    }

    .about-hero-small {
        font-size: 16px;
    }

    .about-hero-since {
        font-size: 15px;
    }

    .about-hero-script {
        font-size: 40px;
    }

    .help-title {
        font-size: 32px;
    }

    .practice-page {
        padding: 50px 0 70px;
    }

    .practice-page__grid {
        grid-template-columns: 1fr;
        padding: 24px 18px 12px;
    }

    .practice-page__title {
        font-size: 28px;
    }
}
/* =========================
   20. PRACTICE CONTACT STRIP
========================= */
.practice-contact-panel {
    background: var(--dt-light);
}

.practice-contact-panel .contact-panel__blue-bar {
    display: none;
}

.practice-contact-panel .contact-panel__inner {
    min-height: 112px;
    padding: 0 60px;
    background:
        linear-gradient(rgba(10, 55, 147, 0.78), rgba(10, 55, 147, 0.78)),
        url('../images/slides/slide-2.png') center center / cover no-repeat;
    border-top: 2px solid var(--dt-blue);
    border-bottom: 2px solid var(--dt-blue);
}

.practice-contact-panel .contact-panel__text {
    font-family: "Great Vibes", cursive;
    font-size: 64px;
    line-height: 1;
    color: #ffffff;
}

.practice-contact-panel .contact-panel__button {
    min-width: auto;
    min-height: auto;
    padding: 0;
    background: none;
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.practice-contact-panel .contact-panel__button:hover {
    opacity: 0.9;
}

/* =========================
   21. PRACTICE IMAGE HOVER ZOOM
========================= */
.practice-page__image {
    overflow: hidden;
}

.practice-page__image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.practice-page__card:hover .practice-page__image img {
    transform: scale(1.06);
}

@media (max-width: 767.98px) {
    .practice-contact-panel .contact-panel__inner {
        padding: 20px 24px;
    }

    .practice-contact-panel .contact-panel__text {
        font-size: 42px;
    }

    .practice-contact-panel .contact-panel__button {
        font-size: 28px;
    }
}
.practice-page__image {
    overflow: hidden;
}

.practice-page__image img {
    transition: transform 0.45s ease;
}

.practice-page__card:hover .practice-page__image img {
    transform: scale(1.03);
}
.practice-contact-panel .contact-panel__inner {
    width: 100%;
}

.contact-panel__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* =========================
   22. CONTACT PAGE
========================= */
.contact-map-section {
    background: var(--dt-light);
    padding: 0;
}

.contact-map-wrap {
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-content-section {
    padding: 70px 0 80px;
    background: var(--dt-light);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.contact-info-card,
.contact-office-card,
.contact-form-card {
    background: transparent;
}

.contact-section-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dt-black);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.contact-info-card p,
.contact-office-address {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dt-text-soft);
    margin-bottom: 14px;
}

.contact-info-card a {
    color: var(--dt-text);
}

.contact-info-card a:hover {
    color: var(--dt-blue);
}

.contact-meta-list {
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-meta-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: var(--dt-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-meta-main {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--dt-black);
    margin-bottom: 2px;
}

.contact-meta-sub {
    font-size: 16px;
    line-height: 1.5;
    color: var(--dt-text-soft);
}

.contact-office-image {
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--dt-shadow);
}

.contact-office-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    background: #ffffff;
    padding: 15px 16px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--dt-text);
    outline: none;
    transition: var(--dt-transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--dt-blue);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    background: #231f20;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-self: start;
}

.contact-form button:hover {
    opacity: 0.92;
}

@media (max-width: 1199.98px) {
    .contact-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .contact-map-wrap {
        height: 320px;
    }

    .contact-content-section {
        padding: 50px 0 65px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-section-title {
        font-size: 22px;
    }

    .contact-info-card p,
    .contact-office-address {
        font-size: 16px;
    }

    .contact-meta-main {
        font-size: 20px;
    }

    .contact-form button {
        width: 100%;
        justify-self: stretch;
    }
}