:root {
    --deh-gold: #d4af37;
    --deh-gold-dark: #b8911e;
    --deh-navy: #0f1e33;
    --deh-navy-soft: #1b2c46;
    --deh-ink: #142033;
    --deh-text: #24364d;
    --deh-muted: #65758b;
    --deh-line: #dce4ef;
    --deh-bg: #f5f7fb;
    --deh-white: #ffffff;
    --deh-shadow: 0 18px 50px rgba(15, 30, 51, 0.12);
    --deh-radius: 20px;
    --deh-radius-sm: 14px;
    --deh-serif: Georgia, "Times New Roman", serif;
    --deh-sans: "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--deh-sans);
    color: var(--deh-text);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 28%),
        linear-gradient(180deg, #fbfcfe 0%, var(--deh-bg) 100%);
}

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

a {
    color: #113c7b;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #0b62c4;
}

p,
li {
    line-height: 1.7;
}

ul,
ol {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}

li + li {
    margin-top: 0.45rem;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    color: var(--deh-ink);
    font-family: var(--deh-serif);
    line-height: 1.15;
}

.deh-page {
    min-height: 100vh;
}

.deh-container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.deh-topbar {
    background: linear-gradient(90deg, var(--deh-navy) 0%, var(--deh-navy-soft) 100%);
    color: #eef3fb;
    font-size: 0.95rem;
}

.deh-topbar .deh-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

.deh-topbar a {
    color: inherit;
    font-weight: 700;
}

.deh-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f9fbff;
}

.deh-pill strong {
    color: #ffe8a5;
}

.deh-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(18, 32, 50, 0.08);
}

.deh-header .deh-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.deh-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.deh-brand img {
    width: 170px;
    height: auto;
}

.deh-brand-copy {
    min-width: 0;
}

.deh-brand-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deh-ink);
}

.deh-brand-subtitle {
    margin-top: 0.15rem;
    color: var(--deh-muted);
    font-size: 0.92rem;
}

.deh-nav {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.deh-nav a {
    color: var(--deh-ink);
    font-weight: 700;
    font-size: 0.96rem;
}

.deh-nav .deh-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--deh-gold) 0%, #e7bf4f 100%);
    color: #172437;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.deh-nav .deh-nav-cta:hover,
.deh-nav .deh-nav-cta:focus {
    color: #172437;
    background: linear-gradient(135deg, #e6c35a 0%, #f0cb62 100%);
}

.deh-hero {
    position: relative;
    overflow: hidden;
    color: var(--deh-white);
    background-color: var(--deh-navy);
    background-size: cover;
    background-position: center;
}

.deh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(9, 19, 34, 0.92) 0%, rgba(15, 30, 51, 0.88) 50%, rgba(24, 43, 70, 0.72) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%);
}

.deh-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
}

.deh-hero .deh-container {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 4rem;
}

.deh-breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    margin-bottom: 1.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.deh-breadcrumbs a {
    color: rgba(255, 255, 255, 0.96);
}

.deh-breadcrumbs .deh-sep {
    opacity: 0.7;
}

.deh-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.16);
    color: #ffe49a;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.deh-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 4.3vw, 4.5rem);
    color: var(--deh-white);
}

.deh-hero p {
    max-width: 58rem;
    margin: 0 0 1rem;
    font-size: clamp(1.04rem, 1.6vw, 1.16rem);
    color: rgba(255, 255, 255, 0.92);
}

.deh-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.deh-hero-meta .deh-chip {
    background: rgba(255, 255, 255, 0.09);
    color: #f6f8fd;
}

.deh-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #edf3fb;
    color: var(--deh-ink);
    font-size: 0.95rem;
    font-weight: 700;
}

.deh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.deh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.deh-btn:hover,
.deh-btn:focus {
    transform: translateY(-1px);
}

.deh-btn-primary {
    background: linear-gradient(135deg, var(--deh-gold) 0%, #ebc45c 100%);
    color: #172437;
    box-shadow: 0 16px 35px rgba(212, 175, 55, 0.28);
}

.deh-btn-primary:hover,
.deh-btn-primary:focus {
    color: #172437;
}

.deh-btn-secondary {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--deh-white);
    background: transparent;
}

.deh-btn-tertiary {
    background: var(--deh-white);
    color: var(--deh-ink);
    box-shadow: 0 16px 35px rgba(15, 30, 51, 0.08);
}

.deh-main {
    padding: 2.8rem 0 4rem;
}

.deh-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: minmax(0, 1.95fr) minmax(290px, 0.95fr);
    align-items: start;
}

.deh-card {
    background: var(--deh-white);
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--deh-radius);
    box-shadow: var(--deh-shadow);
}

.deh-card-body {
    padding: clamp(1.4rem, 2.8vw, 2rem);
}

.deh-section + .deh-section {
    margin-top: 2rem;
}

.deh-section h2 {
    font-size: clamp(1.9rem, 2.8vw, 2.4rem);
}

.deh-section p:last-child,
.deh-section ul:last-child,
.deh-section ol:last-child {
    margin-bottom: 0;
}

