/* =========================================================================
   AMMAR XIII — shared component layer.
   Everything here is driven by custom properties. A theme file sets the
   tokens and the components inherit; no component hard-codes a colour.
   ========================================================================= */

/* ------------------------------------------------------------ token defaults
   Themes override these. Sensible neutral defaults so nothing breaks if a
   theme forgets one. */
:root {
  --bg:        #0b0b0c;
  --bg-2:      #131315;
  --surface:   #1a1a1d;
  --line:      rgba(255,255,255,.12);
  --line-2:    rgba(255,255,255,.06);
  --fg:        #f4f2ee;
  --fg-2:      rgba(244,242,238,.68);
  --fg-3:      rgba(244,242,238,.42);
  --accent:    #c8a55b;
  --accent-fg: #0b0b0c;
  --danger:    #e05a4a;
  --ok:        #5aa66f;

  --font-display: Georgia, serif;
  --font-body: system-ui, -apple-system, sans-serif;
  --tracking-k: .18em;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow: 0 2px 8px rgba(0,0,0,.18), 0 12px 40px rgba(0,0,0,.24);

  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1280px;
  --gap: clamp(16px, 2.4vw, 32px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .5s;
}

/* ------------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open, body.lb-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--accent); color: var(--accent-fg); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
      clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: fixed; top: -100px; left: 12px; z-index: 200; background: var(--accent);
        color: var(--accent-fg); padding: 10px 16px; border-radius: var(--r-sm); transition: top .2s; }
.skip:focus { top: 12px; }

/* RTL: flip only what is directional, never the whole layout wholesale. */
[dir="rtl"] .bk-steps, [dir="rtl"] .hrs-row { direction: rtl; }
[dir="rtl"] .ba { direction: ltr; }

/* ------------------------------------------------------------------ reveal
   Scoped to `.js` so that without JavaScript every section is simply visible.
   Content must never depend on an observer firing to be readable. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ----------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-fg);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.9em;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .94rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s, opacity .22s, box-shadow .22s;
  will-change: transform;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled { opacity: .35; cursor: not-allowed; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--fg); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover:not(:disabled) { --btn-bg: var(--line-2); }
.btn-block { width: 100%; }

/* ------------------------------------------------------------------ kicker */
.kicker {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .72rem; letter-spacing: var(--tracking-k); text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.kicker::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: .6; }

/* ================================================================ SERVICES */
.svc-list { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.svc {
  display: flex; flex-direction: column; gap: .75rem;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: relative;
  transition: border-color .25s, transform .25s var(--ease);
}
.svc:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc.is-feature { border-color: color-mix(in oklab, var(--accent) 55%, transparent); }
.svc.is-popular::after {
  content: '★'; position: absolute; top: 14px; inset-inline-end: 16px;
  color: var(--accent); font-size: .8rem;
}
.svc-h { display: flex; align-items: center; gap: .8rem; }
/* Icons are masked rather than <img> so they inherit the theme colour. */
.svc-i {
  width: 24px; height: 24px; flex: none; background: var(--accent);
  -webkit-mask: var(--icon) center / contain no-repeat;
          mask: var(--icon) center / contain no-repeat;
}
.svc-n { flex: 1; }
.svc-n { font-family: var(--font-display); font-size: 1.24rem; line-height: 1.25; font-weight: 500; }
.svc-p { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--accent); white-space: nowrap; }
.svc-d { color: var(--fg-2); font-size: .92rem; flex: 1; }
.svc-f { display: flex; align-items: center; justify-content: space-between;
         padding-top: .85rem; border-top: 1px solid var(--line-2); }
.svc-t { font-size: .8rem; color: var(--fg-3); letter-spacing: .04em; }
.svc-b { font-size: .84rem; font-weight: 600; color: var(--accent);
         border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.svc-b:hover { opacity: .72; }

/* ================================================================= GALLERY */
/* min-width:0 lets the filter row shrink and wrap its own buttons instead of
   running off the side when it drops below the heading on a narrow screen. */
.gal-filters { display: flex; flex-wrap: wrap; gap: .5rem; min-width: 0; }
.gal-filter {
  padding: .5em 1.1em; border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 500; color: var(--fg-2);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color .2s, background-color .2s, box-shadow .2s;
}
.gal-filter:hover { color: var(--fg); }
.gal-filter.is-on { background: var(--accent); color: var(--accent-fg); box-shadow: none; }

.gal-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--r);
  cursor: zoom-in; background: var(--bg-2); aspect-ratio: 3 / 4;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover;
                transition: transform .7s var(--ease), filter .4s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2.6rem .9rem .85rem;
  font-size: .8rem; line-height: 1.35; color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s var(--ease);
}
.gal-item:hover figcaption, .gal-item:focus-within figcaption { opacity: 1; transform: none; }

