/* ==========================================================================
   KING'S — Brand Design System
   Source of truth: KING'S Brand Guidelines 2025 v1.0
   Primary:   Seashell #FFF9F3 · Dark Purple #452347
   Secondary: Cal Poly Green #264027 · Celtic Blue #3066BE
              Engine Red #D62828 · Black #030303
   Type:      Raxtor (EN headlines) · Readex Pro (EN body)
              Hacen Extender Slant (AR headlines) · Zagel Arabic (AR body)
   ========================================================================== */

/* ---------- Brand fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Raxtor';
  src: url('/assets/fonts/Raxtor-Regular.woff2') format('woff2'),
       url('/assets/fonts/Raxtor-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raxtor';
  src: url('/assets/fonts/Raxtor-Bold.woff2') format('woff2'),
       url('/assets/fonts/Raxtor-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raxtor Outline';
  src: url('/assets/fonts/Raxtor-Outline.woff2') format('woff2'),
       url('/assets/fonts/Raxtor-Outline.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hacen Extender Slant';
  src: url('/assets/fonts/HacenExtenderSlant.woff2') format('woff2'),
       url('/assets/fonts/HacenExtenderSlant.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zagel Arabic';
  src: url('/assets/fonts/ZagelArabicITF-Light.woff2') format('woff2'),
       url('/assets/fonts/ZagelArabicITF-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zagel Arabic';
  src: url('/assets/fonts/ZagelArabicITF-Regular.woff2') format('woff2'),
       url('/assets/fonts/ZagelArabicITF-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zagel Arabic';
  src: url('/assets/fonts/ZagelArabicITF-Bold.woff2') format('woff2'),
       url('/assets/fonts/ZagelArabicITF-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --seashell: #FFF9F3;
  --purple: #452347;
  --purple-deep: #2E1730;       /* darkened purple for bands/overlays */
  --purple-soft: #5C3560;       /* hover shade */
  --green: #264027;
  --whatsapp: #1EA34E;          /* WhatsApp brand green, deepened for the KING'S palette */
  --whatsapp-dark: #17803D;
  --blue: #3066BE;
  --red: #D62828;
  --black: #030303;

  /* Semantic */
  --bg: var(--seashell);
  --surface: #FFFFFF;
  --ink: var(--purple);
  --ink-80: rgba(69, 35, 71, .82);
  --ink-60: rgba(69, 35, 71, .62);
  --line: rgba(69, 35, 71, .16);
  --line-soft: rgba(69, 35, 71, .09);
  --on-dark: var(--seashell);
  --on-dark-70: rgba(255, 249, 243, .72);
  --on-dark-line: rgba(255, 249, 243, .16);

  /* Type */
  --font-display: 'Raxtor', 'Readex Pro', sans-serif;
  --font-body: 'Readex Pro', 'Zagel Arabic', sans-serif;
  --track-display: -0.02em;

  /* Layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-pad: clamp(64px, 9vw, 120px);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 84px;
  --nd-ticker-h: 0px;
  --nd-green: #006C35;
  --nd-gold: #E8C872;
  --tap: 44px;

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

html[dir="rtl"] {
  --font-display: 'Hacen Extender Slant', 'Zagel Arabic', 'Readex Pro', sans-serif;
  --font-body: 'Zagel Arabic', 'Readex Pro', sans-serif;
  --track-display: 0;
}

/* Hacen Extender Slant ships as a single regular cut — keep weight 400 so
   the browser does not synthesize a heavy faux-bold for Arabic headlines. */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] .hero-headline,
html[dir="rtl"] .section-title,
html[dir="rtl"] .page-title,
html[dir="rtl"] .marquee-title,
html[dir="rtl"] .legal-hero-title,
html[dir="rtl"] .moved-title,
html[dir="rtl"] .legal-card-title,
html[dir="rtl"] .feature-title,
html[dir="rtl"] .service-title,
html[dir="rtl"] .service-title-large,
html[dir="rtl"] .service-card-content .nav-pill,
html[dir="rtl"] .about-highlight,
html[dir="rtl"] .quality-badge-item h4 {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

img, video, iframe { max-width: 100%; height: auto; }
img { display: block; }
input, select, textarea { max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: var(--track-display);
  margin: 0 0 .5em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 1em; }

::selection { background: var(--purple); color: var(--seashell); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  vertical-align: -0.22em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}
.icon--fill { fill: currentColor; stroke: none; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn, .btn-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  min-height: var(--tap);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:active, .btn-form:active { transform: translateY(1px); }

.btn-primary, .btn-form {
  background: var(--purple);
  color: var(--seashell);
  border-color: var(--purple);
}
.btn-primary:hover, .btn-form:hover { background: var(--purple-soft); border-color: var(--purple-soft); color: var(--seashell); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--purple); }

/* On dark surfaces (hero, bands) */
.btn-light {
  background: var(--seashell);
  color: var(--purple);
  border-color: var(--seashell);
}
.btn-light:hover { background: #fff; color: var(--purple); }

.btn-ghost {
  background: transparent;
  color: var(--seashell);
  border-color: rgba(255, 249, 243, .45);
}
.btn-ghost:hover { border-color: var(--seashell); background: rgba(255, 249, 243, .08); color: var(--seashell); }

.btn .icon, .btn-form .icon { transition: transform .25s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .icon--arrow { transform: translateX(-4px) scaleX(-1); }
html[dir="rtl"] .icon--arrow { transform: scaleX(-1); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--purple); background: transparent; color: var(--ink); }

/* ---------- Preloader ---------- */
#kings-preloader-overlay,
.kings-lang-preloader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 46%, var(--purple-soft) 0%, var(--purple) 52%, var(--purple-deep) 100%);
  transition: opacity .95s cubic-bezier(.22, .61, .36, 1),
              visibility .95s cubic-bezier(.22, .61, .36, 1);
}
#kings-preloader-overlay.fade-out,
.kings-lang-preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.kings-lang-preloader-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.kings-lang-preloader-overlay.fade-in {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.kings-preloader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform .95s cubic-bezier(.22, .61, .36, 1);
}
.kings-preloader-logo,
#kings-preloader-logo {
  width: min(210px, 54vw);
  height: auto;
  display: block;
  /* logo-1.png is seashell — invert to white on the purple splash */
  filter: brightness(0) invert(1) drop-shadow(0 16px 32px rgba(0, 0, 0, .28));
  animation: kings-logo-zoom-in 1.1s cubic-bezier(.22, .61, .36, 1) forwards;
  transform-origin: center center;
}
#kings-preloader-overlay.fade-out .kings-preloader-content,
.kings-lang-preloader-overlay.fade-out .kings-preloader-content {
  transform: scale(1.48);
}
#kings-preloader-overlay.fade-out .kings-preloader-logo,
#kings-preloader-overlay.fade-out #kings-preloader-logo,
.kings-lang-preloader-overlay.fade-out .kings-preloader-logo,
.kings-lang-preloader-overlay.fade-out #kings-preloader-logo {
  animation-play-state: paused;
}
@keyframes kings-logo-zoom-in {
  0% { transform: scale(.72); }
  100% { transform: scale(1.08); }
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
}

