/* ============================================================
   Desert Ridge Moving — main.css
   Tokens, base, sections. Mobile-first.
   ============================================================ */

:root {
    --rust: #B85C3A;
    --rust-dark: #9C4A2D;
    --rust-soft: #E8C9B8;
    --navy: #1F2D3D;
    --navy-soft: #344558;
    --green: #6B8E4E;
    --green-dark: #56723E;
    --cream: #F5F1EA;
    --cream-deep: #ECE5D6;
    --ink: #1A1F26;
    --ink-soft: #4A5563;
    --line: #DDD4C2;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(31, 45, 61, 0.08);
    --shadow-md: 0 6px 22px rgba(31, 45, 61, 0.12);
    --shadow-lg: 0 16px 44px rgba(31, 45, 61, 0.18);

    --ff-display: 'Bebas Neue', 'Oswald', sans-serif;
    --ff-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --size-1: clamp(2rem, 4vw + 1rem, 3.5rem);
    --size-2: clamp(1.6rem, 2.5vw + 0.8rem, 2.4rem);
    --size-3: clamp(1.25rem, 1.5vw + 0.7rem, 1.6rem);

    --max: 1200px;
    --gutter: clamp(1rem, 3vw, 2rem);
    --radius: 6px;
    --radius-lg: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    padding-bottom: 64px; /* mobile bar offset */
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0 0 0.6em;
}

h1 { font-size: var(--size-1); }
h2 { font-size: var(--size-2); }
h3 { font-size: var(--size-3); }

p { margin: 0 0 1.1em; }

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

/* ----- BUTTONS ----- */
.dr-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.1s, background 0.2s;
    line-height: 1;
}
.dr-btn:hover { text-decoration: none; transform: translateY(-1px); }
.dr-btn--primary {
    background: var(--rust);
    color: var(--white);
}
.dr-btn--primary:hover { background: var(--rust-dark); color: var(--white); }
.dr-btn--accent {
    background: var(--green);
    color: var(--white);
}
.dr-btn--accent:hover { background: var(--green-dark); color: var(--white); }
.dr-btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.dr-btn--ghost:hover { background: var(--navy); color: var(--white); }
.dr-btn--block { display: block; width: 100%; }

/* ----- HEADER ----- */
.dr-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}
.dr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px var(--gutter);
}

.dr-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.dr-logo:hover { text-decoration: none; }
.dr-logo__words { display: flex; flex-direction: column; line-height: 1; }
.dr-logo__main {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--navy);
    letter-spacing: 1px;
}
.dr-logo__sub {
    font-family: var(--ff-display);
    font-size: 12px;
    color: var(--rust);
    letter-spacing: 2px;
    margin-top: 2px;
}

.dr-header__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1.2;
}
.dr-header__phone {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--navy);
    letter-spacing: 1px;
    text-decoration: none;
}
.dr-header__phone:hover { color: var(--rust); text-decoration: none; }
.dr-header__lang {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ----- NAV ----- */
.dr-nav { width: 100%; order: 3; }
.dr-nav__toggle {
    display: none;
}
.dr-nav__list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    border-top: 1px solid var(--line);
    padding-top: 10px;
}
.dr-nav__list a {
    display: block;
    padding: 8px 12px;
    color: var(--navy);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--radius);
}
.dr-nav__list a:hover { background: var(--cream); color: var(--rust); }
.dr-nav__has-sub { position: relative; }
.dr-nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 8px;
    margin: 4px 0 0;
    min-width: 220px;
    max-height: 360px;
    overflow-y: auto;
    display: none;
    z-index: 10;
}
.dr-nav__has-sub:hover > .dr-nav__sub,
.dr-nav__has-sub:focus-within > .dr-nav__sub { display: block; }
.dr-nav__sub a { font-size: 13px; padding: 6px 10px; }

@media (max-width: 900px) {
    .dr-header__inner { padding: 10px var(--gutter); }
    .dr-header__contact { display: none; }
    .dr-nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: transparent;
        border: 0;
        padding: 8px;
        cursor: pointer;
        margin-left: auto;
    }
    .dr-nav__toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
    }
    .dr-nav__list {
        display: none;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        margin: 0;
        padding: 0;
        border-top: 1px solid var(--line);
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .dr-nav__list.is-open { display: flex; }
    .dr-nav__list > li { border-bottom: 1px solid var(--line); }
    .dr-nav__list > li > a { padding: 14px var(--gutter); }
    .dr-nav__sub {
        position: static;
        display: block;
        border: 0;
        box-shadow: none;
        padding: 0 0 8px var(--gutter);
        max-height: none;
    }
}

