/*
  مركز الأخوين — Static premium landing page
  Built as pure HTML/CSS/JS with local assets only.
*/

:root {
  color-scheme: light;
  --bg: #f7efe4;
  --bg-2: #efe0cc;
  --surface: rgba(255, 252, 245, 0.78);
  --surface-solid: #fffaf1;
  --surface-deep: #113f3f;
  --ink: #103332;
  --ink-2: #234947;
  --muted: #6e756e;
  --teal: #0c3c3b;
  --teal-2: #12645d;
  --teal-3: #82aaa0;
  --gold: #c99d4f;
  --gold-2: #edd18b;
  --cream: #fff7ea;
  --line: rgba(13, 61, 59, 0.14);
  --line-strong: rgba(13, 61, 59, 0.23);
  --shadow: 0 28px 90px rgba(19, 45, 42, 0.16);
  --shadow-soft: 0 16px 50px rgba(19, 45, 42, 0.10);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #081c1d;
  --bg-2: #0f2a29;
  --surface: rgba(19, 49, 48, 0.72);
  --surface-solid: #12302f;
  --surface-deep: #061818;
  --ink: #f4efe3;
  --ink-2: #e7ddca;
  --muted: #b7c1b9;
  --teal: #8bd1c2;
  --teal-2: #9fe5d6;
  --teal-3: #4c8a80;
  --gold: #e6bd67;
  --gold-2: #f0d58d;
  --cream: #0d2828;
  --line: rgba(238, 224, 197, 0.14);
  --line-strong: rgba(238, 224, 197, 0.25);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 55px rgba(0, 0, 0, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 2%, rgba(201, 157, 79, 0.22), transparent 31rem),
    radial-gradient(circle at 95% 12%, rgba(18, 100, 93, 0.16), transparent 32rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .42;
  background-image:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.28) 42% 43%, transparent 43% 100%),
    radial-gradient(circle, rgba(16,51,50,.07) 1px, transparent 1.3px);
  background-size: 180px 180px, 23px 23px;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -20% -38% -20%;
  height: 55vh;
  background: radial-gradient(ellipse at center, rgba(13, 61, 59, .18), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

svg:not(.icon-sprite) { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
svg:not(.icon-sprite) * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-padding { padding: 110px 0; }
.section-padding-sm { padding: 76px 0; }

.skip-link {
  position: fixed;
  inset-inline-start: 18px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--teal);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 9999;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.icon-sprite { position: absolute; overflow: hidden; }

/* Top announcement */
.topline {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, var(--teal), #174d49);
  color: #fff6e7;
  font-size: .88rem;
}
.topline__inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topline p { margin: 0; display: inline-flex; align-items: center; gap: 9px; }
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(237, 209, 139, .6);
  animation: pulse 1.9s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(237, 209, 139, 0); } 100% { box-shadow: 0 0 0 0 rgba(237, 209, 139, 0); } }
.topline__links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topline__links a { display: inline-flex; align-items: center; gap: 7px; opacity: .92; }
.topline__links a:hover { opacity: 1; color: var(--gold-2); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(247, 239, 228, .72);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
html[data-theme="dark"] .site-header { background: rgba(8, 28, 29, .72); }
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(13, 61, 59, .08);
}
.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(255,255,255,.42));
  border: 1px solid var(--line);
  box-shadow: 0 12px 25px rgba(12, 60, 59, .12);
  display: grid;
  place-items: center;
  overflow: hidden;
}
html[data-theme="dark"] .brand__mark { background: rgba(255,255,255,.06); }
.brand__mark img { width: 86%; height: 86%; object-fit: contain; }
.brand__text { display: grid; line-height: 1.25; }
.brand__text strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand__text small { color: var(--muted); font-size: .78rem; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .45);
  border-radius: 999px;
}
html[data-theme="dark"] .main-nav { background: rgba(255,255,255,.04); }
.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .93rem;
  transition: .2s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); background: rgba(201, 157, 79, .14); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle, .mobile-panel__close, .to-top {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.theme-toggle, .menu-toggle { width: 43px; height: 43px; }
.theme-toggle:hover, .menu-toggle:hover, .mobile-panel__close:hover, .to-top:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.menu-toggle { display: none; }

/* Mobile panel */
.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(390px, 88vw);
  padding: 26px;
  background: var(--surface-solid);
  box-shadow: -30px 0 80px rgba(0,0,0,.22);
  z-index: 300;
  transform: translateX(105%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.menu-open .mobile-panel { transform: translateX(0); }
.mobile-panel::before {
  content: "";
  position: fixed;
  inset: 0 100% 0 -120vw;
  background: rgba(5, 20, 20, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
body.menu-open .mobile-panel::before { opacity: 1; pointer-events: auto; }
.mobile-panel a:not(.btn) {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.25);
}
.mobile-panel__close { width: 44px; height: 44px; margin-inline-start: auto; margin-bottom: 18px; }

/* Typography and buttons */
.eyebrow, .label, .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--teal-2);
  background: rgba(18, 100, 93, .09);
  border: 1px solid rgba(18, 100, 93, .15);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}
html[data-theme="dark"] .eyebrow, html[data-theme="dark"] .label, html[data-theme="dark"] .pill { color: var(--gold-2); background: rgba(237,209,139,.09); border-color: rgba(237,209,139,.2); }

h1, h2, h3, p { margin-block-start: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.14; letter-spacing: -.05em; }
h1 { font-size: clamp(3.6rem, 8vw, 8.5rem); margin-block: 22px 24px; max-width: 780px; }
h1 span, h2 em, h3 em { color: var(--gold); font-style: normal; }
h2 { font-size: clamp(2.25rem, 4.8vw, 5rem); margin: 12px 0 18px; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.95rem); margin: 12px 0 12px; }
p { color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); max-width: 660px; }
.section-heading p { max-width: 650px; font-size: 1.03rem; }
.section-heading--center { text-align: center; display: grid; justify-items: center; }

.btn, .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  transition: transform .24s var(--ease), box-shadow .24s ease, background .24s ease, border-color .24s ease, color .24s ease;
  font-weight: 800;
}
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  white-space: nowrap;
  transform: translateZ(0);
}
.btn::before {
  content: "";
  position: absolute;
  inset: -120% auto -120% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: translateX(-260%) rotate(14deg);
  transition: transform .75s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.btn:hover::before { transform: translateX(520%) rotate(14deg); }
.btn:hover, .text-link:hover { transform: translateY(-4px) scale(1.012); }
.btn:active { transform: translateY(-1px) scale(.985); }
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(-3px) scale(1.04); }
.btn--solid {
  color: #fff8eb;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--teal-2), #0f746b, var(--teal));
  background-size: 240% 240%;
  animation: btnGradient 6s ease infinite;
  box-shadow: 0 18px 42px rgba(12, 60, 59, .24);
}
.btn--solid::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.btn--solid:hover { box-shadow: 0 24px 62px rgba(12, 60, 59, .34), 0 0 0 7px rgba(201, 157, 79, .10); }
.btn--ghost { background: rgba(255,255,255,.34); color: var(--teal); }
.btn--ghost:hover { background: rgba(201,157,79,.16); border-color: rgba(201,157,79,.36); box-shadow: 0 16px 38px rgba(12,60,59,.10); }
html[data-theme="dark"] .btn--ghost { color: var(--gold-2); background: rgba(255,255,255,.06); }
.btn--outline {
  color: var(--ink);
  background: linear-gradient(var(--bg), var(--bg)) padding-box, linear-gradient(135deg, var(--line-strong), rgba(201,157,79,.58)) border-box;
}
html[data-theme="dark"] .btn--outline { background: linear-gradient(var(--surface-deep), var(--surface-deep)) padding-box, linear-gradient(135deg, var(--line-strong), rgba(237,209,139,.42)) border-box; }
.btn--outline:hover { background: linear-gradient(rgba(201,157,79,.13), rgba(201,157,79,.13)) padding-box, linear-gradient(135deg, var(--teal-2), var(--gold)) border-box; box-shadow: 0 16px 42px rgba(13,61,59,.12); }
.btn--small { min-height: 43px; padding: 10px 15px; font-size: .9rem; }
.btn--full { width: 100%; }
.btn__ripple {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: currentColor;
  opacity: .22;
  transform: translate(-50%, -50%) scale(0);
  animation: btnRipple .68s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}
.btn--solid .btn__ripple { background: #fff; opacity: .34; }
.text-link { position: relative; color: var(--teal-2); font-size: .98rem; width: fit-content; }
.text-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--teal-2));
  transform: scaleX(.22);
  transform-origin: right;
  opacity: .75;
  transition: transform .28s var(--ease), opacity .28s ease;
}
.text-link:hover::after { transform: scaleX(1); opacity: 1; }
html[data-theme="dark"] .text-link { color: var(--gold-2); }
@keyframes btnGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes btnRipple {
  to { transform: translate(-50%, -50%) scale(22); opacity: 0; }
}

/* Hero */
.hero {
  position: relative;
  padding-top: 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 4% -6% auto auto;
  width: 55vw;
  height: 55vw;
  min-width: 460px;
  min-height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 157, 79, .20), rgba(18, 100, 93, .08) 42%, transparent 68%);
  filter: blur(2px);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 54px;
  align-items: center;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.mini-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}