html:has(.nd-ticker:not([hidden])) { --nd-ticker-h: 42px; }

.nd-ticker {
  --nd-ticker-fade: 24px;
  --nd-ticker-duration: 25s;
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--nd-ticker-h, 42px);
  overflow: hidden;
  background: var(--nd-green);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .18);
  isolation: isolate;
}
.nd-ticker[hidden] { display: none !important; }
/* Solid-colour edge fades instead of a mask: masking the moving track forces a
   re-raster every frame on iOS Safari and older Android Chrome. */
.nd-ticker::before,
.nd-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--nd-ticker-fade);
  z-index: 2;
  pointer-events: none;
}
.nd-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--nd-green) 0%, rgba(0, 108, 53, 0) 100%);
}
.nd-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--nd-green) 0%, rgba(0, 108, 53, 0) 100%);
}
.nd-ticker-link {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.nd-ticker-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Stable clipping layer so iOS does not re-raster the moving track. */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.nd-ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: nd-ticker-scroll var(--nd-ticker-duration, 25s) linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .nd-ticker-track { will-change: transform; }
  .nd-ticker:hover .nd-ticker-track,
  .nd-ticker:focus-within .nd-ticker-track {
    animation-play-state: paused;
  }
}
@keyframes nd-ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
html[dir="rtl"] .nd-ticker-track { animation-name: nd-ticker-scroll-rtl; }
@keyframes nd-ticker-scroll-rtl {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(50%, 0, 0); }
}
/* Hold still until the webfont and badge are measured, otherwise the pace is
   set from the fallback-font width and the track lurches when they swap in. */
.nd-ticker:not(.is-paced) .nd-ticker-track { animation-play-state: paused; }
.nd-ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  height: 100%;
  gap: 28px;
  padding-inline-end: 28px;
}
.nd-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}
.nd-ticker-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--nd-gold);
}
.nd-ticker-sep svg {
  width: 11px;
  height: 11px;
  display: block;
}
/* aspect-ratio reserves the badge's width before the file decodes, so both
   halves of the track measure identically and the loop never jumps. */
.nd-ticker-slogan {
  height: 26px;
  width: 97px;
  flex: none;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .22);
  transform: translateZ(0);
  pointer-events: none;
  -webkit-user-drag: none;
}

#home, #about, #services, #project, #contact,
.site-main > section[id] {
  scroll-margin-top: calc(var(--nav-h) + var(--nd-ticker-h) + 12px);
}
.main-navigation {
  /* Stack above the National Day ticker so dropdowns are never covered.
     (The scrolled backdrop-filter turns the nav into its own stacking
     context, which otherwise loses to the later-in-DOM ticker.) */
  position: relative;
  z-index: 3;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}
.site-branding { display: flex; align-items: center; }
.site-logo {
  height: 46px;
  width: auto;
  transition: filter .35s var(--ease), height .3s var(--ease);
  /* Seashell logo over dark hero (approved combo: Seashell with Dark Purple) */
  filter: brightness(0) invert(97%) sepia(4%) saturate(600%) hue-rotate(310deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--tap);
  padding: 10px 14px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--seashell);
  border-radius: var(--radius-sm);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item > a.active,
.nav-menu > .menu-item.active > a,
.nav-menu > .menu-item.current-menu-item > a {
  color: #fff;
  background: rgba(255, 249, 243, .1);
}