/* Dots under the gallery. Only meaningful in carousel mode, so the desktop
   grid never shows them (the media query below turns them on). */
.gal-dots { display: none; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.gal-dots button {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  background: var(--fg-3); opacity: .35;
  transition: opacity .25s, background-color .25s, transform .25s;
}
.gal-dots button.is-on { background: var(--accent); opacity: 1; transform: scale(1.45); }

/* On a phone twelve photos stacked two-wide is a long, dull scroll. Same
   markup becomes a swipeable carousel: one photo at a time, the next peeking
   at the edge, dots to jump — tap a photo and the lightbox still opens. */
@media (max-width: 720px) {
  .gal-grid {
    display: flex; gap: .7rem;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* bleed past the wrap padding so a card can sit centred with a peek */
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
  }
  .gal-grid::-webkit-scrollbar { display: none; }
  .gal-item { flex: 0 0 78%; scroll-snap-align: center; }
  /* there is no hover on touch — the caption just stays put */
  .gal-item figcaption { opacity: 1; transform: none; }
  .gal-dots { display: flex; }
}

/* ================================================================ LIGHTBOX */
.lb {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  gap: clamp(8px, 2vw, 28px);
  background: rgba(5,5,6,.94); backdrop-filter: blur(6px);
  padding: clamp(12px, 4vw, 48px);
}
.lb.is-on { display: flex; animation: lbin .28s var(--ease); }
@keyframes lbin { from { opacity: 0 } to { opacity: 1 } }
.lb-fig { max-width: min(94vw, 760px); max-height: 88vh; display: flex; flex-direction: column; gap: .8rem; }
.lb-fig img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--r); }
.lb-fig figcaption { text-align: center; color: rgba(255,255,255,.7); font-size: .88rem; }
.lb-nav, .lb-x {
  color: #fff; font-size: 2rem; line-height: 1;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: rgba(255,255,255,.08); transition: background-color .2s;
}
.lb-nav:hover, .lb-x:hover { background: rgba(255,255,255,.2); }
.lb-x { position: absolute; top: 18px; inset-inline-end: 18px; font-size: 1.7rem; }
@media (max-width: 640px) {
  .lb-nav { position: absolute; bottom: 20px; }
  .lb-prev { inset-inline-start: 22px; } .lb-next { inset-inline-end: 22px; }
}

/* ============================================================ BEFORE/AFTER */
.ba {
  --split: 52%;
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 4 / 5; user-select: none; touch-action: pan-y; cursor: ew-resize;
  background: var(--bg-2);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 var(--split)); }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--split);
  width: 2px; background: var(--accent); pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: var(--split);
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--accent-fg);
  display: grid; place-items: center; font-size: 1rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,.4); cursor: ew-resize;
}
.ba-tag {
  position: absolute; top: 14px; padding: .32em .8em; border-radius: var(--r-pill);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(0,0,0,.6); color: #fff; backdrop-filter: blur(4px); pointer-events: none;
}
.ba-tag-b { inset-inline-start: 14px; } .ba-tag-a { inset-inline-end: 14px; }

/* ================================================================= BOOKING */
.bk { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
      padding: clamp(18px, 3vw, 38px); }
.bk-steps { display: flex; gap: .4rem; list-style: none; padding: 0; margin-bottom: 1.8rem;
            overflow-x: auto; scrollbar-width: none; }