.mini-stats div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(18px);
}
.mini-stats strong { display: block; color: var(--teal); font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1; }
html[data-theme="dark"] .mini-stats strong { color: var(--gold-2); }
.mini-stats span { color: var(--muted); font-size: .86rem; }
.hero__visual { position: relative; min-height: 690px; display: grid; place-items: center; }
.portrait-card {
  margin: 0;
  width: min(100%, 470px);
  height: 640px;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  background: var(--surface-solid);
  isolation: isolate;
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 30, 29, .78), transparent 46%);
  z-index: 1;
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transform: scale(1.02); }
.portrait-card figcaption {
  position: absolute;
  inset-inline: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 4px;
}
.portrait-card figcaption span { color: var(--gold-2); font-size: .87rem; }
.portrait-card figcaption strong { font-size: 1.28rem; }
.halo {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(201, 157, 79, .34);
  pointer-events: none;
}
.halo--one { width: 570px; height: 570px; animation: spin 18s linear infinite; }
.halo--two { width: 440px; height: 440px; border-color: rgba(18, 100, 93, .28); animation: spin 22s linear infinite reverse; }
.halo::before, .halo::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 999px;
  top: 12%;
  left: 18%;
  box-shadow: 0 0 0 8px rgba(201, 157, 79, .16);
}
.halo::after { top: auto; bottom: 16%; left: auto; right: 13%; width: 8px; height: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 250, 241, .83);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
html[data-theme="dark"] .floating-card { background: rgba(19,49,48,.82); border-color: rgba(255,255,255,.12); }
.floating-card--logo {
  top: 68px;
  inset-inline-start: -8px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  max-width: 300px;
}
.floating-card--logo img { width: 62px; height: 62px; object-fit: contain; border-radius: 18px; background: #fff; }
.floating-card--logo strong { display: block; }
.floating-card--logo span { color: var(--muted); font-size: .84rem; }
.floating-card--clean {
  bottom: 88px;
  inset-inline-end: -12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  font-weight: 800;
}
.floating-card--clean svg { color: var(--gold); font-size: 1.4rem; }
.trust-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-strip > div {
  background: linear-gradient(180deg, var(--surface), rgba(255,255,255,.28));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 6px;
  backdrop-filter: blur(14px);
}
.trust-strip svg { color: var(--gold); font-size: 1.6rem; }
.trust-strip strong { font-size: 1.03rem; }
.trust-strip span { color: var(--muted); font-size: .88rem; }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
}
.about-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.52);
}
.about-card img, .details__image img, .process__image img { width: 100%; height: 100%; object-fit: cover; }
.about-card::after, .details__image::after, .process__image::after, .gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 31, 30, .64), transparent 48%);
}
.about-card__caption {
  position: absolute;
  z-index: 1;
  inset-inline: 28px;
  bottom: 28px;
  color: #fff;
  display: grid;
  gap: 5px;
}
.about-card__caption span { color: var(--gold-2); }
.about-card__caption strong { font-size: 1.4rem; }
.mission-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mission-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 180px;
}
.mission-grid span { color: var(--gold); font-weight: 800; }
.mission-grid h3 { max-width: 540px; margin-bottom: 0; }

/* Practitioner */
.practitioner { background: linear-gradient(90deg, rgba(12, 60, 59, .09), rgba(201, 157, 79, .10)); border-block: 1px solid var(--line); }
.practitioner__grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px 24px;
}
.practitioner__grid > img { width: 100px; height: 100px; border-radius: 26px; object-fit: cover; object-position: top; }
.practitioner__grid h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); margin-bottom: 8px; }
.practitioner__grid p { margin: 0; max-width: 680px; }

/* Diplomas portfolio */
.diplomas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(201,157,79,.18), transparent 30rem),
    radial-gradient(circle at 90% 28%, rgba(18,100,93,.13), transparent 32rem),
    rgba(255,255,255,.14);
  border-block: 1px solid var(--line);
}
.diplomas::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,157,79,.16), transparent 68%);
  pointer-events: none;
}
.diplomas__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.diplomas__badge {
  min-width: 190px;
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(201,157,79,.28);
  background: linear-gradient(180deg, rgba(201,157,79,.16), rgba(255,255,255,.22));
  box-shadow: var(--shadow-soft);
}
.diplomas__badge strong { color: var(--teal); font-size: 3.1rem; line-height: .9; direction: ltr; }
html[data-theme="dark"] .diplomas__badge strong { color: var(--gold-2); }
.diplomas__badge span { color: var(--muted); font-weight: 900; }
.diploma-slider { position: relative; }
.diploma-slider__frame {
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}
.diploma-slider__track {
  direction: ltr;
  display: flex;
  transition: transform .72s var(--ease);
  will-change: transform;
}
.diploma-slide {
  direction: rtl;
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.64), rgba(201,157,79,.08)),
    var(--surface-solid);
}
html[data-theme="dark"] .diploma-slide { background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(201,157,79,.08)), var(--surface-solid); }
.diploma-slide__image {
  margin: 0;
  min-height: 610px;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.9), rgba(255,255,255,.26) 45%, transparent 70%),
    linear-gradient(135deg, rgba(12,60,59,.10), rgba(201,157,79,.16));
  overflow: hidden;
}
html[data-theme="dark"] .diploma-slide__image { background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(201,157,79,.12)); }
.diploma-slide__image img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(12,60,59,.20);
  border: 1px solid rgba(255,255,255,.56);
  background: #fff;
}
.diploma-slide__content {
  padding: clamp(26px, 4vw, 46px);
  display: grid;
  align-content: center;
  gap: 15px;
  position: relative;
}
.diploma-slide__content::before {
  content: "✦";
  position: absolute;
  top: 22px;
  inset-inline-end: 28px;
  color: rgba(201,157,79,.22);
  font-size: 5rem;
  line-height: 1;
}
.diploma-slide__content h3 { margin: 0; font-size: clamp(1.8rem, 3.6vw, 3.35rem); }
.diploma-slide__content p { margin: 0; font-size: 1.03rem; }
.diploma-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.diploma-meta span, .diploma-meta strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18,100,93,.07);
  color: var(--ink-2);
}
.diploma-meta strong {
  direction: ltr;
  color: #123332;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  border-color: rgba(255,255,255,.58);
  box-shadow: 0 10px 22px rgba(201,157,79,.24);
}
.diploma-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.diploma-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}
.diploma-btn:hover { transform: translateY(-3px); border-color: rgba(201,157,79,.45); background: rgba(201,157,79,.12); }
.diploma-btn[data-diploma-prev] svg { transform: rotate(180deg); }
.diploma-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 8px;
}
.diploma-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(12,60,59,.22);
  transition: width .24s var(--ease), background .24s ease, transform .24s ease;
}
.diploma-dots button.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: translateY(-1px);
}
html[data-theme="dark"] .diploma-dots button { background: rgba(255,255,255,.22); }

