/* ==========================================================================
   Dontal — عيادة ومركز طب الأسنان
   rebuilt by AB DESIGNS — abdesigns.site

   Mobile-first: every rule below the reset describes a 320px phone. Every
   media query is `min-width` and only ever *adds* capability. There is no
   `max-width` query in this file on purpose.

   Direction: the document is `dir="rtl"`. All box properties are logical
   (inline-start / inline-end), so the sheet would mirror unchanged if the
   template were ever run LTR.

   0. tokens            5. sections
   1. reset & base      6. cards
   2. layout helpers    7. forms & booking
   3. buttons           8. footer & utilities
   4. header & nav      9. breakpoints
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   0. tokens
   ========================================================================== */
:root {
  /* amber lead — the exciting neighbour of the old #fcb630 — with a
     turquoise counter-accent and a deep blue-ink for type. */
  --amber:        #FF9F1C;
  --amber-dark:   #E8850A;
  --amber-soft:   #FFEFD6;
  --amber-tint:   #FFF8ED;
  --teal:         #0FB5A5;
  --teal-dark:    #0A8F83;
  --teal-soft:    #E2F7F4;

  --ink:          #16233B;
  --ink-2:        #223353;
  --ink-soft:     #5C6B84;
  --body:         #5F6E85;
  --line:         #E7EBF2;
  --line-warm:    #F2E6D2;
  --white:        #FFFFFF;
  --cream:        #FDF8F1;
  --grey:         #F5F7FA;

  --amber-rgb:    255, 159, 28;
  --teal-rgb:     15, 181, 165;
  --ink-rgb:      22, 35, 59;

  --font-head: "Tajawal", "Segoe UI", Tahoma, sans-serif;
  --font-body: "IBM Plex Sans Arabic", "Tajawal", "Segoe UI", Tahoma, sans-serif;

  /* phone type scale — grown in §9, never shrunk */
  --fs-h1: 30px;
  --fs-h2: 25px;
  --fs-h3: 20px;
  --fs-h4: 17px;
  --fs-body: 15px;
  --lh-h1: 1.32;
  --lh-h2: 1.35;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --pad-section: 56px;
  --gap: 16px;
  --shell: 1240px;

  --shadow-sm: 0 2px 10px rgba(22, 35, 59, .06);
  --shadow-md: 0 12px 30px rgba(22, 35, 59, .08);
  --shadow-lg: 0 22px 60px rgba(22, 35, 59, .12);
  --shadow-amber: 0 12px 30px rgba(var(--amber-rgb), .30);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --t: .35s var(--ease);

  /* Direction-dependent scalars. Logical properties cover the box model, but
     a transform sign, a gradient direction and a mirrored glyph cannot be
     expressed logically — these three variables carry them instead, so no
     rule below has to be written twice. */
  --off: -100%;          /* off-canvas translate for the drawer            */
  --half: 50%;           /* centring translate that pairs with inset-start */
  --flip: -1;            /* horizontal mirror for direction-bearing icons  */
  --fade: to left;       /* hero scrim runs away from the copy             */
  --caret: left 14px center;
}

/* The English tree is LTR and gets a Latin pairing; everything else in this
   sheet is already logical, so this block is the whole of the difference. */
html[lang="en"] {
  --off: 100%;
  --half: -50%;
  --flip: 1;
  --fade: to right;
  --caret: right 14px center;
  --font-head: "Outfit", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --lh-h1: 1.12;
  --lh-h2: 1.18;
}
html[lang="en"] body { line-height: 1.75; }
/* the Latin headline sets ~25% wider than the Arabic one at the same size,
   so the hero column earns extra room rather than breaking mid-phrase */
html[lang="en"] .hero-copy { max-width: 760px; }
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3 { letter-spacing: -.02em; }

/* ==========================================================================
   1. reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

/* every component below sets an explicit `display`, which would
   otherwise out-specify the UA sheet's [hidden] rule */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* clip, not hidden: hidden on <body> would make body a second scroll
     container and produce a stray horizontal scrollbar */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.95;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); letter-spacing: -.01em; }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); letter-spacing: -.01em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: 16px; }
h6 { font-size: 15px; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--amber); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(var(--amber-rgb), .55);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--amber); color: #fff; }

/* the dental icons are inline SVG (the vendor icon font shipped as a
   placeholder file). Sizing in `em` keeps every `font-size` rule that
   used to drive the font working unchanged. */
svg.di {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  overflow: visible;
}

/* the number-heavy bits read better with tabular digits */
.num { font-feature-settings: "tnum"; }

/* ==========================================================================
   2. layout helpers
   ========================================================================== */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 18px;
}
.shell-wide { max-width: 1560px; }

