/* Wajan 2 Clinics — v2 LIGHT ivory + gold, airy typography, even cards */
:root {
  --brand: #b08a3e;      /* gold — actions/icons */
  --brand-2: #8a6b2c;    /* deep gold — text accents */
  --bg: #faf6ee;
  --surface: #f1e9d8;
  --line: #e2d6bd;
  --text: #2c251a;
  --muted: #83745a;
  --card: #fffdf8;
}

body {
  font-weight: 400;
  line-height: 1.95;
  background:
    radial-gradient(80rem 46rem at 90% -10%, color-mix(in srgb, #f0e2c4 55%, transparent), transparent 60%),
    radial-gradient(66rem 44rem at -10% 45%, color-mix(in srgb, #f3ead6 65%, transparent), transparent 65%),
    var(--bg);
}
strong, b { font-weight: 700; }
h1, h2, h3 { letter-spacing: .01em; }
h2 { margin-bottom: .6em; }

/* ---------- Header (light glass) ---------- */
.glass-header { background: color-mix(in srgb, #fffdf8 72%, transparent);
  border-color: color-mix(in srgb, var(--brand) 22%, transparent);
  box-shadow: 0 10px 34px rgb(70 55 25 / .10); }
.logo-pill { display: inline-flex; align-items: center; justify-content: center;
  background: #171208; border-radius: 12px; padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--brand) 45%, transparent); }
.logo-pill img { height: 28px; width: auto; }
.logo-txt { font-family: var(--font-display); font-weight: 700; font-size: .98rem; line-height: 1.35; }
.logo-txt small { font-family: var(--font-body); font-weight: 400; letter-spacing: .07em; color: var(--muted); }
.glass-header nav { gap: 30px; }
.glass-header nav a { font-weight: 400; }
.glass-header nav a:hover { color: var(--brand-2); }
.burger, .mobile-menu .close { font-size: 1.35rem; }
.mobile-menu { background: color-mix(in srgb, var(--bg) 92%, transparent); }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; }

/* ---------- Hero: bright silk video, dark text ---------- */
.hero .veil { background: linear-gradient(180deg,
  rgb(250 246 238 / .5), rgb(250 246 238 / .78) 55%, var(--bg) 97%); }
.hero-inner { max-width: 880px; padding-block: 2rem; }
.hero-eyebrow { color: var(--brand-2); font-size: .95rem; font-weight: 700;
  letter-spacing: .05em; margin-bottom: 1.4rem; }
.hero-eyebrow i { margin-inline-end: .45rem; }
.hero h1 { font-weight: 900; line-height: 1.35; margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--brand-2); }
.hero h1 em::after { content: none; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 400; color: var(--muted);
  max-width: 48ch; margin-inline: auto; line-height: 2.1; margin-bottom: 2.4rem; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.hero-facts { list-style: none; display: flex; align-items: center; justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.4rem); flex-wrap: wrap; color: var(--text); font-size: .95rem; }
.hero-facts li { padding-block: .2rem; }
.hero-facts li + li { border-inline-start: 1px solid var(--line);
  padding-inline-start: clamp(1.2rem, 3vw, 2.4rem); }
.hero-facts i { color: var(--brand); margin-inline-end: .5rem; }

/* ---------- Buttons ---------- */
.btn { font-weight: 700; }
.btn-gold { background: var(--brand); color: #fffdf8; }
.btn-gold:hover { box-shadow: 0 14px 30px color-mix(in srgb, var(--brand) 35%, transparent); }
.btn.ghost { color: var(--text); border-color: color-mix(in srgb, var(--text) 28%, transparent); }
.btn.ghost:hover { border-color: var(--brand); color: var(--brand-2); }
.btn-sm { padding: 11px 22px; font-size: .9rem; margin-top: .9rem; }

/* ---------- Section rhythm ---------- */
.section-eyebrow { color: var(--brand-2); font-weight: 700; font-size: .9rem;
  letter-spacing: .06em; margin-bottom: .9rem; }
.section-eyebrow i { margin-inline-end: .45rem; }
.section-sub { max-width: 62ch; line-height: 2.1; margin-bottom: clamp(2.6rem, 5vw, 4rem); }

/* ---------- Marquee ---------- */
.svc-marquee { padding-block: clamp(1.3rem, 3vw, 2.1rem); border-block: 1px solid var(--line);
  background: color-mix(in srgb, #fffdf8 60%, transparent); }
.marquee-group { display: flex; gap: 14px; padding-inline-end: 14px; }
.marquee-track { gap: 0; }
.m-chip { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px;
  border: 1px solid var(--line); border-radius: 999px; font-size: .95rem;
  background: var(--card); white-space: nowrap; }
.m-chip i { color: var(--brand); }

/* ---------- Doctors: even, airy, solid cards ---------- */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 22px; align-items: stretch; }
.dr-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 34px 26px 30px; text-align: center; display: flex; flex-direction: column;
  box-shadow: 0 8px 26px rgb(85 66 30 / .06);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s cubic-bezier(.16,1,.3,1); }
.dr-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgb(85 66 30 / .12); }
.dr-photo { width: 148px; height: 148px; margin: 0 auto 1.4rem; border-radius: 50%;
  background: var(--surface); border: 2px solid color-mix(in srgb, var(--brand) 55%, transparent);
  padding: 5px; }
.dr-clip { display: block; width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  background: #efe6d2; }
.dr-clip img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.dr-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .35rem; }
.dr-spec { color: var(--brand-2); font-weight: 700; font-size: .88rem; margin-bottom: 1rem; }
.dr-creds { list-style: none; border-top: 1px solid var(--line); padding-top: 1rem;
  margin-top: auto; display: grid; gap: .55rem; }
.dr-creds li { color: var(--muted); font-size: .88rem; line-height: 1.85; }

/* ---------- Devices: equal cards, clean strip ---------- */
.dev-hint { color: var(--muted); font-size: .88rem; margin-bottom: 1.4rem; }
.dev-hint i { color: var(--brand); margin-inline-start: .4rem; }
.dev-strip { display: flex; gap: 18px; overflow-x: auto; padding-block: .5rem 1.6rem;
  scroll-snap-type: x mandatory; }
.dev-strip::-webkit-scrollbar { height: 8px; }
.dev-strip::-webkit-scrollbar-track { background: var(--surface); border-radius: 999px; }
.dev-strip::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--brand) 55%, transparent); border-radius: 999px; }
.dev-card { flex: 0 0 280px; scroll-snap-align: start; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 26px rgb(85 66 30 / .06); }
.dev-shot { height: 220px; flex: 0 0 auto; display: grid; place-items: center;
  background: #ffffff; border-bottom: 1px solid var(--line); padding: 18px; }
.dev-shot img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }
.dev-copy { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dev-copy h3 { font-size: 1.02rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; }
.dev-copy h3 i { color: var(--brand); font-size: .9rem; }
.dev-copy p { color: var(--muted); font-size: .9rem; line-height: 1.95; }

/* ---------- Why band ---------- */
.why { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface) 65%, transparent) 25% 75%, transparent); }
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: center; }
.why-visual { border-radius: 22px; overflow: hidden; position: relative;
  box-shadow: 0 14px 40px rgb(85 66 30 / .12); }