/* Why */
.why__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 10px 38px rgba(13, 61, 59, .06);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(201, 157, 79, .16);
}
.feature-card svg { color: var(--gold); font-size: 2rem; margin-top: 44px; }
.feature-card .num { color: var(--muted); font-size: .85rem; }
.feature-card p { margin-bottom: 0; }
.feature-card--image { grid-column: span 2; padding: 0; }
.feature-card--image img { width: 100%; height: 100%; object-fit: cover; }
.feature-card--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,30,29,.68), transparent); }
.feature-card--image span { position: absolute; z-index: 1; inset-inline: 24px; bottom: 22px; color: #fff; font-weight: 800; font-size: 1.25rem; }

/* Services */
.services { background: rgba(255,255,255,.18); border-block: 1px solid var(--line); }
.services__top, .process__top, .gallery__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.service-card__image { overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.service-card:hover .service-card__image img { transform: scale(1.07); }
.service-card__body { padding: 26px; display: grid; gap: 12px; align-content: start; }
.service-card__body p { margin-bottom: 0; }
ul { padding: 0; margin: 0; list-style: none; }
.service-card li { display: flex; align-items: center; gap: 9px; color: var(--ink-2); margin: 8px 0; }
.service-card li svg { color: var(--gold); }
.disclaimer {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(201, 157, 79, .13);
  border: 1px solid rgba(201, 157, 79, .3);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 22px;
}
.disclaimer svg { color: var(--gold); font-size: 1.6rem; }
.disclaimer p { margin: 0; color: var(--ink-2); }

/* Offers */
.offers {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(201,157,79,.18), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(18,100,93,.14), transparent 30rem),
    rgba(255,255,255,.14);
  border-block: 1px solid var(--line);
}
.offers::before {
  content: "";
  position: absolute;
  inset: 80px -12% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201,157,79,.22);
  box-shadow: inset 0 0 0 42px rgba(201,157,79,.06);
  pointer-events: none;
}
.offers__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.offer-card {
  grid-column: span 2;
  display: grid;
  grid-template-rows: 245px 1fr;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-solid), rgba(255,255,255,.72));
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
html[data-theme="dark"] .offer-card { background: linear-gradient(180deg, var(--surface-solid), rgba(19,49,48,.72)); }
.offer-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,157,79,.38);
  box-shadow: 0 28px 70px rgba(13,61,59,.16);
}
.offer-card--wide {
  grid-column: span 3;
  grid-template-columns: .92fr 1.08fr;
  grid-template-rows: auto;
  min-height: 405px;
}
.offer-card__image {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  background: var(--surface-deep);
}
.offer-card--wide .offer-card__image { min-height: 100%; }
.offer-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,30,29,.45), transparent 55%);
  pointer-events: none;
}
.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .35s ease;
}
.offer-card:hover .offer-card__image img { transform: scale(1.075); filter: saturate(1.08) contrast(1.02); }
.offer-card__icon {
  position: absolute;
  z-index: 2;
  inset-inline-start: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff7e8;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.offer-card__icon svg { font-size: 1.55rem; }
.offer-card__icon--fire { background: linear-gradient(135deg, #b74725, var(--gold)); }
.offer-card__icon--hands { background: linear-gradient(135deg, var(--teal-2), #4a9188); }
.offer-card__body {
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.offer-card__body h3 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.price-list {
  display: grid;
  gap: 10px;
}
.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px 13px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(18,100,93,.075), rgba(201,157,79,.075));
  border: 1px solid rgba(201,157,79,.20);
  color: var(--ink-2);
  transition: background .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.price-list li:hover {
  transform: translateX(-4px);
  background: linear-gradient(90deg, rgba(18,100,93,.11), rgba(201,157,79,.16));
  border-color: rgba(201,157,79,.42);
  box-shadow: 0 12px 28px rgba(12,60,59,.08);
}
.price-list li span { line-height: 1.45; font-weight: 800; }
.price-list li strong {
  flex: 0 0 auto;
  min-width: 96px;
  text-align: center;
  color: #123332;
  background: linear-gradient(135deg, #fff1ba 0%, var(--gold-2) 38%, var(--gold) 100%);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 10px 24px rgba(201,157,79,.30), inset 0 1px 0 rgba(255,255,255,.58);
  direction: ltr;
  white-space: nowrap;
  font-size: 1.03rem;
  font-weight: 950;
  letter-spacing: .01em;
}
html[data-theme="dark"] .price-list li strong { color: #0c2828; }
.offer-note {
  margin: 2px 0 0;
  padding: 14px 15px;
  border-radius: 20px;
  color: var(--ink-2);
  background: rgba(201,157,79,.12);
  border: 1px solid rgba(201,157,79,.28);
  font-size: .93rem;
}
.offers__footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.offers__footer > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
}
.offers__footer svg { color: var(--gold); font-size: 1.35rem; }

/* Wellness */
.wellness__grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, var(--surface-deep), #15534d);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 60px);
  overflow: hidden;
  position: relative;
}
.wellness__grid::before {
  content: "";
  position: absolute;
  top: -78px;
  inset-inline-start: 8%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(237, 209, 139, .18);
  background: radial-gradient(circle at center, rgba(237, 209, 139, .16), rgba(255,255,255,.05) 38%, transparent 70%);
  box-shadow: inset 0 0 0 42px rgba(237, 209, 139, .055);
  opacity: .82;
}
.wellness__grid h2, .wellness__grid p { color: #fff7e9; }
.wellness__grid p { max-width: 650px; opacity: .82; }
.orbit {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(237,209,139,.36);
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
}
.orbit::before { inset: 16%; }
.orbit::after { inset: 30%; background: rgba(255,255,255,.05); }
.orbit span, .orbit strong { position: relative; z-index: 1; display: block; line-height: 1.1; text-align: center; }
.orbit span { color: var(--gold-2); font-size: 1rem; }
.orbit strong { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg)) translate(175px) rotate(calc(var(--i) * -90deg));
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff7e9;
  border-radius: 999px;
  padding: 8px 12px;
  font-style: normal;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* Details */
.details__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
}
.details__image, .process__image {
  position: relative;
  min-height: 590px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.detail-list { display: grid; gap: 12px; margin-top: 28px; }
.detail-list article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.detail-list span { color: var(--gold); font-weight: 800; font-size: .88rem; }
.detail-list h3 { font-size: 1.45rem; margin-bottom: 6px; }
.detail-list p { margin-bottom: 0; }

/* Process */
.process { background: rgba(13, 61, 59, .055); }
.time-card {
  width: min(100%, 290px);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.time-card strong { color: var(--teal); font-size: 1.6rem; display: block; }
html[data-theme="dark"] .time-card strong { color: var(--gold-2); }
.time-card span { color: var(--muted); font-size: .92rem; }
.process__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
}
.timeline { display: grid; gap: 14px; counter-reset: item; }
.timeline article {
  position: relative;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px 88px 24px 24px;
  box-shadow: 0 8px 34px rgba(13,61,59,.06);
}
.timeline article::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -22px;
  inset-inline-start: 42px;
  width: 1px;
  background: var(--line-strong);
}
.timeline article:last-child::before { display: none; }
.timeline article > span {
  position: absolute;
  inset-inline-start: 20px;
  top: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface-solid);
  background: linear-gradient(135deg, var(--teal), var(--gold));
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(12,60,59,.2);
}
.timeline h3 { font-size: 1.35rem; margin-top: 0; }
.timeline p { margin: 0; }

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
  align-items: stretch;
}
.gallery__item {
  margin: 0;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.45);
  background: var(--surface-solid);
}
.gallery__item--wide { grid-column: span 2; min-height: 430px; }
.gallery__item--tall { grid-row: span 2; min-height: 735px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .35s ease; }
.gallery__item:hover img { transform: scale(1.075); filter: saturate(1.05) contrast(1.03); }
.gallery__item figcaption {
  position: absolute;
  z-index: 1;
  inset-inline: 24px;
  bottom: 22px;
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(5, 27, 26, .42);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}
.gallery__item:hover figcaption { animation: softLift .55s var(--ease) both; }
@keyframes softLift {
  from { transform: translateY(8px); opacity: .8; }
  to { transform: translateY(0); opacity: 1; }
}

/* Experience */
.experience__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.big-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 12px;
}
.big-numbers div {
  min-height: 150px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(201,157,79,.15), rgba(255,255,255,.16));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px 14px;
  overflow: hidden;
}
.big-numbers strong {
  display: block;
  max-width: 100%;
  color: var(--teal);
  font-size: clamp(2.05rem, 3.8vw, 3.25rem);
  line-height: .95;
  direction: ltr;
  white-space: nowrap;
  letter-spacing: -.045em;
}
html[data-theme="dark"] .big-numbers strong { color: var(--gold-2); }
.big-numbers span { color: var(--muted); font-weight: 800; }