/* Scrolled: seashell surface, purple text */
.main-navigation.scrolled,
.site-header.scrolled .main-navigation {
  background: rgba(255, 249, 243, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.main-navigation.scrolled .site-logo,
.site-header.scrolled .site-logo {
  /* Dark Purple mark on seashell scrolled nav */
  filter: brightness(0) saturate(100%) invert(14%) sepia(28%) saturate(1400%) hue-rotate(270deg) brightness(0.9);
  height: 40px;
}
.main-navigation.scrolled .nav-menu > .menu-item > a,
.site-header.scrolled .nav-menu > .menu-item > a { color: var(--ink); }
.main-navigation.scrolled .nav-menu > .menu-item > a:hover,
.main-navigation.scrolled .nav-menu > .menu-item > a.active,
.main-navigation.scrolled .nav-menu > .menu-item.active > a,
.site-header.scrolled .nav-menu > .menu-item > a:hover,
.site-header.scrolled .nav-menu > .menu-item > a.active,
.site-header.scrolled .nav-menu > .menu-item.active > a {
  color: var(--purple);
  background: rgba(69, 35, 71, .07);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-icon { transition: transform .25s var(--ease); }
.has-dropdown:hover > a .dropdown-icon,
.has-dropdown.open > a .dropdown-icon { transform: rotate(180deg); }
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: min(320px, calc(100vw - 48px));
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--seashell);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(46, 23, 48, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 50;
}
.nav-menu .has-dropdown:hover > .sub-menu,
.nav-menu .has-dropdown.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--tap);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: background .2s var(--ease);
}
.nav-menu .sub-menu li a:hover { background: rgba(69, 35, 71, .07); color: var(--purple); }
.nav-menu .sub-menu li a .icon { color: var(--purple); width: 1.3em; height: 1.3em; }

/* Portal button in nav */
.btn-nav-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 9px 20px !important;
  margin-inline-start: 8px;
  border-radius: var(--radius-sm);
  background: var(--seashell) !important;
  color: var(--purple) !important;
  font-weight: 600 !important;
  transition: background .25s var(--ease);
}
.btn-nav-portal:hover { background: #fff !important; }
.main-navigation.scrolled .btn-nav-portal,
.site-header.scrolled .btn-nav-portal {
  background: var(--purple) !important;
  color: var(--seashell) !important;
}
.portal-btn-icon { width: 16px; height: 16px; object-fit: contain; }
/* k-icon.png is light — darken it on the seashell portal button for contrast */
.btn-nav-portal .portal-btn-icon,
.mobile-portal-btn .portal-btn-icon {
  filter: brightness(0) saturate(100%) invert(14%) sepia(28%) saturate(1400%) hue-rotate(270deg) brightness(0.9);
}
.main-navigation.scrolled .btn-nav-portal .portal-btn-icon,
.site-header.scrolled .btn-nav-portal .portal-btn-icon {
  filter: brightness(0) invert(1);
}

/* Right controls */
.header-right-controls { display: flex; align-items: center; gap: 14px; }
.lang-switcher {
  display: flex;
  border: 1px solid rgba(255, 249, 243, .4);
  border-radius: 100px;
  padding: 3px;
  transition: border-color .3s var(--ease);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap);
  min-height: var(--tap);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  color: var(--seashell);
  letter-spacing: .04em;
  touch-action: manipulation;
}
.lang-btn.active { background: var(--seashell); color: var(--purple); }
.main-navigation.scrolled .lang-switcher,
.site-header.scrolled .lang-switcher { border-color: var(--line); }
.main-navigation.scrolled .lang-btn,
.site-header.scrolled .lang-btn { color: var(--ink); }
.main-navigation.scrolled .lang-btn.active,
.site-header.scrolled .lang-btn.active { background: var(--purple); color: var(--seashell); }

/* Burger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  min-width: var(--tap);
  min-height: var(--tap);
  cursor: pointer;
  touch-action: manipulation;
}
.burger-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.burger-icon span {
  height: 2px;
  width: 100%;
  background: var(--seashell);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.main-navigation.scrolled .burger-icon span,
.site-header.scrolled .burger-icon span { background: var(--purple); }
.mobile-menu-toggle.active .burger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active .burger-icon span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .burger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(3, 3, 3, .5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  z-index: 1200;
  width: min(380px, 88vw);
  max-width: 100%;
  background: var(--purple-deep);
  color: var(--seashell);
  padding: 88px 28px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  -webkit-overflow-scrolling: touch;
}
html[dir="rtl"] .mobile-nav-drawer { transform: translateX(-100%); }
.mobile-nav-drawer.active { transform: translateX(0) !important; }
.mobile-drawer-close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  inset-inline-end: 12px;
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 249, 243, .08);
  border: 1px solid var(--on-dark-line);
  border-radius: 50%;
  color: var(--seashell);
  cursor: pointer;
  touch-action: manipulation;
}
.mobile-drawer-close .icon { width: 20px; height: 20px; }
.mobile-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-drawer-menu > li { border-bottom: 1px solid var(--on-dark-line); }
.mobile-drawer-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: var(--tap);
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--seashell);
}
.mobile-drawer-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 12px 6px;
  display: none;
}
.mobile-drawer-menu .has-dropdown.open .sub-menu { display: block; }
.mobile-drawer-menu .sub-menu li a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 10px 4px;
  font-size: 15px;
  color: var(--on-dark-70);
}
.mobile-drawer-menu .sub-menu li a:hover { color: var(--seashell); }
.mobile-portal-btn {
  margin-top: 18px;
  justify-content: center !important;
  background: var(--seashell);
  color: var(--purple) !important;
  border-radius: var(--radius-sm);
  min-height: var(--tap);
  padding: 14px !important;
  font-weight: 600 !important;
}
.mobile-drawer-menu li:has(.mobile-portal-btn) { border-bottom: 0; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-pad); }
.section-header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 18px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--line);
}
.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-60);
  margin: 0;
}
/* Dark band variant */
.band-dark { background: var(--purple); color: var(--on-dark); }
.band-dark .section-title, .band-dark h2, .band-dark h3 { color: var(--on-dark); }
.band-dark .section-subtitle { color: var(--on-dark-70); }
.band-dark .section-eyebrow { color: var(--on-dark-70); }
.band-dark .section-eyebrow::before, .band-dark .section-eyebrow::after { background: var(--on-dark-line); }

