@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,300&display=swap');

/* ==========================================================================
   Catholic Diocese of Rumbek — home page ("Editorial Mission")
   Scoped under .dorh so nothing here touches the rest of the theme.
   ========================================================================== */

/* The tokens live on :root, not on .dorh, because the header and the mobile
   drawer are the theme's own markup and sit outside .dorh — scoped to .dorh
   their var() lookups resolved to nothing and the header painted transparent. */
:root {
    --dorh-bg: #FBF8F3;
    --dorh-band: #F5EFE6;
    --dorh-ink: #201512;
    --dorh-lead: #3E3230;
    --dorh-body: #6A5B54;
    --dorh-muted: #77655C;
    --dorh-line: #E9DFD2;
    --dorh-line-strong: #E4DACD;
    --dorh-maroon: #8B0000;
    --dorh-gold: #D4AF37;
    /* Lettering on a gold fill. Cream on gold is 1.74:1 — unreadable — so the
       text colour has to change with the background on hover. */
    --dorh-on-gold: #3A1A00;
    /* A deeper gold for interactive marks. #D4AF37 measures 1.98:1 on the bone
       ground — fine as a decorative hairline, invisible as a hover cue. */
    --dorh-gold-mark: #A8811F;
    --dorh-green: #066A4C;
    --dorh-dark: #2A0A0A;
    --dorh-on-maroon: #FFE7BB;
    --dorh-display: 'Newsreader', Georgia, 'Times New Roman', serif;
}

.dorh {
    display: block;
    width: 100%;
    background: var(--dorh-bg);
    color: var(--dorh-body);
    font-family: var(--primary-font, 'Lexend Deca', sans-serif);
    font-size: 16px;
    line-height: 1.6;
}

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

.dorh img { max-width: 100%; }

.dorh-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- shared type ---------- */
.dorh-display {
    font-family: var(--dorh-display);
    font-weight: 400;
    color: var(--dorh-ink);
    letter-spacing: -0.01em;
    margin: 0;
}

.dorh-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dorh-maroon);
    margin: 0;
}

.dorh-rule {
    height: 2px;
    width: 56px;
    background: var(--dorh-gold);
    border: 0;
    margin: 0;
}

.dorh-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 2px;
    /* Transparent at rest so the hover rule cannot shift the line. */
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--dorh-maroon);
    text-decoration: none;
    transition: color .2s ease, gap .2s ease, border-color .2s ease;
}
.dorh-link:hover { color: var(--dorh-ink); border-bottom-color: var(--dorh-gold-mark); gap: 12px; }
.dorh-link svg { flex: none; }

/* ---------- buttons ---------- */
.dorh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.dorh-btn svg { flex: none; }

.dorh-btn--primary { background: var(--dorh-maroon); color: var(--dorh-on-maroon); }
.dorh-btn--primary:hover { background: var(--dorh-gold); color: var(--dorh-on-gold); }
.dorh-btn--primary:hover svg { stroke: var(--dorh-on-gold); }

.dorh-btn--gold { background: var(--dorh-gold); color: #3A1A00; }
.dorh-btn--gold:hover { background: #E3C25A; color: #3A1A00; }

.dorh-btn--outline { border-color: var(--dorh-maroon); color: var(--dorh-maroon); background: transparent; }
.dorh-btn--outline:hover { background: var(--dorh-gold); border-color: var(--dorh-gold); color: var(--dorh-on-gold); }
.dorh-btn--outline:hover svg { stroke: var(--dorh-on-gold); }

.dorh-btn--on-dark { border-color: rgba(255, 255, 255, .4); color: #fff; background: transparent; font-weight: 500; }
.dorh-btn--on-dark:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.dorh-btn--underline {
    min-height: 52px;
    padding: 0 4px;
    color: #fff;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}
.dorh-btn--underline:hover { border-bottom-color: var(--dorh-gold); color: var(--dorh-gold); }

.dorh a:focus-visible,
.dorh button:focus-visible,
.dorh input:focus-visible {
    outline: 2px solid var(--dorh-gold);
    outline-offset: 3px;
}

/* ---------- section frames ---------- */
.dorh-section { padding: 96px 0 100px; }
.dorh-section--band {
    background: var(--dorh-band);
    border-top: 1px solid var(--dorh-line);
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-section--top-rule { border-top: 1px solid var(--dorh-line); }

.dorh-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 52px;
}
.dorh-section-head__main { display: flex; flex-direction: column; gap: 18px; max-width: 620px; }
.dorh-section-head__title { font-size: 46px; line-height: 1.17; }
.dorh-section-head__aside { max-width: 440px; font-size: 16px; line-height: 1.75; color: var(--dorh-body); }

/* ==========================================================================
   HERO
   ========================================================================== */
.dorh-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    background-color: #1A0404;
    overflow: hidden;
}
.dorh-hero__slides { position: absolute; inset: 0; z-index: 0; }
.dorh-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.dorh-hero__slide.is-active { opacity: 1; }
.dorh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(26, 4, 4, .90) 0%, rgba(26, 4, 4, .72) 42%, rgba(26, 4, 4, .18) 100%);
}
.dorh-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 96px;
    padding-bottom: 190px;
}
.dorh-hero__content { display: flex; flex-direction: column; gap: 26px; max-width: 660px; }

.dorh-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E8C86A;
    margin: 0;
}
.dorh-hero__eyebrow::before {
    content: '';
    display: block;
    height: 1px;
    width: 36px;
    background: var(--dorh-gold);
    flex: none;
}

.dorh-hero__title {
    font-family: var(--dorh-display);
    font-weight: 400;
    font-size: 76px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}
.dorh-hero__sub {
    font-size: 18px;
    line-height: 1.67;
    font-weight: 300;
    color: #EBDFD3;
    max-width: 580px;
    margin: 0;
}
.dorh-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 6px; }

/* fact strip */
.dorh-facts {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.dorh-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(251, 248, 243, .96);
    border-top: 3px solid var(--dorh-gold);
}
.dorh-fact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 32px;
    border-right: 1px solid var(--dorh-line);
}
.dorh-fact:last-child { border-right: 0; }
.dorh-fact__value { font-family: var(--dorh-display); font-size: 30px; line-height: 1.13; color: var(--dorh-ink); }
.dorh-fact__label { font-size: 13px; line-height: 1.54; color: var(--dorh-muted); margin: 0; }

/* ==========================================================================
   MISSION / WHO WE ARE
   ========================================================================== */
.dorh-mission__grid {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 100px;
    align-items: start;
}
.dorh-mission__aside { display: flex; flex-direction: column; gap: 20px; }
.dorh-mission__title { font-size: 46px; line-height: 1.17; }
.dorh-mission__body { display: flex; flex-direction: column; gap: 26px; }
.dorh-mission__body p { margin: 0; font-size: 16px; line-height: 1.81; color: var(--dorh-body); }

.dorh-statement {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 26px 30px;
    background: var(--dorh-band);
    border-left: 3px solid var(--dorh-gold);
}
.dorh-statement__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dorh-muted);
    margin: 0;
}
.dorh-statement__text { font-size: 26px; line-height: 1.46; }

/* ==========================================================================
   DEPARTMENTS
   ========================================================================== */
.dorh-dept__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.dorh-dept__grid + .dorh-dept__grid { margin-top: 28px; }
.dorh-dept__grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.dorh-card {
    display: flex;
    flex-direction: column;
    background: var(--dorh-bg);
    border: 1px solid var(--dorh-line);
}
.dorh-card__media {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--dorh-line-strong);
}
.dorh-card__body { display: flex; flex-direction: column; gap: 12px; padding: 28px 30px 32px; }
.dorh-card__kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dorh-muted);
    margin: 0;
}
.dorh-card__kicker svg { flex: none; }
.dorh-card__title { font-size: 25px; line-height: 1.28; }
.dorh-card__text { margin: 0; font-size: 15px; line-height: 1.73; color: var(--dorh-body); }
.dorh-card .dorh-link { margin-top: 6px; align-self: flex-start; }

.dorh-card--wide { display: grid; grid-template-columns: 260px minmax(0, 1fr); }
.dorh-card--wide .dorh-card__media { height: 100%; min-height: 240px; }
.dorh-card--wide .dorh-card__body { padding: 30px 32px; }

/* ==========================================================================
   BISHOP / QUOTE
   ========================================================================== */
