/* ============ Xpedited Care 360 — design system ============ */
:root {
  --navy: #0d1f3c;
  --navy-2: #14294d;
  --ink: #101828;
  --blue-glow: #2f5fb0;
  --red: #d92d20;
  --red-dark: #b42318;
  --gold: #c8992f;
  --gold-soft: #d9b45a;
  --green: #17924e;
  --muted: #667085;
  --line: #e6ebf1;
  --bg: #ffffff;
  --soft: #f5f8fc;

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 4px 14px -8px rgb(13 31 60 / .25);
  --shadow: 0 20px 45px -22px rgb(13 31 60 / .35);
  --shadow-lg: 0 40px 80px -30px rgb(13 31 60 / .5);

  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;

  --fs-h1: clamp(2.2rem, 1.2rem + 4.4vw, 5.5rem);
  --fs-h2: clamp(1.9rem, 1.3rem + 2.4vw, 3.2rem);
  --fs-lg: clamp(1.1rem, 1rem + .45vw, 1.35rem);
  --fs-base: clamp(1rem, .96rem + .2vw, 1.09rem);
  --fs-sm: clamp(.85rem, .82rem + .15vw, .95rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
html { overflow-x: clip; }
body {
  margin: 0; font-family: var(--sans); font-size: var(--fs-base); line-height: 1.6;
  color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased;
  overflow-x: clip; max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.08; color: var(--navy); letter-spacing: -.02em; text-wrap: balance; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--blue-glow); }

.container { width: min(1240px, 100% - 3rem); margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -.01em; }
.skip-link {
  position: absolute; top: 0; inset-inline-start: 0; z-index: 100;
  width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 8px;
}
.skip-link:focus { width: auto; height: auto; clip-path: none; white-space: normal; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: .02em; text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 1rem 2rem; font-size: var(--fs-base); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 12px 26px -12px rgb(217 45 32 / .6); }
.btn-red:hover { background: var(--red-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-gold { background: var(--gold); color: #16233f; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { filter: brightness(1.08); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { color: #fff; border-color: rgb(255 255 255 / .4); background: transparent; }
.btn-ghost-light:hover { background: rgb(255 255 255 / .12); }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgb(255 255 255 / .88);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgb(13 31 60 / .5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 82px; }
.brand img { height: 52px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 1.1rem; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: var(--fs-sm); position: relative; padding-block: .3rem; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px; background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.link-call { display: inline-flex; align-items: center; gap: .45rem; color: var(--navy); font-weight: 700; font-size: var(--fs-sm); text-decoration: none; white-space: nowrap; }
.link-call svg { width: 18px; height: 18px; }
.link-call:hover { color: var(--red); }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch a { text-decoration: none; font: inherit; font-size: .76rem; font-weight: 800; color: var(--muted); padding: .3rem .55rem; border-radius: 999px; transition: background .18s, color .18s; }
.lang-switch a:hover { color: var(--navy); }
.lang-switch a[aria-current="true"] { background: var(--navy); color: #fff; }

.nav-toggle { display: none; }
@media (max-width: 1240px) {
  .nav-toggle { display: grid; gap: 5px; padding: .7rem .5rem; background: none; border: 0; cursor: pointer; }
  .nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 1rem; background: #fff; border-bottom: 1px solid var(--line); padding: 1.25rem 1.5rem 1.75rem;
    box-shadow: var(--shadow); display: none;
  }
  .site-nav.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: .25rem; width: 100%; }
  .nav-links a { padding: .55rem 0; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-actions { flex-direction: column; align-items: stretch; }
  .nav-actions .btn, .nav-actions .link-call { justify-content: center; }
  .lang-switch { justify-content: center; }
}

/* ============ Hero ============ */
.hero { position: relative; color: #fff; overflow: clip; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgb(9 20 40 / .96) 0%, rgb(10 23 46 / .86) 42%, rgb(11 26 52 / .55) 70%, rgb(12 30 60 / .3) 100%);
}
.hero-inner { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(5rem, 10vw, 8rem); max-width: 760px; }
.hero h1 { color: #fff; font-size: var(--fs-h1); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; line-height: .98; margin-bottom: .35em; }
.hero h1 .gold { color: var(--gold-soft); }
.hero-services { color: var(--gold-soft); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: clamp(.8rem, .7rem + .4vw, 1rem); margin-bottom: 1.5rem; }
.hero-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); color: #fff; margin-bottom: .5rem; }
.hero-lede { color: rgb(255 255 255 / .82); font-size: var(--fs-lg); max-width: 40rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.status-chip {
  display: flex; width: fit-content; align-items: center; gap: .5rem; margin-bottom: 1.2rem;
  background: rgb(255 255 255 / .12); border: 1px solid rgb(255 255 255 / .25); color: #fff;
  border-radius: 999px; padding: .4rem .95rem; font-size: var(--fs-sm); font-weight: 700;
  backdrop-filter: blur(6px);
}
.status-dot { width: .55rem; height: .55rem; border-radius: 50%; background: #38d47f; box-shadow: 0 0 0 0 rgb(56 212 127 / .5); animation: pulse 2s infinite; }
.status-chip.closed .status-dot { background: #ff6b5e; animation: none; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgb(56 212 127 / .5); } 60% { box-shadow: 0 0 0 7px rgb(56 212 127 / 0); } }

/* ============ Service cards ============ */
.services { background: var(--soft); }
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  margin-top: -6.5rem; position: relative; z-index: 2;
}
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); margin-top: -5rem; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-photo { position: relative; aspect-ratio: 5 / 3; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-badge {
  position: absolute; left: 1.25rem; bottom: -1.25rem; width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm); border: 3px solid #fff;
}
.svc-badge svg { width: 22px; height: 22px; }
.svc-body { padding: 1.9rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.3rem; }
.svc-body > p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 1rem; }
.svc-list { display: grid; gap: .5rem; margin-bottom: 1.4rem; }
.svc-list li { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); font-weight: 500; }
.svc-list li svg { width: 18px; height: 18px; flex: 0 0 auto; }
.svc-card .btn { margin-top: auto; }
/* per-service accents */
.svc-urgent .svc-badge { background: var(--red); }
.svc-urgent .svc-list svg { color: var(--red); }
.svc-primary .svc-badge { background: var(--navy); }
.svc-primary .svc-list svg { color: var(--navy); }
.svc-occ .svc-badge { background: var(--gold); }
.svc-occ .svc-list svg { color: var(--gold); }
.svc-weight .svc-badge { background: var(--green); }
.svc-weight .svc-list svg { color: var(--green); }

/* ============ Stats bar ============ */
.statsbar { background: var(--soft); padding-bottom: clamp(3rem, 6vw, 5rem); }
.stats-inner {
  background: var(--navy); border-radius: var(--radius-lg); color: #fff; padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.5rem);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; box-shadow: var(--shadow);
}
@media (max-width: 900px) { .stats-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat { display: flex; align-items: center; gap: .7rem; }
.stat svg { width: 26px; height: 26px; color: var(--gold-soft); flex: 0 0 auto; }
.stat b { display: block; font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; line-height: 1.25; }

/* ============ Sections ============ */
/* Skip rendering work for off-screen sections until they scroll near the viewport.
   (Limited to non-nav-anchor sections so in-page navigation stays pixel-accurate.) */
#reviews, #employers, .offer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-soft { background: var(--soft); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { color: var(--muted); font-size: var(--fs-lg); }

/* Split (occupational, provider) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }
.split h2 { font-size: var(--fs-h2); }
.split > div > p { color: var(--muted); }
.check-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem; margin: 1.4rem 0; }
@media (max-width: 480px) { .check-2 { grid-template-columns: 1fr; } }
.check-2 li { display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: var(--fs-sm); }
.check-2 li svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; }
.split-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.svc-list-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 1.5rem 1.75rem; margin-top: 1.5rem; }
.svc-list-card li { display: flex; align-items: center; gap: .8rem; padding: .75rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.svc-list-card li:last-child { border-bottom: 0; }
.svc-list-card li svg { width: 20px; height: 20px; color: var(--muted); flex: 0 0 auto; }

/* ============ Testing & services ============ */
.testing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.2rem; }
.testing-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.testing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testing-icon { width: 3rem; height: 3rem; border-radius: 12px; display: grid; place-items: center; margin-bottom: .9rem; background: linear-gradient(140deg, color-mix(in srgb, var(--blue-glow) 12%, white), color-mix(in srgb, var(--gold) 12%, white)); border: 1px solid var(--line); }
.testing-icon svg { width: 24px; height: 24px; color: var(--navy); }
.testing-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.testing-note { color: var(--muted); font-size: var(--fs-sm); margin-bottom: .6rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-list li { font-size: .82rem; font-weight: 600; color: var(--navy); background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: .25rem .7rem; }
.testing-cta { margin-top: 1.6rem; font-size: var(--fs-lg); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: .8rem; max-width: 60rem; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-list summary { cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 700; color: var(--navy); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--gold); flex: 0 0 auto; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 1.4rem 1.2rem; color: var(--muted); }

/* ============ Provider ============ */
.provider-card {
  background: linear-gradient(155deg, var(--navy), var(--navy-2)); color: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(2.5rem, 5vw, 3.5rem); display: grid; justify-items: center; gap: .4rem; text-align: center;
}
.provider-avatar {
  width: 118px; height: 118px; border-radius: 50%; display: grid; place-items: center; font-size: 2.3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--red), #ff7a6e); border: 4px solid rgb(255 255 255 / .22); margin-bottom: .8rem;
}
.provider-card strong { font-size: 1.5rem; }
.provider-card span { color: var(--gold-soft); font-size: var(--fs-sm); font-weight: 800; letter-spacing: .08em; }
.provider-role { font-weight: 700; color: var(--gold); font-size: var(--fs-sm); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0 1.4rem; }
.chip { display: inline-block; padding: .35rem .85rem; border-radius: 999px; font-size: .8rem; font-weight: 800; color: var(--navy); background: color-mix(in srgb, var(--gold) 16%, white); border: 1px solid color-mix(in srgb, var(--gold) 35%, white); }

/* ============ Reviews ============ */
.rating-num { color: var(--gold); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 1.2rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.75rem 1.6rem; display: grid; gap: .8rem; align-content: start; transition: transform .22s, box-shadow .22s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { display: flex; gap: .2rem; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.review-card blockquote { margin: 0; }
.review-card blockquote p { margin: 0; font-weight: 600; color: var(--navy); font-size: 1.06rem; line-height: 1.5; }
.review-card figcaption { color: var(--muted); font-size: var(--fs-sm); }
.review-cta { margin-top: 1.6rem; color: var(--muted); font-size: var(--fs-sm); }
.text-link { color: var(--blue-glow); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============ Employer portal ============ */
.portal-band { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; grid-template-columns: minmax(220px, .8fr) 2fr auto; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
@media (max-width: 940px) { .portal-band { grid-template-columns: 1fr; } }
.portal-intro { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1.75rem; }
.portal-intro .pi-icon { width: 3rem; height: 3rem; border-radius: 12px; background: rgb(255 255 255 / .1); display: grid; place-items: center; margin-bottom: 1rem; }
.portal-intro .pi-icon svg { width: 24px; height: 24px; color: var(--gold-soft); }
.portal-intro h3 { color: var(--gold); font-size: 1.35rem; margin-bottom: .5rem; }
.portal-intro p { color: rgb(255 255 255 / .72); font-size: var(--fs-sm); margin: 0; }
.portal-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem 1.4rem; }
@media (max-width: 620px) { .portal-features { grid-template-columns: repeat(2, 1fr); } }
.portal-features li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: var(--fs-sm); }
.portal-features li svg { width: 18px; height: 18px; color: var(--muted); flex: 0 0 auto; }

/* ============ Pricing preview ============ */
.pricing-cta { background: var(--navy); color: #fff; }
.pricing-cta .container { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .pricing-cta .container { grid-template-columns: 1fr; } }
.pricing-cta h2 { color: #fff; font-size: var(--fs-h2); }
.pricing-cta h2 .gold { color: var(--gold-soft); }
.pricing-cta p { color: rgb(255 255 255 / .78); }
.price-peek { display: grid; gap: .55rem; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .14); border-radius: var(--radius); padding: 1.5rem 1.6rem; }
.price-peek div { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px dashed rgb(255 255 255 / .16); }
.price-peek div:last-child { border-bottom: 0; }
.price-peek dt { color: rgb(255 255 255 / .85); }
.price-peek dd { margin: 0; font-weight: 800; color: var(--gold-soft); font-variant-numeric: tabular-nums; }

/* ============ Offer band ============ */
.offer { background: linear-gradient(100deg, var(--red), var(--red-dark)); color: #fff; }
.offer .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.offer h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: .2rem; }
.offer p { margin: 0; color: rgb(255 255 255 / .88); }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.5rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(1.6rem, 3vw, 2.2rem); }
.contact-card h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 1.5rem 0 .4rem; }
.contact-card h3:first-child { margin-top: 0; }
.contact-card address { font-style: normal; font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours-table th { text-align: left; font-weight: 600; padding: .32rem 0; }
.hours-table td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--red); font-weight: 800; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 400px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ============ Footer ============ */
.site-footer { background: var(--navy); color: rgb(255 255 255 / .82); }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem; padding-block: 2.25rem; border-bottom: 1px solid rgb(255 255 255 / .12); }
.footer-top img { height: 42px; width: auto; }
.footer-contacts { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.footer-contacts a, .footer-contacts span { display: inline-flex; align-items: center; gap: .5rem; color: rgb(255 255 255 / .82); text-decoration: none; font-size: var(--fs-sm); font-weight: 600; }
.footer-contacts svg { width: 18px; height: 18px; color: var(--gold-soft); flex: 0 0 auto; }
.footer-contacts a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; padding-block: 1.5rem; font-size: .82rem; color: rgb(255 255 255 / .55); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a { color: rgb(255 255 255 / .7); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
.footer-services { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1.4rem; padding-block: 1.5rem; border-bottom: 1px solid rgb(255 255 255 / .12); }
.footer-services-label { font-size: var(--fs-sm); font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-soft); }
.footer-services nav { display: flex; flex-wrap: wrap; gap: .6rem .8rem; }
.footer-services a { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border: 1px solid rgb(255 255 255 / .22); border-radius: 999px; color: #fff; text-decoration: none; font-weight: 600; font-size: var(--fs-sm); transition: background .15s, border-color .15s; }
.footer-services a:hover { background: rgb(255 255 255 / .1); border-color: rgb(255 255 255 / .42); }
.footer-services svg { width: 16px; height: 16px; color: var(--gold-soft); flex: 0 0 auto; }
.footer-disclaimer { width: 100%; padding-bottom: 1.5rem; font-size: .8rem; color: rgb(255 255 255 / .5); }

/* ============ Mobile action bar ============ */
.mobile-cta { position: fixed; inset-inline: 0; bottom: 0; z-index: 60; display: none; grid-template-columns: 1fr 1.2fr 1fr; gap: .5rem; padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom)); background: rgb(255 255 255 / .94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -16px rgb(13 31 60 / .5); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .45rem; padding: .65rem .5rem; border-radius: 12px; font-size: .88rem; font-weight: 700; text-decoration: none; color: var(--navy); background: var(--soft); border: 1px solid var(--line); }
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-cta .cta-book { background: var(--red); border-color: var(--red); color: #fff; }
@media (max-width: 900px) { .mobile-cta { display: grid; } body { padding-bottom: 76px; } }

/* ============ Partner dialog ============ */
.partner-dialog { border: 0; border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); width: min(560px, 92vw); max-height: 90vh; box-shadow: var(--shadow-lg); color: var(--ink); }
.partner-dialog::backdrop { background: rgb(13 31 60 / .5); backdrop-filter: blur(4px); }
.partner-dialog h3 { font-size: 1.5rem; margin-bottom: .25rem; padding-inline-end: 2rem; }
.dialog-sub { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 1.25rem; }
.dialog-close { position: absolute; top: .9rem; inset-inline-end: .9rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1px solid var(--line); background: var(--soft); font-size: 1.2rem; line-height: 1; cursor: pointer; color: var(--muted); }
.dialog-close:hover { color: var(--navy); }
.hp-field { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 520px) { .field-grid { grid-template-columns: 1fr; } }
.partner-dialog label { display: grid; gap: .3rem; font-size: var(--fs-sm); font-weight: 700; color: var(--navy); }
.partner-dialog input, .partner-dialog textarea { font: inherit; font-weight: 400; padding: .6rem .8rem; border-radius: 10px; border: 1.5px solid var(--line); background: var(--soft); color: var(--ink); }
.partner-dialog input:focus-visible, .partner-dialog textarea:focus-visible { outline: 2px solid var(--blue-glow); outline-offset: 1px; border-color: var(--blue-glow); }
.svc-fieldset { border: 0; padding: 0; margin: 1rem 0 0; }
.svc-fieldset legend { font-size: var(--fs-sm); font-weight: 700; color: var(--navy); margin-bottom: .5rem; padding: 0; }
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem .8rem; }
@media (max-width: 520px) { .svc-checks { grid-template-columns: 1fr; } }
.svc-checks label { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--ink); }
.svc-checks input { accent-color: var(--red); width: 1.05rem; height: 1.05rem; }
.msg-label { margin-top: 1rem; }
#partner-send { width: 100%; margin-top: 1.2rem; }
#partner-send:disabled { opacity: .6; cursor: wait; transform: none; }
.form-status { margin: .5rem 0 0; font-weight: 700; }
.status-ok { color: #1c7c4a; }
.status-err { color: var(--red); }

/* ============ Pricing page ============ */
.price-hero { background: var(--navy); color: #fff; }
.price-hero .container { padding-block: clamp(3rem, 6vw, 5rem); }
.price-badge { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid rgb(255 255 255 / .2); color: var(--gold-soft); border-radius: 999px; padding: .4rem 1rem; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.25rem; }
.price-hero h1 { color: #fff; font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.5rem); font-weight: 800; }
.price-hero h1 .gold { color: var(--gold-soft); }
.price-hero p { color: rgb(255 255 255 / .8); font-size: var(--fs-lg); max-width: 38rem; }
.price-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.price-controls { position: sticky; top: 82px; z-index: 20; background: rgb(255 255 255 / .92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding-block: 1rem; }
.price-controls .container { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.price-search { flex: 1; min-width: 220px; display: flex; align-items: center; gap: .6rem; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.1rem; }
.price-search input { flex: 1; border: 0; background: transparent; font: inherit; outline: none; color: var(--ink); }
.price-search svg { width: 18px; height: 18px; color: var(--muted); }
.price-chips { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .2rem; }
.price-chip { white-space: nowrap; border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 999px; padding: .5rem .9rem; font-size: .85rem; font-weight: 700; cursor: pointer; transition: background .18s, color .18s, border-color .18s; }
.price-chip:hover { border-color: var(--navy); }
.price-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.price-section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.price-cat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 1.4rem; }
.price-cat-head { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.price-cat-emoji { font-size: 1.6rem; line-height: 1; }
.price-cat-head h2 { font-size: 1.35rem; margin: 0; }
.price-cat-head p { margin: .15rem 0 0; color: var(--muted); font-size: var(--fs-sm); }
.price-cat-count { margin-inline-start: auto; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table caption { text-align: start; padding: .8rem 1.6rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.price-table th { text-align: start; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: .5rem 1.6rem; border-bottom: 1px solid var(--line); }
.price-table th:last-child { text-align: end; }
.price-table td { padding: .85rem 1.6rem; border-bottom: 1px solid var(--line); font-weight: 500; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:nth-child(even) td { background: var(--soft); }
.price-table td:last-child { text-align: end; font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-note { display: flex; gap: .6rem; align-items: center; padding: .8rem 1.6rem; background: color-mix(in srgb, var(--gold) 12%, white); color: #7a5c12; font-size: var(--fs-sm); font-weight: 600; }
.price-disclaimer { color: var(--muted); font-size: var(--fs-sm); max-width: 60rem; margin-top: 1.5rem; }
.price-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; font-weight: 600; }

/* ============ Reveal ============ */
.reveal { opacity: 0; translate: 0 24px; transition: opacity .6s ease, translate .6s ease; }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; translate: 0 0; } }

/* ============ Arabic / RTL ============ */
html[lang="ar"] body { font-family: "Noto Sans Arabic", var(--sans); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; }
html[lang="ar"] .hero h1, html[lang="ar"] .price-hero h1 { text-transform: none; line-height: 1.25; }
html[lang="ar"] .hero-services, html[lang="ar"] .eyebrow, html[lang="ar"] .stat b { letter-spacing: 0; }
[dir="rtl"] .hero-media::after { background: linear-gradient(260deg, rgb(9 20 40 / .96) 0%, rgb(10 23 46 / .86) 42%, rgb(11 26 52 / .55) 70%, rgb(12 30 60 / .3) 100%); }
[dir="rtl"] .hero-hours dd, [dir="rtl"] .hours-table td, [dir="rtl"] .price-table td:last-child, [dir="rtl"] .link-call { direction: ltr; unicode-bidi: isolate; }
[dir="rtl"] .serif-accent, [dir="rtl"] .hero-sub { font-family: "Noto Sans Arabic", var(--sans); font-style: normal; }