/* ----- HERO ----- */
.dr-hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(31,45,61,0.92), rgba(31,45,61,0.78)),
        var(--dr-hero-bg, linear-gradient(135deg, #1F2D3D 0%, #344558 100%));
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 48px 0 56px;
    overflow: hidden;
}
.dr-hero::before {
    content: '';
    position: absolute;
    inset: auto -40px -120px auto;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(184,92,58,0.45), transparent 60%);
    pointer-events: none;
}
.dr-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}
@media (min-width: 900px) {
    .dr-hero { padding: 80px 0 96px; }
    .dr-hero__inner { grid-template-columns: 420px 1fr; gap: 56px; align-items: start; }
}

.dr-hero__copy { order: -1; }
@media (min-width: 900px) { .dr-hero__copy { order: 0; } }

.dr-hero__eyebrow {
    font-family: var(--ff-display);
    color: var(--rust-soft);
    font-size: 14px;
    letter-spacing: 3px;
    margin: 0 0 12px;
}
.dr-hero__h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw + 0.5rem, 4rem);
    margin: 0 0 16px;
}
.dr-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    max-width: 540px;
    margin: 0 0 20px;
}
.dr-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.dr-hero__bullets li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.95);
}
.dr-hero__bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dr-hero__phone-cta {
    margin-top: 16px;
    color: rgba(255,255,255,0.85);
}
.dr-hero__phone-cta a {
    font-family: var(--ff-display);
    font-size: 26px;
    color: var(--white);
    letter-spacing: 1px;
    margin-left: 8px;
}

/* ----- RATINGS STRIP ----- */
.dr-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    margin-top: 12px;
}
.dr-ratings__item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.92); }
.dr-ratings__stars { color: #F7C948; letter-spacing: 1px; font-size: 14px; }
.dr-ratings__rating { font-weight: 700; color: var(--white); }

/* ----- QUOTE FORM ----- */
.dr-quote {
    background: var(--white);
    color: var(--ink);
    padding: 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--rust);
}
.dr-quote--aside { box-shadow: var(--shadow-sm); }
.dr-quote__title {
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--navy);
    margin: 0 0 14px;
    letter-spacing: 0.5px;
}
.dr-quote__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}
.dr-quote__row--single { grid-template-columns: 1fr; }
.dr-quote input,
.dr-quote select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--ff-body);
    font-size: 14px;
    background: var(--white);
}
.dr-quote input:focus,
.dr-quote select:focus { border-color: var(--rust); outline: none; }
.dr-quote .dr-btn { margin-top: 6px; }
.dr-quote__small { font-size: 12px; color: var(--ink-soft); margin: 8px 0 0; text-align: center; }

@media (max-width: 480px) {
    .dr-quote__row { grid-template-columns: 1fr; }
}

/* ----- TRUST BADGES STRIP ----- */
.dr-trust {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
}
.dr-trust__title {
    text-align: center;
    margin: 0 0 24px;
    font-size: clamp(1.4rem, 2vw + 0.5rem, 2rem);
    color: var(--navy);
}
.dr-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 600px) { .dr-trust__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .dr-trust__grid { grid-template-columns: repeat(6, 1fr); } }
.dr-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.dr-trust__seal {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--green));
    border-radius: 50%;
    margin-bottom: 8px;
    position: relative;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.15);
}
.dr-trust__seal::before {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
}
.dr-trust__label { color: var(--navy); font-size: 13px; line-height: 1.2; }
.dr-trust__sub { color: var(--ink-soft); font-size: 11px; margin-top: 4px; }

/* ----- TRUST ITEM AS LINK ----- */
a.dr-trust__item { text-decoration: none; transition: border-color 0.15s, transform 0.1s; }
a.dr-trust__item:hover { border-color: var(--rust); transform: translateY(-2px); text-decoration: none; color: inherit; }
.dr-trust__sub--lead { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; text-align: center; }
.dr-trust__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