.bk-steps::-webkit-scrollbar { display: none; }
.bk-step { display: flex; align-items: center; gap: .55rem; padding: .45em .9em .45em .45em;
           border-radius: var(--r-pill); color: var(--fg-3); white-space: nowrap; font-size: .85rem;
           transition: color .25s, background-color .25s; }
.bk-step-n { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
             font-size: .78rem; font-weight: 700; background: var(--line-2); color: var(--fg-3); flex: none; }
.bk-step.is-on { color: var(--fg); background: var(--line-2); }
.bk-step.is-on .bk-step-n { background: var(--accent); color: var(--accent-fg); }
.bk-step.is-done .bk-step-n { background: color-mix(in oklab, var(--accent) 35%, transparent); color: var(--fg); }

.bk-services { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.bk-svc { display: flex; flex-direction: column; gap: .4rem; align-items: flex-start; text-align: start;
          padding: 1em 1.1em; border-radius: var(--r);
          box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .2s, background-color .2s; }
.bk-svc:hover { box-shadow: inset 0 0 0 1px var(--fg-3); }
.bk-svc.is-sel { box-shadow: inset 0 0 0 2px var(--accent); background: color-mix(in oklab, var(--accent) 9%, transparent); }
.bk-svc-name { font-weight: 600; font-size: .95rem; }
.bk-svc-meta { display: flex; gap: .8rem; font-size: .82rem; color: var(--fg-3); font-variant-numeric: tabular-nums; }
/* Two per row on a phone: nine full-width cards was a long scroll before the
   first choice could even be made. */
@media (max-width: 560px) {
  .bk-services { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .bk-svc { padding: .75em .85em; gap: .3rem; }
  .bk-svc-name { font-size: .87rem; line-height: 1.25; }
  .bk-svc-meta { gap: .55rem; font-size: .78rem; }
}

.bk-days { display: flex; gap: .55rem; overflow-x: auto; padding-bottom: .7rem; scroll-snap-type: x mandatory; }
.bk-days::-webkit-scrollbar { height: 4px; }
.bk-days::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.bk-day { flex: none; width: 72px; padding: .8em .2em; border-radius: var(--r);
          display: flex; flex-direction: column; align-items: center; gap: .15rem;
          box-shadow: inset 0 0 0 1px var(--line); scroll-snap-align: start;
          transition: box-shadow .2s, background-color .2s, opacity .2s; }
.bk-day:hover:not(:disabled) { box-shadow: inset 0 0 0 1px var(--fg-3); }
.bk-day:disabled { opacity: .28; cursor: not-allowed; }
.bk-day.is-sel { box-shadow: inset 0 0 0 2px var(--accent); background: color-mix(in oklab, var(--accent) 10%, transparent); }
.bk-day-w { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-3); }
.bk-day-d { font-size: 1.35rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.1; }
.bk-day-m { font-size: .7rem; color: var(--fg-3); }

.bk-slotgroup + .bk-slotgroup { margin-top: 1.3rem; }
.bk-slotgroup-t { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
                  color: var(--fg-3); margin-bottom: .6rem; font-weight: 600; }
.bk-slots { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
.bk-slot { padding: .68em .3em; border-radius: var(--r-sm); font-size: .9rem;
           font-variant-numeric: tabular-nums; box-shadow: inset 0 0 0 1px var(--line);
           transition: box-shadow .18s, background-color .18s, opacity .18s; }
.bk-slot:hover:not(:disabled) { box-shadow: inset 0 0 0 1px var(--fg-3); }
.bk-slot:disabled { opacity: .24; cursor: not-allowed; text-decoration: line-through; }
.bk-slot.is-sel { background: var(--accent); color: var(--accent-fg); box-shadow: none; font-weight: 700; }
.bk-empty { color: var(--fg-3); padding: 1.5rem 0; }

.bk-final { display: grid; gap: var(--gap); grid-template-columns: 1.15fr .85fr; align-items: start; }
@media (max-width: 760px) { .bk-final { grid-template-columns: 1fr; } }
.bk-form { display: grid; gap: 1rem; }
.bk-field { display: grid; gap: .35rem; }
.bk-field > span { font-size: .8rem; color: var(--fg-2); letter-spacing: .03em; }
.bk-field input, .bk-field textarea {
  width: 100%; padding: .82em 1em; border-radius: var(--r-sm);
  background: var(--bg-2); border: 1px solid var(--line); color: var(--fg);
  transition: border-color .2s; resize: vertical;
}
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--accent); }
.bk-note { font-size: .82rem; line-height: 1.5; color: var(--fg-3); }
.bk-err { color: var(--danger); font-size: .85rem; }