/* ---------- Hero (homepage) ---------- */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--purple-deep);
  background-image: url('/assets/images/hero01-scaled.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-bg-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Keep slider LTR so language dir flips do not blank fade slides */
  direction: ltr;
  width: 100%;
  height: 100%;
}
.hero-bg-swiper .swiper-wrapper,
.hero-bg-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-bg-swiper .swiper-slide { overflow: hidden; }
.hero-bg-swiper .swiper-slide-active,
.hero-bg-swiper .swiper-slide-duplicate-active {
  opacity: 1 !important;
  z-index: 1;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(24, 10, 26, .62);
}
.hero-content-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: calc(var(--nav-h) + var(--nd-ticker-h));
}
.hero-inner { max-width: 880px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--on-dark-70);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 44px;
  height: 1.5px;
  background: var(--seashell);
}
.hero-headline {
  font-size: clamp(42px, 7vw, 88px);
  color: var(--seashell);
  text-transform: uppercase;
  letter-spacing: calc(var(--track-display) - .005em);
  margin-bottom: 22px;
}
.hero-headline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: kings-word-in .6s var(--ease) forwards;
}
@keyframes kings-word-in {
  to { opacity: 1; transform: translateY(0); }
}
.hero-subheadline {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--on-dark-70);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-slider-controls {
  position: absolute;
  bottom: 44px;
  inset-inline-start: 0;
  width: 100%;
  z-index: 15;
}
.hero-slider-controls .swiper-pagination {
  position: static;
  display: flex;
  gap: 8px;
}
.hero-slider-controls .swiper-pagination-bullet {
  width: var(--tap);
  height: var(--tap);
  margin: 0 !important;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  position: relative;
  transition: none;
}
.hero-slider-controls .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 249, 243, .35);
  transform: translate(-50%, -50%);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-slider-controls .swiper-pagination-bullet-active::after {
  background: var(--seashell);
  width: 44px;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  inset-inline-end: var(--gutter);
  z-index: 15;
  color: var(--on-dark-70);
  animation: kings-bob 2.4s ease-in-out infinite;
}
.scroll-indicator .icon { width: 22px; height: 22px; }
@keyframes kings-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(420px, 56vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--purple-deep);
  overflow: hidden;
}
.page-hero-background { position: absolute; inset: 0; }
.page-hero-background img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 26, .66);
}
.page-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-block: clamp(48px, 7vw, 88px);
  padding-top: calc(var(--nav-h) + var(--nd-ticker-h) + 48px);
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--on-dark-70);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.page-breadcrumb a:hover { color: var(--seashell); }
.page-breadcrumb .icon { width: 1em; height: 1em; }
.page-title {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--seashell);
  text-transform: uppercase;
  margin-bottom: 14px;
  max-width: 820px;
}
.page-subtitle {
  font-size: clamp(15.5px, 1.7vw, 18px);
  color: var(--on-dark-70);
  max-width: 640px;
  margin: 0;
}

/* ---------- Brand values marquee ---------- */
.quality-marquee-section {
  background: var(--purple);
  color: var(--seashell);
  padding-block: clamp(44px, 6vw, 72px);
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border-radius: 0;
}
.marquee-title {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-70);
  margin-bottom: clamp(28px, 4vw, 44px);
  padding-inline: 0;
}
.quality-marquee-viewport {
  --marquee-fade: clamp(56px, 10vw, 96px);
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.quality-marquee-viewport::before,
.quality-marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--marquee-fade);
  z-index: 2;
  pointer-events: none;
  transform: translateZ(1px);
}
.quality-marquee-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--purple) 0%, rgba(69, 35, 71, 0) 100%);
}
.quality-marquee-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--purple) 0%, rgba(69, 35, 71, 0) 100%);
}
.quality-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--marquee-fade),
    #000 calc(100% - var(--marquee-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--marquee-fade),
    #000 calc(100% - var(--marquee-fade)),
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.quality-marquee-track {
  display: flex;
  width: max-content;
  animation: kings-marquee 32s linear infinite;
}
.quality-marquee-group {
  display: flex;
  align-items: center;
  flex: none;
  gap: clamp(40px, 6vw, 88px);
  padding-inline-end: clamp(40px, 6vw, 88px);
}
@keyframes kings-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
html[dir="rtl"] .quality-marquee-track { animation-name: kings-marquee-rtl; }
@keyframes kings-marquee-rtl {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(50%, 0, 0); }
}
.quality-badge-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}
.quality-badge-item .badge-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--on-dark-line);
  border-radius: 50%;
  color: var(--seashell);
}
.quality-badge-item .badge-icon .icon { width: 22px; height: 22px; }
.quality-badge-item h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--seashell);
  white-space: nowrap;
}

/* ---------- About ---------- */
.about-section { padding-block: var(--section-pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.about-copy .section-header { text-align: start; margin-inline: 0; margin-bottom: 28px; }
.about-copy .section-eyebrow::after { display: none; }
.about-description p { color: var(--ink-80); font-size: 16.5px; }
.about-highlight {
  margin-top: 30px;
  padding: 22px 26px;
  border-inline-start: 3px solid var(--purple);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--purple);
}
html[dir="rtl"] .about-highlight { border-radius: var(--radius) 0 0 var(--radius); }

.features-grid {
  display: grid;
  gap: 16px;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.feature-item:hover { border-color: var(--line); transform: translateY(-3px); }
.feature-icon {
  width: 54px;
  height: 54px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(69, 35, 71, .07);
  color: var(--purple);
}
.feature-icon .icon { width: 24px; height: 24px; }
.feature-title {
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.feature-description {
  margin: 0;
  font-size: 15px;
  color: var(--ink-60);
  line-height: 1.65;
}

/* ---------- Services (homepage category cards) ---------- */
.services-section {
  padding-block: var(--section-pad);
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--seashell);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover { border-color: var(--line); transform: translateY(-6px); }
.service-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--purple-deep);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-content { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.service-icon-wrapper {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--purple);
  color: var(--seashell);
  margin-top: -55px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--seashell);
}
.service-icon-wrapper .icon { width: 26px; height: 26px; }
.service-title {
  font-size: clamp(20px, 2.2vw, 26px);
  text-transform: uppercase;
  margin: 0;
}
.service-description {
  margin: 0;
  color: var(--ink-60);
  font-size: 15.5px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--purple);
  letter-spacing: .02em;
}
.service-link .icon { transition: transform .3s var(--ease); }
.service-card:hover .service-link .icon { transform: translateX(5px); }
html[dir="rtl"] .service-link .icon { transform: scaleX(-1); }
html[dir="rtl"] .service-card:hover .service-link .icon { transform: scaleX(-1) translateX(5px); }