.section { padding-block: var(--pad-section); }
.section-tint { background: var(--cream); }
.section-grey { background: var(--grey); }
.section-ink { background: var(--ink); color: rgba(255, 255, 255, .74); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: #fff; }

.grid { display: grid; gap: var(--gap); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: var(--gap); }

.head {
  max-width: 640px;
  margin-inline: auto;
  margin-block-end: 30px;
  text-align: center;
}
.head.start { text-align: start; margin-inline-start: 0; }
.head p { margin-block-start: 10px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-end: 12px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.section-ink .kicker { background: rgba(255, 255, 255, .10); color: var(--amber); }

/* a bare <span> inside a heading is the accent phrase; `.ln` is only a line
   box for headlines that must break at a chosen word, so it keeps the colour */
h1 span, h2 span, h3 span { color: var(--amber); }
h1 .ln, h2 .ln, h3 .ln { color: inherit; }

/* ==========================================================================
   3. buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--amber);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t);
}
.btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .di { font-size: 13px; }

.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; box-shadow: none; }

.btn-teal { background: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--amber); color: #fff; }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.link-arrow .di { font-size: 14px; color: var(--amber); transition: transform var(--t); }
/* the glyph points up-right; mirrored it leads toward the inline start */
.link-arrow .di { transform: scaleX(var(--flip)); }
.link-arrow:hover { color: var(--amber); }
.link-arrow:hover .di { transform: scaleX(var(--flip)) translateX(4px); }

/* ==========================================================================
   4. header & nav
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .word {
  display: flex;
  gap: 2px;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  color: var(--ink);
  direction: ltr;
}
.preloader .word span {
  animation: bounceLetter 1.1s ease-in-out infinite;
}
.preloader .word span:nth-child(2) { animation-delay: .08s; color: var(--amber); }
.preloader .word span:nth-child(3) { animation-delay: .16s; }
.preloader .word span:nth-child(4) { animation-delay: .24s; }
.preloader .word span:nth-child(5) { animation-delay: .32s; color: var(--amber); }
.preloader .word span:nth-child(6) { animation-delay: .40s; }
@keyframes bounceLetter {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
}

.topbar {
  display: none;
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar ul { display: flex; align-items: center; gap: 22px; padding-block: 11px; flex-wrap: wrap; }
.topbar li { display: flex; align-items: center; gap: 8px; }
.topbar svg { color: var(--amber); font-size: 15px; }
.topbar a:hover { color: var(--amber); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow var(--t);
}
.site-header.stuck { box-shadow: var(--shadow-md); }
.site-header .shell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
}

/* wordmark — type only, no icon */
.brand {
  display: inline-flex;
  align-items: baseline;
  margin-inline-end: auto;
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  direction: ltr;
  line-height: 1;
}
.brand b { font-weight: 900; color: var(--amber); }
.brand:hover { color: var(--ink); }
.brand .dot {
  width: 7px; height: 7px;
  margin-inline-start: 6px;
  border-radius: 50%;
  background: var(--teal);
  align-self: flex-end;
  margin-block-end: 4px;
}

.nav-desktop { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--grey);
  color: var(--ink);
  font-size: 16px;
  transition: background var(--t), color var(--t);
}
.icon-btn:hover { background: var(--amber); color: #fff; }
.header-actions .btn { display: none; }

/* desktop menu */
.nav-desktop > ul { display: flex; align-items: center; gap: 4px; }
.nav-desktop > ul > li { position: relative; }
.nav-desktop > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 24px 14px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.nav-desktop > ul > li > a::after {
  content: "";
  width: 6px; height: 6px;
  border-inline-end: 2px solid currentColor;
  border-block-end: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .5;
}
.nav-desktop > ul > li:not(.has-menu) > a::after { display: none; }
.nav-desktop > ul > li > a:hover,
.nav-desktop > ul > li.current > a { color: var(--amber); }

.nav-desktop .submenu {
  position: absolute;
  inset-inline-start: 0;
  top: 100%;
  min-width: 232px;
  padding: 10px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav-desktop li:hover > .submenu,
.nav-desktop li:focus-within > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-desktop .submenu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-desktop .submenu a:hover,
.nav-desktop .submenu a.current { background: var(--amber-tint); color: var(--amber-dark); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  z-index: 1100;
  width: min(340px, 88vw);
  padding: 22px;
  background: #fff;
  overflow-y: auto;
  transform: translateX(var(--off));
  transition: transform .4s var(--ease);
  overscroll-behavior: contain;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-block-end: 20px; }
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(var(--ink-rgb), .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.drawer-scrim.open { opacity: 1; visibility: visible; }

.drawer nav > ul > li { border-block-end: 1px solid var(--line); }
.drawer nav a, .drawer nav .acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 2px;
  border: 0;
  background: none;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: start;
}
.drawer .acc-toggle::after {
  content: "+";
  font-size: 19px;
  font-weight: 400;
  color: var(--amber);
}
.drawer .acc-toggle[aria-expanded="true"]::after { content: "–"; }
.drawer .acc-panel { display: none; padding-block-end: 8px; }
.drawer .acc-panel.open { display: block; }
.drawer .acc-panel a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-inline-start: 2px solid var(--line);
}
.drawer .acc-panel a:hover { color: var(--amber); border-color: var(--amber); }
.drawer .drawer-cta { margin-block-start: 22px; display: grid; gap: 10px; }
.drawer-contact { margin-block-start: 24px; font-size: 13.5px; line-height: 2.1; }
.drawer-contact span { color: var(--ink); font-weight: 600; }

/* search overlay */
.search-pop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(var(--ink-rgb), .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.search-pop.open { opacity: 1; visibility: visible; }
.search-pop form { width: min(620px, 100%); position: relative; }
.search-pop input {
  width: 100%;
  padding: 18px 22px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 16px;
}
.search-pop button[type="submit"] {
  position: absolute;
  inset-inline-end: 8px;
  top: 8px;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
}
.search-pop .close-pop {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 20px;
}

/* ==========================================================================
   5. sections
   ========================================================================== */

/* --- hero ---------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); }
.hero-track { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  min-height: 520px;
  padding-block: 64px 72px;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { display: block; animation: heroIn .8s var(--ease); }
@keyframes heroIn { from { opacity: 0; } to { opacity: 1; } }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--fade), rgba(var(--ink-rgb), .93) 8%, rgba(var(--ink-rgb), .78) 46%, rgba(var(--ink-rgb), .35) 100%);
}
.hero-slide .shell { position: relative; z-index: 2; }
.hero-copy { max-width: 620px; color: rgba(255, 255, 255, .80); }
.hero-copy .kicker { background: rgba(255, 255, 255, .12); color: var(--amber); }
.hero-copy h1 { color: #fff; margin-block-end: 16px; }
.hero-copy h1 .ln { display: block; }
.hero-copy p { font-size: 15.5px; margin-block-end: 26px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-block: 22px;
  background: var(--ink);
}
.hero-dots button {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  transition: width var(--t), background var(--t);
}
.hero-dots button.active { width: 30px; border-radius: var(--r-pill); background: var(--amber); }

.hero-badge {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-block-start: 30px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
  color: #fff;
  max-width: 340px;
}
.hero-badge .val { font-family: var(--font-head); font-size: 30px; font-weight: 900; line-height: 1; color: var(--amber); }
.hero-badge .lbl { font-size: 13px; color: rgba(255, 255, 255, .70); line-height: 1.7; }
.hero-badge .lbl b { display: block; color: #fff; font-size: 14px; }

/* --- page banner (inner pages) ------------------------------------------- */
.banner {
  position: relative;
  padding-block: 52px;
  background: var(--ink) center/cover;
  color: rgba(255, 255, 255, .74);
  text-align: center;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--ink-rgb), .95), rgba(var(--ink-rgb), .78));
}
.banner .shell { position: relative; z-index: 2; }
.banner h1 { color: #fff; margin-block-end: 10px; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.crumbs li:not(:last-child)::after { content: "/"; margin-inline-start: 10px; color: rgba(255, 255, 255, .35); }
.crumbs a { color: var(--amber); }
.crumbs li[aria-current] { color: rgba(255, 255, 255, .62); }

/* --- pillars ------------------------------------------------------------- */
.pillar {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pillar .ph { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pillar .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pillar:hover .ph img { transform: scale(1.06); }
.pillar .badge {
  position: absolute;
  inset-block-end: -22px;
  inset-inline-start: 22px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--amber);
  color: #fff;
  font-size: 25px;
  box-shadow: var(--shadow-amber);
}
.pillar .body { padding: 34px 22px 24px; }
.pillar h3 { margin-block-end: 10px; }
.pillar .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-end: 14px;
}
.pillar .meta li {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--grey);
  font-size: 12.5px;
}
.pillar .meta b { color: var(--ink); font-family: var(--font-head); }

