@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@500;600;700&family=Playfair+Display:wght@500;600&family=Fraunces:opsz,wght@9..144,500;9..144,600&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Sans+Arabic:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --ink: #10282e;
  --deep: #0c434b;
  --deep-2: #08323a;
  --sea: #15808a;
  --sea-soft: #dff0ef;
  --sand: #f8f1e3;
  --sand-2: #f0e4cb;
  --paper: #fffdf8;
  --line: #e6dcc6;
  --muted: #55686c;
  --coral: #b8452f;
  --coral-soft: #fbe7e0;
  --clay: #c4714a;
  --gold: #e0a93f;
  --sans: 'IBM Plex Sans', 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --display: 'Fraunces', 'Alexandria', Georgia, serif;
  --wrap: 1160px;
  --radius: 18px;
  --shadow: 0 18px 40px -24px rgba(8, 50, 58, .45);
  --stars: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.07'%3E%3Crect x='18' y='18' width='28' height='28'/%3E%3Crect x='18' y='18' width='28' height='28' transform='rotate(45 32 32)'/%3E%3C/g%3E%3C/svg%3E");
  --stars-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23b08a4a' stroke-opacity='.13'%3E%3Crect x='18' y='18' width='28' height='28'/%3E%3Crect x='18' y='18' width='28' height='28' transform='rotate(45 32 32)'/%3E%3C/g%3E%3C/svg%3E");
}

html[lang="ar"] {
  --sans: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
  --display: 'Alexandria', 'IBM Plex Sans Arabic', system-ui, sans-serif;
}
html[lang="ru"] { --display: 'Playfair Display', Georgia, serif; }
html[lang="ru"] h1 { font-size: clamp(2.1rem, 4.3vw, 3.4rem); }
html[lang="ru"] h2 { font-size: clamp(1.6rem, 2.9vw, 2.2rem); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body { font-size: 17.5px; line-height: 1.9; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--deep); letter-spacing: -.015em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { line-height: 1.5; letter-spacing: 0; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
html[lang="ar"] h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.3vw, 2.5rem); }
html[lang="ar"] h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.2rem; }
html[lang="ar"] h3 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
a { color: var(--sea); text-underline-offset: 3px; }
a:hover { color: var(--deep); }
ul, ol { margin: 0; padding-inline-start: 1.2em; }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 28px; }
.skip { position: absolute; inset-inline-start: -9999px; top: 0; background: var(--gold); color: var(--ink); padding: 10px 16px; z-index: 100; }
.skip:focus { inset-inline-start: 12px; top: 12px; }