/* ----- PROCESS ----- */
.dr-process {
    padding: 64px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
}
.dr-process__title { text-align: center; margin: 0 0 36px; }
.dr-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 700px) { .dr-process__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dr-process__grid { grid-template-columns: repeat(4, 1fr); } }
.dr-process__step {
    background: var(--cream);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    position: relative;
}
.dr-process__num {
    display: inline-block;
    font-family: var(--ff-display);
    font-size: 28px;
    color: var(--rust);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.dr-process__step h3 { color: var(--navy); font-size: 20px; margin: 0 0 10px; }
.dr-process__step p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ----- GALLERY ----- */
.dr-gallery {
    padding: 56px 0;
    background: var(--cream);
}
.dr-gallery__title { text-align: center; margin: 0 0 8px; }
.dr-gallery__sub { text-align: center; color: var(--ink-soft); margin: 0 auto 28px; max-width: 640px; font-size: 14px; }
.dr-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (min-width: 700px) { .dr-gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.dr-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
}
.dr-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.dr-gallery__item:hover img { transform: scale(1.05); }

/* ----- BLOG TEASERS ----- */
.dr-blog-teasers {
    padding: 56px 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
}
.dr-blog-teasers__title { text-align: center; margin: 0 0 28px; }
.dr-blog-teasers__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 700px) { .dr-blog-teasers__grid { grid-template-columns: repeat(3, 1fr); } }
.dr-blog-teasers__card {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    border-top: 3px solid var(--green);
    transition: transform 0.1s, border-color 0.15s;
    display: flex;
    flex-direction: column;
}
.dr-blog-teasers__card:hover { transform: translateY(-3px); border-top-color: var(--rust); text-decoration: none; }
.dr-blog-teasers__card h3 { font-size: 18px; color: var(--navy); margin: 0 0 10px; line-height: 1.2; }
.dr-blog-teasers__card p { font-size: 14px; color: var(--ink-soft); flex: 1; margin: 0 0 12px; }
.dr-blog-teasers__more { font-weight: 600; color: var(--rust); font-size: 14px; }

/* ----- USP ----- */
.dr-usp {
    padding: 64px 0;
    background: var(--cream);
}
.dr-usp__title {
    text-align: center;
    margin: 0 0 36px;
}
.dr-usp__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 800px) { .dr-usp__grid { grid-template-columns: repeat(3, 1fr); } }
.dr-usp__item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 4px solid var(--green);
}
.dr-usp__icon {
    width: 56px;
    height: 56px;
    background: var(--rust-soft);
    border-radius: 50%;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rust);
}
.dr-usp__icon svg { width: 30px; height: 30px; }
.dr-usp__head { color: var(--navy); font-size: 22px; margin: 0 0 10px; }
.dr-usp__body { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ----- SERVICES GRID ----- */
.dr-services {
    padding: 64px 0;
    background: var(--white);
}
.dr-services__title { text-align: center; margin: 0 0 36px; }
.dr-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.dr-services__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    text-decoration: none;
    transition: border-color 0.15s, transform 0.1s;
}
.dr-services__card:hover {
    border-color: var(--rust);
    color: var(--rust);
    transform: translateY(-2px);
    text-decoration: none;
}
.dr-services__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    color: var(--rust);
}
.dr-services__icon svg { width: 28px; height: 28px; }
.dr-services__card:hover .dr-services__icon { color: var(--rust-dark); }
.dr-services__label { font-weight: 600; font-size: 14px; }

/* ----- OWNER ----- */
.dr-owner {
    padding: 64px 0;
    background: var(--navy);
    color: rgba(255,255,255,0.92);
}
.dr-owner__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}
@media (min-width: 900px) {
    .dr-owner__inner { grid-template-columns: 360px 1fr; gap: 56px; }
}
.dr-owner__photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--rust), var(--rust-dark));
    aspect-ratio: 4/5;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}
.dr-owner__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.dr-owner__signature {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 18px;
    color: var(--white);
}
.dr-owner__sig-name { display: block; font-family: var(--ff-display); font-size: 22px; letter-spacing: 1px; }
.dr-owner__sig-title { display: block; font-size: 13px; opacity: 0.85; }

.dr-owner__eyebrow {
    color: var(--rust-soft);
    font-family: var(--ff-display);
    letter-spacing: 3px;
    font-size: 13px;
    margin: 0 0 8px;
}
.dr-owner__h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 2.5vw + 0.7rem, 2.6rem);
    line-height: 1.15;
    margin: 0 0 22px;
}
.dr-owner__story p { color: rgba(255,255,255,0.85); margin-bottom: 14px; font-size: 15px; }
.dr-owner__cta { margin-top: 22px; }
.dr-owner__cta .dr-btn--ghost { color: var(--white); border-color: var(--white); }
.dr-owner__cta .dr-btn--ghost:hover { background: var(--white); color: var(--navy); }