/* Testimonials */
.testimonial-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.testimonial {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.testimonial p { font-size: 1.04rem; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.testimonial footer img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.testimonial footer span { display: grid; line-height: 1.4; }
.testimonial footer small { color: var(--muted); }

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.accordion { display: grid; gap: 12px; }
details {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0 20px;
  box-shadow: 0 8px 30px rgba(13,61,59,.05);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
  color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary svg { color: var(--gold); transition: transform .25s ease; }
details[open] summary svg { transform: rotate(180deg); }
details p { margin: 0; padding-bottom: 22px; }

/* Location */
.location {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(18,100,93,.13), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(201,157,79,.16), transparent 30rem),
    rgba(255,255,255,.16);
  border-top: 1px solid var(--line);
}
.location__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}
.location__copy {
  display: grid;
  align-content: center;
}
.location-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.location-list article {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-height: 132px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 38px rgba(13,61,59,.06);
}
.location-list article > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(201,157,79,.13);
  border: 1px solid rgba(201,157,79,.24);
}
.location-list div { display: grid; gap: 3px; }
.location-list span { color: var(--muted); font-size: .84rem; font-weight: 800; }
.location-list strong { color: var(--ink); font-size: 1rem; line-height: 1.45; }
.location-list small { color: var(--muted); line-height: 1.55; }
.location-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.location-map {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.52);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 56% 46%, rgba(201,157,79,.26), transparent 130px),
    linear-gradient(135deg, #dff1ed, #f7ead1 52%, #d7eee8);
  isolation: isolate;
}
html[data-theme="dark"] .location-map {
  background:
    radial-gradient(circle at 56% 46%, rgba(201,157,79,.24), transparent 130px),
    linear-gradient(135deg, #143b39, #1a3430 52%, #0c2727);
}
.map-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(90deg, rgba(12,60,59,.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12,60,59,.15) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: rotate(-7deg) scale(1.12);
}
.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 0 1px rgba(12,60,59,.09), 0 14px 30px rgba(12,60,59,.08);
}
html[data-theme="dark"] .map-road { background: rgba(255,255,255,.16); box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.map-road--one { width: 125%; height: 34px; top: 45%; left: -12%; transform: rotate(-22deg); }
.map-road--two { width: 110%; height: 26px; top: 62%; left: -18%; transform: rotate(18deg); }
.map-road--three { width: 28px; height: 120%; top: -10%; left: 58%; transform: rotate(12deg); }
.map-pin-card {
  position: absolute;
  z-index: 3;
  inset-inline: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 28px;
  border-radius: 32px;
  color: var(--ink);
  background: rgba(255,250,241,.82);
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
html[data-theme="dark"] .map-pin-card { background: rgba(19,49,48,.86); border-color: rgba(255,255,255,.12); }
.map-pin {
  width: 76px;
  height: 76px;
  border-radius: 28px 28px 28px 8px;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  color: #fff7e8;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 18px 35px rgba(12,60,59,.26);
  margin-bottom: 10px;
  animation: pinFloat 2.8s ease-in-out infinite;
}
.map-pin svg { transform: rotate(45deg); font-size: 1.65rem; }
.map-pin-card strong { font-size: clamp(1.5rem, 3vw, 2.45rem); line-height: 1.12; }
.map-pin-card small { color: var(--muted); direction: ltr; }
.map-pin-card a {
  margin-top: 8px;
  color: var(--teal-2);
  font-weight: 900;
}
html[data-theme="dark"] .map-pin-card a { color: var(--gold-2); }
.coords-card {
  position: absolute;
  z-index: 2;
  inset-inline-start: 26px;
  bottom: 26px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,250,241,.76);
  border: 1px solid rgba(255,255,255,.56);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(13,61,59,.10);
}
html[data-theme="dark"] .coords-card { background: rgba(19,49,48,.80); border-color: rgba(255,255,255,.12); }
.coords-card span { display: block; color: var(--muted); font-size: .82rem; font-weight: 800; }
.coords-card strong { direction: ltr; color: var(--ink); }
@keyframes pinFloat {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50% { transform: translateY(-8px) rotate(-45deg); }
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12,60,59,.08), rgba(201,157,79,.12));
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.contact-cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-cards a {
  min-height: 132px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  align-content: center;
  gap: 7px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-cards a:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.contact-cards svg { color: var(--gold); font-size: 1.55rem; }
.contact-cards span { color: var(--muted); font-size: .86rem; }
.contact-cards strong { font-size: 1rem; }
.booking-form {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 17px;
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 3px;
}
.form-head span { color: var(--gold); font-weight: 900; }
.form-head strong { font-size: 1.2rem; }
.booking-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; }
.booking-form label span { color: var(--muted); font-weight: 400; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
html[data-theme="dark"] input, html[data-theme="dark"] select, html[data-theme="dark"] textarea { background: rgba(255,255,255,.06); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,157,79,.16); }
textarea { resize: vertical; min-height: 126px; }
.form-note, .form-status { font-size: .88rem; margin: 0; }
.form-status { min-height: 1.5em; color: var(--teal-2); font-weight: 900; }
html[data-theme="dark"] .form-status { color: var(--gold-2); }
.form-status.is-error { color: #b14d3f; }

/* Footer & floating */
.footer {
  background: var(--surface-deep);
  color: #fff6e8;
  padding: 34px 0;
}
.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer p { margin: 0; color: rgba(255,246,232,.76); }
.footer .brand__text strong { color: #fff6e8; }
.footer .brand__text small { color: rgba(255,246,232,.68); }
.footer .brand__mark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.footer__links { display: flex; gap: 14px; color: rgba(255,246,232,.76); }
.footer__links a:hover { color: var(--gold-2); }
.float-whatsapp {
  position: fixed;
  z-index: 120;
  inset-inline-start: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  background: #20b358;
  box-shadow: 0 16px 38px rgba(32, 179, 88, .34);
  transition: transform .2s ease;
  animation: floatPulse 2.6s ease-in-out infinite;
}
.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(32,179,88,.45);
  animation: ringPulse 2.6s ease-out infinite;
}
.float-whatsapp:hover { transform: translateY(-4px) scale(1.05); animation-play-state: paused; }
.float-whatsapp svg { font-size: 1.55rem; position: relative; z-index: 1; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 16px 38px rgba(32, 179, 88, .34); }
  50% { box-shadow: 0 18px 52px rgba(32, 179, 88, .52); }
}
@keyframes ringPulse {
  0% { transform: scale(.85); opacity: .85; }
  75%, 100% { transform: scale(1.35); opacity: 0; }
}
.to-top {
  position: fixed;
  z-index: 120;
  inset-inline-end: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: var(--shadow-soft);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Reveal animations */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal--delay { transition-delay: .12s; }
.js .reveal--delay-2 { transition-delay: .22s; }

/* Responsive */
@media (max-width: 1060px) {
  .main-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero__grid, .about__grid, .details__grid, .process__grid, .faq__grid, .contact__grid, .experience__grid, .wellness__grid, .location__grid { grid-template-columns: 1fr; }
  .location-map { min-height: 500px; }
  .location-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-card, .offer-card--wide { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: 245px 1fr; min-height: auto; }
  .offer-card--wide .offer-card__image { min-height: 245px; }
  .offers__top { align-items: start; flex-direction: column; }
  .diplomas__top { align-items: start; flex-direction: column; }
  .diploma-slide { grid-template-columns: 1fr; }
  .diploma-slide__image { min-height: 520px; }
  .diploma-slide__content { padding-top: 30px; }
  .hero__visual { min-height: 620px; }
  .portrait-card { height: 580px; }
  .trust-strip, .service-cards, .testimonial-grid, .gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card--image { grid-column: auto; }
  .gallery__item--wide, .gallery__item--tall { grid-column: 1 / -1; grid-row: auto; }
  .services__top, .process__top, .gallery__top { align-items: start; flex-direction: column; }
  .practitioner__grid { grid-template-columns: 90px 1fr; }
  .practitioner__grid .btn { grid-column: 1 / -1; justify-self: start; }
  .orbit i { transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg)) translate(145px) rotate(calc(var(--i) * -90deg)); }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section-padding { padding: 78px 0; }
  .section-padding-sm { padding: 56px 0; }
  .topline__inner { justify-content: center; text-align: center; }
  .topline__links { display: none; }
  .brand__mark { width: 48px; height: 48px; border-radius: 15px; }
  .brand__text strong { font-size: .95rem; }
  .brand__text small { font-size: .72rem; }
  .nav-actions .btn--small, .theme-toggle { display: none; }
  h1 { font-size: clamp(3.2rem, 16vw, 5.8rem); }
  .hero { padding-top: 52px; }
  .hero__grid { gap: 34px; }
  .hero__cta .btn { width: 100%; }
  .diplomas__badge { width: 100%; min-height: 110px; }
  .diploma-slider__frame { border-radius: 30px; }
  .diploma-slide__image { min-height: 330px; padding: 14px; }
  .diploma-slide__image img { max-height: 380px; border-radius: 18px; }
  .diploma-slide__content { padding: 22px; }
  .diploma-controls { gap: 8px; }
  .diploma-btn { width: 46px; height: 46px; }
  .diploma-dots { gap: 6px; }
  .location-list { grid-template-columns: 1fr; }
  .location-actions .btn { width: 100%; }
  .location-map { min-height: 430px; border-radius: 32px; }
  .map-pin-card { inset-inline: 18px; padding: 22px; }
  .coords-card { inset-inline-start: 18px; bottom: 18px; max-width: calc(100% - 36px); }
  .offers__grid { grid-template-columns: 1fr; }
  .offers__footer { flex-direction: column; align-items: stretch; }
  .offers__footer .text-link { width: 100%; justify-content: center; }
  .offer-card__body { padding: 22px; }
  .price-list li { align-items: center; gap: 12px; }
  .price-list li strong { min-width: 86px; font-size: .96rem; padding: 8px 11px; }
  .big-numbers strong { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  .mini-stats, .trust-strip, .service-cards, .testimonial-grid, .contact-cards, .mission-grid, .big-numbers, .gallery__grid, .why__grid { grid-template-columns: 1fr; }
  .mini-stats { margin-top: 26px; }
  .hero__visual { min-height: 520px; }
  .portrait-card { width: 100%; height: 510px; border-radius: 34px; }
  .halo--one { width: 430px; height: 430px; }
  .halo--two { width: 330px; height: 330px; }
  .floating-card--logo { top: 20px; inset-inline-start: 10px; max-width: 260px; grid-template-columns: 54px 1fr; }
  .floating-card--logo img { width: 54px; height: 54px; }
  .floating-card--clean { bottom: 34px; inset-inline-end: 8px; }
  .about-card, .details__image, .process__image { min-height: 390px; border-radius: 30px; }
  .practitioner__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .practitioner__grid .btn { justify-self: stretch; }
  .service-card { grid-template-rows: 230px 1fr; border-radius: 28px; }
  .wellness__grid { padding: 26px; border-radius: 32px; }
  .orbit { margin-top: 20px; }
  .orbit i { font-size: .78rem; transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg)) translate(118px) rotate(calc(var(--i) * -90deg)); }
  .timeline article { padding: 78px 22px 22px; }
  .timeline article > span { inset-inline-start: 22px; }
  .timeline article::before { inset-inline-start: 44px; top: 64px; }
  .gallery__item, .gallery__item--wide, .gallery__item--tall { min-height: 330px; }
  .contact-cards a { min-height: 112px; }
  .footer__grid { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .float-whatsapp { width: 54px; height: 54px; inset-inline-start: 16px; bottom: 16px; }
  .to-top { inset-inline-end: 16px; bottom: 16px; }
}