/* ---------- Portfolio ---------- */
.portfolio-section { padding-block: var(--section-pad); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--purple-deep);
}
.portfolio-image { position: absolute; inset: 0; }
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.portfolio-item:hover .portfolio-image img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: rgba(24, 10, 26, 0);
  transition: background .4s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { background: rgba(24, 10, 26, .55); }
.portfolio-info {
  transform: translateY(12px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.portfolio-item:hover .portfolio-info { transform: translateY(0); opacity: 1; }
.portfolio-category {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-dark-70);
  margin: 0 0 6px;
}
.portfolio-title {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--seashell);
  text-transform: uppercase;
  margin: 0;
}

/* Lightbox */
.lightbox-overlay,
#portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(3, 3, 3, .88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
#portfolio-lightbox.active { opacity: 1; visibility: visible; }
.lightbox-display-image {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 249, 243, .12);
  border: 1px solid var(--on-dark-line);
  border-radius: 50%;
  color: var(--seashell);
  cursor: pointer;
  transition: background .25s var(--ease);
}
.lightbox-close:hover { background: rgba(255, 249, 243, .22); }

/* ---------- National Day promo popup ---------- */
body.promo-popup-open { overflow: hidden; }
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 5200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  background: rgba(24, 10, 26, .78);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}
.promo-popup.is-open { opacity: 1; visibility: visible; }
.promo-popup-shell {
  position: relative;
  width: min(920px, 100%);
}
.promo-popup.is-portrait .promo-popup-shell {
  width: min(400px, 100%);
}
.promo-popup-card {
  position: relative;
  width: 100%;
  background: #0d0610;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 3, 3, .45);
}
.promo-popup-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 70dvh);
  object-fit: contain;
  background: #0d0610;
}
.promo-popup-close {
  position: absolute;
  top: -10px;
  inset-inline-end: -10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 10, 26, .72);
  border: 1px solid var(--on-dark-line);
  border-radius: 50%;
  color: var(--seashell);
  cursor: pointer;
  touch-action: manipulation;
  transition: background .25s var(--ease);
}
.promo-popup-close:hover { background: rgba(24, 10, 26, .9); color: var(--seashell); }
.promo-popup-close .icon { width: 18px; height: 18px; }
.promo-popup-sound,
.promo-popup-play {
  position: absolute;
  left: 50%;
  /* Clear the offer bar pinned to the card's bottom edge. */
  bottom: 74px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 10px 18px;
  min-height: var(--tap);
  border: 0;
  border-radius: 100px;
  background: rgba(255, 249, 243, .94);
  color: var(--purple);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  white-space: nowrap;
}
.promo-popup-play { top: 50%; bottom: auto; transform: translate(-50%, -50%); }
.promo-popup-sound[hidden],
.promo-popup-play[hidden] { display: none; }
.promo-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
  background: var(--nd-green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: background .25s var(--ease);
}
.promo-popup-cta:hover { background: #07813F; color: #fff; }
.promo-popup-cta .icon { width: 18px; height: 18px; flex: none; }
html[dir="rtl"] .promo-popup-cta .icon { transform: scaleX(-1); }

/* ---------- National Day service picker (after the video) ---------- */
.promo-picker-card {
  position: relative;
  width: 100%;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 3, 3, .45);
  max-height: min(86vh, 86dvh);
  display: flex;
  flex-direction: column;
}
.promo-picker-head {
  position: relative;
  text-align: center;
  color: #fff;
  background: radial-gradient(130% 200% at 50% -60%, #0B7B41 0%, #01522A 55%, #013A1D 100%);
  padding: clamp(22px, 4vw, 34px) 20px clamp(18px, 3vw, 26px);
}
.promo-picker-slogan {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .22);
  margin-bottom: 12px;
}
.promo-picker-title {
  font-family: var(--font-body);
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.promo-picker-title strong { color: var(--nd-gold); font-weight: inherit; }
.promo-picker-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .82);
  margin: 0;
}
.promo-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: clamp(16px, 2.5vw, 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.promo-picker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-height: 108px;
  padding: 14px 10px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.promo-picker-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 108, 53, .4);
  box-shadow: 0 12px 26px rgba(1, 58, 29, .14);
  color: var(--ink);
}
.promo-picker-item .promo-picker-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 108, 53, .1);
  color: var(--nd-green);
}
.promo-picker-icon .icon { width: 21px; height: 21px; }
.promo-picker-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--ink-60);
  font-size: 13px;
  text-align: center;
}
.promo-picker-foot .icon { width: 15px; height: 15px; color: var(--whatsapp); flex: none; }