/* ----- AREA STATS (numbers strip) ----- */
.dr-area-stats {
    background: var(--rust);
    color: var(--white);
    padding: 28px 0;
}
.dr-area-stats__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}
@media (min-width: 700px) { .dr-area-stats__inner { grid-template-columns: repeat(4, 1fr); } }
.dr-area-stats div { display: flex; flex-direction: column; }
.dr-area-stats strong {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
    letter-spacing: 1px;
    line-height: 1;
}
.dr-area-stats span { font-size: 13px; opacity: 0.92; margin-top: 4px; }

/* ----- AREA / SUBURBS ----- */
.dr-area {
    padding: 64px 0;
    background: var(--cream);
}
.dr-area__title { text-align: center; margin: 0 0 12px; }
.dr-area__sub { text-align: center; color: var(--ink-soft); max-width: 720px; margin: 0 auto 28px; }
.dr-area__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.dr-area__list a {
    display: block;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.15s;
}
.dr-area__list a:hover { border-color: var(--rust); color: var(--rust); text-decoration: none; }

/* ----- ROUTES ----- */
.dr-routes {
    padding: 64px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
}
.dr-routes__title { text-align: center; margin: 0 0 28px; }
.dr-routes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.dr-routes__card {
    display: block;
    padding: 16px 18px;
    background: var(--cream);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.dr-routes__card:hover { background: var(--green); color: var(--white); text-decoration: none; }

/* ----- REVIEWS ----- */
.dr-reviews {
    padding: 64px 0;
    background: var(--cream-deep);
}
.dr-reviews__title { text-align: center; margin: 0 0 36px; }
.dr-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 700px) { .dr-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
.dr-reviews__card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    border-top: 3px solid var(--rust);
    display: flex;
    flex-direction: column;
}
.dr-reviews__stars { color: #F7C948; font-size: 16px; letter-spacing: 1px; }
.dr-reviews__star--off { color: var(--line); }
.dr-reviews__text { color: var(--ink); font-size: 15px; line-height: 1.6; margin: 12px 0 0; flex: 1; }

.dr-reviews__header {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
}
.dr-reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--rust-soft);
    flex-shrink: 0;
}
.dr-reviews__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-reviews__byline { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.dr-reviews__name { color: var(--navy); font-size: 14px; }
.dr-reviews__sub { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* ----- TEAM PAGE ----- */
.dr-team { padding: 56px 0; background: var(--white); }
.dr-team--alt { background: var(--cream); }
.dr-team__title { text-align: center; margin: 0 0 12px; }
.dr-team__sub { text-align: center; color: var(--ink-soft); max-width: 720px; margin: 0 auto 28px; }
.dr-team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 700px) { .dr-team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .dr-team__grid--4 { grid-template-columns: repeat(4, 1fr); } }
.dr-team__card {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    text-align: center;
}
.dr-team--alt .dr-team__card { background: var(--white); }
.dr-team__photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--rust-soft);
}
.dr-team__photo img { width: 100%; height: 100%; object-fit: cover; }
.dr-team__name { color: var(--navy); font-size: 20px; margin: 0; }
.dr-team__role { color: var(--rust); font-size: 13px; font-weight: 600; margin: 4px 0 10px; text-transform: uppercase; letter-spacing: 1px; }
.dr-team__bio { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.dr-team__group-photo {
    margin: 28px 0 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.dr-team__group-photo img { width: 100%; display: block; }
.dr-team__group-photo figcaption {
    font-size: 13px;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* ----- FAQ ----- */
.dr-faq {
    padding: 64px 0;
    background: var(--white);
}
.dr-faq__title { text-align: center; margin: 0 0 28px; }
.dr-faq__list { max-width: 820px; margin: 0 auto; }
.dr-faq__item {
    border-bottom: 1px solid var(--line);
    padding: 0;
}
.dr-faq__item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 36px 18px 0;
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
    position: relative;
}
.dr-faq__item summary::-webkit-details-marker { display: none; }
.dr-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--rust);
    font-weight: 400;
}
.dr-faq__item[open] summary::after { content: '−'; }
.dr-faq__a { padding: 0 0 18px; color: var(--ink-soft); }

/* ----- CTA ----- */
.dr-cta {
    background: var(--navy);
    color: var(--white);
    padding: 48px 0;
}
.dr-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}
@media (min-width: 800px) { .dr-cta__inner { grid-template-columns: 1fr auto; } }
.dr-cta h2 { color: var(--white); margin: 0 0 6px; }
.dr-cta p { color: rgba(255,255,255,0.85); margin: 0; }
.dr-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.dr-cta__actions .dr-btn--ghost { color: var(--white); border-color: var(--white); }
.dr-cta__actions .dr-btn--ghost:hover { background: var(--white); color: var(--navy); }

