/* ==========================================================================
   Linket — لينكت
   Design system built from the approved designs.
   Tokens first, then components. Everything is RTL-first and responsive.
   ========================================================================== */

:root {
  /* Brand */
  --navy: #16264A;
  --navy-hover: #0F1B36;
  --navy-tint: #EEF1F7;

  /* Functional colour — used ONLY for meaning, never decoration */
  --gold: #C8912F;          /* verification seals + star ratings */
  --gold-tint: #FBF3E4;
  --green: #17794A;         /* availability only */
  --green-tint: #E8F3EC;

  /* Neutrals */
  --ink: #14181F;
  --ink-2: #3D4450;
  --muted: #5B6472;         /* meets WCAG AA on white — do not lighten */
  --faint: #8A93A2;
  --border: #E4E7EC;
  --border-strong: #D3D8E0;
  --surface: #FFFFFF;
  --band: #F7F8FA;

  /* Geometry — rectangles, not capsules */
  --r-btn: 8px;
  --r-card: 12px;
  --r-chip: 8px;

  --shadow-sm: 0 1px 2px rgba(22, 38, 74, 0.05);
  --shadow-md: 0 2px 6px rgba(22, 38, 74, 0.07);
  --shadow-lg: 0 18px 50px rgba(22, 38, 74, 0.22);

  --maxw: 1280px;
  --pad: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Readex Pro", "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Alexandria", "Readex Pro", sans-serif;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-hover); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* Arabic never gets letter-spacing — it breaks the connected script.
   Latin-only strings may opt in with .tracked. */
.tracked { letter-spacing: 0.12em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.band { background: var(--band); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px;
  border-radius: var(--r-btn); border: 1.5px solid transparent;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-hover); color: #fff; }
.btn--outline { background: var(--surface); color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy-tint); color: var(--navy); }
.btn--ghost { background: transparent; color: var(--ink-2); }
.btn--ghost:hover { color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn--lg { height: 54px; padding: 0 32px; font-size: 16px; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 3px solid rgba(22,38,74,.35); outline-offset: 2px; }

/* --------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { font-family: "Alexandria", sans-serif; font-size: 21px; font-weight: 800; color: var(--ink); }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 400; }
.nav a { color: var(--ink-2); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.header-actions { margin-inline-start: auto; display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border); border-radius: var(--r-btn); cursor: pointer;
}

/* --------------------------------------------------------- Hero */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(11,19,38,.55) 0%, rgba(11,19,38,.18) 55%, rgba(11,19,38,0) 100%);
}
.hero__inner { position: relative; padding-block: 88px; max-width: 640px; }
.hero h1 { font-size: clamp(32px, 4vw, 52px); color: #fff; }
.hero p { margin-top: 18px; color: rgba(255,255,255,.86); font-size: 16.5px; line-height: 1.95; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-chip); padding: 7px 14px; font-size: 12.5px; font-weight: 400; color: #fff;
}

/* Search */
.searchbar {
  display: flex; align-items: center; gap: 8px; margin-top: 30px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-btn);
  padding: 8px; box-shadow: var(--shadow-md); max-width: 560px;
}
.searchbar input {
  flex: 1; min-width: 0; border: 0; outline: 0; padding: 10px 14px;
  font-family: inherit; font-size: 15px; font-weight: 300; color: var(--ink); background: transparent;
}
.searchbar input::placeholder { color: var(--faint); }

/* Honest trust line (replaces the fabricated endorsement logos) */
.trustline { border-bottom: 1px solid var(--border); }
.trustline .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 28px; padding-block: 20px; font-size: 13.5px; color: var(--muted); text-align: center;
}
.trustline strong { color: var(--ink); font-weight: 600; }
.trustline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); }

/* --------------------------------------------------------- Sections */
.section { padding-block: 64px; }
.section__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.section__head h2 { font-size: clamp(22px, 2.4vw, 28px); }
.section__head p { color: var(--muted); font-size: 14.5px; }
.section__head .more { margin-inline-start: auto; font-size: 14px; font-weight: 600; }

.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Value props */
.value { display: flex; flex-direction: column; gap: 12px; }
.value__icon {
  width: 46px; height: 46px; border-radius: 10px; background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.value h3 { font-size: 19px; }
.value p { color: var(--muted); font-size: 14.5px; line-height: 1.9; }

/* --------------------------------------------------------- Expert card */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
a.card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); transform: translateY(-2px); }