@media (max-width: 430px) {
  .mobile-panel { width: 92vw; }
  .floating-card--logo { position: relative; inset: auto; margin-top: -72px; margin-inline: 14px auto; }
  .floating-card--clean { display: none; }
  .portrait-card { height: 465px; }
  .hero__visual { min-height: auto; display: block; }
  .halo { display: none; }
  .orbit i { position: static; transform: none; margin: 5px; display: inline-flex; }
  .orbit { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 4px; padding: 28px; }
  .orbit span, .orbit strong { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

/* Final UX polish: mobile booking bar + image lightbox */
.mobile-booking-bar {
  display: none;
}
.diploma-slide__image img,
.gallery__item img {
  cursor: zoom-in;
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 22, 22, .88);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox__figure {
  margin: 0;
  width: min(1180px, calc(100vw - 112px));
  max-height: calc(100vh - 90px);
  display: grid;
  justify-items: center;
  gap: 14px;
}
.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 155px);
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.24);
}
.lightbox__caption {
  color: #fff7e8;
  text-align: center;
  font-weight: 900;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  z-index: 701;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.11);
  color: #fff7e8;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  transform: translateY(-2px);
  background: rgba(201,157,79,.22);
  border-color: rgba(201,157,79,.42);
}
.lightbox__close {
  top: 22px;
  inset-inline-end: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.lightbox__nav {
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.lightbox__nav--prev { inset-inline-end: 24px; }
.lightbox__nav--next { inset-inline-start: 24px; }
.lightbox__nav--next svg { transform: rotate(180deg); }

@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 520;
    inset-inline: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 24px;
    background: rgba(255,250,241,.88);
    border: 1px solid rgba(255,255,255,.64);
    box-shadow: 0 16px 45px rgba(12,60,59,.20);
    backdrop-filter: blur(18px);
  }
  html[data-theme="dark"] .mobile-booking-bar {
    background: rgba(19,49,48,.90);
    border-color: rgba(255,255,255,.12);
  }
  .mobile-booking-bar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    gap: 2px;
    border-radius: 18px;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 900;
    background: rgba(18,100,93,.06);
    border: 1px solid transparent;
  }
  .mobile-booking-bar a:nth-child(2),
  .mobile-booking-bar a:nth-child(3) {
    color: #fff7e8;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    box-shadow: 0 10px 24px rgba(12,60,59,.18);
  }
  .mobile-booking-bar svg { font-size: 1.15rem; color: currentColor; }
  .float-whatsapp { display: none; }
  .to-top { bottom: 94px; }
  .lightbox { padding: 14px; }
  .lightbox__figure { width: calc(100vw - 28px); max-height: calc(100vh - 120px); }
  .lightbox__image { max-height: calc(100vh - 185px); border-radius: 18px; }
  .lightbox__caption { border-radius: 18px; font-size: .88rem; }
  .lightbox__close { top: 14px; inset-inline-end: 14px; width: 46px; height: 46px; }
  .lightbox__nav { width: 46px; height: 46px; top: auto; bottom: 24px; }
  .lightbox__nav--prev { inset-inline-end: calc(50% - 56px); }
  .lightbox__nav--next { inset-inline-start: calc(50% - 56px); }
}

/* Extra premium animations after full-site review */
.hero__copy .eyebrow,
.diplomas__badge,
.time-card {
  animation: softBreath 4.8s ease-in-out infinite;
}
.portrait-card {
  animation: premiumFloat 7s ease-in-out infinite;
}
.floating-card--logo {
  animation: premiumFloat 5.6s ease-in-out infinite .35s;
}
.floating-card--clean {
  animation: premiumFloat 5.2s ease-in-out infinite reverse;
}
.trust-strip > div,
.feature-card,
.service-card,
.offer-card,
.testimonial,
.contact-cards a,
.location-list article,
.detail-list article,
details,
.big-numbers div,
.mini-stats div {
  transition:
    transform .28s var(--ease),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease,
    filter .28s ease;
}
.trust-strip > div:hover,
.feature-card:not(.feature-card--image):hover,
.service-card:hover,
.offer-card:hover,
.testimonial:hover,
.contact-cards a:hover,
.location-list article:hover,
.detail-list article:hover,
details:hover,
.big-numbers div:hover,
.mini-stats div:hover {
  transform: translateY(-7px);
  border-color: rgba(201,157,79,.38);
  box-shadow: 0 24px 64px rgba(13,61,59,.14);
}
.trust-strip > div:hover svg,
.feature-card:hover svg,
.contact-cards a:hover svg,
.location-list article:hover > svg,
.detail-list article:hover span,
.mobile-booking-bar a:hover svg {
  animation: iconPop .55s var(--ease) both;
}
.section-heading .label svg,
.eyebrow svg {
  animation: tinySpark 2.9s ease-in-out infinite;
}
.price-list li strong,
.diploma-meta strong {
  position: relative;
  overflow: hidden;
}
.price-list li strong::after,
.diploma-meta strong::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  transform: translateX(-220%) rotate(14deg);
  animation: priceShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.offer-card:nth-child(2) .price-list li strong::after { animation-delay: .35s; }
.offer-card:nth-child(3) .price-list li strong::after { animation-delay: .7s; }
.offer-card:nth-child(4) .price-list li strong::after { animation-delay: 1.05s; }
.offer-card:nth-child(5) .price-list li strong::after { animation-delay: 1.4s; }
.map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(201,157,79,.45);
  animation: pinRing 2.4s ease-out infinite;
}
.accordion details[open] p {
  animation: faqIn .28s var(--ease) both;
}
.gallery__item::before,
.service-card__image::before,
.offer-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.20) 48%, transparent 74%);
  transform: translateX(-120%);
  transition: transform .85s var(--ease);
  pointer-events: none;
}
.gallery__item:hover::before,
.service-card:hover .service-card__image::before,
.offer-card:hover .offer-card__image::before {
  transform: translateX(120%);
}
.service-card__image,
.offer-card__image { position: relative; }
.lightbox.is-open .lightbox__image {
  animation: lightboxZoom .28s var(--ease) both;
}
.lightbox.is-open .lightbox__caption {
  animation: faqIn .34s var(--ease) both;
}
.mobile-booking-bar {
  animation: bookingBarIn .48s var(--ease) both;
}
.mobile-booking-bar a:nth-child(2) svg {
  animation: whatsappNudge 2.2s ease-in-out infinite;
}
.diploma-slide.is-active .diploma-slide__content > * {
  animation: slideTextIn .52s var(--ease) both;
}
.diploma-slide.is-active .diploma-slide__content > *:nth-child(2) { animation-delay: .06s; }
.diploma-slide.is-active .diploma-slide__content > *:nth-child(3) { animation-delay: .12s; }
.diploma-slide.is-active .diploma-slide__content > *:nth-child(4) { animation-delay: .18s; }