/* ----- FOOTER ----- */
.dr-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 48px 0 12px;
    font-size: 14px;
}
.dr-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 700px) { .dr-footer__top { grid-template-columns: 2fr repeat(4, 1fr); } }
.dr-footer__brand { font-family: var(--ff-display); color: var(--white); font-size: 22px; letter-spacing: 1px; display: block; }
.dr-footer__tag { color: var(--rust-soft); font-style: italic; margin: 4px 0 16px; }
.dr-footer__addr { font-size: 13px; line-height: 1.6; }
.dr-footer__hours { color: var(--green); font-size: 12px; margin-top: 8px; }
.dr-footer h4 { color: var(--white); font-size: 14px; font-family: var(--ff-body); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 12px; }
.dr-footer ul { list-style: none; padding: 0; margin: 0; }
.dr-footer ul li { margin-bottom: 6px; }
.dr-footer ul a { color: rgba(255,255,255,0.65); font-size: 13px; }
.dr-footer ul a:hover { color: var(--rust-soft); text-decoration: none; }
.dr-footer__legal { padding: 18px 0 0; font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; }
.dr-footer__legal p { margin: 4px 0; }

/* ----- MOBILE BAR ----- */
.dr-mobilebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
    z-index: 100;
    text-align: center;
    padding: 0;
}
.dr-mobilebar__call {
    display: block;
    padding: 16px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.dr-mobilebar__call:hover { color: var(--white); text-decoration: none; }
@media (min-width: 768px) {
    .dr-mobilebar { display: none; }
}

/* ----- BODY (page) ----- */
.dr-pagehero {
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: var(--white);
    padding: 56px 0 36px;
}
.dr-pagehero h1 { color: var(--white); margin: 0 0 6px; }
.dr-pagehero__sub { color: rgba(255,255,255,0.85); margin: 0; max-width: 720px; }

.dr-body { padding: 56px 0; background: var(--cream); }
.dr-body__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 900px) { .dr-body__inner { grid-template-columns: 1fr 320px; gap: 48px; } }

.dr-body__article {
    background: var(--white);
    padding: 32px clamp(20px, 4vw, 40px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.dr-body__article p { font-size: 16px; color: var(--ink); }
.dr-body__article h2 { margin-top: 32px; }
.dr-body__article h3 { margin-top: 24px; color: var(--navy); }
.dr-body__article ul, .dr-body__article ol { margin: 0 0 1.2em; padding-left: 22px; }
.dr-body__article li { margin-bottom: 6px; }

.dr-body__aside { display: flex; flex-direction: column; gap: 20px; }
.dr-quotebox { position: sticky; top: 110px; }
.dr-asidebox {
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    text-align: center;
}
.dr-asidebox h4 { color: var(--navy); font-family: var(--ff-display); letter-spacing: 1px; font-size: 16px; margin: 0 0 8px; }
.dr-asidebox__phone { font-family: var(--ff-display); font-size: 28px; color: var(--rust); letter-spacing: 1px; }
.dr-asidebox__hours, .dr-asidebox__lang { font-size: 13px; color: var(--ink-soft); margin: 6px 0 0; }
.dr-asidebox__lang { color: var(--green); font-weight: 600; }

/* ----- FORM SECTION CTA ANCHOR ----- */
:target { scroll-margin-top: 100px; }

/* ----- FLEET PAGE ----- */
.dr-fleet { padding: 56px 0; background: var(--cream); }
.dr-fleet__title { text-align: center; margin: 0 0 12px; }
.dr-fleet__sub { text-align: center; color: var(--ink-soft); max-width: 720px; margin: 0 auto 28px; }
.dr-fleet__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 700px) { .dr-fleet__grid { grid-template-columns: repeat(2, 1fr); } }
.dr-fleet__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
}
.dr-fleet__photo {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream-deep);
}
.dr-fleet__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-fleet__card h3 { color: var(--navy); margin: 16px 20px 8px; font-size: 22px; }
.dr-fleet__card p { color: var(--ink-soft); margin: 0 20px 20px; font-size: 14px; }

/* ----- MAP WRAP ----- */
.dr-map-wrap {
    margin: 16px 0 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

/* ----- ACCESSIBILITY ----- */
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