.dorh-quote-wrap {
    padding: 84px 0 88px;
    background: var(--dorh-bg);
}
.dorh-quote {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    background: #FFFFFF;
    border: 1px solid var(--dorh-line);
}
.dorh-quote__media { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center 18%; display: block; }
.dorh-quote__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 56px 64px;
}
.dorh-quote__text { max-width: 30ch; }
.dorh-quote__mark { color: var(--dorh-gold); }
.dorh-quote__text {
    font-size: 31px;
    line-height: 1.45;
    font-style: italic;
    font-weight: 300;
}
.dorh-quote__cite {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dorh-maroon);
    font-style: normal;
}
.dorh-quote__divider { height: 1px; width: 100%; background: var(--dorh-line); border: 0; margin: 0; }
.dorh-quote__name { font-size: 17px; font-weight: 600; color: var(--dorh-ink); margin: 0 0 6px; }
.dorh-quote__role { font-size: 15px; line-height: 1.73; color: var(--dorh-body); margin: 0; }

/* ==========================================================================
   PARISHES
   ========================================================================== */
.dorh-parishes__grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 90px;
    align-items: start;
}
.dorh-parishes__aside { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.dorh-parishes__title { font-size: 44px; line-height: 1.18; }
.dorh-parishes__text { margin: 0; font-size: 16px; line-height: 1.75; color: var(--dorh-body); }
.dorh-parishes__aside .dorh-btn { margin-top: 8px; min-height: 48px; font-size: 14px; }

.dorh-parish-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--dorh-line);
}
.dorh-parish-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px 20px 0;
    border-bottom: 1px solid var(--dorh-line);
    text-decoration: none;
}
.dorh-parish-list > .dorh-parish-row:nth-child(even) {
    padding: 20px 0 20px 24px;
    border-left: 1px solid var(--dorh-line);
}
.dorh-parish-row__name { font-size: 17px; font-weight: 500; color: var(--dorh-ink); }
.dorh-parish-row__place { font-size: 14px; color: var(--dorh-muted); white-space: nowrap; }
.dorh-parish-row--more .dorh-parish-row__name { font-size: 15px; font-weight: 600; color: var(--dorh-maroon); }
a.dorh-parish-row:hover .dorh-parish-row__name { color: var(--dorh-maroon); }

/* ==========================================================================
   NEWS
   ========================================================================== */
.dorh-news__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.dorh-post { display: flex; flex-direction: column; gap: 16px; text-decoration: none; }
.dorh-post__media { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--dorh-line-strong); }
.dorh-post__meta { display: flex; align-items: center; gap: 12px; }
.dorh-post__cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dorh-maroon);
}
.dorh-post__date { font-size: 13px; color: var(--dorh-muted); }
.dorh-post__title { font-size: 23px; line-height: 1.35; }
.dorh-post:hover .dorh-post__title { color: var(--dorh-maroon); }
.dorh-post__excerpt { margin: 0; font-size: 15px; line-height: 1.73; color: var(--dorh-body); }

.dorh-news__empty {
    padding: 56px 32px;
    border: 1px dashed var(--dorh-line-strong);
    text-align: center;
    font-size: 15px;
    color: var(--dorh-muted);
}

/* ==========================================================================
   DONATIONS BAND
   ========================================================================== */
.dorh-donate {
    position: relative;
    background-color: #420404;
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    padding: 96px 0;
}
.dorh-donate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(66, 4, 4, .95) 0%, rgba(66, 4, 4, .86) 100%);
}
.dorh-donate__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 90px;
    align-items: center;
}
.dorh-donate__body { display: flex; flex-direction: column; gap: 22px; }
.dorh-donate__title { font-size: 46px; line-height: 1.22; color: #fff; }
.dorh-donate__text { margin: 0; font-size: 17px; line-height: 1.76; font-weight: 300; color: #E4D5C8; max-width: 620px; }
.dorh-donate__actions { display: flex; flex-direction: column; gap: 14px; }
.dorh-donate__actions .dorh-btn { min-height: 56px; }
.dorh-donate__note { margin: 6px 0 0; font-size: 13px; line-height: 1.69; color: #C9B2A6; text-align: center; }

/* ==========================================================================
   NEWSLETTER — "Letters from Rumbek"
   ========================================================================== */
.dorh-nl { padding: 84px 0; background: var(--dorh-bg); }
.dorh-nl__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 90px;
    align-items: center;
}
.dorh-nl__body { display: flex; flex-direction: column; gap: 14px; }
.dorh-nl__title { font-size: 36px; line-height: 1.22; }
.dorh-nl__text { margin: 0; font-size: 16px; line-height: 1.75; color: var(--dorh-body); }

/* Botble renders the submit button as a sibling of .input-group, not inside it,
   so the row is rebuilt here with flex order. */
.dorh-nl__form .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}
.dorh-nl__form .input-group {
    order: 0;
    flex: 1 1 240px;
    display: flex;
    margin-bottom: 0 !important;
    flex-wrap: nowrap;
}
.dorh-nl__form .form-control {
    flex: 1 1 auto;
    min-width: 0;
    height: 54px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid var(--dorh-line-strong);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dorh-ink);
    box-shadow: none;
}
.dorh-nl__form .form-control::placeholder { color: var(--dorh-muted); }
.dorh-nl__form .form-control:focus {
    border-color: var(--dorh-maroon);
    outline: 2px solid rgba(139, 0, 0, .15);
    outline-offset: 0;
}
.dorh-nl__form .dorh-nl__submit,
.dorh-nl__form .btn-submit-newsletter {
    order: 1;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 28px;
    background: var(--dorh-maroon);
    color: var(--dorh-on-maroon);
    border: 0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s ease;
}
.dorh-nl__form .dorh-nl__submit:hover,
.dorh-nl__form .btn-submit-newsletter:hover { background: var(--dorh-gold); color: var(--dorh-on-gold); }
.dorh-nl__privacy { margin: 14px 0 0; font-size: 13px; line-height: 1.69; color: var(--dorh-muted); }
.dorh-nl__form .newsletter-message { order: 2; flex: 0 0 100%; margin: 0; font-size: 14px; }
.dorh-nl__form .newsletter-success-message { color: var(--dorh-green); }
.dorh-nl__form .newsletter-error-message { color: var(--dorh-maroon); }

/* ==========================================================================
   FOOTER — contacts only
   ========================================================================== */
.dorh-foot {
    background: #FFFFFF;
    border-top: 1px solid var(--dorh-line);
    padding: 72px 0 0;
}
.dorh-foot__grid {
    display: grid;
    grid-template-columns: 400px repeat(3, minmax(0, 1fr));
    gap: 64px;
    padding-bottom: 52px;
}
.dorh-foot__brand { display: flex; flex-direction: column; gap: 18px; }
.dorh-foot__logo-plate {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    opacity: 1;
    transition: opacity .2s ease;
}
.dorh-foot__logo-plate:hover { opacity: .78; }
.dorh-foot__logo { display: block; height: 62px; width: auto; object-fit: contain; }
.dorh-foot__statement { margin: 0; font-size: 15px; line-height: 1.8; color: var(--dorh-body); max-width: 42ch; }
.dorh-foot__socials { display: flex; gap: 10px; margin-top: 8px; }
.dorh-foot__social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--dorh-line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dorh-maroon);
    transition: background-color .2s ease, border-color .2s ease;
}
.dorh-foot__social:hover { background: var(--dorh-band); border-color: var(--dorh-maroon); }

.dorh-foot__col { display: flex; flex-direction: column; gap: 10px; }
.dorh-foot__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dorh-maroon);
    margin: 0 0 6px;
}
.dorh-foot__line { margin: 0; font-size: 15px; line-height: 1.73; color: var(--dorh-body); max-width: 34ch; }
.dorh-foot__line--strong { color: var(--dorh-ink); font-weight: 500; }
.dorh-foot__line a { color: inherit; text-decoration: none; }
.dorh-foot__line a:hover { color: var(--dorh-maroon); }

.dorh-foot__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 0 28px;
    border-top: 1px solid var(--dorh-line);
}
.dorh-foot__copy { font-size: 13px; color: var(--dorh-muted); }
.dorh-foot__copy a { color: var(--dorh-maroon); font-weight: 500; text-decoration: none; }
.dorh-foot__copy a:hover { color: var(--dorh-maroon); text-decoration: underline; text-decoration-color: var(--dorh-gold-mark); }
.dorh-foot__legal { display: flex; flex-wrap: wrap; gap: 26px; }
.dorh-foot__legal a { font-size: 13px; color: var(--dorh-muted); text-decoration: none; }
.dorh-foot__legal a:hover { color: var(--dorh-maroon); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
    .dorh-hero__title { font-size: 60px; }
    .dorh-mission__grid { grid-template-columns: 320px minmax(0, 1fr); gap: 60px; }
    .dorh-parishes__grid { grid-template-columns: 320px minmax(0, 1fr); gap: 56px; }
    .dorh-quote { grid-template-columns: 420px minmax(0, 1fr); }
    .dorh-quote__body { padding: 72px 56px; }
    .dorh-donate__grid { gap: 56px; }
}