/* --- service cards ------------------------------------------------------- */
.svc {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.svc:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc .ico {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--amber-tint);
  color: var(--amber);
  font-size: 30px;
  transition: background var(--t), color var(--t);
}
.svc:hover .ico { background: var(--amber); color: #fff; }
.svc h3 { font-size: 18px; margin-block-end: 8px; }
.svc p { font-size: 14.5px; margin-block-end: 12px; }
.svc-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block-start: 12px;
  border-block-start: 1px solid var(--line);
  font-size: 13.5px;
}
.svc-foot .price { font-family: var(--font-head); font-weight: 800; color: var(--ink); }

.svc-media {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}
.svc-media:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.svc-media .ph { aspect-ratio: 3 / 2; overflow: hidden; }
.svc-media .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-media:hover .ph img { transform: scale(1.07); }
.svc-media .body { padding: 22px; }
.svc-media .tag {
  display: inline-block;
  margin-block-end: 10px;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 600;
}

/* --- about --------------------------------------------------------------- */
.about-media { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.about-media figure { margin: 0; overflow: hidden; border-radius: var(--r-lg); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .tall { grid-row: span 2; aspect-ratio: 3 / 5; }
.about-media .wide { aspect-ratio: 4 / 3; }
.about-note {
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 18px;
  border-radius: var(--r-lg);
  background: var(--amber);
  color: #fff;
  text-align: center;
}
.about-note .n { font-family: var(--font-head); font-size: 30px; font-weight: 900; line-height: 1.1; }
.about-note .t { font-size: 13px; line-height: 1.6; }

.ticks { display: grid; gap: 10px; margin-block: 20px; }
.ticks li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.ticks svg { flex: 0 0 auto; margin-block-start: 5px; color: var(--teal); font-size: 15px; }

.signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block-start: 20px;
  border-block-start: 1px solid var(--line);
}
.signature .sig {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.signature small { display: block; font-size: 13px; color: var(--body); font-weight: 400; }

/* --- stats --------------------------------------------------------------- */
.stats { display: grid; gap: 2px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stats li { padding: 24px 16px; background: #fff; text-align: center; }
.stats .n {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--amber);
}
.stats .t { font-size: 13.5px; }
.section-ink .stats { background: rgba(255, 255, 255, .10); }
.section-ink .stats li { background: var(--ink); }

/* --- results (before / after) -------------------------------------------- */
.result { overflow: hidden; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.result .ph { position: relative; aspect-ratio: 16 / 10; }
.result .ph img { width: 100%; height: 100%; object-fit: cover; }
/* Real elements, not ::before/::after content strings — text in a stylesheet
   cannot be translated, and the English tree would have shown Arabic chips.
   The photo is split with the graded "before" half on the reading-start side,
   so the chips follow the same inline axis rather than fixed left/right. */
.result .chip {
  position: absolute;
  inset-block-end: 12px;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  background: rgba(var(--ink-rgb), .82);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
}
.result .chip-before { inset-inline-start: 12px; }
.result .chip-after  { inset-inline-end: 12px; background: var(--amber); }
.result .body { padding: 18px 20px; }
.result h3 { font-size: 17px; margin-block-end: 6px; }
.result .sub { font-size: 13.5px; }
.result .age { display: inline-block; margin-block-start: 10px; font-size: 12.5px; color: var(--teal-dark); }

/* --- doctors ------------------------------------------------------------- */
.doc { overflow: hidden; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow var(--t), transform var(--t); }
.doc:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.doc .ph { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--grey); }
.doc .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.doc:hover .ph img { transform: scale(1.05); }
.doc .body { padding: 20px; text-align: center; }
.doc h3 { font-size: 17px; margin-block-end: 4px; }
.doc .role { display: block; font-size: 13.5px; color: var(--amber-dark); margin-block-end: 12px; }
.doc .links { display: flex; justify-content: center; gap: 8px; }
.doc .links a {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grey);
  color: var(--ink);
  font-size: 13px;
}
.doc .links a:hover { background: var(--amber); color: #fff; }

/* --- reviews ------------------------------------------------------------- */
.quote {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.quote .stars { display: flex; gap: 3px; margin-block-end: 12px; color: var(--amber); font-size: 13px; }
.quote p { font-size: 15px; color: var(--ink-soft); }
.quote .who { display: flex; align-items: center; gap: 12px; margin-block-start: 18px; }
.quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote .who b { display: block; font-family: var(--font-head); color: var(--ink); font-size: 15px; }
.quote .who span { font-size: 12.5px; }
.quote .mark {
  position: absolute;
  inset-block-start: 22px;
  inset-inline-end: 22px;
  font-size: 30px;
  color: var(--amber-soft);
}

.rating-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block-start: 26px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
}
.rating-box .val { font-family: var(--font-head); font-size: 34px; font-weight: 900; color: #fff; line-height: 1; }
.rating-box .stars { color: var(--amber); font-size: 14px; display: flex; gap: 3px; margin-block: 8px; }

/* --- carousel scaffold (own JS, no vendor slider) ------------------------- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block-end: 6px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail-nav { display: flex; justify-content: center; gap: 10px; margin-block-start: 22px; }
.rail-nav button {
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--grey);
  color: var(--ink);
  font-size: 15px;
  transition: background var(--t), color var(--t);
}
.rail-nav button:hover { background: var(--amber); color: #fff; }

/* --- insurance ----------------------------------------------------------- */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.logos li {
  display: grid;
  place-items: center;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color var(--t), transform var(--t);
}
.logos li:hover { border-color: var(--amber); transform: translateY(-3px); }
.logos img { max-height: 40px; width: auto; opacity: .9; }

.steps { counter-reset: s; display: grid; gap: 16px; }
.steps li {
  counter-increment: s;
  position: relative;
  padding: 22px;
  padding-inline-start: 68px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(s);
  position: absolute;
  inset-inline-start: 22px;
  inset-block-start: 22px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-family: var(--font-head);
  font-weight: 800;
}
.steps h4 { margin-block-end: 6px; }
.steps p { font-size: 14px; }

/* --- gallery ------------------------------------------------------------- */
.gal { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.gal a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-md);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal a:hover img { transform: scale(1.08); }
.gal a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--ink-rgb), .78), transparent 62%);
  opacity: 0;
  transition: opacity var(--t);
}
.gal a:hover::after { opacity: 1; }
.gal .cap {
  position: absolute;
  inset-block-end: 12px;
  inset-inline-start: 14px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
}
.gal a:hover .cap { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(var(--ink-rgb), .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 82vh; border-radius: var(--r-md); }
.lightbox .lb-cap { margin-block-start: 14px; color: rgba(255, 255, 255, .8); text-align: center; font-size: 14px; }
.lightbox button {
  position: absolute;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 18px;
}
.lightbox .lb-close { top: 20px; inset-inline-end: 20px; }
.lightbox .lb-prev { top: 50%; inset-inline-end: 14px; transform: translateY(-50%); }
.lightbox .lb-next { top: 50%; inset-inline-start: 14px; transform: translateY(-50%); }

/* --- accordion (FAQ) ----------------------------------------------------- */
.acc { display: grid; gap: 12px; }
.acc-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; }
.acc-item.open { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.acc-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 17px 20px;
  border: 0;
  background: none;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  text-align: start;
  line-height: 1.7;
}
.acc-item > button::after {
  content: "";
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-inline-end: 2px solid var(--amber);
  border-block-end: 2px solid var(--amber);
  transform: rotate(45deg);
  transition: transform var(--t);
}
.acc-item.open > button::after { transform: rotate(-135deg); }
.acc-body { display: none; padding: 0 20px 20px; font-size: 14.5px; }
.acc-item.open .acc-body { display: block; }