/* news bar */
.news { background: var(--deep-2); color: #fff; font-size: .9rem; }
.news .wrap { display: flex; align-items: center; gap: 14px; min-height: 44px; padding-block: 7px; }
.news-badge { flex: none; display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #2a1d02; font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; border-radius: 999px; padding: 3px 12px; }
html[lang="ar"] .news-badge { letter-spacing: 0; font-size: .85rem; }
.news-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; transform: scale(.7); } }
.news-link { flex: 1 1 auto; min-width: 0; color: #fff; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; opacity: 0; transform: translateY(8px); }
.news-link.in { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.news-link:hover { color: var(--gold); }
.news-tag { color: var(--gold); font-weight: 600; margin-inline-end: 8px; }
.news-tag:empty { display: none; }
.news-ctl { flex: none; display: inline-flex; align-items: center; gap: 8px; color: #9dbcbb; font-size: .8rem; font-variant-numeric: tabular-nums; }
.news-ctl[hidden] { display: none; }
.news-next { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); background: none; color: #fff; cursor: pointer; padding: 0; }
.news-next:hover { background: rgba(255, 255, 255, .12); }
.news-next .icon { width: 15px; height: 15px; }
.news-sos { flex: none; display: inline-flex; align-items: center; gap: 6px; background: var(--coral); color: #fff; text-decoration: none; font-weight: 600; font-size: .84rem; border-radius: 999px; padding: 4px 12px; }
.news-sos:hover { background: #cf5138; color: #fff; }
.news-sos .icon { width: 15px; height: 15px; }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 253, 248, .92); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 22px; min-height: 74px; padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--deep); margin-inline-end: auto; }
.logo { width: 56px; height: 56px; flex: none; object-fit: cover; border-radius: 14px; box-shadow: 0 0 0 1px var(--line); background: #fff; }
.logo.fallback { box-shadow: none; border-radius: 50%; background: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.08rem; }
html[lang="ar"] .brand-name { font-size: 1rem; }
.brand-sub { font-size: .78rem; color: var(--muted); }
.nav { display: flex; gap: 4px; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .9rem; padding: 7px 9px; border-radius: 999px; white-space: nowrap; transition: background .15s; }
.nav a:hover { background: var(--sea-soft); color: var(--deep); }
.langs { flex: none; display: inline-flex; background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.langs a { border-radius: 999px; padding: 5px 12px; font-weight: 600; font-size: .82rem; text-decoration: none; color: var(--muted); line-height: 1.5; font-family: 'IBM Plex Sans', 'IBM Plex Sans Arabic', sans-serif; }
.langs a:hover { color: var(--deep); }
.langs a[aria-current] { background: var(--deep); color: #fff; }

/* hero */
.hero { position: relative; background: radial-gradient(120% 90% at 85% 10%, #15606a 0%, var(--deep) 45%, var(--deep-2) 100%); color: #e6f2f1; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: var(--stars); mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), transparent 70%); -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), transparent 70%); }
html[dir="rtl"] .hero::before { transform: scaleX(-1); }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 5vw, 72px); align-items: center; padding-block: clamp(40px, 4.5vw, 64px) clamp(120px, 11vw, 150px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex: none; }
html[lang="ar"] .eyebrow { letter-spacing: 0; font-size: .92rem; }
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 500; }
html[lang="ar"] .hero h1 em { font-style: normal; font-weight: 700; }
.hero .lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 54ch; color: #c5dcdb; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: .96rem; text-decoration: none; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 19px; height: 19px; }
.btn-gold { background: var(--gold); color: #2a1d02; }
.btn-gold:hover { background: #ecb955; color: #2a1d02; }
.btn-ghost { border: 1.5px solid rgba(255, 255, 255, .4); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.hero-art { justify-self: center; width: min(100%, 330px); filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .35)); }
.hero-art svg { display: block; width: 100%; height: auto; overflow: visible; }
.sun { animation: rise 1.8s cubic-bezier(.2, .7, .2, 1) both; }
.bird { animation: drift 9s ease-in-out infinite alternate; }
@keyframes rise { from { transform: translateY(70px); opacity: .3; } to { transform: none; opacity: 1; } }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(18px, -8px); } }

/* quick tasks */
.tasks { position: relative; z-index: 2; margin-top: clamp(-100px, -8vw, -78px); }
.task-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.task { position: relative; display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px 20px; text-decoration: none; color: var(--ink); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.task::after { content: ''; position: absolute; inset-inline: 0; top: 0; height: 4px; background: var(--tone, var(--sea)); }
.task:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -24px rgba(8, 50, 58, .55); color: var(--ink); }
.task-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.badge { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--tone-soft, var(--sea-soft)); color: var(--tone, var(--sea)); }
.badge .icon { width: 27px; height: 27px; }
.when { font-size: .76rem; font-weight: 600; color: var(--tone, var(--sea)); background: var(--tone-soft, var(--sea-soft)); border-radius: 999px; padding: 3px 11px; white-space: nowrap; }
.t-coral { --tone: var(--coral); --tone-soft: var(--coral-soft); }
.t-ink { --tone: #33515a; --tone-soft: #e6ecec; }
.t-sea { --tone: var(--sea); --tone-soft: var(--sea-soft); }
.t-gold { --tone: #9a6a0a; --tone-soft: #fbefd2; }
.task h3 { margin: 0; font-size: 1.22rem; }
html[lang="ar"] .task h3 { font-size: 1.08rem; }
.task p { margin: 0; font-size: .94rem; color: var(--muted); }
.task .go { margin-top: auto; padding-top: 12px; font-weight: 600; font-size: .9rem; color: var(--tone, var(--sea)); display: inline-flex; align-items: center; gap: 6px; }
.task .go .icon { width: 17px; height: 17px; transition: transform .2s; }
html[dir="rtl"] .flip { transform: scaleX(-1); }
.task:hover .go .icon { transform: translateX(4px); }
html[dir="rtl"] .task:hover .go .icon { transform: scaleX(-1) translateX(4px); }

/* sections */
section { padding-block: clamp(64px, 8vw, 104px); }
.section-head { max-width: 64ch; margin-bottom: 40px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--clay); margin-bottom: 12px; }
.kicker::before { content: ''; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); flex: none; }
html[lang="ar"] .kicker { letter-spacing: 0; font-size: .92rem; }
.section-head p:last-child { color: var(--muted); font-size: 1.08rem; margin: 0; }
.band { background-color: var(--sand); background-image: var(--stars-dark); border-block: 1px solid var(--line); }

/* services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px 26px; overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; }
.service:hover { transform: translateY(-4px); border-color: var(--sea); box-shadow: var(--shadow); }
.service .num { position: absolute; inset-inline-end: 18px; top: 6px; font-family: 'Fraunces', serif; font-size: 4.2rem; line-height: 1; font-weight: 600; color: var(--sand-2); opacity: .75; pointer-events: none; font-variant-numeric: lining-nums; }
.service .badge { margin-bottom: 18px; position: relative; }
.service h3 { position: relative; }
.service p { margin: 0; color: var(--muted); font-size: .97rem; position: relative; }
.service:nth-child(3n+1) { --tone: var(--sea); --tone-soft: var(--sea-soft); }
.service:nth-child(3n+2) { --tone: var(--clay); --tone-soft: #fbeade; }
.service:nth-child(3n) { --tone: #9a6a0a; --tone-soft: #fbefd2; }

/* what to bring */
.bring-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.bring-layout .section-head { position: sticky; top: 120px; margin-bottom: 0; }
.tip { display: flex; gap: 14px; align-items: flex-start; margin-top: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; font-size: .95rem; color: var(--ink); }
.tip .badge { width: 42px; height: 42px; border-radius: 12px; --tone: #9a6a0a; --tone-soft: #fbefd2; }
.tip .badge .icon { width: 22px; height: 22px; }
.tip p { margin: 0; }
.guides { display: grid; gap: 14px; }
details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s, border-color .2s; }
details[open] { border-color: var(--tone, var(--sea)); box-shadow: var(--shadow); }
summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--deep); }
html[lang="ar"] summary { font-size: 1.04rem; }
summary::-webkit-details-marker { display: none; }
summary .badge { width: 46px; height: 46px; border-radius: 14px; }
summary .badge .icon { width: 24px; height: 24px; }
summary .when { font-family: var(--sans); }
.chev { margin-inline-start: auto; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--sand); color: var(--deep); transition: transform .25s, background .2s; flex: none; }
.chev .icon { width: 18px; height: 18px; }
details[open] .chev { transform: rotate(180deg); background: var(--tone-soft, var(--sea-soft)); }
.guide-body { padding: 4px 24px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.guide-body h4 { margin: 0 0 10px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
html[lang="ar"] .guide-body h4 { letter-spacing: 0; font-size: .92rem; }
.checks { list-style: none; padding: 0; font-size: .97rem; }
.checks li { position: relative; padding-inline-start: 30px; margin-bottom: .6em; }
.checks li::before { content: ''; position: absolute; inset-inline-start: 0; top: .28em; width: 19px; height: 19px; border-radius: 50%; background: var(--tone-soft, var(--sea-soft)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c434b' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 11px no-repeat; }
html[lang="ar"] .checks li::before { top: .5em; }
.steps { list-style: none; padding: 0; counter-reset: s; font-size: .97rem; }
.steps li { position: relative; padding-inline-start: 34px; margin-bottom: .7em; counter-increment: s; }
.steps li::before { content: counter(s); position: absolute; inset-inline-start: 0; top: .15em; width: 23px; height: 23px; border-radius: 50%; background: var(--deep); color: #fff; font-size: .78rem; font-weight: 600; display: grid; place-items: center; font-family: 'IBM Plex Sans', sans-serif; }
html[lang="ar"] .steps li::before { top: .4em; }
.note { grid-column: 1 / -1; font-size: .93rem; color: var(--ink); background: var(--sand); border-radius: 12px; border-inline-start: 4px solid var(--gold); padding: 12px 16px; margin: 0; }

/* vaccination timeline */
.vax { background: linear-gradient(135deg, var(--deep) 0%, #10555e 100%); color: #d6e8e7; border-radius: 28px; padding: clamp(28px, 5vw, 56px); position: relative; overflow: hidden; }
.vax::before { content: ''; position: absolute; inset: 0; background-image: var(--stars); }
.vax > * { position: relative; }
.vax-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 40px; margin-bottom: 44px; }
.vax h2 { color: #fff; margin: 0; max-width: 18ch; }
.vax .kicker { color: var(--gold); }
.vax-head p { margin: 0; max-width: 44ch; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); position: relative; }
.timeline::before { content: ''; position: absolute; inset-inline: 7%; top: 21px; height: 3px; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .35) 0 8px, transparent 8px 16px); }
.timeline li { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; position: relative; }
.dot { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #2a1d02; display: grid; place-items: center; box-shadow: 0 0 0 7px rgba(224, 169, 63, .2); font-weight: 600; font-size: .9rem; font-family: 'IBM Plex Sans', sans-serif; }
.dot .icon { width: 21px; height: 21px; }
.timeline li:first-child .dot { background: #fff; color: var(--deep); box-shadow: 0 0 0 7px rgba(255, 255, 255, .2); }
.timeline strong { color: #fff; font-weight: 600; font-size: 1rem; line-height: 1.3; }
.vax-foot { margin: 40px 0 0; font-size: .95rem; display: flex; gap: 12px; align-items: flex-start; }
.vax-foot .icon { color: var(--gold); margin-top: 2px; }

/* audiences */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px, 3.4vw, 42px); overflow: hidden; }
.panel > * { position: relative; }
.panel .badge { margin-bottom: 20px; }
.panel h2 { font-size: clamp(1.4rem, 2.3vw, 1.8rem); }
html[lang="ar"] .panel h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.panel .checks { margin-top: 16px; }
.panel.dark { background: var(--deep-2); border-color: var(--deep-2); color: #d3e5e4; }
.panel.dark::before { content: ''; position: absolute; inset: 0; background-image: var(--stars); }
.panel.dark h2 { color: #fff; }
.panel.dark .badge { --tone: var(--gold); --tone-soft: rgba(224, 169, 63, .16); }
.panel.dark .checks li::before { background-color: var(--gold); }
.panel.dark strong { color: #fff; }
.hotline { margin: 22px 0 0; display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px; padding: 14px 16px; }
.hotline .icon { color: var(--gold); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.info { margin: 0; border: 1px solid var(--line); border-radius: 24px; background: #fff; overflow: hidden; }
.info-row { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--line); align-items: center; }
.info-row:last-child { border-bottom: 0; }
.info-row .badge { width: 46px; height: 46px; border-radius: 14px; }
.info-row .badge .icon { width: 22px; height: 22px; }
.info-row dt { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
html[lang="ar"] .info-row dt { letter-spacing: 0; font-size: .9rem; }
.info-row dd { margin: 0; font-weight: 500; }
.info-row > div { min-width: 0; }
.info-row dd { overflow-wrap: anywhere; }
.map { position: relative; border-radius: 24px; border: 1px solid var(--line); min-height: 340px; overflow: hidden; background: #e4efe9; }
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map { min-height: 420px; }
.map-label { position: absolute; inset-inline: 16px; bottom: 16px; background: #fff; border-radius: 14px; padding: 12px 16px; font-size: .92rem; box-shadow: var(--shadow); }
.pin { animation: bob 2.4s ease-in-out infinite; transform-origin: center bottom; }
@keyframes bob { 50% { transform: translateY(-7px); } }

/* service groups */
.group-title { display: flex; align-items: center; gap: 16px; margin: 44px 0 20px; font-family: var(--sans); font-size: .84rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
html[lang="ar"] .group-title { letter-spacing: 0; font-size: .98rem; }
.group-title::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.section-head + .group-title { margin-top: 0; }
.service-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-4 .service { padding: 24px 22px; }
.cols-4 .service:nth-child(4n+1) { --tone: var(--sea); --tone-soft: var(--sea-soft); }
.cols-4 .service:nth-child(4n+2) { --tone: var(--clay); --tone-soft: #fbeade; }
.cols-4 .service:nth-child(4n+3) { --tone: #9a6a0a; --tone-soft: #fbefd2; }
.cols-4 .service:nth-child(4n) { --tone: #33515a; --tone-soft: #e6ecec; }
.service-grid.quiet .service { background: var(--sand); border-style: dashed; }
.service-grid.quiet .service .badge { background: #fff; }
.fee { display: inline-block; vertical-align: middle; font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: 0; border-radius: 999px; padding: 2px 9px; background: #fbefd2; color: #7a5407; white-space: nowrap; }
.fee.free { background: var(--sea-soft); color: var(--deep); }

/* facts list inside the document guides */
.facts { list-style: none; padding: 0; font-size: .95rem; }
.facts li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: .7em; }
.facts .icon { width: 19px; height: 19px; color: var(--tone, var(--sea)); margin-top: .2em; }
html[lang="ar"] .facts .icon { margin-top: .45em; }
.bring-layout .tip + .tip { margin-top: 12px; }
.badge.tone-sea { --tone: var(--sea); --tone-soft: var(--sea-soft); }

/* vaccination sessions */
.timeline small { font-size: .78rem; color: #a9c9c8; line-height: 1.35; margin-top: -6px; }
html[lang="ar"] .timeline small { font-size: .82rem; }
.sessions-title { display: flex; align-items: center; gap: 10px; color: #fff; margin: 48px 0 16px; font-size: 1.15rem; }
.sessions-title .icon { color: var(--gold); width: 21px; height: 21px; }
.sessions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.session { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .15); border-radius: 16px; padding: 18px 20px; }
.session p { margin: 0; }
.session-where { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: #a9c9c8; }
.session-where .icon { width: 15px; height: 15px; }
.session-when { font-family: var(--display); font-size: 1.22rem; font-weight: 600; color: var(--gold); line-height: 1.35; margin: 6px 0 4px !important; }
html[lang="ar"] .session-when { font-size: 1.08rem; line-height: 1.6; }
.session-what { font-size: .92rem; color: #d6e8e7; }

/* about: vision, mission, values */
.about-top { display: grid; grid-template-columns: minmax(220px, .7fr) 1.3fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.seal { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); aspect-ratio: 1; display: grid; place-items: center; }
.seal img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }
.seal.missing { display: none; }
.about-top:has(.seal.missing) { grid-template-columns: 1fr; }
.vm { display: grid; gap: 16px; }
.vm-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px 30px; }
.vm-card .kicker { margin-bottom: 8px; }
.vm-card .kicker::before { display: none; }
.vm-card .kicker .icon { width: 18px; height: 18px; color: var(--gold); }
.vm-text { margin: 0; color: var(--ink); }
.vm-text.big { font-family: var(--display); font-size: clamp(1.25rem, 2.1vw, 1.6rem); line-height: 1.4; color: var(--deep); font-weight: 500; }
html[lang="ar"] .vm-text.big { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.8; font-weight: 600; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value .badge { margin: 0 auto 16px; width: 64px; height: 64px; border-radius: 50%; }
.value .badge .icon { width: 30px; height: 30px; }
.value:nth-child(odd) { --tone: var(--deep); --tone-soft: var(--sea-soft); }
.value:nth-child(even) { --tone: #7a5407; --tone-soft: #f6e6c2; }
.value p { margin: 0; color: var(--muted); font-size: .96rem; }

/* team gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.shot { position: relative; margin: 0; border-radius: 20px; overflow: hidden; background: var(--sand); }
.shot.big { grid-column: span 2; grid-row: span 2; }
.shot.tall { grid-row: span 2; }
.shot.wide3 { grid-column: span 3; grid-row: span 2; }
.shot.cta { grid-row: span 2; background: var(--deep-2) var(--stars); color: #d3e5e4; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 28px; }
.shot.cta > .icon { width: 44px; height: 44px; color: var(--gold); }
.shot.cta p { margin: 0; max-width: 30ch; font-size: 1.05rem; }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.shot:hover img { transform: scale(1.04); }
.shot figcaption { position: absolute; inset-inline: 0; bottom: 0; padding: 40px 18px 14px; color: #fff; font-weight: 500; font-size: .95rem; background: linear-gradient(transparent, rgba(8, 50, 58, .85)); }
.shot .ph { display: none; }
.shot.missing { border: 2px dashed var(--line); }
.shot.missing img { display: none; }
.shot.missing .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: .82rem; font-family: ui-monospace, monospace; direction: ltr; padding-bottom: 40px; }
.shot.missing .ph .icon { width: 30px; height: 30px; color: var(--clay); }
.shot.missing figcaption { background: none; color: var(--ink); text-align: center; }
.btn-fb { background: #1877f2; color: #fff; }
.btn-fb:hover { background: #0f66da; color: #fff; }
.btn-deep { background: var(--deep); color: #fff; padding: 10px 18px; font-size: .9rem; }
.btn-deep:hover { background: var(--sea); color: #fff; }

/* contact extras */
.info-row a { color: var(--deep); font-weight: 600; text-decoration: none; }
.info-row a:hover { text-decoration: underline; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 5px 13px; font-size: .84rem; color: #fff !important; text-decoration: none !important; }
.chip .icon { width: 15px; height: 15px; }
.chip.wa { background: #1fa855; }
.chip.tg { background: #2392d6; }
.chip:hover { filter: brightness(1.08); }
.info-row.sos { background: var(--coral-soft); }
.info-row.sos .badge { --tone: var(--coral); --tone-soft: #fff; }
.map-label { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 16px; }
.map-label p { margin: 0; line-height: 1.45; }
.hotline a { color: var(--gold); font-weight: 600; text-decoration: none; }
bdi { white-space: nowrap; }
.foot-links { display: grid; gap: 8px; }
.foot-links a { display: inline-flex; align-items: center; gap: 9px; color: #dcebea; text-decoration: none; }
.foot-links a:hover { color: var(--gold); }
.foot-links .icon { width: 17px; height: 17px; color: var(--gold); }
.foot-note { flex-basis: 100%; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 18px; font-size: .85rem; max-width: none !important; }

/* travel vaccines */
.tv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.tv:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tv header { display: flex; gap: 14px; align-items: center; padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px dashed var(--line); }
.tv:nth-child(odd) { --tone: var(--sea); --tone-soft: var(--sea-soft); }
.tv:nth-child(even) { --tone: var(--clay); --tone-soft: #fbeade; }
.tv h3 { margin: 0; font-size: 1.12rem; }
.price { margin: 2px 0 0; font-weight: 600; color: var(--tone, var(--sea)); font-size: 1.05rem; }
.price bdi { font-family: 'Fraunces', serif; font-size: 1.5rem; font-variant-numeric: lining-nums; }
.tv dl { display: grid; gap: 10px; font-size: .92rem; }
.tv dl div { display: grid; gap: 1px; }
.tv dt { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
html[lang="ar"] .tv dt { letter-spacing: 0; font-size: .84rem; }
.tv dd { margin: 0; }
.tv dd strong { color: var(--deep); }
.tv-more { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.fees { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.fees h3 { display: flex; align-items: center; gap: 10px; }
.fees h3 .icon { color: var(--gold); width: 21px; height: 21px; }
.fees table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.fees td { padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.fees td:last-child { text-align: end; font-weight: 600; color: var(--deep); white-space: nowrap; padding-inline-start: 14px; }
.fine { margin: 14px 0 0; font-size: .85rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.fine .icon { width: 16px; height: 16px; margin-top: .25em; color: var(--sea); }
#malaria summary { font-size: 1.1rem; }

/* opening hours */
.hours { border-collapse: collapse; width: 100%; font-size: .93rem; font-weight: 400; }
.hours th { text-align: start; font-weight: 500; color: var(--muted); padding: 5px 0; padding-inline-end: 14px; vertical-align: top; }
.hours td { text-align: end; font-weight: 600; color: var(--deep); padding: 5px 0; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px dashed var(--line); }
.closed { display: inline-block; margin-top: 8px; font-size: .8rem; font-weight: 600; color: var(--coral); background: var(--coral-soft); border-radius: 999px; padding: 2px 11px; }
.info-row:has(.hours) { align-items: start; }

/* placeholder marker — remove once real details are filled in */
.todo { background: #fff3c4; border: 1px dashed #b88a00; border-radius: 6px; padding: 1px 8px; color: #6b5200; font-size: .9em; font-weight: 400; }

/* footer */
.site-footer { position: relative; background: var(--deep-2); color: #b4cdcc; font-size: .92rem; padding-block: 0 40px; }
.site-footer .ridge { display: block; width: 100%; height: clamp(50px, 7vw, 90px); background: var(--sand); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 40px; justify-content: space-between; align-items: flex-start; padding-top: 28px; }
.foot-brand { display: flex; gap: 14px; align-items: center; }
.foot-brand .logo { width: 56px; height: 56px; box-shadow: none; }
.site-footer strong { color: #fff; font-weight: 600; font-family: var(--display); font-size: 1.05rem; }
.site-footer p { margin: 0; max-width: 58ch; }
.site-footer a { color: #fff; }

/* reveal on scroll (only when JS is running) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .tv-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-more { grid-template-columns: 1fr; }
  .service-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .sessions { grid-template-columns: 1fr; }
  .about-top { grid-template-columns: 1fr; }
  .seal { max-width: 260px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .shot.wide3, .shot.cta { grid-column: span 2; }
  .shot.cta { grid-row: span 1; }
  .shot.cta > .icon { display: none; }
  .task-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .split, .bring-layout { grid-template-columns: 1fr; }
  .bring-layout .section-head { position: static; }
  .site-header .wrap { flex-wrap: wrap; row-gap: 4px; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; margin-inline: -8px; }
  .nav::-webkit-scrollbar { display: none; }
  html { scroll-padding-top: 140px; }
}
@media (max-width: 760px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { width: min(58%, 220px); order: -1; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { inset-inline: auto; inset-inline-start: 20px; top: 22px; bottom: 22px; width: 3px; height: auto; background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .35) 0 8px, transparent 8px 16px); }
  .timeline li { display: grid; grid-template-columns: 44px 1fr; column-gap: 18px; row-gap: 0; text-align: start; padding-block: 10px; align-items: center; justify-items: start; }
  .timeline li .dot { grid-row: span 2; }
  .timeline small { margin-top: 0; }
}
@media (max-width: 600px) {
  .tv-grid { grid-template-columns: 1fr; }
  .hours th, .hours td { display: block; text-align: start; padding: 2px 0; }
  .hours td { padding-bottom: 8px; }
  .hours tr + tr th { border-top: 0; }
  .hours tr + tr td { border-top: 0; }
  .info-row { grid-template-columns: 42px 1fr; gap: 12px; padding: 16px; align-items: start; }
  .info-row .badge { width: 42px; height: 42px; }
  .service-grid.cols-4, .values { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 170px; gap: 10px; }
  .news-ctl .news-count, .news-sos .lbl { display: none; }
  .news .wrap { gap: 9px; }
  .news-link { white-space: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.4; font-size: .84rem; }
  .logo { width: 44px; height: 44px; border-radius: 12px; }
  .langs a { padding: 4px 9px; font-size: .78rem; }
  .wrap { padding-inline: 16px; }
  .task-grid, .service-grid { grid-template-columns: 1fr; }
  .guide-body { grid-template-columns: 1fr; gap: 18px; }
  .brand-sub { display: none; }
  .site-header .wrap { gap: 12px; }
  .brand { flex: 1 1 0; min-width: 0; gap: 10px; }
  .brand-name { font-size: .95rem; line-height: 1.25; }
  summary { flex-wrap: wrap; gap: 10px 14px; }
  summary .when { order: 4; }
  .vax { border-radius: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
@media print {
  .news, .site-header, .hero-art, .hero-cta, .map, .gallery { display: none; }
  .hero { background: none; color: var(--ink); }
  .hero h1 { color: var(--ink); }
  .js .reveal { opacity: 1; transform: none; }
  details { break-inside: avoid; }
}