@keyframes softBreath {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 rgba(201,157,79,0); }
  50% { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(201,157,79,.12); }
}
@keyframes premiumFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes iconPop {
  0% { transform: scale(1) rotate(0deg); }
  45% { transform: scale(1.18) rotate(-8deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes tinySpark {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
  50% { transform: rotate(8deg) scale(1.12); opacity: .78; }
}
@keyframes priceShine {
  0%, 58% { transform: translateX(-240%) rotate(14deg); }
  85%, 100% { transform: translateX(360%) rotate(14deg); }
}
@keyframes pinRing {
  0% { transform: scale(.82); opacity: .85; }
  80%, 100% { transform: scale(1.35); opacity: 0; }
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lightboxZoom {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bookingBarIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes whatsappNudge {
  0%, 100% { transform: rotate(0deg) scale(1); }
  45% { transform: rotate(-8deg) scale(1.08); }
  60% { transform: rotate(7deg) scale(1.08); }
}
@keyframes slideTextIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* Language availability pill: FR / EN */
.language-pill {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255,255,255,.42), rgba(201,157,79,.11));
  box-shadow: 0 10px 26px rgba(13,61,59,.07);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .03em;
  direction: ltr;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
html[data-theme="dark"] .language-pill {
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(237,209,139,.10));
}
.language-pill svg {
  color: var(--gold);
  font-size: 1.08rem;
}
.language-pill::after {
  content: "";
  position: absolute;
  inset: -90% auto -90% -45%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
  transform: translateX(-240%) rotate(14deg);
  animation: priceShine 4.2s ease-in-out infinite;
  pointer-events: none;
}
.language-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(201,157,79,.42);
  box-shadow: 0 14px 34px rgba(13,61,59,.11);
}
.mobile-languages {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(201,157,79,.28);
  background: linear-gradient(135deg, rgba(201,157,79,.14), rgba(18,100,93,.08));
}
.mobile-languages span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}
.mobile-languages svg { color: var(--gold); }
.mobile-languages strong {
  direction: ltr;
  color: #123332;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  border-radius: 999px;
  padding: 7px 11px;
  box-shadow: 0 8px 20px rgba(201,157,79,.22);
}
html[data-theme="dark"] .mobile-languages strong { color: #0c2828; }

@media (max-width: 760px) {
  .language-pill {
    min-height: 43px;
    padding: 0 10px;
    font-size: .74rem;
  }
  .language-pill svg { font-size: 1rem; }
}
@media (max-width: 380px) {
  .language-pill { padding: 0 8px; gap: 5px; }
  .language-pill span { font-size: .68rem; }
}

/* Hero showcase animations requested */
.hero {
  isolation: isolate;
}
.hero__grid,
.hero .trust-strip {
  position: relative;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -14% -8%;
  z-index: 0;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(201,157,79,.16) 42.4% 42.8%, transparent 43.2% 100%),
    repeating-linear-gradient(115deg, transparent 0 82px, rgba(130,170,160,.16) 83px 85px, transparent 86px 170px);
  background-size: 260px 260px, 360px 360px;
  animation: heroLinesMove 18s linear infinite;
  mask-image: radial-gradient(circle at 60% 42%, #000 0 56%, transparent 82%);
}
html[data-theme="dark"] .hero::after {
  opacity: .58;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(237,209,139,.16) 42.4% 42.8%, transparent 43.2% 100%),
    repeating-linear-gradient(115deg, transparent 0 82px, rgba(159,229,214,.18) 83px 85px, transparent 86px 170px);
}
.hero__copy .eyebrow {
  transform-origin: center;
  animation: heroBadgeIn .75s var(--ease) both, softBreath 4.8s ease-in-out infinite 1.1s;
}
.hero h1 {
  animation: heroTitleIn .95s var(--ease) both .08s;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--gold), var(--gold-2), #fff1ba, var(--gold));
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleGoldFlow 4.8s ease-in-out infinite;
  text-shadow: 0 18px 52px rgba(201,157,79,.20);
}
.hero .lead {
  animation: heroTextIn .9s var(--ease) both .2s;
}
.hero__cta .btn {
  animation: heroTextIn .85s var(--ease) both .34s;
}
.hero__cta .btn:nth-child(2) {
  animation-delay: .44s;
}
.hero__cta .btn--solid {
  animation: heroTextIn .85s var(--ease) both .34s, ctaPulse 2.8s ease-in-out infinite 1.2s;
}
.hero__visual {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
}
.hero__visual .halo {
  filter: drop-shadow(0 0 22px rgba(201,157,79,.10));
}
.portrait-card {
  transform-style: preserve-3d;
  animation: heroCardFloat 7s ease-in-out infinite;
  transition: filter .35s ease;
}
.portrait-card:hover {
  filter: saturate(1.04) contrast(1.03);
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255,255,255,.28) 46%, transparent 58% 100%);
  transform: translateX(-130%);
  animation: portraitSweep 5.8s ease-in-out infinite 1.4s;
}
.portrait-card figcaption {
  z-index: 4;
}
.portrait-card figcaption strong {
  animation: captionGlow 3.4s ease-in-out infinite;
}
.floating-card--logo {
  animation: heroSmallFloat 5.6s ease-in-out infinite .35s;
}
.floating-card--logo img {
  animation: logoMicroSpin 6.2s ease-in-out infinite;
}
.floating-card--clean {
  animation: heroSmallFloat 5.2s ease-in-out infinite reverse;
}
.hero .mini-stats div {
  position: relative;
  overflow: hidden;
  animation: statCardIn .7s var(--ease) both;
}
.hero .mini-stats div:nth-child(1) { animation-delay: .58s; }
.hero .mini-stats div:nth-child(2) { animation-delay: .70s; }
.hero .mini-stats div:nth-child(3) { animation-delay: .82s; }
.hero .mini-stats div::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(120%);
  animation: statLine 3.2s ease-in-out infinite;
}
.hero .mini-stats div:nth-child(2)::after { animation-delay: .45s; }
.hero .mini-stats div:nth-child(3)::after { animation-delay: .9s; }
.hero .mini-stats strong {
  animation: statNumberGlow 3s ease-in-out infinite;
}
.hero .trust-strip > div {
  animation: trustIn .72s var(--ease) both;
}
.hero .trust-strip > div:nth-child(1) { animation-delay: .95s; }
.hero .trust-strip > div:nth-child(2) { animation-delay: 1.05s; }
.hero .trust-strip > div:nth-child(3) { animation-delay: 1.15s; }
.hero .trust-strip > div:nth-child(4) { animation-delay: 1.25s; }

@keyframes heroLinesMove {
  from { background-position: 0 0, 0 0; transform: translate3d(0,0,0); }
  to { background-position: 260px 260px, 360px 360px; transform: translate3d(-20px, 8px, 0); }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-14px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(28px) scale(.985); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes titleGoldFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 18px 42px rgba(12,60,59,.24), 0 0 0 0 rgba(201,157,79,.0); }
  50% { box-shadow: 0 22px 58px rgba(12,60,59,.30), 0 0 0 9px rgba(201,157,79,.12); }
}
@keyframes heroCardFloat {
  0%, 100% { transform: perspective(900px) rotateX(var(--hero-tilt-y)) rotateY(var(--hero-tilt-x)) translateY(0); }
  50% { transform: perspective(900px) rotateX(var(--hero-tilt-y)) rotateY(var(--hero-tilt-x)) translateY(-10px); }
}
@keyframes heroSmallFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-9px) translateX(-3px); }
}
@keyframes portraitSweep {
  0%, 42% { transform: translateX(-135%); }
  68%, 100% { transform: translateX(135%); }
}
@keyframes logoMicroSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.04); }
}
@keyframes captionGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(237,209,139,0); }
  50% { text-shadow: 0 0 18px rgba(237,209,139,.28); }
}
@keyframes statCardIn {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes statLine {
  0%, 55% { transform: translateX(125%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateX(-125%); opacity: 0; }
}
@keyframes statNumberGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(201,157,79,0); }
  50% { text-shadow: 0 0 22px rgba(201,157,79,.25); }
}
@keyframes trustIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px) {
  .hero::after { opacity: .28; }
  .hero h1 { animation-duration: .75s; }
  .portrait-card::before { animation-duration: 7s; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero h1,
  .hero h1 span,
  .hero .lead,
  .hero__cta .btn,
  .portrait-card,
  .portrait-card::before,
  .floating-card--logo,
  .floating-card--clean,
  .floating-card--logo img,
  .hero .mini-stats div,
  .hero .mini-stats div::after,
  .hero .mini-stats strong,
  .hero .trust-strip > div {
    animation: none !important;
  }
}

/* Real Google reviews block */
.google-reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(201,157,79,.18), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(18,100,93,.13), transparent 34rem),
    rgba(255,255,255,.13);
  border-block: 1px solid var(--line);
}
.google-reviews::before {
  content: "";
  position: absolute;
  inset: 12% -8% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,157,79,.22);
  box-shadow: inset 0 0 0 42px rgba(201,157,79,.06);
  pointer-events: none;
}
.google-reviews__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 18px;
  align-items: stretch;
}
.google-score-card,
.review-source-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
.google-score-card:hover,
.review-source-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,157,79,.42);
  box-shadow: 0 28px 74px rgba(13,61,59,.16);
}
.google-score-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(12,60,59,.96), rgba(18,100,93,.86)),
    var(--surface-deep);
  color: #fff7e8;
}
.google-score-card::before,
.review-source-card::before {
  content: "";
  position: absolute;
  inset: -90% auto -90% -45%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-240%) rotate(14deg);
  animation: priceShine 4.6s ease-in-out infinite;
  pointer-events: none;
}
.review-source-card:nth-child(2)::before { animation-delay: .55s; }
.review-source-card:nth-child(3)::before { animation-delay: 1.1s; }
.google-score-card__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
  direction: ltr;
}
.google-score-card__source svg { color: var(--gold-2); }
.google-score-card > strong {
  direction: ltr;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: .9;
  margin-top: 22px;
  color: transparent;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 20px 70px rgba(201,157,79,.18);
  animation: statNumberGlow 3s ease-in-out infinite;
}
.google-score-card .stars {
  color: var(--gold-2);
  letter-spacing: 6px;
  margin: 14px 0 10px;
  font-size: 1.15rem;
}
.google-score-card p {
  color: rgba(255,247,232,.78);
  max-width: 360px;
}
.google-score-card .btn { margin-top: 14px; }
.review-source-card {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 14px;
}
.review-source-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff7e8;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 16px 35px rgba(12,60,59,.16);
}
.review-source-card__icon svg { font-size: 1.5rem; }
.review-source-card h3 { margin: 8px 0 2px; }
.review-source-card p { margin-bottom: 0; }
.google-reviews .section-heading .label svg {
  color: var(--gold);
}
@media (max-width: 1060px) {
  .google-reviews__grid { grid-template-columns: 1fr; }
  .google-score-card,
  .review-source-card { min-height: auto; }
}
@media (max-width: 760px) {
  .google-reviews__grid { margin-top: 28px; }
  .google-score-card > strong { font-size: clamp(4.2rem, 22vw, 6rem); }
  .google-score-card .stars { letter-spacing: 4px; }
}

/* Final refined language icon */
.language-pill {
  min-height: 42px;
  height: 42px;
  padding: 4px 10px 4px 5px;
  gap: 8px;
  border: 1px solid rgba(201,157,79,.34);
  background:
    linear-gradient(135deg, rgba(255,250,241,.70), rgba(201,157,79,.13)),
    var(--surface);
  box-shadow: 0 12px 30px rgba(13,61,59,.09), inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}