/* --- pricing ------------------------------------------------------------- */
.plan {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.plan:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.plan.featured { border-color: var(--amber); box-shadow: var(--shadow-md); }
.plan .tag {
  position: absolute;
  inset-block-start: -13px;
  inset-inline-start: 24px;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  background: var(--amber);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
}
.plan h3 { margin-block-end: 2px; }
.plan .note { font-size: 13px; }
.plan .cost {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-block: 16px;
  padding-block-end: 16px;
  border-block-end: 1px solid var(--line);
}
.plan .cost .n { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--ink); line-height: 1; }
.plan .cost .c { font-family: var(--font-head); font-weight: 700; color: var(--amber); }
.plan ul { display: grid; gap: 10px; margin-block-end: 22px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.plan li svg { flex: 0 0 auto; margin-block-start: 5px; font-size: 13px; color: var(--teal); }
.plan li.off { color: #A9B4C4; }
.plan li.off svg { color: #C7D0DC; }

/* --- blog ---------------------------------------------------------------- */
.post { overflow: hidden; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); transition: box-shadow var(--t), transform var(--t); }
.post:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.post .ph { aspect-ratio: 3 / 2; overflow: hidden; }
.post .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .ph img { transform: scale(1.06); }
.post .body { padding: 22px; }
.post .cat {
  display: inline-block;
  margin-block-end: 10px;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  background: var(--amber-tint);
  color: var(--amber-dark);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
}
.post h3 { font-size: 18px; line-height: 1.6; margin-block-end: 10px; }
.post h3 a:hover { color: var(--amber); }
.post p { font-size: 14.5px; }
.post .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-start: 14px;
  padding-block-start: 14px;
  border-block-start: 1px solid var(--line);
  font-size: 13px;
}
.post .meta li { display: flex; align-items: center; gap: 6px; }
.post .meta svg { color: var(--amber); font-size: 12px; }

.post-mini { display: flex; gap: 14px; align-items: center; }
.post-mini .ph { flex: 0 0 88px; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; }
.post-mini .ph img { width: 100%; height: 100%; object-fit: cover; }
.post-mini h4 { font-size: 15px; line-height: 1.6; margin-block-end: 4px; }
.post-mini .d { font-size: 12.5px; }

/* article body */
.article { font-size: 16px; line-height: 2.1; }
.article h3 { margin-block: 28px 12px; }
.article ul { display: grid; gap: 10px; margin-block-end: 18px; }
.article ul li { display: flex; gap: 10px; }
.article ul li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-block-start: 13px; border-radius: 50%; background: var(--amber); }
.article blockquote {
  margin: 26px 0;
  padding: 22px 24px;
  border-inline-start: 4px solid var(--amber);
  border-radius: var(--r-md);
  background: var(--amber-tint);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.9;
}
.article figure { margin: 0 0 26px; }
.article figure img { border-radius: var(--r-lg); width: 100%; }