@media (max-width: 991px) {
    .dorh-section { padding: 72px 0 76px; }
    .dorh-section-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
    .dorh-section-head__title { font-size: 36px; }

    .dorh-hero { min-height: 0; }
    .dorh-hero__inner { padding-top: 72px; padding-bottom: 72px; }
    .dorh-hero__title { font-size: 46px; }
    .dorh-hero__sub { font-size: 17px; }
    .dorh-facts { position: static; }
    .dorh-facts__grid { grid-template-columns: minmax(0, 1fr); }
    .dorh-fact { border-right: 0; border-bottom: 1px solid var(--dorh-line); }
    .dorh-fact:last-child { border-bottom: 0; }

    .dorh-mission__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .dorh-mission__title { font-size: 36px; }
    .dorh-statement__text { font-size: 22px; }

    .dorh-dept__grid,
    .dorh-dept__grid--wide { grid-template-columns: minmax(0, 1fr); }
    .dorh-card--wide { grid-template-columns: minmax(0, 1fr); }
    .dorh-card--wide .dorh-card__media { height: 220px; min-height: 0; }

    .dorh-quote-wrap { padding: 48px 0 52px; }
    .dorh-quote { grid-template-columns: minmax(0, 1fr); }
    .dorh-quote__media { min-height: 300px; max-height: 380px; }
    .dorh-quote__body { padding: 36px 24px 44px; gap: 20px; }
    .dorh-quote__text { font-size: 25px; max-width: none; }

    .dorh-parishes__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
    .dorh-parishes__title { font-size: 34px; }
    .dorh-parish-list { grid-template-columns: minmax(0, 1fr); }
    .dorh-parish-list > .dorh-parish-row:nth-child(even) { padding: 20px 24px 20px 0; border-left: 0; }

    .dorh-news__grid { grid-template-columns: minmax(0, 1fr); }

    .dorh-donate { padding: 72px 0; }
    .dorh-donate__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
    .dorh-donate__title { font-size: 34px; }

    .dorh-nl { padding: 64px 0; }
    .dorh-nl__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .dorh-nl__title { font-size: 30px; }

    .dorh-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}

@media (max-width: 575px) {
    .dorh-container { padding: 0 18px; }
    .dorh-hero__title { font-size: 38px; }
    .dorh-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .dorh-hero__actions .dorh-btn { width: 100%; }
    .dorh-btn--underline { border-bottom: 0; border: 1px solid rgba(255, 255, 255, .4); border-radius: 4px; }
    .dorh-card__body { padding: 24px 20px 28px; }
    .dorh-statement { padding: 22px 20px; }
    .dorh-nl__form .input-group { flex: 1 1 100%; }
    .dorh-nl__form .dorh-nl__submit,
    .dorh-nl__form .btn-submit-newsletter { flex: 1 1 100%; width: 100%; }

    .dorh-foot__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .dorh-foot__logo { height: 52px; }
    .dorh-foot__logo-plate { padding: 12px 14px; }
    .dorh-foot__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .dorh * { transition: none !important; animation: none !important; }
    .dorh-hero__slide { opacity: 0; }
    .dorh-hero__slide.is-active { opacity: 1; }
}

/* ==========================================================================
   THE ORDINARIES — succession timeline
   ========================================================================== */
.dorh-ord-banner,
.dorh-page-banner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 72px 0 64px;
    background: var(--dorh-band);
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-ord-banner__title,
.dorh-page-banner__title { font-size: 56px; line-height: 1.1; }
.dorh-ord-banner__text,
.dorh-page-banner__text { margin: 0; font-size: 17px; line-height: 1.7; color: var(--dorh-body); max-width: 74ch; }

/* --- sitting ordinary --- */
.dorh-ord-current-wrap {
    padding: 56px 0 60px;
    background: var(--dorh-bg);
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-ord-current {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    background: #FFFFFF;
    border: 1px solid var(--dorh-line);
}
.dorh-ord-current__media { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center 18%; display: block; }
.dorh-ord-current__body { display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: 48px 56px; }
.dorh-ord-flag { display: flex; align-items: center; gap: 12px; margin: 0; }
.dorh-ord-flag::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--dorh-green);
    flex: none;
}
.dorh-ord-flag span {
    font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--dorh-green);
}
.dorh-ord-current__name { font-size: 38px; line-height: 1.15; }
.dorh-ord-current__office { margin: 0; font-size: 17px; font-weight: 600; color: var(--dorh-maroon); }
.dorh-ord-current__text { margin: 0; font-size: 16px; line-height: 1.75; color: var(--dorh-body); max-width: 60ch; }

/* --- the succession --- */
.dorh-ord-list { padding: 84px 0 96px; }
.dorh-ord-list .dorh-container { max-width: 1000px; }
.dorh-ord-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.dorh-ord-head__title { font-size: 38px; line-height: 1.18; }

.dorh-ord-row {
    display: grid;
    grid-template-columns: 132px 48px minmax(0, 1fr);
    align-items: stretch;
}
.dorh-ord-row__years {
    font-family: var(--dorh-display);
    font-size: 28px;
    line-height: 1.2;
    color: var(--dorh-ink);
    text-align: right;
    padding-top: 28px;
}
/* The spine is drawn with absolute top/bottom rather than height:100%, so it
   still paints in rows whose content is shorter than the row. */
.dorh-ord-row__spine { position: relative; }
.dorh-ord-row__spine::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    background: var(--dorh-line-strong);
}
.dorh-ord-row__spine::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 50%;
    margin-left: -6.5px;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--dorh-bg);
    border: 3px solid var(--dorh-gold);
}
/* nth-of-type(2): row 1 is the section heading, so the spine starts on the first entry. */
.dorh-ord-row:nth-of-type(2) .dorh-ord-row__spine::before { top: 24px; }
.dorh-ord-row:last-of-type .dorh-ord-row__spine::before { bottom: auto; height: 62px; }

.dorh-ord-entry {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding: 24px 0 30px;
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-ord-row:last-of-type .dorh-ord-entry { border-bottom: 0; }
.dorh-ord-entry__media {
    width: 124px; height: 150px;
    object-fit: cover; object-position: center 18%;
    display: block;
    border: 1px solid var(--dorh-line);
    background: var(--dorh-line-strong);
}
.dorh-ord-entry__body { display: flex; flex-direction: column; gap: 8px; padding-top: 2px; }
.dorh-ord-entry__name { font-size: 25px; line-height: 1.25; }
.dorh-ord-entry__office {
    margin: 0;
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--dorh-muted);
}
.dorh-ord-entry__note { margin: 4px 0 0; font-size: 15px; line-height: 1.7; color: var(--dorh-body); }