@media (max-width: 640px) {
  .promo-picker-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-picker-item { min-height: 100px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--purple);
  color: var(--on-dark);
  padding-block: clamp(56px, 8vw, 96px);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-size: clamp(26px, 3.6vw, 44px);
  text-transform: uppercase;
  color: var(--seashell);
  margin: 0 0 8px;
  max-width: 640px;
}
.cta-band-sub { color: var(--on-dark-70); margin: 0; font-size: 17px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-section { padding-block: var(--section-pad); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-info-column {
  background: var(--purple);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
}
.contact-info-title {
  color: var(--seashell);
  font-size: clamp(20px, 2.2vw, 26px);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-sm);
  color: var(--seashell);
}
.contact-icon .icon { width: 20px; height: 20px; }
.contact-details h4 {
  color: var(--seashell);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 2px 0 6px;
}
.contact-details a, .contact-details .time, .contact-details .day {
  color: var(--on-dark-70);
  font-size: 15px;
  line-height: 1.6;
}
.contact-details a:hover { color: var(--seashell); }
.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}
.contact-hours-list li { display: flex; justify-content: space-between; gap: 18px; }
.contact-hours-list .day { color: var(--seashell); font-weight: 500; }
.contact-hours-list .time { text-align: end; }
.contact-hours-list .time.closed { color: #E88; }

/* Forms */
.contact-form-column {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
}
.form-label,
.contact-form-column form p > span:first-child,
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
}
.contact-form-column form p { margin-bottom: 20px; }
.wpcf7-form-control-wrap { display: block; }
input.wpcf7-form-control:not([type="submit"]),
textarea.wpcf7-form-control,
select.wpcf7-form-control,
.kings-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--seashell);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius-sm);
  transition: border-color .25s var(--ease), background .25s var(--ease);
  appearance: none;
}
select.wpcf7-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23452347' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-inline-end: 42px;
}
html[dir="rtl"] select.wpcf7-form-control { background-position: left 14px center; }
input.wpcf7-form-control:not([type="submit"]):focus,
textarea.wpcf7-form-control:focus,
select.wpcf7-form-control:focus,
.kings-input:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
}
.form-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--purple);
}
.form-status.is-error { color: #b42318; }
textarea.wpcf7-form-control, textarea.kings-input { min-height: 130px; resize: vertical; }
input[type="submit"].wpcf7-form-control { width: 100%; }
input::placeholder, textarea::placeholder { color: rgba(69, 35, 71, .38); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-deep);
  color: var(--on-dark-70);
}
.footer-main { padding-block: clamp(56px, 7vw, 88px) clamp(40px, 5vw, 64px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
}
.footer-title {
  font-size: 26px;
  color: var(--seashell);
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-about { font-size: 14.5px; line-height: 1.75; margin-bottom: 22px; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--seashell);
  margin-bottom: 20px;
}
.footer-menu, .footer-hours-list, .footer-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.footer-menu a:hover, .footer-contact-info a:hover { color: var(--seashell); }
.footer-hours-list li { display: flex; justify-content: space-between; gap: 14px; }
.footer-hours-list .day { color: var(--seashell); font-weight: 500; }
.footer-hours-list .time { text-align: end; }
.footer-hours-list .time.closed { color: #E88; }
.footer-contact-info li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-info .icon { color: var(--seashell); margin-top: 3px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-sm);
  color: var(--seashell);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.social-link:hover { background: rgba(255, 249, 243, .1); border-color: rgba(255, 249, 243, .4); }
.social-link .icon { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--on-dark-line);
  padding-block: 22px;
}
.footer-bottom-content, .footer-bottom .container > p { margin: 0; }
.footer-bottom p { margin: 0; font-size: 13.5px; text-align: center; }

/* ---------- Floating widgets ---------- */
.floating-widgets-wrapper {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  inset-inline-end: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-float-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(3, 3, 3, .22);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float-btn:hover {
  background: var(--whatsapp-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(3, 3, 3, .28);
}
.whatsapp-float-btn .icon { width: 30px; height: 30px; }
.floating-contact-btn {
  padding: 11px 22px;
  background: var(--purple);
  color: var(--seashell);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.floating-contact-btn:hover { background: var(--purple-soft); color: var(--seashell); transform: translateY(-2px); }

/* ==========================================================================
   SERVICE CATEGORY PAGES
   ========================================================================== */
.services-grid-section { padding-block: var(--section-pad); }

/* Anchor pills under the section header */
.services-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.section-header .services-nav-pills { margin-top: 26px; }
.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-80);
  background: var(--surface);
  border: 1.5px solid var(--line-soft);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.nav-pill:hover { border-color: var(--purple); color: var(--purple); }
.nav-pill.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--seashell);
}

/* Alternating service rows */
.services-alternating-list {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 110px);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  scroll-margin-top: calc(var(--nav-h) + var(--nd-ticker-h) + 24px);
}
.service-row:nth-child(even) > div:first-child { order: 2; }
.service-row:nth-child(even) > .service-card-content { order: 1; }

.service-image-col { position: relative; }
.service-image-col.hidden { display: none; }
.service-image-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: var(--purple-deep);
  border: 1px solid var(--line-soft);
}
.service-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.service-slider-slide.active { opacity: 1; pointer-events: auto; }
.service-slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 249, 243, .92);
  color: var(--purple);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.slider-prev { inset-inline-start: 14px; }
