/* ─────────────────────────────────────────────────────────────────────────────
   Mishpacha — Contact page
   Prefix: co-
───────────────────────────────────────────────────────────────────────────── */
#page-contact {
    --co-red:   var(--red);
    --co-redd:  var(--red-dark);
    --co-ink:   var(--ink);
    --co-off:   #1c1c1c;
    --co-gm:    #6b6b6b;
    --co-g-1:   #4a4a4a;
    --co-gl:    #e4e4e4;
    --co-cream: #faf9f5;
    --co-serif: var(--font-body);
    background: var(--paper);
    color: var(--co-ink);
    font-size: 15px;
    line-height: 1.55;
}
#page-contact * { box-sizing: border-box; }
#page-contact img { display: block; max-width: 100%; }
#page-contact a { color: inherit; text-decoration: none; }
.co-wrap { max-width: 1440px; margin: 0 auto; padding: 0 38px; }

.co-lbl {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--co-red);
    margin-bottom: 12px;
}
.co-lbl::before { content: ''; width: 3px; height: 14px; background: var(--co-red); border-radius: 2px; }
.co-lbl--c { justify-content: center; }

/* HERO */
.co-hero { background: var(--co-off); color: #fff; padding: 80px 0 32px; overflow: hidden; position: relative; }
.co-hero::before {
    content: '@';
    position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    font-family: var(--co-serif); font-size: clamp(220px, 26vw, 380px);
    font-weight: 700; color: rgba(255,255,255,.045);
    line-height: .7; pointer-events: none; user-select: none;
}
.co-hero-in { position: relative; display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: end; }
.co-hero-eye { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--co-red); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.co-hero-eye::before { content: ''; width: 28px; height: 1px; background: var(--co-red); }
.co-hero-title { font-family: var(--co-serif); font-size: clamp(40px, 5.4vw, 68px); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; color: #fff; margin: 0 0 16px; }
.co-hero-title em { font-style: italic; color: #ffb3bd; font-weight: 400; }
.co-hero-desc { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 540px; }
.co-hero-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; padding-bottom: 6px; }
.co-hero-status {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.06);
    padding: 9px 16px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
}
.co-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.22); position: relative; }
.co-status-dot::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: #22c55e; opacity: .4; animation: coPulse 2s ease-out infinite; }
@keyframes coPulse { 0% { transform: scale(1); opacity: .4 } 100% { transform: scale(2.5); opacity: 0 } }
.co-status-dot.off { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.22); }
.co-status-dot.off::after { display: none; }
.co-hero-resp { font-family: var(--co-serif); font-style: italic; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; border-left: 2px solid var(--co-red); padding: 2px 0 2px 14px; }
.co-hero-resp strong { color: #fff; font-style: normal; font-weight: 600; }

/* ROUTER */
.co-router { padding: 56px 0 0; background: var(--co-off); color: #fff; position: relative; }
.co-router-lbl { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.6); margin-bottom: 16px; display: block; }
.co-topics { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.co-topic {
    display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
    padding: 20px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    text-align: left;
    color: #fff;
    cursor: pointer;
    transition: all .15s;
    font-family: inherit;
    min-height: 120px;
}
.co-topic:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.co-topic.active { border-color: var(--co-red); background: rgba(200,16,46,.12); }
.co-topic-num { font-family: var(--co-serif); font-style: italic; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.45); }
.co-topic.active .co-topic-num { color: #ff6b7e; }
.co-topic-body { display: flex; flex-direction: column; gap: 4px; }
.co-topic-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
.co-topic-sub { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }

/* FORM SECTION */
.co-form-section { padding: 56px 0 120px; background: var(--co-off); color: #fff; position: relative; }
.co-form-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; position: relative; z-index: 1; }
.co-form-card {
    background: #fff; color: var(--co-ink);
    border-radius: 10px;
    padding: 40px 40px 36px;
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.co-form-head { margin-bottom: 24px; }
.co-form-head h3 { font-family: var(--co-serif); font-size: 24px; font-weight: 700; margin: 0 0 6px; letter-spacing: -.005em; }
.co-form-head p { font-size: 14px; color: var(--co-gm); line-height: 1.55; margin: 0; }
.co-routing-hint {
    background: var(--co-cream);
    border-left: 3px solid var(--co-red);
    border-radius: 0 4px 4px 0;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px; color: #3a3a3a;
    line-height: 1.6;
    display: none;
}
.co-routing-hint.show { display: block; }
.co-routing-hint a { color: var(--co-red); font-weight: 600; }
.co-routing-hint a:hover { text-decoration: underline; }

.co-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field--full { grid-column: 1 / -1; }
.co-fl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--co-gm); }
.co-req::after { content: ' *'; color: var(--co-red); }
.co-inp {
    font-size: 14px; font-family: inherit;
    border: none; border-bottom: 1.5px solid var(--co-gl);
    padding: 9px 0;
    outline: none;
    color: var(--co-ink); background: transparent;
    width: 100%; border-radius: 0;
    transition: border-color .15s;
}
.co-inp:focus { border-bottom-color: var(--co-ink); }
.co-textarea {
    border: 1.5px solid var(--co-gl);
    border-radius: 5px;
    padding: 12px 14px;
    resize: none; min-height: 140px;
}
.co-textarea:focus { border-color: var(--co-ink); }
.co-counter { font-size: 11px; color: var(--co-gm); text-align: right; }
.co-form-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid var(--co-gl);
    flex-wrap: wrap; gap: 14px;
}
.co-foot-note { font-size: 12px; color: var(--co-gm); line-height: 1.5; max-width: 320px; margin: 0; }
#page-contact .co-btn-send {
    background: var(--co-red); color: #fff;
    font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 14px 28px; border-radius: 5px;
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit;
    transition: background .15s;
}
#page-contact .co-btn-send:hover { background: var(--co-redd); }
#page-contact .co-btn-send:disabled { opacity: .65; cursor: wait; }
.co-form-success {
    background: #f0f9f0; border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 44px 28px;
    display: none; text-align: center;
}
.co-form-success.show { display: block; }
.co-success-check {
    width: 52px; height: 52px; border-radius: 50%;
    background: #22c55e; color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px; font-weight: 700;
}
.co-form-success h3 { font-family: var(--co-serif); font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.co-form-success p { font-size: 14px; color: var(--co-gm); line-height: 1.65; margin: 0; }
.co-form-success p strong { color: var(--co-ink); }

/* SIDEBAR */
.co-sidebar { display: flex; flex-direction: column; gap: 14px; }
.co-quick, .co-hours {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
}
.co-quick-head {
    padding: 14px 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: space-between;
}
.co-quick-live { font-size: 10px; color: #22c55e; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.co-quick-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }
.co-hours-day { font-family: var(--co-serif); font-style: italic; font-size: 12px; color: rgba(255,255,255,.5); }
.co-quick-body { padding: 12px 18px 18px; display: flex; flex-direction: column; gap: 14px; }
.co-quick-row { display: block; }
.co-quick-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.co-quick-val { font-family: var(--co-serif); font-size: 18px; font-weight: 700; }
.co-quick-val--em { font-size: 14px; }
#page-contact .co-quick-val a { color: #fff; }
#page-contact .co-quick-val a:hover { color: #ff6b7e; }
.co-quick-note { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 3px; }

.co-hours-body { padding: 14px 18px; }
.co-hr {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,.1);
}
.co-hr:last-child { border-bottom: none; }
.co-hr-l { color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 10px; }
.co-cc {
    display: inline-block;
    font-family: var(--co-serif); font-size: 10px; font-weight: 700;
    background: rgba(255,255,255,.1);
    padding: 3px 7px; border-radius: 3px;
    letter-spacing: .04em; color: rgba(255,255,255,.6);
    min-width: 24px; text-align: center;
}
.co-hr-r { font-weight: 600; color: #fff; font-size: 12.5px; }
.co-hr-closed { color: rgba(255,255,255,.35); font-weight: 600; font-size: 12.5px; font-style: italic; }
.co-hr-now { display: inline-block; margin-left: 8px; font-size: 9px; color: #22c55e; letter-spacing: .08em; font-weight: 700; text-transform: uppercase; }

.co-hr-group {
    padding: 16px 0;
    border-bottom: 1px dashed rgba(255,255,255,.12);
}
.co-hr-group:first-child { padding-top: 6px; }
.co-hr-group:last-child  { border-bottom: 0; padding-bottom: 6px; }
.co-hr-city {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: #fff;
    margin-bottom: 10px;
}
.co-hr-line {
    font-size: 12.5px; color: rgba(255,255,255,.72);
    padding: 3px 0 3px 34px;
    line-height: 1.45;
}

#page-contact .co-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px; font-weight: 700;
    transition: filter .15s;
}
#page-contact .co-wa-btn:hover { filter: brightness(1.08); color: #fff; }

/* DEPARTMENTS */
.co-dept { padding: 96px 0 80px; }
.co-dept-head {
    margin-bottom: 36px;
    display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap;
    gap: 16px;
}
.co-dept-head h2 { font-family: var(--co-serif); font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.1; letter-spacing: -.015em; margin: 6px 0 0; }
.co-dept-head p { font-size: 14px; color: var(--co-gm); margin-top: 6px; max-width: 520px; line-height: 1.6; }
#page-contact .co-dept-all { font-size: 12px; color: var(--co-red); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
#page-contact .co-dept-all:hover { text-decoration: underline; }
.co-dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.co-dept-card {
    background: #fff;
    border: 1px solid var(--co-gl);
    border-radius: 8px;
    padding: 24px 22px;
    display: flex; flex-direction: column; gap: 8px;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.co-dept-card:hover { border-color: var(--co-ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.co-dept-mark { font-family: var(--co-serif); font-style: italic; font-size: 13px; color: var(--co-red); font-weight: 700; margin-bottom: 6px; }
.co-dept-name { font-size: 15px; font-weight: 700; }
.co-dept-desc { font-size: 12.5px; color: var(--co-gm); line-height: 1.55; flex: 1; }
#page-contact .co-dept-email { font-size: 12.5px; color: var(--co-red); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; word-break: break-all; }
#page-contact .co-dept-email:hover { text-decoration: underline; color: var(--co-red); }
#page-contact .co-dept-email::after { content: '→'; transition: transform .15s; }
.co-dept-card:hover .co-dept-email::after { transform: translateX(3px); }

/* PRESS/WRITERS/CAREERS BAR */
.co-bar { padding: 40px 0; background: var(--co-cream); border-top: 1px solid var(--co-gl); border-bottom: 1px solid var(--co-gl); }
.co-bar-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.co-bar-item { padding: 0 28px; border-right: 1px solid var(--co-gl); }
.co-bar-item:first-child { padding-left: 0; }
.co-bar-item:last-child { border-right: none; padding-right: 0; }
.co-bar-eye { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--co-red); margin-bottom: 6px; }
.co-bar-h { font-family: var(--co-serif); font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.005em; }
.co-bar-p { font-size: 13px; color: var(--co-gm); line-height: 1.55; margin: 0 0 10px; }
#page-contact .co-bar-link { font-size: 12px; font-weight: 700; color: var(--co-red); text-transform: uppercase; letter-spacing: .06em; }
#page-contact .co-bar-link:hover { text-decoration: underline; }

/* OFFICES */
.co-offices { padding: 96px 0 80px; border-bottom: 1px solid var(--co-gl); }
.co-offices-head { margin-bottom: 36px; }
.co-offices-head h2 { font-family: var(--co-serif); font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.1; letter-spacing: -.015em; margin: 6px 0 0; }
.co-offices-head p { font-size: 14px; color: var(--co-gm); margin-top: 8px; max-width: 520px; line-height: 1.6; }
.co-offices-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--co-gl); border-radius: 10px; overflow: hidden;
}
.co-office {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 36px;
    border-right: 1px solid var(--co-gl);
    background: #fff;
    align-items: start;
}
.co-office-info {
    min-width: 0;
    display: flex; flex-direction: column;
    align-self: stretch;
}
.co-office-info .co-office-rows { margin-bottom: 24px; }
#page-contact .co-office-cta { margin-top: auto; }
.co-office-map {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--co-gl);
    background: var(--co-cream);
}
.co-office-map iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(.25);
}
@media (max-width: 880px) {
    .co-office { grid-template-columns: 1fr; gap: 24px; }
    .co-office-map { aspect-ratio: 16 / 10; max-height: 280px; }
}
.co-office:last-child { border-right: none; }
.co-office-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.co-office-cc {
    font-family: var(--co-serif); font-size: 12px; font-weight: 700;
    background: var(--co-cream);
    padding: 5px 10px; border-radius: 3px;
    border: 1px solid var(--co-gl);
    color: var(--co-gm); letter-spacing: .04em;
}
.co-office-tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--co-red); }
.co-office-name { font-family: var(--co-serif); font-size: clamp(28px, 3vw, 36px); font-weight: 700; letter-spacing: -.015em; line-height: 1; margin-bottom: 6px; }
.co-office-region { font-size: 12px; color: var(--co-gm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 24px; font-weight: 600; }
.co-office-addr { font-size: 14px; color: #3a3a3a; line-height: 1.7; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--co-gl); }
.co-office-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.co-office-row { display: grid; grid-template-columns: 72px 1fr; align-items: baseline; gap: 16px; font-size: 13px; }
.co-office-row-l { color: var(--co-gm); text-transform: uppercase; letter-spacing: .06em; font-size: 11px; font-weight: 700; padding-top: 2px; }
.co-office-row-r { color: var(--co-ink); font-weight: 600; line-height: 1.55; text-align: left; }
#page-contact .co-office-row-r a:hover { color: var(--co-red); }
#page-contact .co-office-cta { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; color: var(--co-red); text-transform: uppercase; letter-spacing: .06em; }
#page-contact .co-office-cta:hover { text-decoration: underline; }

.co-regional {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-top: 20px;
    background: var(--co-cream);
    border: 1px solid var(--co-gl);
    border-radius: 8px;
    overflow: hidden;
}
.co-reg { padding: 22px 20px; border-right: 1px solid var(--co-gl); }
.co-reg:last-child { border-right: none; }
.co-reg-cc { font-family: var(--co-serif); font-size: 11px; font-weight: 700; color: var(--co-red); letter-spacing: .06em; margin-bottom: 8px; }
.co-reg-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
#page-contact .co-reg-email { font-size: 12px; color: var(--co-red); font-weight: 600; word-break: break-all; }
#page-contact .co-reg-email:hover { text-decoration: underline; color: var(--co-red); }

/* FAQ */
.co-faq { padding: 80px 0; background: var(--co-cream); border-bottom: 1px solid var(--co-gl); }
.co-faq-head { text-align: center; margin-bottom: 40px; }
.co-faq-head h2 { font-family: var(--co-serif); font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; line-height: 1.1; letter-spacing: -.015em; margin: 6px 0 0; }
.co-faq-head p { font-size: 14px; color: var(--co-gm); margin-top: 8px; }
.co-faq-wrap {
    max-width: 820px; margin: 0 auto;
    background: #fff; border: 1px solid var(--co-gl); border-radius: 10px;
    overflow: hidden;
}
.co-faq-item { border-bottom: 1px solid var(--co-gl); }
.co-faq-item:last-child { border-bottom: none; }
.co-faq-q {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    width: 100%; text-align: left;
    padding: 22px 26px;
    background: transparent; border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px; font-weight: 600;
    color: var(--co-ink);
    transition: background .15s;
}
.co-faq-q:hover { background: var(--co-cream); }
.co-faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--co-gm); transition: transform .2s, color .15s; }
.co-faq-item.open .co-faq-icon { transform: rotate(45deg); color: var(--co-red); }
.co-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.co-faq-item.open .co-faq-a { max-height: 400px; }
.co-faq-a > div { padding: 0 26px 22px; font-size: 14px; color: var(--co-gm); line-height: 1.7; }
#page-contact .co-faq-a a { color: var(--co-red); font-weight: 600; }
#page-contact .co-faq-a a:hover { text-decoration: underline; }