/* --- a break in the record --- */
.dorh-ord-row--gap .dorh-ord-row__years { font-size: 20px; color: var(--dorh-muted); padding-top: 22px; }
.dorh-ord-row--gap .dorh-ord-row__spine::before { width: 0; margin-left: 0; border-left: 2px dashed #D9C89E; background: none; }
.dorh-ord-row--gap .dorh-ord-row__spine::after { display: none; }
.dorh-ord-gap__text {
    margin: 0;
    padding: 22px 0 24px;
    font-size: 15px; line-height: 1.7; font-style: italic;
    color: var(--dorh-muted);
    border-bottom: 1px solid var(--dorh-line);
}

@media (max-width: 991px) {
    .dorh-ord-banner,
    .dorh-page-banner { padding: 56px 0 48px; }
    .dorh-ord-banner__title,
    .dorh-page-banner__title { font-size: 36px; }
    .dorh-ord-current-wrap { padding: 36px 0 40px; }
    .dorh-ord-current { grid-template-columns: minmax(0, 1fr); }
    .dorh-ord-current__media { min-height: 300px; max-height: 380px; }
    .dorh-ord-current__body { padding: 32px 24px 40px; }
    .dorh-ord-current__name { font-size: 30px; }

    .dorh-ord-list { padding: 60px 0 72px; }
    .dorh-ord-head__title { font-size: 30px; }
    .dorh-ord-row { grid-template-columns: 40px minmax(0, 1fr); }
    .dorh-ord-row__years {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        font-size: 24px;
        padding: 24px 0 0;
    }
    .dorh-ord-row__spine { grid-column: 1; grid-row: 1 / span 2; }
    .dorh-ord-row__spine::after { top: 32px; }
    .dorh-ord-entry { grid-column: 2; grid-row: 2; grid-template-columns: 104px minmax(0, 1fr); gap: 20px; padding: 12px 0 26px; }
    .dorh-ord-entry__media { width: 104px; height: 126px; }
    .dorh-ord-entry__name { font-size: 21px; }
    .dorh-ord-row--gap .dorh-ord-row__years { padding: 20px 0 0; }
    .dorh-ord-gap__text { grid-column: 2; padding: 4px 0 22px; }
}

@media (max-width: 575px) {
    .dorh-ord-entry { grid-template-columns: minmax(0, 1fr); }
    .dorh-ord-entry__media { width: 120px; height: 146px; }
}

/* ==========================================================================
   SPLIT — image beside prose (interior pages)
   ========================================================================== */
.dorh-split { padding: 84px 0 88px; background: var(--dorh-bg); }
.dorh-split--band { background: var(--dorh-band); border-top: 1px solid var(--dorh-line); border-bottom: 1px solid var(--dorh-line); }
.dorh-split__grid {
    display: grid;
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}
.dorh-split--reverse .dorh-split__grid { grid-template-columns: minmax(0, 1fr) 460px; }
.dorh-split--reverse .dorh-split__media { order: 2; }
.dorh-split__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 1px solid var(--dorh-line);
    background: var(--dorh-line-strong);
}
.dorh-split__body { display: flex; flex-direction: column; gap: 20px; }
.dorh-split__title { font-size: 40px; line-height: 1.18; }
.dorh-split__body p { margin: 0; font-size: 16px; line-height: 1.81; color: var(--dorh-body); }
.dorh-split__lead { font-size: 19px !important; line-height: 1.68 !important; color: var(--dorh-lead) !important; font-weight: 300; }

.dorh-split__list { display: flex; flex-direction: column; margin-top: 6px; border-top: 1px solid var(--dorh-line); }
.dorh-split__item {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-split__item dt { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-muted); padding-top: 3px; }
.dorh-split__item dd { margin: 0; font-size: 16px; line-height: 1.6; color: var(--dorh-ink); }

/* ==========================================================================
   FACTS PANEL — the diocese at a glance
   ========================================================================== */
.dorh-facts-panel { padding: 84px 0 92px; background: var(--dorh-band); border-top: 1px solid var(--dorh-line); border-bottom: 1px solid var(--dorh-line); }
.dorh-facts-panel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 56px; margin-bottom: 44px; }
.dorh-facts-panel__title { font-size: 40px; line-height: 1.18; }
.dorh-facts-panel__intro { margin: 0; font-size: 16px; line-height: 1.75; color: var(--dorh-body); max-width: 44ch; }
.dorh-facts-panel__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--dorh-bg);
    border-top: 1px solid var(--dorh-line);
    border-left: 1px solid var(--dorh-line);
}
.dorh-fact-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 30px 32px 34px;
    border-right: 1px solid var(--dorh-line);
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-fact-cell__value { font-family: var(--dorh-display); font-size: 38px; line-height: 1.12; color: var(--dorh-ink); }
.dorh-fact-cell__label { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-maroon); }
.dorh-fact-cell__note { margin: 0; font-size: 14px; line-height: 1.6; color: var(--dorh-body); }

@media (max-width: 1199px) {
    .dorh-split__grid { grid-template-columns: 380px minmax(0, 1fr); gap: 48px; }
    .dorh-split--reverse .dorh-split__grid { grid-template-columns: minmax(0, 1fr) 380px; }
}
@media (max-width: 991px) {
    .dorh-split { padding: 60px 0 64px; }
    .dorh-split__grid,
    .dorh-split--reverse .dorh-split__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .dorh-split--reverse .dorh-split__media { order: 0; }
    .dorh-split__title { font-size: 30px; }
    .dorh-split__item { grid-template-columns: minmax(0, 1fr); gap: 4px; }

    .dorh-facts-panel { padding: 60px 0 68px; }
    .dorh-facts-panel__head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 32px; }
    .dorh-facts-panel__title { font-size: 30px; }
    .dorh-facts-panel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dorh-fact-cell__value { font-size: 32px; }
}
@media (max-width: 575px) {
    .dorh-facts-panel__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   REGISTER — the departments, one ruled entry each
   ========================================================================== */
.dorh-register { padding: 84px 0 92px; background: var(--dorh-bg); }
.dorh-register__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.dorh-register__title { font-size: 40px; line-height: 1.18; }
.dorh-register__intro { display: flex; flex-direction: column; gap: 16px; margin-top: 6px; max-width: 68ch; }
.dorh-register__intro p { margin: 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); }
.dorh-register__list { margin-top: 44px; border-top: 1px solid var(--dorh-line-strong); }

/* The entries are peers, not a sequence, so they are separated by rules
   rather than numbered. */
.dorh-reg {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 64px;
    padding: 46px 0 50px;
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-reg__aside { display: flex; flex-direction: column; gap: 12px; }
.dorh-reg__kicker { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dorh-maroon); }
.dorh-reg__name { font-size: 30px; line-height: 1.16; }
.dorh-reg__seat { margin: 0; font-size: 14px; line-height: 1.6; color: var(--dorh-muted); }
.dorh-reg__aside .dorh-link { margin-top: 4px; }

.dorh-reg__main { display: flex; flex-direction: column; gap: 18px; }
.dorh-reg__lead { margin: 0; font-size: 19px; line-height: 1.68; font-weight: 300; color: var(--dorh-lead); }
.dorh-reg__text { margin: 0; font-size: 16px; line-height: 1.81; color: var(--dorh-body); }

.dorh-reg__points { margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--dorh-line); }
.dorh-reg__points-title { margin: 0 0 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-muted); }
.dorh-reg__points ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.dorh-reg__points li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.62;
    color: var(--dorh-ink);
}
.dorh-reg__points li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 9px;
    height: 1px;
    background: var(--dorh-gold);
}

@media (max-width: 1199px) {
    .dorh-reg { grid-template-columns: 240px minmax(0, 1fr); gap: 44px; }
}
@media (max-width: 991px) {
    .dorh-register { padding: 60px 0 64px; }
    .dorh-register__title { font-size: 30px; }
    .dorh-reg { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 36px 0 40px; }
    .dorh-reg__name { font-size: 26px; }
    .dorh-reg__points ul { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   PARISH INDEX — dedication, place and photograph
   ========================================================================== */
.dorh-parishes-index { padding: 84px 0 92px; background: var(--dorh-bg); }
.dorh-parishes-index--band { background: var(--dorh-band); border-top: 1px solid var(--dorh-line); border-bottom: 1px solid var(--dorh-line); }
.dorh-parishes-index__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 56px; margin-bottom: 40px; }
.dorh-parishes-index__head-main { display: flex; flex-direction: column; gap: 14px; }
.dorh-parishes-index__title { font-size: 40px; line-height: 1.18; }
.dorh-parishes-index__intro { margin: 0; font-size: 16px; line-height: 1.75; color: var(--dorh-body); max-width: 46ch; }

.dorh-parishes-index__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--dorh-bg);
    border-top: 1px solid var(--dorh-line);
    border-left: 1px solid var(--dorh-line);
}
.dorh-parishes-index--band .dorh-parishes-index__grid { background: #FFFFFF; }
.dorh-parish {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 22px 28px;
    border-right: 1px solid var(--dorh-line);
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-parish__plate {
    width: 132px;
    height: 96px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--dorh-line);
    background: var(--dorh-band);
}
/* The plate for a parish we have no photograph of: a ruled bone panel with a
   single gold cross, so the row reads as deliberate rather than broken. */
.dorh-parish__plate--empty { position: relative; }
.dorh-parish__plate--empty::before,
.dorh-parish__plate--empty::after {
    content: '';
    position: absolute;
    background: var(--dorh-gold);
    opacity: 0.55;
}
.dorh-parish__plate--empty::before { top: 50%; left: 50%; width: 30px; height: 1px; margin: 0 0 0 -15px; }
.dorh-parish__plate--empty::after { top: 50%; left: 50%; width: 1px; height: 40px; margin: -20px 0 0 0; }

.dorh-parish__body { display: flex; flex-direction: column; gap: 5px; }
.dorh-parish__name { font-size: 21px; line-height: 1.24; }
.dorh-parish__place { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dorh-maroon); }
.dorh-parish__note { margin: 2px 0 0; font-size: 14px; line-height: 1.6; color: var(--dorh-body); }