.why-visual::after { content: ""; position: absolute; inset: 0; border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent); pointer-events: none; }
.why-visual img { width: 100%; object-fit: cover; }
.why .checks { list-style: none; display: grid; grid-template-columns: 1fr; gap: 4px; }
.why .checks li { display: flex; align-items: center; gap: 14px; font-size: 1rem;
  padding: 14px 0; border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); }
.why .checks i { color: var(--brand); font-size: 1.05rem; }

/* ---------- Visit cards ---------- */
.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 20px; }
.visit-card { border: 1px solid var(--line); border-radius: 20px; padding: 30px;
  background: var(--card); box-shadow: 0 8px 26px rgb(85 66 30 / .05); }
.visit-card h3 { font-size: 1.05rem; margin-bottom: .9rem; }
.visit-card h3 i { color: var(--brand); margin-inline-end: .5rem; }
.visit-card p { color: var(--muted); line-height: 2; }

/* ---------- Booking ---------- */
.booking { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface) 60%, transparent) 25% 75%, transparent); }
.booking-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.4rem, 5vw, 4.5rem); align-items: center; }
.booking-copy .sub { line-height: 2.1; }
.booking-demo-tag { margin-top: 1.3rem; font-size: .87rem; color: var(--muted); }
.booking-demo-tag i { color: var(--brand); margin-inline-end: .4rem; }
.booking-form { display: grid; gap: 18px; border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.4rem); background: var(--card);
  box-shadow: 0 14px 40px rgb(85 66 30 / .08); }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form label { display: grid; gap: 8px; font-size: .88rem; font-weight: 700; color: var(--muted); }
.booking-form input, .booking-form select { font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: #fffefb; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; outline: none; width: 100%; font-weight: 400;
  transition: border-color .25s cubic-bezier(.16,1,.3,1); }