html[data-theme="dark"] .language-pill {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(237,209,139,.12));
  border-color: rgba(237,209,139,.28);
}
.language-pill__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff7e8;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 8px 20px rgba(12,60,59,.16);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.language-pill__icon svg {
  width: 17px;
  height: 17px;
  color: currentColor;
  animation: langGlobeSpin 7s ease-in-out infinite;
}
.language-pill__codes {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
  line-height: 1;
}
.language-pill__codes b {
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .05em;
  color: var(--ink);
}
.language-pill__codes i {
  width: 1px;
  height: 14px;
  display: block;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: .85;
}
.language-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(201,157,79,.58);
  box-shadow: 0 16px 38px rgba(13,61,59,.13), 0 0 0 5px rgba(201,157,79,.08);
}
.language-pill:hover .language-pill__icon svg {
  animation: iconPop .55s var(--ease) both;
}
.mobile-languages {
  padding: 12px;
  border-radius: 20px;
  border-color: rgba(201,157,79,.34);
  background:
    linear-gradient(135deg, rgba(201,157,79,.16), rgba(18,100,93,.10)),
    var(--surface);
  box-shadow: 0 12px 30px rgba(13,61,59,.08);
}
.mobile-languages__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 950;
  color: var(--ink);
}
.mobile-languages__codes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
}
.mobile-languages__codes b {
  min-width: 38px;
  text-align: center;
  color: #123332;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .82rem;
  font-weight: 950;
  box-shadow: 0 8px 20px rgba(201,157,79,.22);
}
html[data-theme="dark"] .mobile-languages__codes b { color: #0c2828; }
@keyframes langGlobeSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.06); }
}
@media (max-width: 760px) {
  .language-pill {
    height: 42px;
    min-height: 42px;
    padding: 4px 8px 4px 5px;
    gap: 7px;
  }
  .language-pill__icon { width: 31px; height: 31px; }
  .language-pill__codes b { font-size: .74rem; }
}
@media (max-width: 380px) {
  .language-pill { padding: 4px 6px 4px 4px; gap: 5px; }
  .language-pill__icon { width: 29px; height: 29px; }
  .language-pill__codes { gap: 4px; }
  .language-pill__codes b { font-size: .68rem; }
}

/* Phone number direction fix */
.phone-number {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: .01em;
}

/* Clear audience badge: men and women */
.audience-badge {
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 18px;
  border-radius: 26px;
  border: 1px solid rgba(201,157,79,.42);
  background:
    linear-gradient(135deg, rgba(255,250,241,.72), rgba(201,157,79,.13)),
    var(--surface);
  box-shadow: 0 18px 46px rgba(13,61,59,.12), inset 0 1px 0 rgba(255,255,255,.58);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
html[data-theme="dark"] .audience-badge {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(237,209,139,.11));
  border-color: rgba(237,209,139,.30);
}
.audience-badge::before {
  content: "";
  position: absolute;
  inset: -90% auto -90% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.44), transparent);
  transform: translateX(-230%) rotate(14deg);
  animation: priceShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
.audience-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff7e8;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 14px 30px rgba(12,60,59,.18);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.audience-badge__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(201,157,79,.34);
  animation: pinRing 2.8s ease-out infinite;
}
.audience-badge__icon svg { font-size: 1.35rem; position: relative; z-index: 1; }
.audience-badge div { position: relative; z-index: 1; display: grid; line-height: 1.35; }
.audience-badge strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -.02em;
}
.audience-badge small {
  color: var(--muted);
  font-weight: 800;
  font-size: .86rem;
}
.audience-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(201,157,79,.62);
  box-shadow: 0 24px 64px rgba(13,61,59,.16), 0 0 0 7px rgba(201,157,79,.08);
}
.audience-badge:hover .audience-badge__icon svg { animation: iconPop .55s var(--ease) both; }
@media (max-width: 760px) {
  .audience-badge {
    width: 100%;
    justify-content: flex-start;
    margin-top: 20px;
    padding: 12px 14px;
    border-radius: 22px;
  }
  .audience-badge__icon { width: 44px; height: 44px; border-radius: 16px; }
}

/* Clickable price badges -> direct WhatsApp booking */
.price-whatsapp {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  -webkit-tap-highlight-color: transparent;
}
.price-whatsapp strong {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.price-whatsapp:hover strong,
.price-whatsapp:focus-visible strong {
  transform: translateY(-2px) scale(1.045);
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 14px 30px rgba(201,157,79,.38), inset 0 1px 0 rgba(255,255,255,.65);
}
.price-whatsapp:focus-visible {
  outline: none;
}
.price-whatsapp:focus-visible strong {
  outline: 3px solid rgba(18,100,93,.34);
  outline-offset: 4px;
}
.price-list li:has(.price-whatsapp:hover),
.price-list li:has(.price-whatsapp:focus-visible) {
  border-color: rgba(201,157,79,.52);
  box-shadow: 0 16px 34px rgba(12,60,59,.10);
}
@media (hover: none) {
  .price-whatsapp:active strong {
    transform: scale(.96);
  }
}

/* Functional language switcher buttons */
.language-pill__codes button,
.mobile-languages__codes button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  direction: ltr;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.language-pill__codes button {
  padding: 6px 7px;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .05em;
}
.language-pill__codes button:hover,
.language-pill__codes button:focus-visible,
.mobile-languages__codes button:hover,
.mobile-languages__codes button:focus-visible {
  color: #0c2828;
  background: rgba(237,209,139,.55);
  outline: none;
}
.language-pill__codes button.is-active,
.mobile-languages__codes button.is-active {
  color: #0c2828;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  box-shadow: 0 8px 20px rgba(201,157,79,.24), inset 0 1px 0 rgba(255,255,255,.55);
}
.mobile-languages__codes button {
  min-width: 38px;
  text-align: center;
  padding: 8px 10px;
  font-size: .82rem;
  font-weight: 950;
}
html[data-theme="dark"] .language-pill__codes button,
html[data-theme="dark"] .mobile-languages__codes button { color: #fff7e8; }
html[data-theme="dark"] .language-pill__codes button.is-active,
html[data-theme="dark"] .mobile-languages__codes button.is-active,
html[data-theme="dark"] .language-pill__codes button:hover,
html[data-theme="dark"] .mobile-languages__codes button:hover { color: #0c2828; }
html[dir="ltr"] .main-nav,
html[dir="ltr"] .mobile-panel,
html[dir="ltr"] .hero__copy,
html[dir="ltr"] .section-heading,
html[dir="ltr"] .offer-card__body,
html[dir="ltr"] .service-card__body,
html[dir="ltr"] .contact__copy,
html[dir="ltr"] .booking-form {
  text-align: left;
}
html[dir="ltr"] .price-list li:hover { transform: translateX(4px); }
@media (max-width: 760px) {
  .language-pill__codes button { padding: 6px 5px; font-size: .69rem; }
  .mobile-languages__codes button { min-width: 36px; padding: 8px 9px; }
}
@media (max-width: 380px) {
  .language-pill__codes button { padding: 5px 4px; font-size: .64rem; }
}

/* Price booking details modal before WhatsApp */
.price-modal-open { overflow: hidden; }
.price-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.price-booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.price-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 22, 25, .68);
  backdrop-filter: blur(10px);
}
.price-booking-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 30px;
  padding: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(237,209,139,.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,241,.92));
  border: 1px solid rgba(201,157,79,.30);
  box-shadow: 0 30px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.65);
  transform: translateY(16px) scale(.98);
  transition: transform .24s var(--ease);
}
.price-booking-modal.is-open .price-booking-modal__dialog { transform: translateY(0) scale(1); }
html[data-theme="dark"] .price-booking-modal__dialog {
  color: #fff7e8;
  background:
    radial-gradient(circle at top right, rgba(237,209,139,.18), transparent 34%),
    linear-gradient(180deg, rgba(13,48,49,.98), rgba(6,34,39,.96));
  border-color: rgba(237,209,139,.28);
}
.price-booking-modal__close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.62);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(13,61,59,.10);
}
html[data-theme="dark"] .price-booking-modal__close { color: #fff7e8; background: rgba(255,255,255,.09); }
.price-booking-modal__close svg { width: 20px; height: 20px; }
.price-booking-modal__head { display: grid; gap: 10px; padding-inline-end: 44px; }
.price-booking-modal__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #0c2828;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  font-weight: 950;
  direction: ltr;
  box-shadow: 0 12px 26px rgba(201,157,79,.24);
}
.price-booking-modal__badge svg { width: 17px; height: 17px; }
.price-booking-modal__head h3 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  letter-spacing: -.03em;
}
.price-booking-modal__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
html[data-theme="dark"] .price-booking-modal__head p { color: rgba(255,247,232,.74); }
.price-booking-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.price-booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--ink);
}
html[data-theme="dark"] .price-booking-form label { color: #fff7e8; }
.price-booking-form input {
  width: 100%;
  border: 1px solid rgba(201,157,79,.28);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.price-booking-form input:focus {
  border-color: rgba(201,157,79,.68);
  box-shadow: 0 0 0 5px rgba(201,157,79,.12);
  background: #fff;
}
html[data-theme="dark"] .price-booking-form input {
  color: #fff7e8;
  background: rgba(255,255,255,.08);
  border-color: rgba(237,209,139,.26);
}
html[data-theme="dark"] .price-booking-form input:focus { background: rgba(255,255,255,.12); }
.price-booking-form__error {
  min-height: 1.35em;
  margin: 0;
  color: #b74725;
  font-weight: 900;
}
.price-booking-form__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 4px;
}
.price-booking-form__actions .btn { border: 0; cursor: pointer; }
@media (max-width: 560px) {
  .price-booking-modal { padding: 12px; align-items: end; }
  .price-booking-modal__dialog { border-radius: 26px 26px 0 0; padding: 24px 18px calc(24px + env(safe-area-inset-bottom)); }
  .price-booking-form__actions { display: grid; grid-template-columns: 1fr; }
  .price-booking-form__actions .btn { width: 100%; justify-content: center; }
}

/* Preferred day and time fields inside price booking modal */
.price-booking-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.price-booking-form input[type="date"],
.price-booking-form input[type="time"] {
  direction: ltr;
  color-scheme: light;
}
html[data-theme="dark"] .price-booking-form input[type="date"],
html[data-theme="dark"] .price-booking-form input[type="time"] {
  color-scheme: dark;
}
@media (max-width: 560px) {
  .price-booking-form__row { grid-template-columns: 1fr; }
}

/* Mobile refinement for price booking modal fields */
.price-booking-modal__dialog {
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.price-booking-form input {
  min-width: 0;
  max-width: 100%;
  height: 56px;
  min-height: 56px;
  padding-block: 0;
  display: block;
}
.price-booking-form input[type="date"],
.price-booking-form input[type="time"] {
  width: 100%;
  text-align: start;
  line-height: 56px;
  -webkit-appearance: none;
  appearance: none;
}
.price-booking-form input[type="date"]::-webkit-date-and-time-value,
.price-booking-form input[type="time"]::-webkit-date-and-time-value {
  text-align: start;
}
@media (max-width: 560px) {
  .price-booking-modal__dialog {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100dvh - 18px);
  }
  .price-booking-modal__head { gap: 8px; }
  .price-booking-modal__head p { line-height: 1.65; }
  .price-booking-form {
    gap: 11px;
    margin-top: 16px;
  }
  .price-booking-form label { gap: 6px; }
  .price-booking-form input {
    height: 52px;
    min-height: 52px;
    border-radius: 16px;
    padding-inline: 14px;
  }
  .price-booking-form input[type="date"],
  .price-booking-form input[type="time"] { line-height: 52px; }
}

/* Arabic month display for preferred date field */
.price-date-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
}
.price-date-shell .price-date-display {
  position: relative;
  z-index: 1;
  height: 56px;
  min-height: 56px;
  padding-inline-end: 42px;
  pointer-events: none;
  color: var(--ink);
  font-weight: 800;
}
html[data-theme="dark"] .price-date-shell .price-date-display { color: #fff7e8; }
.price-date-shell .price-date-native {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 56px;
  min-height: 56px;
  opacity: .01;
  cursor: pointer;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
}
.price-date-shell::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset-inline-end: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 5px;
  border: 2px solid rgba(201,157,79,.72);
  box-shadow: inset 0 5px 0 rgba(201,157,79,.30);
  pointer-events: none;
}
@media (max-width: 560px) {
  .price-date-shell,
  .price-date-shell .price-date-display,
  .price-date-shell .price-date-native {
    height: 52px;
    min-height: 52px;
  }
  .price-date-shell .price-date-display { padding-inline-end: 38px; }
}