.card__media { position: relative; aspect-ratio: 4 / 3.4; background: var(--navy-tint); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* Initials avatar — a deliberate placeholder until real photography lands.
   Swap for <img> in .card__media; markup and sizing stay identical. */
.avatar-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #E9EDF5 0%, #DDE3EE 100%);
  color: var(--navy); font-family: "Alexandria", sans-serif;
  font-size: 40px; font-weight: 700; opacity: .75;
}
.avatar-ph--lg { font-size: 68px; }

.card__body { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 6px; }
.card__name { display: flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; color: var(--ink); }
.card__role { font-size: 13px; color: var(--muted); }
.card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border);
}
.card__price { font-size: 15px; font-weight: 600; }
.card__price span { font-size: 11.5px; font-weight: 300; color: var(--muted); }

/* Rating — number sits to the start of the stars in RTL reading order */
.rating { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--ink); }
.rating__count { font-weight: 300; color: var(--muted); font-size: 12.5px; }
.stars { display: inline-flex; gap: 1px; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--border); border-radius: var(--r-chip);
  padding: 8px 14px; font-size: 13px; font-weight: 400; color: var(--ink-2);
  background: var(--surface); cursor: pointer; transition: all .15s ease;
}
.chip:hover { border-color: var(--border-strong); }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }
.chip--static { cursor: default; }

.pill-available {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-tint); color: var(--green);
  border-radius: 6px; padding: 5px 11px; font-size: 12px; font-weight: 600;
}
.pill-available .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.card__media .pill-available {
  position: absolute; inset-block-end: 11px; inset-inline-end: 11px;
  background: #fff; box-shadow: var(--shadow-md);
}
.pill-soon { color: var(--muted); background: #fff; }
.pill-soon .dot { background: var(--faint); }

.badge-verified { display: inline-flex; flex: none; }

/* --------------------------------------------------------- Categories */
.cat {
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 20px 20px; background: var(--surface); transition: all .15s ease;
}
a.cat:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.cat__icon { color: var(--navy); }
.cat__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.cat__count { font-size: 12.5px; color: var(--muted); }

/* --------------------------------------------------------- Steps */
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Alexandria", sans-serif; font-size: 18px; font-weight: 700;
}
.step h3 { font-size: 17px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.9; }

/* --------------------------------------------------------- CTA band */
.cta {
  background: var(--navy); color: #fff; border-radius: var(--r-card);
  padding: 52px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta h2 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); max-width: 620px; }
.cta p { color: rgba(255,255,255,.76); margin-top: 12px; max-width: 620px; line-height: 1.95; }
.cta__actions { display: flex; gap: 12px; flex: none; }
.cta .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta .btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* --------------------------------------------------------- Footer */
.site-footer { border-top: 1px solid var(--border); padding-block: 40px 28px; margin-top: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 14px; font-weight: 600; font-family: "Readex Pro", sans-serif; margin-bottom: 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13.5px; color: var(--muted); font-weight: 300; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}

/* --------------------------------------------------------- Profile page */
.breadcrumb { padding-block: 18px 0; font-size: 12.5px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }

.profile { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; align-items: start; padding-block: 24px 56px; }
.profile__head { display: flex; gap: 24px; align-items: flex-start; }
.profile__photo {
  width: 150px; height: 180px; flex: none; border-radius: var(--r-card);
  overflow: hidden; border: 1px solid var(--border); background: var(--navy-tint);
}
.profile__name { display: flex; align-items: center; gap: 10px; }
.profile__name h1 { font-size: clamp(26px, 3vw, 34px); }
.profile__role { color: var(--muted); font-size: 15.5px; margin-top: 6px; }
.profile__meta { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { background: var(--band); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 12.5px; color: var(--ink-2); }

.block { margin-top: 40px; }
.block > h2 { font-size: 20px; margin-bottom: 14px; }
.block p { color: var(--ink-2); line-height: 2.05; font-size: 15px; }

.cred {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-bottom: 10px;
}
.cred__icon {
  width: 38px; height: 38px; flex: none; border-radius: 8px; background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.cred__title { font-size: 15px; font-weight: 600; }
.cred__meta { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cred__verified { display: inline-flex; align-items: center; gap: 6px; margin-top: 7px; font-size: 12.5px; font-weight: 600; color: var(--green); }
.cred--pending .cred__icon { background: var(--band); color: var(--faint); }
.cred--pending .cred__verified { color: var(--muted); font-weight: 400; }

.expect { background: var(--band); border-radius: var(--r-card); padding: 24px 26px; }
.expect ul { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.expect li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2); line-height: 1.85; }
.expect li svg { flex: none; margin-top: 5px; color: var(--navy); }

.review { border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; margin-bottom: 12px; }
.review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review__who { font-size: 14px; font-weight: 600; }
.review__badge {
  margin-inline-start: auto; display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--green); background: var(--green-tint);
  border-radius: 6px; padding: 4px 10px;
}
.review p { font-size: 14.5px; line-height: 1.95; color: var(--ink-2); }
.review__date { font-size: 12px; color: var(--faint); margin-top: 8px; }
.review__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--navy-tint); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--navy); flex: none; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 2px; cursor: pointer; list-style: none; font-size: 15.5px; font-weight: 400;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--muted); }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { font-weight: 600; }
.faq__answer { padding: 0 2px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.95; }