.bk-summary { padding: 1.3rem; border-radius: var(--r); background: var(--bg-2); border: 1px solid var(--line); }
.bk-summary h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
                 color: var(--fg-3); margin-bottom: .9rem; }
.bk-summary dl { display: grid; gap: .6rem; margin-bottom: 1.2rem; }
.bk-summary dl > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.bk-summary dt { color: var(--fg-3); }
.bk-summary dd { text-align: end; font-weight: 500; }
.bk-total { padding-top: .6rem; border-top: 1px solid var(--line); font-size: 1.05rem !important; }
.bk-total dd { color: var(--accent); font-weight: 700; }

.bk-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
              margin-top: 1.6rem; flex-wrap: wrap; }
.bk-actions:only-child, .bk-actions > .btn:only-child { margin-inline-start: auto; }
.bk-hint { font-size: .84rem; color: var(--fg-3); }

.bk-done { text-align: center; padding: 1.5rem 0; display: grid; gap: .7rem; justify-items: center; }
.bk-done-tick svg { width: 62px; height: 62px; fill: none; stroke: var(--accent); stroke-width: 3;
                    stroke-linecap: round; stroke-linejoin: round; }
.bk-done-tick circle { opacity: .3; }
.bk-done-tick path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: tick .5s .12s var(--ease) forwards; }
@keyframes tick { to { stroke-dashoffset: 0 } }
.bk-done h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.bk-done-what { font-weight: 600; }
.bk-done-sub { color: var(--fg-2); font-size: .92rem; }
.bk-done-actions { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-top: .6rem; }
.bk-again { color: var(--fg-3); font-size: .85rem; text-decoration: underline; margin-top: .3rem; }

/* ==================================================================== QUIZ */
.quiz { padding: clamp(20px, 3vw, 36px); border-radius: var(--r-lg);
        background: var(--surface); border: 1px solid var(--line); }
.quiz-prog { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; margin-bottom: 1.6rem; }
.quiz-prog span { display: block; height: 100%; background: var(--accent); transition: width .4s var(--ease); }
.quiz-q { font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.7rem);
          font-weight: 500; margin-bottom: 1.2rem; }
.quiz-opts { display: grid; gap: .6rem; }
.quiz-opt { padding: .95em 1.2em; border-radius: var(--r); text-align: start;
            box-shadow: inset 0 0 0 1px var(--line); font-size: .95rem;
            transition: box-shadow .2s, background-color .2s, transform .2s var(--ease); }
.quiz-opt:hover { box-shadow: inset 0 0 0 1px var(--accent); transform: translateX(4px); }
[dir="rtl"] .quiz-opt:hover { transform: translateX(-4px); }
.quiz-reslabel { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--fg-3); }
.quiz-res { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--accent); }
.quiz-resdesc { color: var(--fg-2); margin: .5rem 0; }
.quiz-resmeta { font-size: .9rem; color: var(--fg-3); margin-bottom: 1.2rem; font-variant-numeric: tabular-nums; }
.quiz-restart { display: block; margin-top: .9rem; color: var(--fg-3); font-size: .85rem; text-decoration: underline; }