/* Date field now shows Gregorian + Hijri text in the visible box */
.price-date-shell {
  height: auto;
  min-height: 56px;
}
.price-date-shell .price-date-display {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  height: auto;
  padding: 10px 16px;
  padding-inline-end: 44px;
  border: 1px solid rgba(201,157,79,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.45;
  white-space: normal;
  word-break: normal;
}
.price-date-shell .price-date-native {
  height: 100%;
  min-height: 100%;
}
html[data-theme="dark"] .price-date-shell .price-date-display {
  background: rgba(255,255,255,.08);
  border-color: rgba(237,209,139,.26);
  color: #fff7e8;
}
@media (max-width: 560px) {
  .price-date-shell { min-height: 58px; }
  .price-date-shell .price-date-display {
    min-height: 58px;
    height: auto;
    padding-block: 9px;
    padding-inline: 13px 38px;
    font-size: .82rem;
    line-height: 1.42;
  }
  .price-date-shell .price-date-native {
    height: 100%;
    min-height: 100%;
  }
}

/* Calendar choice: Gregorian or Hijri inside price booking modal */
.price-booking-form__row--datetime {
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, .75fr);
  align-items: start;
}
.price-date-field,
.price-time-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.price-field-label,
.price-time-field > span {
  font-weight: 900;
  color: var(--ink);
}
html[data-theme="dark"] .price-field-label,
html[data-theme="dark"] .price-time-field > span { color: #fff7e8; }
.price-calendar-toggle {
  width: fit-content;
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(201,157,79,.26);
  background: rgba(255,255,255,.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
html[data-theme="dark"] .price-calendar-toggle { background: rgba(255,255,255,.07); }
.price-calendar-toggle button {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 950;
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}
.price-calendar-toggle button:hover,
.price-calendar-toggle button:focus-visible {
  color: #0c2828;
  background: rgba(237,209,139,.52);
  outline: none;
}
.price-calendar-toggle button.is-active {
  color: #0c2828;
  background: linear-gradient(135deg, #fff1ba, var(--gold-2), var(--gold));
  box-shadow: 0 8px 18px rgba(201,157,79,.24), inset 0 1px 0 rgba(255,255,255,.58);
}
.price-hijri-picker {
  display: grid;
  grid-template-columns: .72fr 1.35fr 1fr;
  gap: 8px;
  min-width: 0;
}
.price-hijri-picker select {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(201,157,79,.28);
  border-radius: 18px;
  padding: 0 12px;
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  outline: none;
}
.price-hijri-picker select:focus {
  border-color: rgba(201,157,79,.68);
  box-shadow: 0 0 0 5px rgba(201,157,79,.12);
  background: #fff;
}
html[data-theme="dark"] .price-hijri-picker select {
  color: #fff7e8;
  background: rgba(255,255,255,.08);
  border-color: rgba(237,209,139,.26);
}
.price-date-field [hidden] { display: none !important; }
.price-date-hint {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}
html[data-theme="dark"] .price-date-hint { color: rgba(255,247,232,.66); }
@media (max-width: 560px) {
  .price-booking-form__row--datetime { grid-template-columns: 1fr; }
  .price-calendar-toggle { width: 100%; justify-content: center; }
  .price-calendar-toggle button { flex: 1; padding: 8px 10px; }
  .price-hijri-picker { grid-template-columns: .75fr 1.25fr 1fr; gap: 7px; }
  .price-hijri-picker select {
    height: 52px;
    border-radius: 16px;
    padding-inline: 9px;
    font-size: .82rem;
  }
  .price-date-hint { font-size: .72rem; }
}

/* Visible Gregorian + Hijri date selectors */
.price-booking-form__row--datetime {
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, .75fr);
  align-items: start;
}
.price-calendar-panel {
  display: grid;
  grid-template-columns: .72fr 1.35fr 1fr;
  gap: 9px;
  min-width: 0;
  width: 100%;
}
.price-calendar-panel[hidden] { display: none !important; }
.price-calendar-panel select {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(201,157,79,.34);
  border-radius: 18px;
  padding: 0 12px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  font-weight: 900;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.50);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.price-calendar-panel select:focus {
  border-color: rgba(201,157,79,.76);
  box-shadow: 0 0 0 5px rgba(201,157,79,.13), inset 0 1px 0 rgba(255,255,255,.55);
  background: #fff;
}
html[data-theme="dark"] .price-calendar-panel select {
  color: #fff7e8;
  background: rgba(255,255,255,.09);
  border-color: rgba(237,209,139,.34);
}
.price-date-preview {
  display: block;
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(237,209,139,.20), rgba(18,100,93,.08));
  border: 1px solid rgba(201,157,79,.25);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.55;
}
html[data-theme="dark"] .price-date-preview {
  color: #fff7e8;
  background: linear-gradient(135deg, rgba(237,209,139,.13), rgba(255,255,255,.06));
  border-color: rgba(237,209,139,.24);
}
.price-calendar-toggle {
  margin-bottom: 2px;
}
@media (max-width: 560px) {
  .price-booking-form__row--datetime { grid-template-columns: 1fr; }
  .price-calendar-panel { grid-template-columns: .72fr 1.35fr 1fr; gap: 8px; }
  .price-calendar-panel select {
    height: 52px;
    border-radius: 16px;
    padding-inline: 9px;
    font-size: .86rem;
  }
  .price-date-preview {
    font-size: .75rem;
    padding: 9px 10px;
  }
}

/* Fix native dropdown list visibility for date selectors */
.price-calendar-panel select option,
.price-hijri-picker select option,
.price-booking-form select option {
  color: #103332 !important;
  background-color: #fffaf1 !important;
  font-weight: 800;
}
.price-calendar-panel select option:checked,
.price-hijri-picker select option:checked,
.price-booking-form select option:checked {
  color: #0c2828 !important;
  background: linear-gradient(135deg, #fff1ba, #edd18b) !important;
}
.price-calendar-panel select option:hover,
.price-hijri-picker select option:hover,
.price-booking-form select option:hover {
  color: #0c2828 !important;
  background-color: #edd18b !important;
}
html[data-theme="dark"] .price-calendar-panel select,
html[data-theme="dark"] .price-hijri-picker select {
  color: #fff7e8;
  color-scheme: dark;
}
html[data-theme="dark"] .price-calendar-panel select option,
html[data-theme="dark"] .price-hijri-picker select option,
html[data-theme="dark"] .price-booking-form select option {
  color: #103332 !important;
  background-color: #fffaf1 !important;
}