.dorh-parishes-index__footnote {
    margin: 26px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dorh-muted);
    max-width: 78ch;
}

@media (max-width: 991px) {
    .dorh-parishes-index { padding: 60px 0 68px; }
    .dorh-parishes-index__head { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 30px; }
    .dorh-parishes-index__title { font-size: 30px; }
    .dorh-parishes-index__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 575px) {
    .dorh-parish { grid-template-columns: 92px minmax(0, 1fr); gap: 18px; padding: 18px 20px; }
    .dorh-parish__plate { width: 92px; height: 72px; }
    .dorh-parish__name { font-size: 19px; }
}

/* ==========================================================================
   OFFICES — addresses, telephone and email
   ========================================================================== */
.dorh-offices { padding: 84px 0 88px; background: var(--dorh-bg); }
.dorh-offices__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.dorh-offices__title { font-size: 40px; line-height: 1.18; }
.dorh-offices__intro { margin: 4px 0 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); max-width: 68ch; }

.dorh-offices__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--dorh-bg);
    border-top: 1px solid var(--dorh-line);
    border-left: 1px solid var(--dorh-line);
}
.dorh-office {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 34px 36px 38px;
    border-right: 1px solid var(--dorh-line);
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-office__label { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dorh-maroon); }
.dorh-office__name { font-size: 26px; line-height: 1.2; }
.dorh-office__address { margin: 2px 0 0; font-style: normal; font-size: 16px; line-height: 1.7; color: var(--dorh-body); }

.dorh-office__rows { display: flex; flex-direction: column; margin: 14px 0 0; border-top: 1px solid var(--dorh-line); }
.dorh-office__row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-office__row dt { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-muted); padding-top: 4px; }
.dorh-office__row dd { margin: 0; font-size: 16px; line-height: 1.7; color: var(--dorh-ink); }
.dorh-office__row a { color: var(--dorh-ink); text-decoration: none; border-bottom: 1px solid var(--dorh-line-strong); }
.dorh-office__row a:hover { color: var(--dorh-maroon); border-bottom-color: var(--dorh-maroon); }
.dorh-office__note { margin: 14px 0 0; font-size: 14px; line-height: 1.7; color: var(--dorh-muted); }

/* ==========================================================================
   CONTACT — the enquiry form
   ========================================================================== */
.dorh-contact { padding: 0 0 92px; background: var(--dorh-bg); }
.dorh-contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) 560px; gap: 72px; align-items: start; }
.dorh-contact__aside { display: flex; flex-direction: column; gap: 16px; }
.dorh-contact__title { font-size: 40px; line-height: 1.18; }
.dorh-contact__lead { margin: 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); max-width: 46ch; }

.dorh-contact__notes { display: flex; flex-direction: column; margin: 14px 0 0; border-top: 1px solid var(--dorh-line); }
.dorh-contact__note { padding: 18px 0; border-bottom: 1px solid var(--dorh-line); }
.dorh-contact__note dt { margin: 0 0 6px; font-size: 15px; font-weight: 600; color: var(--dorh-ink); }
.dorh-contact__note dd { margin: 0; font-size: 15px; line-height: 1.7; color: var(--dorh-body); }

/* The plugin owns the form markup, so its own classes are restyled here
   rather than the template being rewritten. */
.dorh-contact__form { background: var(--dorh-band); border: 1px solid var(--dorh-line); padding: 40px 40px 44px; }
.dorh-contact__form .contact-form-group { margin-bottom: 20px; }
.dorh-contact__form .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dorh-muted);
}
.dorh-contact__form .form-label.required::after { content: ' *'; color: var(--dorh-maroon); }
.dorh-contact__form .form-control,
.dorh-contact__form input[type="text"],
.dorh-contact__form input[type="email"],
.dorh-contact__form input[type="tel"],
.dorh-contact__form textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    background: #FFFFFF;
    border: 1px solid var(--dorh-line-strong);
    border-radius: 3px;
    font-family: var(--dorh-body-font, inherit);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dorh-ink);
    box-shadow: none;
}
.dorh-contact__form textarea { min-height: 150px; resize: vertical; }
.dorh-contact__form .form-control:focus { border-color: var(--dorh-maroon); outline: none; }
.dorh-contact__form .form-control::placeholder { color: var(--dorh-muted); }

.dorh-contact__form .form-check,
.dorh-contact__form .checkbox { display: flex; align-items: flex-start; gap: 10px; }
.dorh-contact__form .form-check-input { margin-top: 4px; flex: none; }
.dorh-contact__form .form-check-label { font-size: 14px; line-height: 1.65; color: var(--dorh-body); text-transform: none; letter-spacing: 0; font-weight: 400; }
.dorh-contact__form .form-check-label a { color: var(--dorh-maroon); }

.dorh-contact__submit { width: 100%; margin-top: 8px; cursor: pointer; }
.dorh-contact__form .help-block,
.dorh-contact__form .invalid-feedback,
.dorh-contact__form .text-danger { display: block; margin-top: 6px; font-size: 14px; color: #A11212; }
.dorh-contact__form .alert { margin-bottom: 20px; padding: 14px 16px; border-radius: 3px; font-size: 15px; }
.dorh-contact__form .alert-success { background: #EAF3EE; border: 1px solid #BFD9CB; color: var(--dorh-green); }
.dorh-contact__form .alert-danger { background: #F7EAEA; border: 1px solid #E2C4C4; color: #8B0000; }

@media (max-width: 1199px) {
    .dorh-contact__grid { grid-template-columns: minmax(0, 1fr) 460px; gap: 48px; }
}
@media (max-width: 991px) {
    .dorh-offices { padding: 60px 0 64px; }
    .dorh-offices__title { font-size: 30px; }
    .dorh-offices__grid { grid-template-columns: minmax(0, 1fr); }
    .dorh-contact { padding: 0 0 64px; }
    .dorh-contact__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .dorh-contact__title { font-size: 30px; }
    .dorh-contact__form { padding: 28px 24px 32px; }
    .dorh-office__row { grid-template-columns: 84px minmax(0, 1fr); gap: 14px; }
}
@media (max-width: 575px) {
    .dorh-office { padding: 26px 22px 30px; }
    .dorh-office__row { grid-template-columns: minmax(0, 1fr); gap: 4px; }
}

/* ==========================================================================
   MATH CAPTCHA — shown on the contact and newsletter forms
   ========================================================================== */
/* The label is a whole sentence, so it is set as running text rather than in
   the uppercase style the other field labels use. */
.dorh label[for="math_captcha"] {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--dorh-body) !important;
}
.dorh input#math-group { max-width: 200px; font-variant-numeric: tabular-nums; }

/* Newsletter: the form is a flex row, so the captcha needs a place in the
   order or it competes with the email field for the first line. */
.dorh-nl__form .newsletter-form > .position-relative,
.dorh-nl__form .newsletter-form > .mb-3:not(.input-group):not(.newsletter-message) {
    order: 1;
    flex: 0 0 100%;
    margin-bottom: 0 !important;
}
.dorh-nl__form .input-group { flex: 1 1 100%; }
.dorh-nl__form .dorh-nl__submit,
.dorh-nl__form .btn-submit-newsletter { order: 2; }
.dorh-nl__form .newsletter-message { order: 3; }
.dorh-nl__form label[for="math_captcha"] { display: block; margin-bottom: 8px; }
.dorh-nl__form input#math-group {
    width: 200px;
    height: 54px;
    padding: 0 16px;
    background: #FFFFFF;
    border: 1px solid var(--dorh-line-strong);
    border-radius: 3px;
    font-size: 16px;
    color: var(--dorh-ink);
}

/* ==========================================================================
   GIVE — the donation enquiry form
   ========================================================================== */
.dorh-give { padding: 84px 0 92px; background: var(--dorh-bg); }
.dorh-give__grid { display: grid; grid-template-columns: minmax(0, 1fr) 620px; gap: 72px; align-items: start; }
.dorh-give__aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 32px; }
.dorh-give__title { font-size: 40px; line-height: 1.18; }
.dorh-give__lead { margin: 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); max-width: 44ch; }