.sidebar { display: grid; gap: 22px; }
.widget { padding: 22px; border-radius: var(--r-lg); background: var(--grey); }
.widget h4 { margin-block-end: 16px; }
.widget ul { display: grid; gap: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags a {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 13px;
  color: var(--ink-soft);
}
.tags a:hover { background: var(--amber); color: #fff; }

.pager { display: flex; justify-content: center; gap: 8px; margin-block-start: 34px; }
.pager a, .pager span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding-inline: 12px;
  border-radius: var(--r-sm);
  background: var(--grey);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.pager .on, .pager a:hover { background: var(--amber); color: #fff; }

/* --- filter chips -------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-block-end: 26px; }
.chips button {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.chips button.on, .chips button:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* --- CTA banner ---------------------------------------------------------- */
.cta {
  position: relative;
  padding-block: 56px;
  background: var(--ink) center/cover;
  color: rgba(255, 255, 255, .76);
  text-align: center;
}
.cta::after { content: ""; position: absolute; inset: 0; background: rgba(var(--ink-rgb), .84); }
.cta .shell { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta .btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-block-start: 24px; }

/* --- newsletter ---------------------------------------------------------- */
.news {
  display: grid;
  gap: 20px;
  padding: 30px 24px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--amber) 0%, #FFB94D 100%);
  color: rgba(255, 255, 255, .90);
}
.news h3 { color: #fff; }
.news .kicker { background: rgba(255, 255, 255, .22); color: #fff; }
.news form { display: grid; gap: 10px; }
.news input {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.news .btn { background: var(--ink); }
.news .btn:hover { background: #fff; color: var(--ink); }

/* --- map / contact ------------------------------------------------------- */
.map {
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(45deg, rgba(var(--ink-rgb), .03) 0 12px, transparent 12px 24px),
    var(--grey);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--line);
}
.map .pin { font-size: 34px; color: var(--amber); margin-block-end: 8px; }

.contact-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 20px;
}
.contact-card h4 { margin-block-end: 4px; font-size: 16px; }
.contact-card p { font-size: 14px; }

/* ==========================================================================
   6. cards — generic surfaces
   ========================================================================== */
.card {
  padding: 22px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card-line { border: 1px solid var(--line); box-shadow: none; }

.doc-meta { display: grid; gap: 12px; }
.doc-meta li { display: flex; justify-content: space-between; gap: 12px; padding-block-end: 12px; border-block-end: 1px solid var(--line); font-size: 14.5px; }
.doc-meta li:last-child { border: 0; padding-block-end: 0; }
.doc-meta b { color: var(--ink); font-family: var(--font-head); }

.branch { overflow: hidden; border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.branch .ph { aspect-ratio: 16 / 10; }
.branch .ph img { width: 100%; height: 100%; object-fit: cover; }
.branch .body { padding: 22px; }
.branch ul { display: grid; gap: 8px; margin-block: 12px; font-size: 14px; }
.branch ul li { display: flex; gap: 9px; }
.branch ul svg { color: var(--amber); font-size: 14px; margin-block-start: 5px; }

.form-doc {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.form-doc .ico {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--amber-tint);
  color: var(--amber);
  font-size: 24px;
}
.form-doc h4 { margin-block-end: 6px; }
.form-doc p { font-size: 14px; margin-block-end: 12px; }

/* ==========================================================================
   7. forms & booking
   ========================================================================== */
.field { display: grid; gap: 7px; margin-block-end: 16px; }
.field label { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--ink); }
.field .hint { font-size: 12.5px; color: var(--body); }
.control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color var(--t), box-shadow var(--t);
}
.control:focus {
  outline: 0;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(var(--amber-rgb), .14);
}
textarea.control { min-height: 130px; resize: vertical; }
/* the caret sits on the physical left in both directions — that is where a
   select's arrow belongs in an RTL page too */
select.control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316233B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: var(--caret);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  padding-inline-end: 40px;
}
.field-error .control { border-color: #E5484D; }
.err { display: none; font-size: 12.5px; color: #E5484D; }
.field-error .err { display: block; }

.form-card {
  padding: 26px 22px;
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; gap: 0 16px; }

/* booking wizard */
.wiz-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-block-end: 26px;
}
.wiz-steps li { text-align: center; font-size: 11.5px; color: var(--body); line-height: 1.5; }
.wiz-steps .n {
  width: 34px; height: 34px;
  margin-inline: auto;
  margin-block-end: 7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grey);
  color: var(--ink-soft);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  transition: background var(--t), color var(--t);
}
.wiz-steps li.on .n { background: var(--amber); color: #fff; box-shadow: var(--shadow-amber); }
.wiz-steps li.done .n { background: var(--teal); color: #fff; }
.wiz-steps li.on b { color: var(--ink); }
.wiz-steps b { display: block; font-family: var(--font-head); font-size: 13px; }

.wiz-pane { display: none; }
.wiz-pane.on { display: block; animation: fadeUp .4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.pick { display: grid; gap: 10px; }
.pick-2 { grid-template-columns: 1fr; }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.pick label:hover { border-color: var(--amber); }
.pick input:checked + label {
  border-color: var(--amber);
  background: var(--amber-tint);
  box-shadow: 0 0 0 3px rgba(var(--amber-rgb), .12);
}
.pick input:focus-visible + label { outline: 3px solid rgba(var(--amber-rgb), .55); outline-offset: 2px; }
.pick .ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--grey);
  color: var(--amber);
  font-size: 21px;
}
.pick input:checked + label .ico { background: var(--amber); color: #fff; }
.pick .ico img { width: 44px; height: 44px; border-radius: var(--r-sm); object-fit: cover; }
.pick b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.pick small { font-size: 12.5px; }

.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slots input { position: absolute; opacity: 0; pointer-events: none; }
.slots label {
  display: grid;
  place-items: center;
  padding: 11px 4px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.slots label:hover { border-color: var(--amber); }
.slots input:checked + label { background: var(--amber); border-color: var(--amber); color: #fff; }
.slots input:disabled + label { opacity: .38; cursor: not-allowed; text-decoration: line-through; }
.slots input:focus-visible + label { outline: 3px solid rgba(var(--amber-rgb), .55); outline-offset: 2px; }

.slot-note { margin-block-start: 12px; font-size: 13px; }

.wiz-nav { display: flex; gap: 10px; margin-block-start: 24px; }
.wiz-nav .btn { flex: 1; }

.summary { display: grid; gap: 10px; margin-block-end: 20px; padding: 18px; border-radius: var(--r-md); background: var(--amber-tint); }
.summary li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.summary b { color: var(--ink); font-family: var(--font-head); }

.done-card { text-align: center; padding-block: 20px; }
.done-card .tick {
  width: 74px; height: 74px;
  margin-inline: auto;
  margin-block-end: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 32px;
}
.done-card .ref {
  display: inline-block;
  margin-block: 14px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .06em;
  direction: ltr;
}

/* reservations table */
.res-list { display: grid; gap: 14px; }
.res {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.res.cancelled { opacity: .62; }
.res-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.res h3 { font-size: 17px; margin: 0; }
.pill {
  padding: 4px 13px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
}
.pill-ok { background: var(--teal-soft); color: var(--teal-dark); }
.pill-off { background: #FBECEC; color: #C2373B; }
.res-facts { display: grid; gap: 8px; font-size: 14px; }
.res-facts li { display: flex; gap: 9px; }
.res-facts svg { color: var(--amber); font-size: 14px; margin-block-start: 5px; }
.res-acts { display: flex; flex-wrap: wrap; gap: 8px; }
.res-acts .btn { padding: 9px 18px; font-size: 13.5px; }
.empty-state { padding: 44px 22px; text-align: center; border: 1px dashed var(--line); border-radius: var(--r-lg); }
.empty-state .ico { font-size: 40px; color: var(--amber); margin-block-end: 12px; }

.toast {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-start: 50%;
  transform: translate(var(--half), 140%);
  z-index: 1400;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform .45s var(--ease);
}
.toast.show { transform: translate(var(--half), 0); }

/* ==========================================================================
   8. footer & utilities
   ========================================================================== */
.site-footer {
  position: relative;
  padding-block: 52px 0;
  background: var(--ink) center/cover;
  color: rgba(255, 255, 255, .62);
  font-size: 14.5px;
}
.site-footer::before { content: ""; position: absolute; inset: 0; background: rgba(var(--ink-rgb), .93); }
.site-footer .shell { position: relative; z-index: 2; }
.site-footer h4 { color: #fff; font-size: 16px; margin-block-end: 16px; }
.site-footer a:hover { color: var(--amber); }
.foot-grid { display: grid; gap: 32px; }
.foot-brand .brand { color: #fff; font-size: 30px; }
.foot-brand p { margin-block: 14px 18px; }
.foot-links { display: grid; gap: 11px; }
.foot-contact li { display: flex; gap: 10px; margin-block-end: 12px; }
.foot-contact svg { color: var(--amber); font-size: 15px; margin-block-start: 5px; }
.foot-contact span { display: block; color: #fff; font-family: var(--font-head); font-size: 13px; }
.socials { display: flex; gap: 9px; margin-block-start: 18px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background var(--t);
}
.socials a:hover { background: var(--amber); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

.foot-bottom {
  display: grid;
  gap: 10px;
  margin-block-start: 40px;
  padding-block: 22px;
  border-block-start: 1px solid rgba(255, 255, 255, .10);
  font-size: 13.5px;
  text-align: center;
}
.foot-bottom a { color: var(--amber); font-weight: 700; }

#totop {
  position: fixed;
  inset-block-end: 20px;
  inset-inline-end: 20px;
  z-index: 800;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-size: 16px;
  box-shadow: var(--shadow-amber);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
}
#totop.show { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.notfound { text-align: center; padding-block: 20px; }
.notfound .big {
  font-family: var(--font-head);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
  color: var(--amber);
  letter-spacing: -.03em;
}

.legal h3 { margin-block: 28px 10px; }
.legal .updated { display: inline-block; margin-block-end: 20px; padding: 5px 14px; border-radius: var(--r-pill); background: var(--grey); font-size: 13px; }

.mt-0 { margin-block-start: 0; }
.mt-6 { margin-block-start: 24px; }
.tac { text-align: center; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* keyboard users get the skip link the moment they tab into the page */
.skip {
  position: absolute;
  inset-block-start: -60px;
  inset-inline-start: 16px;
  z-index: 2000;
  padding: 10px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: var(--amber);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  transition: inset-block-start var(--t);
}
.skip:focus { inset-block-start: 0; color: #fff; }

.post-meta li { color: var(--body); }
.post-meta li + li { position: relative; padding-inline-start: 18px; }
.post-meta li + li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.res-acts .hint { max-width: 220px; font-size: 12.5px; }
.field label input[type="checkbox"] { margin-inline-end: 8px; accent-color: var(--amber); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   9. breakpoints — min-width only; each step adds, none takes away
   ========================================================================== */
@media (min-width: 480px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .slots { grid-template-columns: repeat(4, 1fr); }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .news form { grid-template-columns: 1fr auto; }
  .pick-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 576px) {
  :root {
    --fs-h1: 38px;
    --fs-h2: 29px;
    --fs-h3: 21px;
    --fs-body: 15.5px;
    --pad-section: 68px;
    --gap: 20px;
  }
  .shell { padding-inline: 24px; }
  .gal { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .rail { grid-auto-columns: 62%; }
  .foot-bottom { grid-template-columns: 1fr auto; text-align: start; }
  .res { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 768px) {
  :root {
    --fs-h1: 46px;
    --fs-h2: 34px;
    --fs-h3: 22px;
    --fs-h4: 18px;
    --fs-body: 16px;
    --pad-section: 84px;
  }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .rail { grid-auto-columns: 46%; }
  .hero-slide { min-height: 580px; padding-block: 84px 92px; }
  .form-card { padding: 34px 32px; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full { grid-column: 1 / -1; }
  .about-media { grid-template-columns: 1.15fr .85fr; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .wiz-steps li { font-size: 12.5px; }
  .banner { padding-block: 76px; }
  .notfound .big { font-size: 140px; }
}

@media (min-width: 992px) {
  :root {
    --fs-h1: 54px;
    --fs-h2: 39px;
    --fs-h3: 24px;
    --pad-section: 100px;
    --gap: 24px;
  }
  .topbar { display: block; }
  .nav-desktop { display: block; }
  .header-actions .btn { display: inline-flex; }
  .header-actions .burger { display: none; }
  .site-header .shell { min-height: 76px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .gal { grid-template-columns: repeat(4, 1fr); }
  .rail { grid-auto-columns: 31.5%; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
  .split-side { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
  .split-side-l { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; align-items: start; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  /* fill the fold: the top bar and header together are 116px, so the
     hero reaches the bottom of the viewport on a desktop screen and
     never leaves a dead white band under it */
  .hero-slide { min-height: max(560px, calc(100vh - 118px)); padding-block: 96px 104px; }
  .hero-dots {
    position: absolute;
    inset-block-end: 30px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: none;
    padding: 0;
  }
  .plan { padding: 34px 30px; }
  .news { padding: 44px 40px; grid-template-columns: 1fr 1fr; align-items: center; }
  .news form { grid-template-columns: 1fr auto; }
  .wiz-steps { gap: 12px; }
  .lightbox .lb-prev { inset-inline-end: 30px; }
  .lightbox .lb-next { inset-inline-start: 30px; }
}

@media (min-width: 1200px) {
  :root { --fs-h1: 62px; --fs-h2: 43px; --pad-section: 118px; }
  html[lang="en"] { --fs-h1: 56px; --fs-h2: 40px; }
  .shell { padding-inline: 30px; }
  .rail { grid-auto-columns: 24%; }
  .svc { padding: 28px; }
}

/* ==========================================================================
   10. language switcher + the utility classes the builders reach for
   ========================================================================== */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: var(--grey);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.lang:hover { background: var(--amber); color: #fff; }
.lang svg { opacity: .7; }
.lang:hover svg { opacity: 1; }
/* the drawer copy stretches; the header copy hides until there is room */
.lang-block { justify-content: center; padding-block: 13px; }
.header-actions .lang { display: none; }

/* --- section utilities ---------------------------------------------------- */
.wide-shot { margin: 0 0 26px; border-radius: var(--r-lg); overflow: hidden; }
.wide-shot img { width: 100%; }
.mb-0 { margin-block-end: 0; }
.stack { margin-block-start: 10px; }
.wide-gap { gap: 12px; }
.fine { font-size: 13.5px; }
.centred { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.field-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.val-ico {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-block-end: 14px;
  border-radius: var(--r-md);
  background: var(--amber-tint);
  color: var(--amber);
  font-size: 26px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-block-end: 22px;
  font-size: 13.5px;
}

@media (min-width: 992px) {
  .header-actions .lang { display: inline-flex; }
  .drawer .lang-block { display: none; }
}