.deh-list-grid {
    display: grid;
    gap: 0.9rem 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.deh-list-grid li {
    margin: 0;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: var(--deh-radius-sm);
    background: linear-gradient(180deg, #fbfdff 0%, #f2f6fc 100%);
    border: 1px solid var(--deh-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.deh-facts {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 1.25rem;
}

.deh-fact {
    padding: 1.2rem;
    border-radius: var(--deh-radius-sm);
    background: linear-gradient(180deg, #11213a 0%, #1c2f4d 100%);
    color: #edf4ff;
}

.deh-fact strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #ffe598;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.deh-reasons {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.deh-reason {
    padding: 1.1rem 1.15rem;
    border-radius: var(--deh-radius-sm);
    border: 1px solid var(--deh-line);
    background: #f9fbfe;
}

.deh-resource-links,
.deh-language-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.deh-resource-links a,
.deh-language-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--deh-line);
    background: #f7fafc;
    font-weight: 700;
}

.deh-nearby {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.deh-nearby a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: #6b4b00;
    font-weight: 700;
}

.deh-faq-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.deh-faq-item {
    border: 1px solid var(--deh-line);
    border-radius: var(--deh-radius-sm);
    background: #fbfdff;
    overflow: hidden;
}

.deh-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.15rem;
    font-weight: 700;
    color: var(--deh-ink);
}

.deh-faq-item summary::-webkit-details-marker {
    display: none;
}

.deh-faq-answer {
    padding: 0 1.15rem 1.1rem;
}

.deh-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 5.6rem;
}

.deh-sidebar .deh-card {
    overflow: hidden;
}

.deh-sidebar-accent {
    background: linear-gradient(160deg, var(--deh-navy) 0%, #243a5b 100%);
    color: #f1f6ff;
}

.deh-sidebar-accent h3,
.deh-sidebar-accent h4 {
    color: var(--deh-white);
}

.deh-sidebar-accent .deh-card-body {
    position: relative;
}

.deh-sidebar-accent .deh-card-body::after {
    content: "";
    position: absolute;
    right: -55px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.23), transparent 70%);
}

.deh-sidebar-accent .deh-btn-secondary {
    border-color: rgba(255, 255, 255, 0.35);
}

.deh-sidebar-note {
    font-size: 0.96rem;
    color: #dce7f9;
}

.deh-office,
.deh-quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deh-office li,
.deh-quick-list li {
    margin: 0;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(20, 32, 51, 0.08);
}

.deh-office li:first-child,
.deh-quick-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.deh-quick-list a {
    color: inherit;
    font-weight: 700;
}

.deh-cta-band {
    margin-top: 2rem;
    padding: clamp(1.5rem, 2.8vw, 2rem);
    border-radius: var(--deh-radius);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 24%),
        linear-gradient(140deg, #12223b 0%, #213654 100%);
    color: var(--deh-white);
}

.deh-cta-band h2,
.deh-cta-band h3 {
    color: var(--deh-white);
}

.deh-cta-band p {
    color: rgba(255, 255, 255, 0.9);
}

.deh-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(20, 32, 51, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.96)),
        linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(15, 30, 51, 0.04));
}

.deh-footer .deh-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
    padding: 2rem 0 1.7rem;
}

.deh-footer h3 {
    font-size: 1.3rem;
}

.deh-footer small,
.deh-footer p {
    color: var(--deh-muted);
}

.deh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deh-footer-links li {
    margin: 0;
    padding: 0.35rem 0;
}

.deh-footer-bottom {
    padding: 1rem 0 1.6rem;
    color: var(--deh-muted);
    font-size: 0.92rem;
}

.deh-page-links-grid,
.deh-city-group-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 1.2rem;
}

.deh-city-group {
    padding: 1.2rem;
    border-radius: var(--deh-radius-sm);
    border: 1px solid var(--deh-line);
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
}

.deh-city-group h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
}

.deh-city-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 1rem;
}

.deh-city-group li {
    break-inside: avoid;
    margin: 0;
    padding: 0.25rem 0;
}

.deh-city-group a {
    font-weight: 700;
}

.deh-guide-steps {
    counter-reset: guide-step;
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 1rem;
}

.deh-guide-steps li {
    position: relative;
    margin: 0;
    padding: 1.15rem 1.2rem 1.15rem 4.2rem;
    border-radius: var(--deh-radius-sm);
    border: 1px solid var(--deh-line);
    background: #fbfdff;
}

.deh-guide-steps li::before {
    counter-increment: guide-step;
    content: counter(guide-step);
    position: absolute;
    left: 1.1rem;
    top: 1rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deh-gold) 0%, #eac85f 100%);
    color: #18263a;
    font-weight: 800;
}

.deh-mobile-call {
    display: none;
}

@media (max-width: 1040px) {
    .deh-grid,
    .deh-footer .deh-container {
        grid-template-columns: 1fr;
    }

    .deh-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .deh-header .deh-container,
    .deh-nav {
        justify-content: flex-start;
    }

    .deh-brand {
        width: 100%;
    }

    .deh-city-group ul {
        columns: 1;
    }
}

@media (max-width: 720px) {
    .deh-container {
        width: min(100% - 1.2rem, 1180px);
    }

    .deh-topbar .deh-container,
    .deh-header .deh-container,
    .deh-nav {
        gap: 0.75rem;
    }

    .deh-hero .deh-container {
        padding: 2.4rem 0 3rem;
    }

    .deh-hero h1 {
        max-width: none;
    }

    .deh-actions,
    .deh-resource-links,
    .deh-language-links {
        width: 100%;
    }

    .deh-actions .deh-btn,
    .deh-resource-links a,
    .deh-language-links a {
        width: 100%;
    }

    .deh-mobile-call {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(20, 32, 51, 0.08);
    }

    .deh-mobile-call a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--deh-gold) 0%, #ebc45c 100%);
        color: #172437;
        font-weight: 800;
        box-shadow: 0 16px 35px rgba(212, 175, 55, 0.24);
    }

    body {
        padding-bottom: 5.25rem;
    }
}