/* Booking card (sticky sidebar) */
.booking-card {
  position: sticky; top: 100px;
  border: 1px solid var(--border-strong); border-radius: var(--r-card);
  box-shadow: var(--shadow-md); padding: 24px; background: var(--surface);
}
.booking-card__label { font-size: 12.5px; color: var(--muted); }
.booking-card h2 { font-size: 19px; margin-top: 4px; }
.booking-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.booking-card__price b { font-family: "Alexandria", sans-serif; font-size: 27px; font-weight: 800; }
.booking-card__price span { font-size: 13px; color: var(--muted); }
.booking-card .pill-available { width: 100%; justify-content: center; margin-top: 16px; padding: 10px; }
.booking-card .btn { margin-top: 14px; }
.booking-card__note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.pay-methods { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.pay-methods .label { font-size: 12px; color: var(--muted); width: 100%; margin-bottom: 2px; }
.pay { border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.secure-line { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 11.5px; color: var(--muted); }

/* Sticky mobile booking bar */
.mobile-book-bar { display: none; }

/* --------------------------------------------------------- Browse page */
.browse-head { background: var(--band); border-bottom: 1px solid var(--border); padding-block: 40px; }
.browse-head h1 { font-size: clamp(26px, 3vw, 34px); }
.browse-head p { color: var(--muted); margin-top: 8px; }
.filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-block: 20px; border-bottom: 1px solid var(--border); }
.filters .meta { margin-inline-start: auto; display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); }
.pagination { display: flex; justify-content: center; gap: 8px; padding-block: 40px; }
.page-btn {
  min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border);
  background: #fff; border-radius: var(--r-btn); font-size: 14px; color: var(--ink-2); cursor: pointer;
}
.page-btn[aria-current="true"] { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }

/* --------------------------------------------------------- Booking modal */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal[open], .modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(16, 22, 38, .62); }
.modal__panel {
  position: relative; z-index: 1; width: min(940px, calc(100% - 32px));
  max-height: calc(100dvh - 48px); overflow: auto;
  margin: 24px auto; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-lg);
}
.modal__head { display: flex; align-items: center; gap: 12px; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.modal__head .who { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.modal__head .sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.modal__close {
  margin-inline-start: auto; width: 38px; height: 38px; border-radius: var(--r-btn);
  border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 18px; color: var(--muted);
}
.modal__body { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 28px; padding: 24px; }

.field-label { font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.days { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.day {
  display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 4px;
  border: 1px solid var(--border); border-radius: var(--r-btn); background: #fff; cursor: pointer;
  font-family: inherit; transition: all .15s ease;
}
.day small { font-size: 11.5px; color: var(--muted); font-weight: 300; }
.day b { font-size: 15px; font-weight: 600; }
.day em { font-size: 11px; color: var(--muted); font-style: normal; font-weight: 300; }
.day[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.day[aria-pressed="true"] small, .day[aria-pressed="true"] em { color: rgba(255,255,255,.8); }
.day:disabled { opacity: .4; cursor: not-allowed; }

.slots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 22px; }
.slot {
  height: 46px; border: 1px solid var(--border); border-radius: var(--r-btn);
  background: #fff; font-family: inherit; font-size: 14px; color: var(--ink-2); cursor: pointer;
  transition: all .15s ease; position: relative;
}
.slot:hover:not(:disabled) { border-color: var(--navy); }
.slot[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; font-weight: 600; }
.slot:disabled { color: var(--faint); text-decoration: line-through; cursor: not-allowed; background: var(--band); }

.tz-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.next-slot { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--green); }

.summary { background: var(--band); border-radius: var(--r-card); padding: 20px 22px; }
.summary h3 { font-size: 16px; margin-bottom: 14px; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; padding-block: 7px; color: var(--muted); }
.summary__row b { color: var(--ink); font-weight: 600; text-align: end; }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--border-strong); margin-top: 10px; padding-top: 12px;
}
.summary__total span { font-size: 14.5px; font-weight: 600; }
.summary__total b { font-family: "Alexandria", sans-serif; font-size: 22px; font-weight: 800; }

.pay-options { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.pay-option {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: var(--r-btn); padding: 13px 16px;
  font-size: 14px; font-weight: 500; transition: all .15s ease;
}
.pay-option:hover { border-color: var(--border-strong); }
.pay-option input { accent-color: var(--navy); width: 18px; height: 18px; }
.pay-option:has(input:checked) { border-color: var(--navy); background: var(--navy-tint); }

.wa-note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 16px;
  background: var(--green-tint); border-radius: 10px; padding: 13px 15px;
  font-size: 12.5px; line-height: 1.8; color: #1B4634;
}
.wa-note svg { flex: none; margin-top: 2px; }

.booking-success { padding: 48px 32px; text-align: center; display: none; }
.booking-success.is-shown { display: block; }
.booking-success .tick {
  width: 62px; height: 62px; border-radius: 50%; background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.booking-success h3 { font-size: 22px; }
.booking-success p { color: var(--muted); margin-top: 10px; line-height: 1.9; }

/* --------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  :root { --pad: 32px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile { grid-template-columns: 1fr; gap: 32px; }
  .booking-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  :root { --pad: 20px; }
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; margin-inline-start: auto; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; inset-block-start: 76px; inset-inline: 0; background: #fff;
    border-bottom: 1px solid var(--border); padding: 16px 20px; z-index: 70;
  }
  .nav.is-open a { padding-block: 10px; width: 100%; }

  .hero { min-height: 460px; }
  .hero__media::after { background: linear-gradient(180deg, rgba(11,19,38,.72) 0%, rgba(11,19,38,.92) 100%); }
  .hero__inner { padding-block: 56px; }
  .section { padding-block: 44px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

  .cta { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .cta__actions { width: 100%; flex-direction: column; }
  .cta__actions .btn { width: 100%; }

  .profile__head { flex-direction: column; }
  .profile__photo { width: 100%; height: 260px; }

  .modal__panel { width: 100%; margin: 0; min-height: 100dvh; border-radius: 0; }
  .modal__body { grid-template-columns: 1fr; padding: 18px; gap: 22px; }
  .days { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .footer-grid { grid-template-columns: 1fr; }
  .filters .meta { width: 100%; margin-inline-start: 0; }

  /* Sticky booking bar — the phone equivalent of the sidebar card */
  .mobile-book-bar {
    display: flex; position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 50;
    align-items: center; justify-content: space-between; gap: 14px;
    background: #fff; border-top: 1px solid var(--border); padding: 12px 20px;
    box-shadow: 0 -2px 12px rgba(22,38,74,.08);
  }
  .mobile-book-bar .price { font-size: 15px; font-weight: 600; }
  .mobile-book-bar small { display: block; font-size: 11.5px; color: var(--green); font-weight: 600; }
  body.has-mobile-bar { padding-bottom: 78px; }
}

@media (max-width: 520px) {
  .grid--4 { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ------------------------------------------------- loading & error states */
.sk{background:linear-gradient(90deg,#EEF0F3 25%,#F6F7F9 50%,#EEF0F3 75%);background-size:200% 100%;
  animation:sk-shimmer 1.4s ease infinite;border-radius:8px}
@keyframes sk-shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
@media (prefers-reduced-motion: reduce){.sk{animation:none}}
.card--skeleton{pointer-events:none}
.card--skeleton .card__media.sk{border-radius:12px 12px 0 0;min-height:180px}
.sk-line{height:13px;margin:10px 0}
.load-error{grid-column:1/-1;text-align:center;padding:48px 24px;border:1px dashed var(--border-strong,#CBD0D8);
  border-radius:12px;background:#FBFBFC}
.load-error p{color:var(--muted);font-size:14.5px;margin:0 0 16px}
.no-avail{grid-column:1/-1;background:#F6F7F9;border:1px dashed var(--border-strong,#CBD0D8);
  border-radius:10px;padding:28px 20px;text-align:center;color:var(--muted);font-size:13.5px;line-height:1.8}

/* --------------------------------------------------- profile social icons */
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .12s, border-color .12s;
}
.socials a:hover { color: var(--navy); border-color: var(--navy); }

/* ------------------------------------------------------- services list */
.svc {
  display: flex; justify-content: space-between; gap: 18px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; margin-bottom: 12px;
}
.svc--featured { border-color: var(--navy); }
.svc__title { font-family: Alexandria, sans-serif; font-weight: 700; font-size: 15.5px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.svc__badge {
  font-size: 11px; font-weight: 600; color: var(--gold, #C8912F);
  border: 1px solid currentColor; border-radius: 4px; padding: 2px 8px;
}
.svc__desc { font-size: 13.5px; color: var(--muted); line-height: 1.8; margin: 6px 0 0; }
.svc__meta { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.svc__side { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 10px; flex: none; }
.svc__price { font-family: Alexandria, sans-serif; font-weight: 800; font-size: 20px; }
.svc__price span { font-size: 12px; font-weight: 400; color: var(--muted); }
@media (max-width: 520px) {
  .svc { flex-direction: column; }
  .svc__side { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}

/* --------------------------------------------------- showcase (sample) UI */
.badge-sample {
  font-size: 10.5px; font-weight: 700; color: var(--muted);
  border: 1px dashed var(--border-strong, #CBD0D8); border-radius: 4px;
  padding: 2px 7px; margin-inline-start: 8px; vertical-align: 2px; white-space: nowrap;
}
.card--sample .card__media { opacity: .82; filter: saturate(.7); }
.card--sample .avatar-ph { color: #B9BFC9; }
.sample-banner {
  background: #F6F7F9; border: 1px dashed var(--border-strong, #CBD0D8);
  border-radius: 10px; padding: 13px 16px; font-size: 13.5px; color: var(--muted);
  line-height: 1.8; margin-bottom: 20px;
}
.sample-banner a { font-weight: 600; }


/* ------------------------------------------------------------- share row */
.share-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.share-row button, .share-row a {
  font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--border); background: #fff; color: var(--muted);
  border-radius: 8px; padding: 8px 14px; text-decoration: none;
  transition: color .12s, border-color .12s;
}
.share-row button:hover, .share-row a:hover { color: var(--navy); border-color: var(--navy); }
.share-row .copied { color: var(--green, #17794A); border-color: var(--green, #17794A); }


/* ============================================================ polish pass */

/* Eyebrow labels — quiet gold markers that give sections a rhythm. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: Alexandria, sans-serif; font-size: 12.5px; font-weight: 700;
  color: var(--gold, #C8912F); margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }

/* Cards respond to the hand. */
.card, .cat, .svc {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover, .cat:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(22, 38, 74, .10);
}
.card--sample:hover { transform: none; border-color: var(--border); box-shadow: var(--shadow-sm, 0 1px 2px rgba(20,24,31,.05)); }
@media (prefers-reduced-motion: reduce) {
  .card, .cat, .svc { transition: none; }
  .card:hover, .cat:hover { transform: none; }
}

/* Avatar placeholders: from grey slab to soft navy-tinted field. */
.avatar-ph {
  background: linear-gradient(160deg, #EEF1F7 0%, #DFE5F0 100%);
  color: rgba(22, 38, 74, .38);
}
.card--sample .avatar-ph { color: rgba(22, 38, 74, .22); }

/* Value cards: give the icon a home. */
.value__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--navy-soft, #EDF0F6); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}

/* How-it-works: gold-ringed steps joined by a thread. */
.step { position: relative; }
.step__num {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(200, 145, 47, .45);
}
@media (min-width: 861px) {
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 21px; left: -34px; width: 68px; height: 0;
    border-top: 2px dashed rgba(22, 38, 74, .18);
  }
}

/* CTA band echoes the hero's world. */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 12% 110%, rgba(200,145,47,.16), transparent 70%),
    radial-gradient(700px 380px at 108% -20%, rgba(61,90,158,.35), transparent 70%),
    var(--navy);
}

/* The seal earns a moment: draws in once when a verified profile loads. */
@keyframes seal-in {
  0%   { transform: scale(.5) rotate(-14deg); opacity: 0; }
  70%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.seal-animate { animation: seal-in .5s cubic-bezier(.2,.9,.3,1.2) both; transform-origin: center; }
@media (prefers-reduced-motion: reduce) { .seal-animate { animation: none; } }