.dorh-give__notes { display: flex; flex-direction: column; margin: 14px 0 0; border-top: 1px solid var(--dorh-line); }
.dorh-give__note { padding: 18px 0; border-bottom: 1px solid var(--dorh-line); }
.dorh-give__note dt { margin: 0 0 6px; font-size: 15px; font-weight: 600; color: var(--dorh-ink); }
.dorh-give__note dd { margin: 0; font-size: 15px; line-height: 1.7; color: var(--dorh-body); }

.dorh-give__form { background: var(--dorh-band); border: 1px solid var(--dorh-line); padding: 40px 40px 44px; }
.dorh-give__fields { display: flex; flex-direction: column; gap: 20px; margin: 0; }
.dorh-field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.dorh-field { display: flex; flex-direction: column; gap: 8px; }
.dorh-field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dorh-muted);
}
.dorh-field label span { color: var(--dorh-maroon); }
.dorh-field input,
.dorh-field select,
.dorh-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    background: #FFFFFF;
    border: 1px solid var(--dorh-line-strong);
    border-radius: 3px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dorh-ink);
}
.dorh-field textarea { min-height: 140px; resize: vertical; }
.dorh-field input:focus,
.dorh-field select:focus,
.dorh-field textarea:focus { border-color: var(--dorh-maroon); outline: none; }
.dorh-field input::placeholder { color: var(--dorh-muted); }
/* The captcha label is a whole sentence, so it is set as running text. */
.dorh-field--captcha label { text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 500; color: var(--dorh-body); }
.dorh-field--captcha input { max-width: 220px; font-variant-numeric: tabular-nums; }

.dorh-give__submit { align-self: flex-start; margin-top: 4px; cursor: pointer; }
.dorh-give__small { margin: 0; font-size: 13px; line-height: 1.7; color: var(--dorh-muted); }

.dorh-give__errors {
    margin-bottom: 24px;
    padding: 16px 18px;
    background: #F7EAEA;
    border: 1px solid #E2C4C4;
    border-radius: 3px;
    color: #8B0000;
}
.dorh-give__errors p { margin: 0 0 8px; font-size: 15px; font-weight: 600; }
.dorh-give__errors ul { margin: 0; padding-left: 20px; font-size: 14px; line-height: 1.7; }

.dorh-give__thanks {
    padding: 34px 32px 36px;
    background: #FFFFFF;
    border-left: 3px solid var(--dorh-green);
}
.dorh-give__thanks-title { font-size: 26px; line-height: 1.2; margin-bottom: 12px; }
.dorh-give__thanks p { margin: 0; font-size: 16px; line-height: 1.78; color: var(--dorh-body); }

@media (max-width: 1199px) {
    .dorh-give__grid { grid-template-columns: minmax(0, 1fr) 500px; gap: 48px; }
}
@media (max-width: 991px) {
    .dorh-give { padding: 60px 0 68px; }
    .dorh-give__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .dorh-give__aside { position: static; }
    .dorh-give__title { font-size: 30px; }
    .dorh-give__form { padding: 28px 24px 32px; }
}
@media (max-width: 575px) {
    .dorh-field-row { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   PHOTOGRAPH STRIP — a row of captioned pictures
   ========================================================================== */
.dorh-strip { padding: 0 0 92px; background: var(--dorh-bg); }
.dorh-strip--band { padding: 76px 0 84px; background: var(--dorh-band); border-top: 1px solid var(--dorh-line); border-bottom: 1px solid var(--dorh-line); }
.dorh-strip__head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.dorh-strip__title { font-size: 34px; line-height: 1.18; }
.dorh-strip__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.dorh-strip__item { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.dorh-strip__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 1px solid var(--dorh-line);
    background: var(--dorh-line-strong);
}
.dorh-strip__item figcaption { font-size: 13px; line-height: 1.6; color: var(--dorh-muted); }

@media (max-width: 991px) {
    .dorh-strip { padding: 0 0 60px; }
    .dorh-strip--band { padding: 56px 0 60px; }
    .dorh-strip__title { font-size: 26px; }
    .dorh-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 575px) {
    .dorh-strip__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   GALLERY — every photograph, grouped by gallery
   ========================================================================== */
.dorh-gallery { padding: 76px 0 92px; background: var(--dorh-bg); }
.dorh-gallery__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 12px; }
.dorh-gallery__title { font-size: 40px; line-height: 1.18; }
.dorh-gallery__intro { margin: 4px 0 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); max-width: 68ch; }

.dorh-gal { padding: 44px 0 8px; }
.dorh-gal + .dorh-gal { border-top: 1px solid var(--dorh-line); }
.dorh-gal__head { display: flex; align-items: baseline; justify-content: space-between; gap: 32px; margin-bottom: 26px; }
.dorh-gal__name { font-size: 28px; line-height: 1.2; }
.dorh-gal__count { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-muted); white-space: nowrap; }

.dorh-gal__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.dorh-gal__item {
    display: block;
    overflow: hidden;
    border: 1px solid var(--dorh-line);
    background: var(--dorh-band);
    line-height: 0;
}
.dorh-gal__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, opacity .25s ease;
}
.dorh-gal__item:hover img { transform: scale(1.04); opacity: .92; }
.dorh-gal__item:focus-visible { outline: 2px solid var(--dorh-gold); outline-offset: 3px; }
.dorh-gal__fig { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dorh-gal__fig figcaption { font-size: 13px; line-height: 1.6; color: var(--dorh-muted); }

@media (max-width: 991px) {
    .dorh-gallery { padding: 56px 0 64px; }
    .dorh-gallery__title { font-size: 30px; }
    .dorh-gal { padding: 32px 0 4px; }
    .dorh-gal__name { font-size: 23px; }
    .dorh-gal__head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 20px; }
    .dorh-gal__grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
}

/* --- the index of galleries --- */
.dorh-galindex { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; padding-top: 44px; }
.dorh-galcard {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dorh-line);
    background: #FFFFFF;
    text-decoration: none;
    transition: border-color .2s ease;
}
.dorh-galcard:hover { border-color: var(--dorh-line-strong); }
.dorh-galcard__media { display: block; overflow: hidden; line-height: 0; background: var(--dorh-band); }
.dorh-galcard__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform .5s ease; }
.dorh-galcard:hover .dorh-galcard__media img { transform: scale(1.03); }
.dorh-galcard__body { display: flex; flex-direction: column; gap: 8px; padding: 24px 26px 28px; }
.dorh-galcard__name { font-size: 22px; line-height: 1.24; color: var(--dorh-ink); }
.dorh-galcard__count { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-maroon); }
.dorh-galcard__text { font-size: 15px; line-height: 1.65; color: var(--dorh-body); }
.dorh-galcard:focus-visible { outline: 2px solid var(--dorh-gold); outline-offset: 3px; }

@media (max-width: 991px) {
    .dorh-galindex { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; padding-top: 32px; }
}

/* ==========================================================================
   LIGHTBOX — photographs open over the page, not in a new tab
   ========================================================================== */
.dorh-lb {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 72px 84px;
    background: rgba(26, 4, 4, .93);
    opacity: 0;
    transition: opacity .22s ease;
}
.dorh-lb.is-open { opacity: 1; }
.dorh-lb[hidden] { display: none; }

.dorh-lb__stage {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.dorh-lb__img {
    max-width: 100%;
    max-height: calc(100vh - 190px);
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, .16);
    background: #1A0404;
}
.dorh-lb__bar {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 70ch;
    text-align: center;
}
.dorh-lb__caption { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .88); }
.dorh-lb__count {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dorh-gold);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.dorh-lb__close,
.dorh-lb__nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}
.dorh-lb__close:hover,
.dorh-lb__nav:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .5); }
.dorh-lb__close:focus-visible,
.dorh-lb__nav:focus-visible { outline: 2px solid var(--dorh-gold); outline-offset: 3px; }
.dorh-lb__close { top: 20px; right: 24px; width: 46px; height: 46px; }
.dorh-lb__nav { top: 50%; margin-top: -26px; width: 52px; height: 52px; }
.dorh-lb__nav--prev { left: 20px; }
.dorh-lb__nav--next { right: 20px; }
.dorh-lb__nav[hidden] { display: none; }

/* The tiles are buttons in effect, so say so. */
.dorh-gal__item { cursor: zoom-in; }