.booking-form input:focus, .booking-form select:focus { border-color: var(--brand); }
.booking-form input::placeholder { color: color-mix(in srgb, var(--muted) 55%, transparent); }
.booking-form .btn { border: 0; cursor: pointer; }

/* ---------- CTA / footer ---------- */
.cta { text-align: center; }
.cta .sub { max-width: 52ch; margin-inline: auto; margin-bottom: 2.2rem; line-height: 2.1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
footer { background: #171208; color: #cbbfa4; border-top: 0; padding: 40px 0; }
footer a { color: var(--brand); }
.demo-notice { background: color-mix(in srgb, #fffdf8 85%, transparent);
  border-color: var(--line); color: var(--muted); box-shadow: 0 6px 20px rgb(85 66 30 / .10); }

/* ---------- Chat widget (light) ---------- */
.chat-fab { background: var(--brand); color: #fffdf8; }
.chat-panel { background: color-mix(in srgb, #fffdf8 94%, transparent);
  border-color: var(--line); box-shadow: 0 24px 70px rgb(60 45 15 / .18); }
.chat-disclaimer { background: color-mix(in srgb, var(--brand) 10%, transparent);
  color: var(--muted); border-color: var(--line); }
.chat-disclaimer i { color: var(--brand-2); }
.chat-msg.assistant { background: var(--surface); border-color: var(--line); }
.chat-msg.user { background: var(--brand); color: #fffdf8; }
.chat-foot input { background: #fffefb; border-color: var(--line); color: var(--text); }
.chat-foot button { background: var(--brand); color: #fffdf8; }
.chat-booked { background: color-mix(in srgb, var(--brand) 10%, transparent);
  border-color: color-mix(in srgb, var(--brand) 40%, transparent); }

/* ---------- Reveal-safe + Responsive ---------- */
@media (max-width: 960px) {
  .why-grid, .booking-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
}
@media (max-width: 640px) {
  .bf-row { grid-template-columns: 1fr; }
  .demo-notice { max-width: calc(100vw - 110px); }
  .dev-card { flex-basis: 260px; }
}

/* per-doctor framing (full-body cutouts → face-forward crops) */
.ph-shaimaa .dr-clip img { transform: scale(1.35); transform-origin: 50% 4%; }
.ph-reham .dr-clip img { transform: scale(1.3); transform-origin: 50% 5%; }
.ph-asmaa .dr-clip img { transform: scale(1.45); transform-origin: 50% 4%; }
.ph-hamad .dr-clip img { transform: scale(2.0); transform-origin: 50% 6%; }

/* ---------- Treatments directory (floors pattern, light) ---------- */
.floor { display: grid; grid-template-columns: 220px 1fr; gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-block: clamp(1.7rem, 3.5vw, 2.5rem); border-top: 1px solid var(--line); }
.floor:last-of-type { border-bottom: 1px solid var(--line); }
.floor-num { font-family: var(--font-display); font-weight: 900; font-size: 3rem;
  line-height: 1; color: color-mix(in srgb, var(--brand) 25%, transparent); display: block; }
.floor-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  display: block; margin-top: -1.1rem; }
.specs { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.specs li { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px;
  border: 1px solid var(--line); border-radius: 999px; font-size: .93rem; background: var(--card);
  transition: border-color .25s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1); }
.specs li i { color: var(--brand); font-size: .95rem; }
.specs li:hover { border-color: color-mix(in srgb, var(--brand) 50%, transparent);
  box-shadow: 0 6px 18px rgb(85 66 30 / .08); }

/* ---------- Journey steps ---------- */
.journey { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface) 55%, transparent) 30% 70%, transparent); }
.journey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 20px; }
.j-step { position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; padding: 30px 26px; box-shadow: 0 8px 26px rgb(85 66 30 / .05); }
.j-num { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; line-height: 1;
  color: color-mix(in srgb, var(--brand) 28%, transparent); display: block; margin-bottom: .8rem; }
.j-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.j-step h3 i { color: var(--brand); margin-inline-end: .5rem; }
.j-step p { color: var(--muted); font-size: .92rem; line-height: 1.95; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 780px; }
.faq-list details { background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 0 24px; box-shadow: 0 6px 20px rgb(85 66 30 / .05); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; padding: 19px 0; font-weight: 700; font-size: .98rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--brand); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.faq-list details[open] summary i { transform: rotate(180deg); }
.faq-list details p { color: var(--muted); font-size: .93rem; line-height: 2.05;
  padding-bottom: 20px; border-top: 1px solid var(--line); padding-top: 14px; }

@media (max-width: 960px) {
  .floor { grid-template-columns: 1fr; gap: 1rem; }
  .floor-num { font-size: 2.4rem; }
}