/* SOCIAL */
.co-social { background: var(--co-ink); color: #fff; padding: 56px 0; }
.co-social-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.co-social-text h3 { font-family: var(--co-serif); font-size: 26px; font-weight: 700; margin: 0 0 6px; }
.co-social-text p { font-size: 14px; color: rgba(255,255,255,.55); margin: 0; }
.co-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.co-social-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 13px; font-weight: 600;
    padding: 12px 20px; border-radius: 6px;
    transition: background .15s;
}
.co-social-btn:hover { background: rgba(255,255,255,.14); }
.co-social-handle { color: rgba(255,255,255,.5); font-weight: 400; }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .co-topics { grid-template-columns: repeat(3, 1fr); }
    .co-dept-grid { grid-template-columns: repeat(2, 1fr); }
    .co-regional { grid-template-columns: repeat(2, 1fr); }
    .co-reg:nth-child(2n) { border-right: none; }
    .co-reg:nth-child(n+3) { border-top: 1px solid var(--co-gl); }
    .co-form-grid { grid-template-columns: 1fr; }
    .co-form-section { padding-bottom: 72px; }
}
@media (max-width: 820px) {
    .co-hero-in { grid-template-columns: 1fr; gap: 32px; }
    .co-hero-right { padding-bottom: 0; }
    .co-offices-grid { grid-template-columns: 1fr; }
    .co-office { border-right: none; border-bottom: 1px solid var(--co-gl); }
    .co-office:last-child { border-bottom: none; }
    .co-bar-grid { grid-template-columns: 1fr; gap: 0; }
    .co-bar-item { border-right: none; border-bottom: 1px solid var(--co-gl); padding: 22px 0; }
    .co-bar-item:first-child { padding-top: 0; }
    .co-bar-item:last-child { border-bottom: none; padding-bottom: 0; }
    .co-social-in { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 640px) {
    .co-wrap { padding: 0 14px; }
    .co-hero { padding: 56px 0 32px; }
    .co-topics { grid-template-columns: repeat(2, 1fr); }
    .co-fields { grid-template-columns: 1fr; }
    .co-dept-grid { grid-template-columns: 1fr; }
    .co-regional { grid-template-columns: 1fr; }
    .co-reg { border-right: none; border-bottom: 1px solid var(--co-gl); }
    .co-reg:last-child { border-bottom: none; }
    .co-form-card { padding: 28px 22px; }
    .co-form-foot { flex-direction: column; align-items: stretch; }
    #page-contact .co-btn-send { justify-content: center; }
}

/* Reply-time SLA line under the form header (Hila 2026-06-08). */
.co-form-reply-sla {
    font-size: 13px; color: var(--co-g1, #5C5C5C); font-style: italic;
    margin: 8px 0 0;
}