.slider-next { inset-inline-end: 14px; }
.slider-prev:hover, .slider-next:hover { background: #fff; }
.slider-prev .icon, .slider-next .icon { width: 18px; height: 18px; }
html[dir="rtl"] .slider-prev .icon, html[dir="rtl"] .slider-next .icon { transform: scaleX(-1); }
.slider-dots {
  position: absolute;
  bottom: 14px;
  inset-inline: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.slider-dots:empty { display: none; }
.slider-dot {
  width: var(--tap);
  height: var(--tap);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.slider-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 249, 243, .4);
  transform: translate(-50%, -50%);
}
.slider-dot.active::after { background: var(--seashell); }

.service-card-content { min-width: 0; }
.service-content-col {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.service-icon-large {
  width: 58px;
  height: 58px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--seashell);
  border-radius: var(--radius-sm);
}
.service-icon-large .icon { width: 26px; height: 26px; }
.service-title-large {
  font-size: clamp(24px, 2.8vw, 36px);
  text-transform: uppercase;
  margin: 0;
  cursor: pointer;
}
.service-card-content .services-nav-pills {
  justify-content: flex-start;
  margin-bottom: 18px;
}
.service-card-content .nav-pill {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  line-height: 1.08;
  padding: 10px 16px;
  min-height: var(--tap);
  border-radius: 0;
}
.service-description-large {
  color: var(--ink-80);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 8px;
}
.service-description-large.hidden { display: none; }
.mt-4 { margin-top: 24px; }

/* ---------- Request-a-service wizard ---------- */
.service-request-section {
  padding-block: var(--section-pad);
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.kings-interactive-wizard {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  background: var(--seashell);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
}
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 44px);
  position: relative;
}
.wizard-progress::before {
  content: "";
  position: absolute;
  top: 21px;
  inset-inline: 40px;
  height: 1.5px;
  background: var(--line-soft);
}
.wizard-progress .step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.wizard-progress .step-num {
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--ink-60);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.wizard-progress .step-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.wizard-progress .step.active .step-num {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--seashell);
}
.wizard-progress .step.active .step-label { color: var(--purple); }
.wizard-progress .step.completed .step-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--seashell);
}

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: kings-panel-in .4s var(--ease); }
@keyframes kings-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-title {
  font-size: clamp(19px, 2vw, 24px);
  text-transform: uppercase;
  margin-bottom: 22px;
  text-align: center;
}
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 1fr));
  gap: 12px;
}
.cat-card { position: relative; cursor: pointer; }
.cat-card input { position: absolute; opacity: 0; pointer-events: none; }
.cat-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 110px;
  padding: 18px 14px;
  background: var(--surface);
  border: 1.5px solid var(--line-soft);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-80);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.cat-card .card-content .icon { width: 26px; height: 26px; color: var(--purple); }
.cat-card:hover .card-content { border-color: var(--purple); }
.cat-card input:checked + .card-content {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--seashell);
}
.cat-card input:checked + .card-content .icon { color: var(--seashell); }

.form-group-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { width: 100%; }
.form-group.half-width { flex: 1 1 260px; }
.size-selector { display: flex; flex-wrap: wrap; gap: 10px; }
.size-pill { position: relative; cursor: pointer; }
.size-pill input { position: absolute; opacity: 0; pointer-events: none; }
.size-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 10px 22px;
  background: var(--surface);
  border: 1.5px solid var(--line-soft);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-80);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.size-pill:hover span { border-color: var(--purple); }
.size-pill input:checked + span {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--seashell);
}

.panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
}
.panel-footer.right-align { justify-content: flex-end; }
.btn-form:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.btn-form.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-form.btn-outline:hover { border-color: var(--purple); background: transparent; color: var(--ink); }

.wizard-success-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
  background: var(--seashell);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.wizard-success-overlay.active { opacity: 1; visibility: visible; }
