/* Doveinchi OP Center — site styles */
:root {
  --ink: #123E6A;
  --ink-2: #4F6A85;
  --teal: #2E86C1;
  --teal-deep: #1A5F96;
  --blue: #1E7BB8;
  --green: #6DB35C;
  --green-deep: #3E8A33;
  --mist: #E4EFF7;
  --mist-2: #F1F7FB;
  --paper: #F8FBFD;
  --card: #FFFFFF;
  --line: #D6E3EE;
  --sun: #6DB35C;
  --sun-ink: #2C5A22;
  --focus: #1A5F96;
  --shadow: 0 12px 32px rgba(18, 62, 106, 0.10);
  --radius: 22px;
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "Nunito", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-logo: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #EAF2FA; --ink-2: #A9BBCC; --teal: #5FB0E8; --teal-deep: #8CCBF5; --blue: #5FB0E8; --green: #7FC46E; --green-deep: #A5DB95;
    --mist: #16304A; --mist-2: #11253B; --paper: #0C1B2C; --card: #142A42; --line: #24405C;
    --sun: #6DB35C; --sun-ink: #D6F0CC; --shadow: 0 12px 32px rgba(0,0,0,0.35); color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ink: #EAF2FA; --ink-2: #A9BBCC; --teal: #5FB0E8; --teal-deep: #8CCBF5; --blue: #5FB0E8; --green: #7FC46E; --green-deep: #A5DB95;
  --mist: #16304A; --mist-2: #11253B; --paper: #0C1B2C; --card: #142A42; --line: #24405C;
  --sun: #6DB35C; --sun-ink: #D6F0CC; --shadow: 0 12px 32px rgba(0,0,0,0.35); color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--teal-deep); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 2px;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0; text-wrap: balance; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0; }
.wrap { width: min(1120px, 100% - 40px); margin-inline: auto; }
.eyebrow { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; }
.lede { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; }
.measure { max-width: 65ch; }
.stack { display: flex; flex-direction: column; gap: 16px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit; font-size: 1rem; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--ink); color: #fff; }
:root[data-theme="dark"] .btn-primary { background: var(--teal); color: #07182A; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .btn-primary { background: var(--teal); color: #07182A; } }
.btn-call { background: var(--sun); color: #0F2A12; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); }

/* Header */
.topbar { background: var(--mist); font-size: 0.92rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding-block: 8px; flex-wrap: wrap; }
.topbar a { color: var(--ink); font-weight: 600; text-decoration: none; }
.topbar .muted { color: var(--ink-2); }
header.site { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .name { font-family: var(--font-logo); font-weight: 700; letter-spacing: 0.01em; font-size: 1.7rem; line-height: 1; color: var(--teal-deep); }
.brand .sub { font-family: var(--font-body); font-weight: 400; letter-spacing: 0.3em; font-size: 0.62rem; color: var(--ink-2); text-transform: uppercase; }
nav.main { display: flex; gap: 6px; align-items: center; }
nav.main a { text-decoration: none; color: var(--ink); font-weight: 600; padding: 8px 12px; border-radius: 8px; font-size: 0.97rem; }
nav.main a:hover { background: var(--mist); }
nav.main a.active { color: var(--teal-deep); box-shadow: inset 0 -2px 0 var(--teal); border-radius: 0; }
nav.main .btn { padding: 10px 18px; margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 2px solid var(--line); border-radius: 10px; padding: 8px 10px; color: var(--ink); font: inherit; font-weight: 700; }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  nav.main { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 20px 20px; }
  nav.main.open { display: flex; }
  nav.main .btn { margin: 8px 0 0; justify-content: center; }
}

/* Hero */
.hero { padding-block: 64px 40px; position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero h1 em { font-style: italic; color: var(--teal-deep); }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero .note { font-size: 0.9rem; color: var(--ink-2); }
.hero-dove { position: absolute; right: -40px; top: -30px; pointer-events: none; }
.callcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: relative; }
.callcard h3 { margin-bottom: 14px; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; counter-reset: s; }
.steps li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.steps li::before { counter-increment: s; content: counter(s); width: 30px; height: 30px; border-radius: 50%; background: var(--mist); color: var(--teal-deep); font-weight: 700; display: grid; place-items: center; font-size: 0.9rem; }
.steps b { display: block; }
.steps span { color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } .hero { padding-block: 40px 24px; } .hero-dove { display: none; } }

/* Trust strip */
.trust { border-block: 1px solid var(--line); background: var(--mist-2); }
.trust .wrap { display: flex; gap: 8px 36px; flex-wrap: wrap; padding-block: 14px; font-size: 0.95rem; font-weight: 600; color: var(--ink-2); }
.trust span::before { content: "✓ "; color: var(--teal); }

/* Sections */
section.block { padding-block: 72px; }
section.block.tint { background: var(--mist-2); }
.section-head { display: grid; gap: 10px; margin-bottom: 36px; max-width: 62ch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } section.block { padding-block: 48px; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.card h3 { display: flex; align-items: center; gap: 10px; }
.card p { color: var(--ink-2); }
.card .meta { font-size: 0.85rem; color: var(--teal-deep); font-weight: 700; letter-spacing: 0.04em; }
.icon { width: 38px; height: 38px; border-radius: 10px; background: var(--mist); display: grid; place-items: center; color: var(--teal-deep); flex: none; }
.icon svg { width: 20px; height: 20px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: var(--ink-2); }
.checklist li::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center/60% no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>") center/60% no-repeat; margin-top: 4px; }
.art { border-radius: var(--radius); background: linear-gradient(135deg, var(--mist), var(--card)); border: 1px solid var(--line); min-height: 320px; display: grid; place-items: center; padding: 24px; }
.placeholder { border: 2px dashed var(--line); border-radius: var(--radius); padding: 18px; color: var(--ink-2); font-size: 0.92rem; background: var(--mist-2); }
.placeholder b { color: var(--sun-ink); }

/* Week schedule */
.week { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .week { grid-template-columns: 1fr; } }
.week .day { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.week .day b { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.week .day span { color: var(--ink-2); font-size: 0.95rem; }

/* CTA band */
.band { background: var(--ink); color: #fff; padding-block: 56px; }
:root[data-theme="dark"] .band { background: var(--mist); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .band { background: var(--mist); } }
.band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.band h2 { color: inherit; }
.band p { opacity: .85; max-width: 52ch; }
.band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }

/* Page header */
.pagehead { background: var(--mist-2); border-bottom: 1px solid var(--line); padding-block: 48px; }
.pagehead .wrap { display: grid; gap: 12px; max-width: 70ch; margin-inline: auto; }
.pagehead h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); }

/* Programs detail */
.program { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; padding-block: 36px; border-top: 1px solid var(--line); }
.program:first-of-type { border-top: 0; }
@media (max-width: 860px) { .program { grid-template-columns: 1fr; gap: 12px; } }
.program .who { font-size: 0.95rem; color: var(--ink-2); }
.program h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.program dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin: 12px 0 0; font-size: 0.95rem; }
.program dt { color: var(--ink-2); }
.program dd { margin: 0; font-weight: 600; }

/* Team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .team { grid-template-columns: 1fr; } }
.person { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 1.3rem; }
.person small { color: var(--ink-2); display: block; }

/* FAQ */
details { border-top: 1px solid var(--line); padding: 16px 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
summary::after { content: "+"; color: var(--teal-deep); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { color: var(--ink-2); margin-top: 10px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
form.contact { display: grid; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
form.contact label { display: grid; gap: 6px; font-weight: 600; font-size: 0.95rem; }
form.contact input, form.contact select, form.contact textarea { font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); }
form.contact .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { form.contact .row { grid-template-columns: 1fr; } }
form.contact small { color: var(--ink-2); font-weight: 400; }
.info-list { display: grid; gap: 18px; }
.info-list div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; }
.info-list b { display: block; }
.info-list span { color: var(--ink-2); }
.map { aspect-ratio: 4/3; max-width: 100%; border-radius: var(--radius); background: var(--mist); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); }
.thanks { display: none; background: var(--mist); border-radius: 10px; padding: 14px; color: var(--teal-deep); font-weight: 600; }

/* Crisis strip */
.crisis { background: var(--mist); border-top: 1px solid var(--line); font-size: 0.92rem; }
.crisis .wrap { padding-block: 14px; display: flex; gap: 8px 32px; flex-wrap: wrap; color: var(--ink-2); }
.crisis b { color: var(--ink); }

/* Footer */
footer.site { background: var(--ink); color: #C9D8E2; padding-block: 48px 28px; }
:root[data-theme="dark"] footer.site { background: #08131C; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) footer.site { background: #08131C; } }
footer.site .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { footer.site .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .wrap { grid-template-columns: 1fr; } }
footer.site h4 { color: #fff; margin: 0 0 12px; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
footer.site a { color: #C9D8E2; text-decoration: none; display: block; padding: 3px 0; }
footer.site a:hover { color: #fff; }
footer.site .brand { color: #fff; margin-bottom: 12px; }
footer.site .brand .sub { color: #9DB4C4; }
footer.site .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: 0.85rem; color: #9DB4C4; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---- Warm Welcome structural styles ---- */
h1, h2 { font-weight: 400; letter-spacing: 0; }
.hero-center .wrap { display: grid; grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; }
.hero-center h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); max-width: 18ch; }
.hero-center .lede { text-align: center; }
.hero-center .actions { justify-content: center; }
.tiles { display: grid; grid-template-columns: 1.2fr .8fr 1.2fr; gap: 16px; width: 100%; margin-top: 24px; }
.tile { border-radius: var(--radius); min-height: 220px; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .9rem; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t1 { background: linear-gradient(135deg, #2E86C1, #123E6A); }
.t2 { background: #FFFFFF; box-shadow: var(--shadow); }
.t3 { background: linear-gradient(135deg, #8CCB6A, #3E8A33); }
.stepstrip { background: var(--mist-2); border-block: 1px solid var(--line); padding-block: 36px; }
.stepstrip h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin-bottom: 18px; }
.stepstrip .steps { flex-direction: row; gap: 24px; }
.stepstrip .steps li { flex: 1; }
.btn-primary { background: var(--teal-deep); }
.trust { display: none; }
.card { border: 0; box-shadow: var(--shadow); }
.icon { border-radius: 50%; }
.band { background: var(--teal-deep); }
:root[data-theme="dark"] .band { background: var(--mist); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .band { background: var(--mist); } }
footer.site { background: #123E6A; }
.pagehead { border-bottom: 0; }
@media (max-width: 860px) { .tiles { grid-template-columns: 1fr 1fr; } .tiles .t2 { display: none; } .stepstrip .steps { flex-direction: column; } }

/* Centers */
.center-card { position: relative; }
.pill { display: inline-block; align-self: flex-start; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.pill.open { background: var(--mist); color: var(--teal-deep); }
.pill.soon { background: #E6F4E0; color: var(--sun-ink); }
:root[data-theme="dark"] .pill.soon { background: #244A2A; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .pill.soon { background: #244A2A; } }
.center-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; }
nav.main a { padding: 8px 10px; font-size: .93rem; }
.brand img.mark { width: 52px; height: 52px; object-fit: contain; }
.flogo { background: #fff; border-radius: 14px; padding: 12px; display: inline-block; margin-bottom: 14px; }
.flogo img { display: block; }
.art { background: var(--card); }
/* header density */
.brand { white-space: nowrap; }
.brand .sub { letter-spacing: 0.16em; font-size: 0.6rem; }
nav.main a { white-space: nowrap; padding: 8px 9px; font-size: .9rem; }
nav.main .btn { padding: 10px 16px; }
@media (max-width: 1100px) and (min-width: 861px) { nav.main a { font-size: .84rem; padding: 8px 7px; } .topbar .muted { display: none; } }

.tile-copy { display: grid; gap: 6px; padding: 24px; text-align: left; align-self: end; justify-self: start; text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.tile-copy b { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.tile-copy span { font-weight: 600; opacity: .95; }
.tile { align-items: end; justify-items: start; }
.tile.t2 { place-items: center; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-4 .card h3 { font-size: 1.1rem; }
.week.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4, .week.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-4, .week.four { grid-template-columns: 1fr; } }