@media (prefers-reduced-motion: reduce) {
    .dorh-lb { transition: none; }
}
@media (max-width: 767px) {
    .dorh-lb { padding: 64px 12px 76px; }
    .dorh-lb__img { max-height: calc(100vh - 200px); }
    .dorh-lb__nav { width: 44px; height: 44px; margin-top: -22px; }
    .dorh-lb__nav--prev { left: 8px; }
    .dorh-lb__nav--next { right: 8px; }
    .dorh-lb__close { top: 12px; right: 12px; }
}

/* ==========================================================================
   HEADER — "Editorial Mission": bone bar, hairline rule, sentence-case nav
   ==========================================================================
   These rules sit outside .dorh because the header markup is the theme's, so
   they are written against .dorh-head and carry !important only where the
   minified Iori stylesheet would otherwise win.
   ========================================================================== */
.dorh-head {
    background: var(--dorh-bg) !important;
    border-bottom: 1px solid var(--dorh-line) !important;
    box-shadow: none !important;
    font-family: var(--dorh-body-font, 'Lexend Deca', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
}
.dorh-head__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 84px;
}
.dorh-head__left { display: flex; align-items: center; gap: 48px; min-width: 0; }

.dorh-head__logo { display: flex; align-items: center; flex: none; }
.dorh-head__logo img { height: 46px; width: auto; display: block; }

/* --- the menu itself --- */
.dorh-head__nav .main-menu { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.dorh-head__nav .main-menu > li { position: relative; margin: 0; padding: 0; }
.dorh-head__nav .main-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 30px 0;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 1.2;
    color: var(--dorh-ink) !important;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}
.dorh-head__nav .main-menu > li > a:hover,
.dorh-head__nav .main-menu > li.active > a { color: var(--dorh-maroon) !important; }
.dorh-head__nav .main-menu > li.active > a { font-weight: 600 !important; }
.dorh-head__nav .main-menu > li > a::after,
.dorh-head__nav .main-menu > li > a::before { display: none !important; }
.dorh-head__caret { flex: none; color: var(--dorh-muted); transition: transform .2s ease; }
.dorh-head__nav .main-menu > li:hover > a .dorh-head__caret { transform: rotate(180deg); color: var(--dorh-maroon); }

/* --- the panel --- */
/* Positioned against .dorh-head so it can run the full width of the window
   while the trigger sits inside the container. */
.dorh-head { position: relative; }
.dorh-head__nav .main-menu > li { position: static; }
.dorh-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 34px 0 38px;
    background: #FFFFFF;
    border-top: 1px solid var(--dorh-line);
    border-bottom: 2px solid var(--dorh-maroon);
    box-shadow: 0 24px 48px rgba(32, 21, 18, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.dorh-head__nav .main-menu > li:hover > .dorh-mega,
.dorh-head__nav .main-menu > li:focus-within > .dorh-mega { opacity: 1; visibility: visible; transform: translateY(0); }

/* The theme's `.header .main-menu li a` is (0,3,0) and sets display:block with
   28px of padding, so every rule below is scoped to at least that weight —
   otherwise the name and its description render on one running line. */
.dorh-mega__inner { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: 56px; align-items: start; }
.dorh-mega__aside { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; }
.dorh-mega__blurb { margin: 0; font-size: 14px; line-height: 1.68; color: var(--dorh-body); }

.dorh-mega__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 24px; }

.dorh-head__nav .dorh-mega .dorh-mega__item {
    display: flex !important;
    flex-direction: column;
    gap: 3px;
    padding: 11px 14px 13px !important;
    border-radius: 3px;
    border-left: 2px solid transparent;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-decoration: none;
    transition: background-color .16s ease, border-color .16s ease;
}
.dorh-head__nav .dorh-mega .dorh-mega__item::before,
.dorh-head__nav .dorh-mega .dorh-mega__item::after { display: none !important; }
.dorh-head__nav .dorh-mega .dorh-mega__item:hover {
    background: var(--dorh-band) !important;
    border-left-color: var(--dorh-gold);
    padding-left: 14px !important;
}
.dorh-head__nav .dorh-mega .dorh-mega__name {
    display: block;
    font-family: var(--dorh-display);
    font-size: 17px;
    line-height: 1.26;
    color: var(--dorh-ink);
    transition: color .16s ease;
}
.dorh-head__nav .dorh-mega .dorh-mega__item:hover .dorh-mega__name { color: var(--dorh-maroon); }
.dorh-head__nav .dorh-mega .dorh-mega__text {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: var(--dorh-body);
}

@media (max-width: 1399px) {
    .dorh-mega__inner { grid-template-columns: 220px minmax(0, 1fr); gap: 36px; }
    .dorh-mega__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1199px) {
    .dorh-mega__inner { grid-template-columns: minmax(0, 1fr); gap: 22px; }
    .dorh-mega__aside { padding-top: 0; }
}

/* --- right-hand group --- */
.dorh-head__right { display: flex; align-items: center; gap: 20px; flex: none; }
.dorh-head__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--dorh-body);
    cursor: pointer;
    transition: color .2s ease;
}
.dorh-head__search:hover { color: var(--dorh-maroon); }
.dorh-head__contact {
    font-size: 14px;
    font-weight: 500;
    color: var(--dorh-ink);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}
.dorh-head__contact:hover { color: var(--dorh-maroon); }
.dorh-head__rule { width: 1px; height: 20px; background: var(--dorh-line-strong); }
.dorh-head__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 22px;
    border-radius: 4px;
    background: var(--dorh-maroon);
    color: var(--dorh-on-maroon) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .2s ease;
}
.dorh-head__cta:hover { background: var(--dorh-gold); color: var(--dorh-on-gold) !important; }
.dorh-head__cta:hover svg { stroke: var(--dorh-on-gold); }
.dorh-head a:focus-visible,
.dorh-head button:focus-visible { outline: 2px solid var(--dorh-gold); outline-offset: 3px; }

.dorh-head .burger-icon { position: static; margin: 0; }

/* main.js adds .stick past 200px of scroll. */
.dorh-head.stick { box-shadow: 0 6px 24px rgba(32, 21, 18, .07) !important; }
.dorh-head.stick .dorh-head__bar { min-height: 70px; }
.dorh-head.stick .dorh-head__logo img { height: 38px; }
.dorh-head.stick .dorh-head__nav .main-menu > li > a { padding: 23px 0; }
@media (prefers-reduced-motion: no-preference) {
    .dorh-head__bar,
    .dorh-head__logo img { transition: min-height .2s ease, height .2s ease; }
}

@media (max-width: 1199px) {
    .dorh-head__bar { min-height: 72px; gap: 20px; }
    .dorh-head__left { gap: 24px; }
    .dorh-head__logo img { height: 40px; }
    .dorh-head__right { gap: 14px; }
}
@media (max-width: 575px) {
    .dorh-head__logo img { height: 34px; }
}

/* ==========================================================================
   DRAWER — the mobile menu
   ========================================================================== */
.dorh-drawer .mobile-header-content-area { background: var(--dorh-bg); padding: 0; }
.dorh-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 64px;
    padding: 0 18px;
    border-bottom: 1px solid var(--dorh-line);
}
.dorh-drawer__logo { display: flex; align-items: center; }
.dorh-drawer__logo img { height: 34px; width: auto; display: block; }
.dorh-drawer__scroll { padding-bottom: 40px; }

.dorh-drawer__list { margin: 0; padding: 0; list-style: none; }
.dorh-drawer__item { margin: 0; }
.dorh-drawer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid var(--dorh-line);
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--dorh-ink);
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.dorh-drawer__item.is-current > .dorh-drawer__row { color: var(--dorh-maroon); }
.dorh-drawer__chev { flex: none; color: var(--dorh-muted); transition: transform .2s ease; }
.dorh-drawer__row[aria-expanded="true"] { color: var(--dorh-maroon); }
.dorh-drawer__row[aria-expanded="true"] .dorh-drawer__chev { transform: rotate(180deg); color: var(--dorh-maroon); }

.dorh-drawer__sub { background: var(--dorh-band); border-bottom: 1px solid var(--dorh-line); }
.dorh-drawer__sub[hidden] { display: none; }
.dorh-drawer__sub a {
    display: block;
    padding: 12px 18px 12px 34px;
    border-bottom: 1px solid rgba(233, 223, 210, .75);
    font-size: 15px;
    font-weight: 500;
    color: var(--dorh-lead);
    text-decoration: none;
}
.dorh-drawer__sub a:last-child { border-bottom: 0; }
.dorh-drawer__text { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 400; line-height: 1.5; color: var(--dorh-body); }