/* ============================================================== REVIEWS */
.rev-list { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.rev { padding: clamp(18px, 2.2vw, 28px); border-radius: var(--r);
       background: var(--surface); border: 1px solid var(--line);
       display: flex; flex-direction: column; gap: .8rem; }
.rev-stars { color: var(--accent); letter-spacing: .12em; font-size: .9rem; }
.rev p { color: var(--fg-2); font-size: .95rem; flex: 1; }
.rev footer { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem;
              padding-top: .7rem; border-top: 1px solid var(--line-2); }
.rev cite { font-style: normal; font-weight: 600; font-size: .9rem; }
.rev footer span { font-size: .78rem; color: var(--fg-3); }

/* ================================================================== HOURS */
.hrs-row { display: flex; justify-content: space-between; gap: 1rem;
           padding: .62em 0; border-bottom: 1px solid var(--line-2); font-size: .93rem; }
.hrs-row:last-child { border-bottom: 0; }
.hrs-row.is-today { color: var(--accent); font-weight: 600; }
.hrs-t { font-variant-numeric: tabular-nums; color: var(--fg-2); }
.hrs-row.is-today .hrs-t { color: inherit; }
.open-badge { display: inline-flex; align-items: center; gap: .45em;
              font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
              color: var(--fg-3); }
.open-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--fg-3); }
.open-badge.is-open { color: var(--ok); }
.open-badge.is-open::before { background: var(--ok); box-shadow: 0 0 0 3px color-mix(in oklab, var(--ok) 25%, transparent); }

/* ================================================================ LOYALTY */
.loyal-dots { display: flex; gap: .45rem; }
.loyal-dot { width: 15px; height: 15px; border-radius: 50%;
             box-shadow: inset 0 0 0 1.5px var(--line); transition: background-color .3s, box-shadow .3s; }
.loyal-dot.is-on { background: var(--accent); box-shadow: none; }

/* ================================================================== LANG */
.lang { display: inline-flex; gap: 1px; padding: 3px; border-radius: var(--r-pill);
        background: var(--line-2); }
.lang button { padding: .34em .78em; border-radius: var(--r-pill); font-size: .76rem; font-weight: 600;
               color: var(--fg-3); transition: color .2s, background-color .2s; }
.lang button[aria-pressed="true"] { background: var(--accent); color: var(--accent-fg); }
.lang button:hover { color: var(--fg); }
.lang button[aria-pressed="true"]:hover { color: var(--accent-fg); }

/* ============================================================== WHATSAPP
   The primary contact channel, so it is labelled rather than a bare icon —
   an unlabelled green circle is not obviously "message him" to everyone. */
.wa-fab {
  position: fixed; bottom: 20px; inset-inline-end: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: .6em;
  height: 56px; padding-inline: 18px; border-radius: 999px;
  background: #25d366; color: #0a2e18; font-weight: 700; font-size: .92rem;
  letter-spacing: .01em; white-space: nowrap;
  box-shadow: 0 6px 26px rgba(37,211,102,.36), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 32px rgba(37,211,102,.46); }
.wa-fab svg { width: 26px; height: 26px; fill: currentColor; flex: none; }
.wa-fab .wa-fab-l { display: inline; }
@media (max-width: 560px) {
  /* on phones the thumb target matters more than the label */
  .wa-fab { padding-inline: 15px; height: 54px; gap: 0; }
  .wa-fab .wa-fab-l { display: none; }
}
@media print { .wa-fab { display: none; } }

/* WhatsApp-green button, used for the hero and Visit CTAs */
.btn-wa {
  --btn-bg: #25d366; --btn-fg: #0a2e18;
  font-weight: 700; box-shadow: 0 4px 18px rgba(37,211,102,.26);
}
.btn-wa:hover:not(:disabled) { --btn-bg: #1fbe5b; }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* Visit-section WhatsApp panel */
.wa-card {
  display: flex; flex-direction: column; gap: .7rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--r);
  background: linear-gradient(155deg, rgba(37,211,102,.16), rgba(37,211,102,.05));
  border: 1px solid rgba(37,211,102,.34);
}
.wa-card-h { display: flex; align-items: center; gap: .6rem; }
.wa-card-h svg { width: 26px; height: 26px; fill: #25d366; flex: none; }
.wa-card-h h3 { font-size: 1.15rem; margin: 0 !important; }
.wa-card-num {
  font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: .02em;
  font-variant-numeric: tabular-nums; color: var(--fg); direction: ltr; unicode-bidi: embed;
}
.wa-card p { margin-bottom: 0 !important; }