.wizard-success-overlay .icon,
.wizard-success-overlay > svg {
  width: 64px;
  height: 64px;
  color: var(--green);
}
.wizard-success-overlay h3 { font-size: 26px; text-transform: uppercase; margin: 8px 0 4px; }
.wizard-success-overlay p { color: var(--ink-60); max-width: 420px; margin: 0; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-hero-section {
  position: relative;
  background: var(--purple-deep);
  color: var(--seashell);
  text-align: center;
  padding: calc(var(--nav-h) + var(--nd-ticker-h) + clamp(56px, 9vw, 110px)) var(--gutter) clamp(56px, 8vw, 96px);
}
.legal-hero-title {
  font-size: clamp(30px, 4.6vw, 54px);
  text-transform: uppercase;
  color: var(--seashell);
  margin-bottom: 14px;
}
.legal-hero-subtitle {
  color: var(--on-dark-70);
  font-size: clamp(15px, 1.7vw, 18px);
  max-width: 680px;
  margin-inline: auto;
}
.legal-content-section { padding-block: var(--section-pad); }

/* ==========================================================================
   MOVED / FORMER DOMAIN
   ========================================================================== */
.moved-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse 80% 70% at 50% 12%, var(--purple-soft) 0%, var(--purple) 46%, var(--purple-deep) 100%);
  color: var(--seashell);
}
.moved-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  margin-inline: auto;
  padding: 22px var(--gutter) 8px;
}
.moved-logo {
  display: block;
  height: 42px;
  width: auto;
}
.moved-main {
  max-width: 1080px;
  margin-inline: auto;
  padding: 28px var(--gutter) 48px;
}
.moved-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-70);
}
.moved-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  color: var(--seashell);
}
.moved-lead {
  margin: 0 0 22px;
  max-width: 42rem;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--on-dark-70);
}
.moved-former {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 28px;
  padding: 8px 14px;
  border: 1px solid var(--on-dark-line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--on-dark-70);
}
.moved-former s {
  color: rgba(255, 249, 243, .55);
  text-decoration-thickness: 1px;
}
.moved-domain {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}
.moved-former-arrow { opacity: .6; }
.moved-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.moved-ctas .btn { min-width: min(100%, 220px); }
.moved-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.moved-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 132px;
  padding: 18px 18px 20px;
  background: rgba(255, 249, 243, .06);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius);
  color: var(--seashell);
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.moved-action:hover {
  background: rgba(255, 249, 243, .12);
  border-color: rgba(255, 249, 243, .32);
  color: var(--seashell);
}
.moved-action .icon { width: 22px; height: 22px; }
.moved-action-label {
  font-size: 15px;
  font-weight: 600;
}
.moved-action-meta {
  font-size: 13px;
  line-height: 1.45;
  color: var(--on-dark-70);
  word-break: break-word;
}
.moved-action--wa { border-color: rgba(30, 163, 78, .45); }
.moved-action--wa:hover { background: rgba(30, 163, 78, .16); }
.moved-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 12px;
}
.moved-panel {
  background: rgba(255, 249, 243, .06);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
}
.moved-panel h2 {
  margin: 0 0 16px;
  color: var(--seashell);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.moved-panel .contact-hours-list { margin: 0; padding: 0; list-style: none; }
.moved-location-copy {
  margin: 0 0 18px;
  color: var(--on-dark-70);
  font-size: 15px;
  line-height: 1.55;
}
.moved-panel .btn-ghost { width: 100%; }
.moved-foot {
  max-width: 1080px;
  margin-inline: auto;
  padding: 8px var(--gutter) 28px;
  color: var(--on-dark-70);
  font-size: 13px;
}
@media (max-width: 900px) {
  .moved-actions,
  .moved-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .moved-actions,
  .moved-grid { grid-template-columns: 1fr; }
  .moved-ctas .btn { width: 100%; }
  .moved-action { min-height: 0; }
}
.legal-cards-container {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.legal-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.legal-card-number {
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--seashell);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
}
.legal-card-title {
  font-size: clamp(17px, 1.8vw, 21px);
  text-transform: uppercase;
  margin: 0;
}
.legal-card-body p, .legal-card-body ul {
  color: var(--ink-80);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 10px;
}
.legal-card-body ul { padding-inline-start: 22px; }
.legal-card-body li { margin-bottom: 6px; }

.about-grid,
.services-list,
.contact-grid,
.footer-grid,
.service-row,
.portfolio-grid,
.features-grid,
.cta-band-inner,
.hero-buttons,
.form-group-row {
  min-width: 0;
}
.about-grid > *,
.services-list > *,
.contact-grid > *,
.footer-grid > *,
.service-row > *,
.portfolio-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* ==========================================================================
   RESPONSIVE — desktop >1024 · tablet 640–1024 · mobile <640
   ========================================================================== */
@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-nav-drawer,
  .mobile-drawer-overlay { display: none !important; }
}

@media (max-width: 1024px) {
  :root { --nav-h: 72px; }
  html:has(.nd-ticker:not([hidden])) { --nd-ticker-h: 40px; }
  .nav-menu-wrapper { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
  .site-logo { height: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }

  .section-header .services-nav-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .section-header .services-nav-pills::-webkit-scrollbar { display: none; }
  .section-header .nav-pill {
    flex: none;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .hero-headline { font-size: clamp(34px, 7vw, 64px); }
}

@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 26px; }
  .service-row:nth-child(even) > div:first-child { order: 0; }
  .service-row:nth-child(even) > .service-card-content { order: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  :root { --gutter: 16px; --section-pad: clamp(48px, 12vw, 72px); }
  body { font-size: 15px; }

  .quality-marquee-viewport {
    --marquee-fade: 80px;
    margin-inline: calc(-1 * var(--gutter));
    width: auto;
  }

  .mobile-nav-drawer {
    top: auto;
    inset-inline: 0;
    bottom: 0;
    width: 100%;
    max-height: min(88dvh, 680px);
    padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(110%);
  }
  html[dir="rtl"] .mobile-nav-drawer { transform: translateY(110%); }
  .mobile-nav-drawer.active { transform: translateY(0) !important; }
  .mobile-nav-drawer::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 4px auto 20px;
    border-radius: 4px;
    background: var(--on-dark-line);
  }
  .mobile-drawer-close {
    top: 8px;
    inset-inline-end: 8px;
  }

  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons .btn,
  .cta-band-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .wizard-progress .step-label { display: none; }
  .wizard-progress::before { inset-inline: 24px; }
  .panel-footer { flex-direction: column-reverse; }
  .panel-footer .btn-form { width: 100%; }
  .category-cards { grid-template-columns: repeat(2, 1fr); }
  .floating-widgets-wrapper {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    inset-inline-end: 16px;
  }
  input.wpcf7-form-control:not([type="submit"]),
  textarea.wpcf7-form-control,
  select.wpcf7-form-control,
  .kings-input { font-size: 16px; }
  .floating-contact-btn { display: none; }
  .page-breadcrumb { flex-wrap: wrap; }
  .hero-section { min-height: 100svh; }
  .scroll-indicator { display: none; }
}

@media (hover: none) {
  .portfolio-overlay { background: rgba(24, 10, 26, .45); }
  .portfolio-info { opacity: 1; transform: none; }
  .service-card:hover,
  .feature-item:hover,
  .portfolio-item:hover .portfolio-image img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .quality-marquee-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .quality-marquee-group { flex-wrap: wrap; justify-content: center; padding-inline-end: 0; gap: 20px 32px; }
  .quality-marquee-group[aria-hidden="true"] { display: none; }
  .nd-ticker-track {
    animation: none !important;
    will-change: auto;
    transform: none;
    width: 100%;
    justify-content: center;
  }
  .nd-ticker-group {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding-inline: 18px;
  }
  .nd-ticker-group[aria-hidden="true"],
  .nd-ticker-group > .nd-ticker-item ~ * { display: none; }
  .nd-ticker-copy {
    max-width: calc(100vw - 36px);
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