.dorh-drawer__foot { display: flex; flex-direction: column; gap: 12px; padding: 22px 18px 6px; }
.dorh-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border-radius: 4px;
    background: var(--dorh-maroon);
    color: var(--dorh-on-maroon);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}
.dorh-drawer__ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 4px;
    border: 1px solid var(--dorh-line-strong);
    color: var(--dorh-ink);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}
.dorh-drawer__meta { padding: 16px 18px 0; font-size: 12px; line-height: 1.7; color: var(--dorh-muted); }
.dorh-drawer a:focus-visible,
.dorh-drawer button:focus-visible { outline: 2px solid var(--dorh-gold); outline-offset: -2px; }

/* ==========================================================================
   NEWS INDEX — a lead story, then a dated list
   ========================================================================== */
.dorh-newsindex { padding: 76px 0 92px; background: var(--dorh-bg); }
.dorh-newsindex__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.dorh-newsindex__title { font-size: 40px; line-height: 1.18; }
.dorh-newsindex__intro { margin: 4px 0 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); max-width: 68ch; }

.dorh-lead {
    display: grid;
    grid-template-columns: 560px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dorh-line-strong);
    text-decoration: none;
}
.dorh-lead__media { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; border: 1px solid var(--dorh-line); background: var(--dorh-band); }
.dorh-lead__body { display: flex; flex-direction: column; gap: 14px; }
.dorh-lead__title { font-size: 36px; line-height: 1.16; color: var(--dorh-ink); }
.dorh-lead:hover .dorh-lead__title { color: var(--dorh-maroon); }
.dorh-lead__excerpt { font-size: 16px; line-height: 1.8; color: var(--dorh-body); }

.dorh-newslist { display: flex; flex-direction: column; }
.dorh-newsrow {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 170px;
    gap: 32px;
    align-items: baseline;
    padding: 26px 0 28px;
    border-bottom: 1px solid var(--dorh-line);
    text-decoration: none;
}
.dorh-newsrow__date { font-size: 13px; color: var(--dorh-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.dorh-newsrow__body { display: flex; flex-direction: column; gap: 7px; }
.dorh-newsrow__title { font-size: 22px; line-height: 1.24; color: var(--dorh-ink); }
.dorh-newsrow:hover .dorh-newsrow__title { color: var(--dorh-maroon); }
.dorh-newsrow__excerpt { font-size: 15px; line-height: 1.7; color: var(--dorh-body); }
.dorh-newsrow__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dorh-maroon); text-align: right; }
.dorh-newsindex__pager { margin-top: 34px; }

/* --- nothing published yet --- */
.dorh-newsempty {
    padding: 56px 56px 60px;
    background: var(--dorh-band);
    border: 1px solid var(--dorh-line);
    border-left: 3px solid var(--dorh-gold);
    max-width: 74ch;
}
.dorh-newsempty__title { font-size: 30px; line-height: 1.2; margin-bottom: 14px; }
.dorh-newsempty__text { margin: 0; font-size: 17px; line-height: 1.78; color: var(--dorh-body); }
.dorh-newsempty__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

@media (max-width: 1199px) {
    .dorh-lead { grid-template-columns: 420px minmax(0, 1fr); gap: 40px; }
    .dorh-newsrow { grid-template-columns: 110px minmax(0, 1fr); }
    .dorh-newsrow__cat { display: none; }
}
@media (max-width: 991px) {
    .dorh-newsindex { padding: 56px 0 64px; }
    .dorh-newsindex__title { font-size: 30px; }
    .dorh-lead { grid-template-columns: minmax(0, 1fr); gap: 24px; padding-bottom: 36px; }
    .dorh-lead__title { font-size: 27px; }
    .dorh-newsrow { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 22px 0 24px; }
    .dorh-newsrow__title { font-size: 20px; }
    .dorh-newsempty { padding: 34px 26px 38px; }
    .dorh-newsempty__title { font-size: 24px; }
}

/* ==========================================================================
   ARTICLE — a single news post
   ========================================================================== */
.dorh-article { padding: 0 0 92px; background: var(--dorh-bg); }
.dorh-article__measure { max-width: 760px; }
.dorh-article__head { padding: 68px 0 40px; background: var(--dorh-band); border-bottom: 1px solid var(--dorh-line); margin-bottom: 44px; }
.dorh-article__rule { margin: 18px 0 16px; }
.dorh-article__title { font-size: 46px; line-height: 1.12; margin: 0 0 18px; }
.dorh-article__standfirst { margin: 0; font-size: 20px; line-height: 1.66; font-weight: 300; color: var(--dorh-lead); }
.dorh-article__byline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; font-size: 13px; color: var(--dorh-muted); }
.dorh-article__dot { color: var(--dorh-line-strong); }
.dorh-article__media { width: 100%; max-height: 560px; object-fit: cover; display: block; border: 1px solid var(--dorh-line); margin-bottom: 46px; }

.dorh-article__body { font-size: 17.5px; line-height: 1.82; color: var(--dorh-lead); }
.dorh-article__body > * { margin: 0; }
.dorh-article__body > * + * { margin-top: 1.35em; }
.dorh-article__body > h2 {
    font-family: var(--dorh-display);
    font-size: 30px;
    line-height: 1.22;
    color: var(--dorh-ink);
    margin-top: 2.1em;
    margin-bottom: .55em;
}
.dorh-article__body > h3 {
    font-family: var(--dorh-display);
    font-size: 24px;
    line-height: 1.25;
    color: var(--dorh-ink);
    margin-top: 1.9em;
    margin-bottom: .5em;
}
/* A heading owns the space under it, so the paragraph after one does not add
   its own on top. */
.dorh-article__body > h2 + *,
.dorh-article__body > h3 + * { margin-top: 0; }
/* The opening paragraph carries the piece in. */
.dorh-article__body > p:first-child { font-size: 19px; line-height: 1.75; color: var(--dorh-ink); }
.dorh-article__body a { color: var(--dorh-maroon); text-decoration: underline; text-underline-offset: 2px; }
.dorh-article__body img { width: 100%; height: auto; display: block; border: 1px solid var(--dorh-line); }
.dorh-article__body figcaption { margin-top: 10px; font-size: 13px; color: var(--dorh-muted); }
.dorh-article__body ul,
.dorh-article__body ol { padding-left: 1.3em; }
.dorh-article__body li + li { margin-top: .5em; }
.dorh-article__body > blockquote {
    margin: 2.2em 0 !important;
    padding: 4px 0 4px 26px;
    border-left: 2px solid var(--dorh-gold);
    font-family: var(--dorh-display);
    font-size: 22px;
    line-height: 1.5;
    color: var(--dorh-ink);
}

.dorh-article__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid var(--dorh-line);
}
.dorh-article__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dorh-article__tags a {
    padding: 5px 12px;
    border: 1px solid var(--dorh-line-strong);
    border-radius: 2px;
    font-size: 13px;
    color: var(--dorh-body);
    text-decoration: none;
}
.dorh-article__tags a:hover { border-color: var(--dorh-maroon); color: var(--dorh-maroon); }
.dorh-article__share { display: flex; align-items: center; gap: 16px; font-size: 13px; }
.dorh-article__sharelabel { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--dorh-muted); }
.dorh-article__share a { color: var(--dorh-body); text-decoration: none; border-bottom: 1px solid var(--dorh-line-strong); }
.dorh-article__share a:hover { color: var(--dorh-maroon); border-bottom-color: var(--dorh-maroon); }
.dorh-article__more { margin-top: 56px; padding-top: 30px; border-top: 1px solid var(--dorh-line); }
.dorh-article__moretitle { font-size: 26px; line-height: 1.2; margin-bottom: 8px; }
.dorh-article__more .dorh-newsrow { grid-template-columns: 110px minmax(0, 1fr); }
.dorh-article__more .dorh-newsrow__title { font-size: 20px; }
.dorh-article__back { margin: 36px 0 0; }
.dorh-article__back .dorh-link:hover { gap: 12px; }

@media (max-width: 991px) {
    .dorh-article { padding: 0 0 64px; }
    .dorh-article__head { padding: 44px 0 30px; margin-bottom: 30px; }
    .dorh-article__title { font-size: 32px; }
    .dorh-article__standfirst { font-size: 17.5px; }
    .dorh-article__media { margin-bottom: 32px; }
    .dorh-article__body { font-size: 16.5px; }
}
