/* =====================================================================
   NoVi Designs & Finishing — redesign layer
   Loaded after the legacy theme; everything here is additive/overriding.

   Performance rules for this file:
   - animate transform/opacity only; no backdrop-filter over moving content
   - no scroll-driven custom properties with transitions
   - will-change only on small, actually-moving elements
   ===================================================================== */

/* =====================================================================
   DESIGN SYSTEM TOKENS (docs/design-system.md)
   Theme lives on <html data-theme="dark|light">, set before first paint by the inline
   boot script in the locale layout. Dark is the default. Components use tokens only:
   never hardcode #000 / #fff / rgba(255,255,255,…) for page surfaces or page text.
   Text that sits on photography / video keeps literal white (it is not themed).
   ===================================================================== */
:root, :root[data-theme="dark"] {
  color-scheme: dark;
  /* ---- contract colours ---- */
  --novi-bg: #0a0a0a;
  --novi-bg-2: #111111;
  --novi-surface: #161513;
  --novi-line: rgba(255, 255, 255, 0.1);
  --novi-text: #edeae4;
  --novi-muted: rgba(237, 234, 228, 0.66);
  --novi-gold: #be9565;
  --novi-gold-hi: #e2c192;
  --novi-on-gold: #0e0e0e;
  --novi-grad-gold: linear-gradient(100deg, #7a5a36 0%, #be9565 38%, #e2c192 55%, #be9565 72%, #7a5a36 100%);
  --novi-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.9);
  --novi-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.85) 100%);
  /* ---- helpers (derived; redefine together with the contract colours) ---- */
  --novi-strong: #ffffff;                 /* headings / emphasis on the page ground */
  --novi-text-2: rgba(237, 234, 228, 0.82); /* long-form body copy */
  --novi-line-2: rgba(255, 255, 255, 0.18);
  --novi-fg-rgb: 255, 255, 255;           /* rgba(var(--novi-fg-rgb), a): tints drawn in the text colour */
  --novi-bg-rgb: 10, 10, 10;              /* rgba(var(--novi-bg-rgb), a): translucent page ground */
  --novi-surface-rgb: 22, 21, 19;         /* rgba(var(--novi-surface-rgb), a): translucent cards */
  --novi-gold-rgb: 190, 149, 101;
  --novi-gold-hi-rgb: 226, 193, 146;
  --novi-header-bg: #0b0b0b;
  --novi-panel: #0f0f0f;                  /* drawers, dropdowns, dialogs */
  --novi-field: rgba(255, 255, 255, 0.04);/* form fields */
  --novi-arch-ink: #d8d2c8;               /* 2D plan lines of the animated background */
  --novi-arch-ink-a: 0.12;
  --novi-stage-bg: linear-gradient(180deg, #11100e, #080807 70%, #0b0a08); /* flipbook table */
  --novi-danger: #ff8f7a;                 /* form errors */
  --novi-danger-text: #ffb3a6;
  --novi-danger-rgb: 255, 143, 122;
  /* legacy aliases kept so older selectors follow the theme */
  --novi-ink: var(--novi-bg);
  --novi-ink-2: #121212;
  --novi-ink-3: #1a1a1a;
  --novi-gold-deep: #8b6239;
  --novi-gold-grad: var(--novi-grad-gold);
}
:root[data-theme="light"] {
  color-scheme: light;
  --novi-bg: #f6f3ee;
  --novi-bg-2: #efeae2;
  --novi-surface: #ffffff;
  --novi-line: rgba(14, 14, 14, 0.1);
  --novi-text: #121212;
  --novi-muted: rgba(18, 18, 18, 0.64);
  --novi-gold: #87643a;                   /* contract #8F6A3E, nudged to pass AA for 12px labels on --novi-bg */
  --novi-gold-hi: #6e5130;
  --novi-on-gold: #ffffff;
  --novi-grad-gold: linear-gradient(100deg, #6e5130 0%, #87643a 38%, #9a7244 55%, #87643a 72%, #6e5130 100%);
  --novi-shadow: 0 22px 44px -28px rgba(40, 30, 18, 0.35);
  --novi-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.8) 100%);
  --novi-strong: #0e0e0e;
  --novi-text-2: rgba(18, 18, 18, 0.8);
  --novi-line-2: rgba(14, 14, 14, 0.2);
  --novi-fg-rgb: 14, 14, 14;
  --novi-bg-rgb: 246, 243, 238;
  --novi-surface-rgb: 255, 255, 255;
  --novi-gold-rgb: 135, 100, 58;
  --novi-gold-hi-rgb: 110, 81, 48;
  --novi-header-bg: #f6f3ee;
  --novi-panel: #fbf9f6;
  --novi-field: #ffffff;
  --novi-arch-ink: #2a241d;
  --novi-arch-ink-a: 0.1;
  --novi-stage-bg: linear-gradient(180deg, #ece6dc, #e2dacd 70%, #e8e1d6);
  --novi-danger: #b3402a;
  --novi-danger-text: #9a3522;
  --novi-danger-rgb: 179, 64, 42;
  --novi-ink-2: #efeae2;
  --novi-ink-3: #e7e1d7;
  --novi-gold-deep: #6e5130;
}

/* ---- type ---- */
:root {
  --ff-head: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ff-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --fs-display: clamp(34px, 2.2vw + 22px, 56px);
  --fs-h2: clamp(28px, 1.5vw + 20px, 42px);
  --fs-h3: clamp(20px, 0.6vw + 17px, 26px);
  --fs-lead: clamp(17px, 0.3vw + 15.5px, 20px);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-eyebrow: 12px;
  --fs-stat: clamp(36px, 2vw + 26px, 60px);
  /* derived steps (between the contract sizes) */
  --fs-h4: clamp(18px, 0.3vw + 16.5px, 21px);
  --fs-h5: 17px;
  --fs-xs: 12.5px;
  --ls-eyebrow: 0.18em;
  --tt-eyebrow: uppercase;
  --fw-head: 500;
  --lh-head: 1.18;
  --ls-head: -0.01em;
  --lh-body: 1.65;
  --sec-pad: clamp(64px, 7vw, 128px);
  --container: 1320px;
}
@media (min-width: 1600px) { :root { --fs-body: 17px; } }
/* Arabic: one family for everything, no tracking, no capitals, looser leading */
[dir="rtl"] {
  --ff-head: "Tajawal", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --ff-body: "Tajawal", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --fs-eyebrow: 14px;
  --ls-eyebrow: 0;
  --tt-eyebrow: none;
  --fw-head: 700;
  --lh-head: 1.4;
  --ls-head: 0;
  --lh-body: 1.85;
}

:root {
  --novi-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  /* older scale names now point at the contract tokens */
  --novi-fs-body: var(--fs-body);
  --novi-fs-small: var(--fs-small);
  --novi-fs-nav: 13px;
  --novi-fs-h1: var(--fs-display);
  --novi-fs-h2: var(--fs-h2);
  --novi-fs-h3: var(--fs-h3);
  --novi-fs-h4: var(--fs-h4);
  --novi-fs-h5: var(--fs-h5);
  --novi-fs-h6: 16px;
  --novi-lh-body: var(--lh-body);
  --novi-btn-h: clamp(40px, 38px + 0.56vw, 46px);
  --novi-sec-pad: var(--sec-pad);
  --novi-gap: clamp(20px, 15px + 1.4vw, 36px);
  --novi-container: var(--container);
  --novi-header-h: 76px;
  --novi-logo-h: 42px;
  --novi-radius: 14px;
}
@media (max-width: 1024px) {
  :root { --novi-header-h: 64px; --novi-logo-h: 34px; }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
/* the header is fixed: anchors must never land underneath it */
html { scroll-padding-top: calc(var(--novi-header-h) + 12px); }
:target, [id]:target, .novi-anchor { scroll-margin-top: calc(var(--novi-header-h) + 12px); }
body { background: var(--novi-ink); }
/* the theme sets overflow-x:hidden on html/body, which makes body a clipping box and
   silently disables position:sticky (the catalogue stage). clip gives the same
   "no sideways scroll" without creating a scroll container. */
html, body { overflow-x: clip !important; overflow-y: visible !important; }
#page { position: relative; z-index: 1; }
.novi-legacy, .novi-contents { display: contents; }
.novi-sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
img { max-width: 100%; }
img[data-novi-dim] { height: auto; }
iframe { max-width: 100%; border: 0; }

/* ---------- visible focus everywhere (the theme's outline:none on nav links is overridden) ---------- */
:focus-visible { outline: 2px solid var(--novi-gold-hi) !important; outline-offset: 3px; }
a:focus:not(:focus-visible) { outline: none; }
button:focus:not(:focus-visible) { outline: none; }

/* =====================================================================
   Typography + spacing (legacy theme selectors)
   ===================================================================== */
body, button, input, select, optgroup, textarea {
  font-family: var(--ff-body);
  font-size: var(--fs-body); line-height: var(--lh-body); color: var(--novi-text-2);
}
/* Tajawal has a smaller x-height: nudge Arabic body copy up (leading comes from --lh-body) */
body.novi-rtl { font-size: calc(var(--fs-body) + 1px); }
/* one heading voice everywhere (the legacy theme set Titillium, #fff or #1a1a1a, 1.4 leading) */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--ff-head); font-weight: var(--fw-head); line-height: var(--lh-head);
  letter-spacing: var(--ls-head); margin: 0 0 0.6em; color: var(--novi-strong);
}
h1, .h1 { font-size: var(--fs-display); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); }
h4, .h4 { font-size: var(--fs-h4); }
h5, .h5 { font-size: var(--fs-h5); font-weight: 600; }
h6, .h6 { font-size: 16px; font-weight: 600; }
.novi-rtl :is(h5, h6, .h5, .h6) { font-weight: 700; }
p { margin: 0 0 1em; }
.subtitle, label, .form-group label { color: var(--novi-muted); }

/* the eyebrow: the one small label style (Montserrat 600 · 12px · .18em · caps; Arabic Tajawal 14px) */
.novi-eyebrow, .ot-heading > span {
  display: inline-block; font-family: var(--ff-head); font-size: var(--fs-eyebrow); font-weight: 600; line-height: 1.4;
  letter-spacing: var(--ls-eyebrow); text-transform: var(--tt-eyebrow); color: var(--novi-gold); margin-bottom: 10px;
}
.ot-heading h2, .ot-heading .main-heading, .ot-heading .main-heading span { font-size: var(--fs-h2); line-height: var(--lh-head); color: var(--novi-strong); }
.ot-heading.is-dots { padding-bottom: 22px; }
.section-title-area .title { font-size: var(--fs-h2); line-height: var(--lh-head); color: var(--novi-strong); }
.section-title-area .subtitle { font-family: var(--ff-head); font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--ls-eyebrow); text-transform: var(--tt-eyebrow); }
.section-space--bottom--80 { margin-bottom: clamp(28px, 4vw, 56px) !important; }
.section-space--bottom--60 { margin-bottom: clamp(24px, 3vw, 40px) !important; }

/* container + section rhythm */
@media (min-width: 1200px) {
  .container { max-width: min(var(--container), 100%); }
}
section, .section-padd { padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); }
.section-padd-top { padding-top: var(--sec-pad); }
.section-padd-bot { padding-bottom: var(--sec-pad); }
.our-portfolio-1, .story-1, .services-1 { padding-top: var(--sec-pad) !important; padding-bottom: var(--sec-pad) !important; }
section section, .about-company > .container > section { padding-top: 0; padding-bottom: 0; }
.novi-hero { padding: 0 !important; }

/* legacy content blocks: icons and card titles in proportion */
.services-box h5, .projects-box h5, .portfolio-info h5 { font-size: var(--fs-h5); }
.industry-two-slider__single-item__content .title { font-size: var(--fs-h4); margin: 14px 0 8px; }
.industry-two-slider__single-item__content .subtitle { font-size: var(--fs-small); line-height: 1.6; }
.story-1 .story-title, .story-title { font-size: var(--fs-h5); }
.services-box img[width="84"] { width: 64px; }
[class^="ot-flaticon-"]::before, [class*=" ot-flaticon-"]::before { font-size: 18px; }
.novi-hero__cta i::before { font-size: 14px; }
.novi-articles__more i::before { font-size: 12px; }
.side-panel-close i::before { font-size: 15px; }
.projects-box .overlay i::before { font-size: 22px; }
.fab, .fas, .far { font-size: 1em; }

/* legacy rich text (CMS bodies, captured .aspx fragments, the side panel) was pasted from Word with
   inline Times New Roman / Calibri / 12pt / #FFF / teal: it follows the page's type and theme instead */
:is(#ContentPlaceHolder1_LblContent, .services-detail-content, .side-panel-cinfo, .about-company, .novi-legacy, .blog-post, .team-clients)
  :is([style*="font-family"], font[face]) { font-family: inherit !important; }
:is(#ContentPlaceHolder1_LblContent, .services-detail-content, .side-panel-cinfo, .about-company, .novi-legacy, .blog-post, .team-clients)
  :is([style*="font-size"], font[size]) { font-size: inherit !important; }
:is(#ContentPlaceHolder1_LblContent, .services-detail-content, .side-panel-cinfo, .about-company, .novi-legacy, .blog-post, .team-clients)
  :is([style*="color"], font[color]):not(.novi-btn):not([class*="nh-"]) { color: inherit !important; }
:is(#ContentPlaceHolder1_LblContent, .services-detail-content, .about-company) :is(a:not([class]), a[class=""]) {
  color: var(--novi-gold-hi); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(var(--novi-gold-rgb), 0.45);
}
:is(#ContentPlaceHolder1_LblContent, .services-detail-content, .about-company) :is(strong, b) { color: var(--novi-strong); font-weight: 600; }

/* ---------- shared buttons ---------- */
.novi-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--novi-btn-h); padding: 0 20px; border: 1px solid var(--novi-line-2); border-radius: 999px;
  background: rgba(var(--novi-fg-rgb), 0.03); color: var(--novi-strong) !important; text-decoration: none !important;
  font: 600 12px/1 var(--ff-head); letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background-color 0.3s var(--novi-ease), border-color 0.3s, color 0.3s, transform 0.3s var(--novi-ease);
  white-space: nowrap;
}
.novi-rtl .novi-btn { letter-spacing: 0; font-size: 14px; font-weight: 700; }
.novi-btn:hover { border-color: var(--novi-gold); background-color: rgba(var(--novi-gold-rgb), 0.1); transform: translateY(-1px); }
.novi-btn--gold { background: var(--novi-grad-gold); background-size: 200% 100%; border-color: transparent; color: var(--novi-on-gold) !important; }
.novi-btn--gold:hover { background-position: 100% 0; color: var(--novi-on-gold) !important; border-color: transparent; }
.novi-linkbtn {
  background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(var(--novi-gold-rgb), 0.5);
}
.novi-linkbtn:hover { color: var(--novi-gold-hi); }
/* the legacy theme button: 57 px tall -> ~44 px */
.octf-btn { padding: 11px 26px; font-family: var(--ff-head); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; line-height: 1.6; min-height: var(--novi-btn-h); }
.novi-rtl .octf-btn { font-size: 14px; letter-spacing: 0; }
/* =====================================================================
   Architectural background — painted once, moved with transforms
   ===================================================================== */
.novi-arch {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; contain: strict;
  background: radial-gradient(1200px 800px at 80% -10%, rgba(var(--novi-gold-rgb), 0.06), transparent 60%), var(--novi-bg);
}
.novi-arch__plane { position: absolute; inset: -12%; }
.novi-arch__lines, .novi-arch__glow-lines { position: absolute; inset: 0; }
.novi-arch__lines::before, .novi-arch__lines::after,
.novi-arch__glow-lines::before, .novi-arch__glow-lines::after {
  content: ""; position: absolute; inset: 0;
  -webkit-mask: url(/brand/plan-lines.webp) center / cover no-repeat;
          mask: url(/brand/plan-lines.webp) center / cover no-repeat;
}
/* a second, rotated copy of the drawing fills the corners the original leaves empty */
.novi-arch__lines::after, .novi-arch__glow-lines::after { transform: rotate(180deg); }
/* the plan is drawn in --novi-arch-ink: pale lines on the dark ground, dark lines on the light ground */
.novi-arch__lines::before { background: var(--novi-arch-ink); opacity: var(--novi-arch-ink-a); }
.novi-arch__lines::after { background: var(--novi-arch-ink); opacity: calc(var(--novi-arch-ink-a) * 0.58); }
.novi-arch__glow-lines::before { background: var(--novi-gold-hi); opacity: 0.9; }
.novi-arch__glow-lines::after { background: var(--novi-gold-hi); opacity: 0.75; }
:root[data-theme="light"] .novi-arch__glow-lines::before { background: var(--novi-gold); opacity: 0.7; }
:root[data-theme="light"] .novi-arch__glow-lines::after { background: var(--novi-gold); opacity: 0.55; }
@keyframes novi-drift {
  from { transform: scale(1) rotate(0deg) translate3d(0, 0, 0); }
  to   { transform: scale(1.06) rotate(-1deg) translate3d(-1.5%, 1%, 0); }
}
/* desktop only (SiteEnhancements adds .is-live): slow transform-only drift */
.novi-arch.is-live .novi-arch__plane, .novi-arch.is-live .novi-arch__glow-lines {
  animation: novi-drift 70s ease-in-out infinite alternate; will-change: transform;
}
/* the pointer lens: a 520 px circle moved by transform; its contents are counter-shifted so the
   gold lines stay registered with the drawing underneath */
.novi-arch__glow {
  position: absolute; left: 0; top: 0; width: 520px; height: 520px; overflow: hidden; border-radius: 50%;
  -webkit-mask: radial-gradient(closest-side, #000 0%, rgba(0,0,0,.55) 45%, transparent 100%);
          mask: radial-gradient(closest-side, #000 0%, rgba(0,0,0,.55) 45%, transparent 100%);
  opacity: 0; transition: opacity 0.6s; will-change: transform;
}
.novi-arch__glow-inner { position: absolute; left: 0; top: 0; width: 100vw; height: 100vh; will-change: transform; }
.novi-arch__glow-lines { inset: -12%; }
.novi-arch.is-pointer .novi-arch__glow { opacity: 1; }
/* CAD-style crosshair that follows the pointer (transform only) */
.novi-arch__cross, .novi-arch__reticle { position: absolute; left: 0; top: 0; opacity: 0; transition: opacity 0.5s; will-change: transform; }
.novi-arch__cross--x { right: 0; height: 1px; background: repeating-linear-gradient(90deg, rgba(var(--novi-gold-rgb), 0.28) 0 6px, transparent 6px 12px); }
.novi-arch__cross--y { bottom: 0; width: 1px; background: repeating-linear-gradient(180deg, rgba(var(--novi-gold-rgb), 0.28) 0 6px, transparent 6px 12px); }
.novi-arch__reticle { width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1px solid rgba(var(--novi-gold-hi-rgb), 0.55); border-radius: 50%; }
.novi-arch__reticle::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; margin: -2px 0 0 -2px;
  background: var(--novi-gold-hi); border-radius: 50%;
}
.novi-arch.is-pointer .novi-arch__cross, .novi-arch.is-pointer .novi-arch__reticle { opacity: 1; }
.novi-arch:not(.is-live) .novi-arch__glow, .novi-arch:not(.is-live) .novi-arch__cross, .novi-arch:not(.is-live) .novi-arch__reticle { display: none; }

/* let the living background show through the legacy surfaces */
.bg-dark-theratio { background-color: rgba(var(--novi-bg-rgb), 0.62) !important; }
.services-1 { background-color: rgba(var(--novi-surface-rgb), 0.72) !important; }
.story-1, .our-portfolio-1, .cta, section.about-company { background-image: none !important; background-color: rgba(var(--novi-bg-rgb), 0.35) !important; }
/* legacy theme light surfaces (.bg-light, white blocks) follow the theme: black in dark, paper in light */
.bg-light, .bg-white, .bg-gray, .bg-grey { background-color: rgba(var(--novi-bg-rgb), 0.5) !important; }
.text-dark, .text-black { color: var(--novi-strong) !important; }
.story-author { background-image: none !important; }

/* =====================================================================
   Header + dynamic logo (state lives on .site-header, set by SiteEnhancements)
   Solid surfaces: no backdrop blur over the video hero / moving background.
   ===================================================================== */
/* Layering contract, so nothing can render on top of (or bleed through) the header:
   background art 0 · page content 1 · award badge 60 · back-to-top 1000 ·
   header 1200 · side panel / drawer 9999 · catalogue flipbook overlay · intro 100010. */
.site-header {
  position: fixed !important; top: 0; left: 0; right: 0; width: 100%;
  /* opaque once the page has scrolled: a translucent bar let the gold CTA band and
     the portfolio grid show through it (the collision in the owner's screenshot) */
  background: var(--novi-header-bg) !important; box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(var(--novi-fg-rgb), 0.07);
  transition: background-color 0.35s var(--novi-ease), box-shadow 0.35s !important;
  z-index: 1200 !important;
}
#back-to-top { z-index: 1000 !important; }
.site-header[data-surface="clear"] { background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)) !important; box-shadow: none; }
/* before hydration (kept in separate rules: an unsupported :has() must not void the others) */
body:has(.novi-hero) .site-header:not([data-surface]) { background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)) !important; box-shadow: none; }
/* The header follows the THEME, not the section under it: a "light" section tone (the old paper
   chapter) no longer turns the bar white in dark theme. Over a hero the bar is clear in both themes. */
.site-header[data-surface="light"] { background: var(--novi-header-bg) !important; }
:root[data-theme="light"] .site-header:not([data-surface="clear"]) { box-shadow: 0 10px 30px -22px rgba(40, 30, 18, 0.35), 0 1px 0 rgba(var(--novi-fg-rgb), 0.08); }

/* ---------- bar: logo · navigation · utilities ---------- */
.novi-hdr__bar {
  display: flex; align-items: center; gap: clamp(16px, 1.6vw, 40px);
  height: var(--novi-header-h); padding-inline: clamp(16px, 2.4vw, 64px);
}
/* desktop: the navigation is centred on the page itself, not on the space left between the
   logo and the utilities; the side tracks never shrink below their content, so nothing overlaps */
@media (min-width: 1200px) {
  .novi-hdr__bar { display: grid; grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr); }
  .novi-hdr__logo { justify-self: start; }
  .novi-hdr__utils { justify-self: end; }
}
.novi-hdr__logo { flex: 0 0 auto; display: flex; align-items: center; height: 100%; }
.novi-hdr__logo:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: 4px; }

.novi-logo { position: relative; display: inline-block; height: var(--novi-logo-h); aspect-ratio: 252 / 90; vertical-align: middle; }
.novi-logo__img {
  position: absolute; inset: 0; width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important;
  object-fit: contain; opacity: 0; transition: opacity 0.4s var(--novi-ease);
}
.novi-logo__img.is-gold { position: relative; opacity: 1; }
.site-header[data-logo] .novi-logo__img.is-gold { opacity: 0; }
.site-header[data-logo="gold"] .novi-logo__img.is-gold,
.site-header[data-logo="white"] .novi-logo__img.is-white,
.site-header[data-logo="black"] .novi-logo__img.is-black { opacity: 1; }
body:has(.novi-hero, .inner-page) .site-header:not([data-logo]) .novi-logo__img.is-gold { opacity: 0; }
body:has(.novi-hero, .inner-page) .site-header:not([data-logo]) .novi-logo__img.is-white { opacity: 1; }
.novi-side-logo { width: 132px; height: auto; }

/* logo per theme. Dark: gold on the bar, white over media (SiteEnhancements sets data-logo); the old
   "light section" tone maps to gold because every section is black in dark theme.
   Light: the black mark on the paper bar, white only while the bar is clear over the hero film. */
:root:not([data-theme="light"]) .site-header[data-logo="black"] .novi-logo__img.is-black { opacity: 0; }
:root:not([data-theme="light"]) .site-header[data-logo="black"] .novi-logo__img.is-gold { opacity: 1; }
:root[data-theme="light"] .site-header:not([data-surface="clear"]) .novi-logo__img { opacity: 0; }
:root[data-theme="light"] .site-header:not([data-surface="clear"]) .novi-logo__img.is-black { opacity: 1; }
:root[data-theme="light"] body:has(.novi-hero) .site-header:not([data-surface]) .novi-logo__img.is-black { opacity: 0; }
:root[data-theme="light"] body:has(.novi-hero) .site-header:not([data-surface]) .novi-logo__img.is-white { opacity: 1; }
/* any other logo image: pair a gold .novi-theme-logo with a black .novi-theme-logo--light, or use the
   single-image swap */
.novi-theme-logo--light { display: none !important; }
:root[data-theme="light"] .novi-theme-logo--light { display: inline-block !important; }
:root[data-theme="light"] .novi-theme-logo { display: none !important; }
:root[data-theme="light"] .novi-theme-logo-swap { content: url(/brand/logo-black.webp); }

/* header foreground: the page text colour on the bar, white while the bar is clear over the hero */
.site-header { --hdr-rgb: var(--novi-fg-rgb); }
.site-header[data-surface="clear"], body:has(.novi-hero) .site-header:not([data-surface]) { --hdr-rgb: 255, 255, 255; }

/* primary navigation: centred in the free space, even rhythm */
.novi-nav { flex: 1 1 auto; min-width: 0; height: 100%; display: flex; justify-content: center; }
.novi-nav__list { display: flex; align-items: stretch; gap: clamp(2px, 0.9vw, 26px); height: 100%; margin: 0; padding: 0; list-style: none; }
.novi-nav__item { position: relative; display: flex; align-items: center; }
.novi-nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 7px; height: 44px; padding: 0 10px; margin: 0;
  appearance: none; background: none; border: 0; border-radius: 0; cursor: pointer; white-space: nowrap;
  font: 600 var(--novi-fs-nav)/1 var(--ff-head); letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(var(--hdr-rgb), 0.84) !important; text-decoration: none !important; transition: color 0.25s var(--novi-ease);
}
.novi-rtl .novi-nav__link { font: 500 15px/1 var(--ff-head); letter-spacing: 0; text-transform: none; }
.novi-nav__link::after {
  content: ""; position: absolute; inset-inline: 10px; bottom: 5px; height: 1px; background: var(--novi-gold-hi);
  transform: scaleX(0); transition: transform 0.35s var(--novi-ease);
}
.novi-nav__item:hover > .novi-nav__link, .novi-nav__link:focus-visible, .novi-nav__item.is-open > .novi-nav__link { color: rgb(var(--hdr-rgb)) !important; }
.novi-nav__item:hover > .novi-nav__link::after, .novi-nav__link:focus-visible::after, .novi-nav__item.is-open > .novi-nav__link::after { transform: scaleX(1); }
.novi-nav__item.is-current > .novi-nav__link { color: var(--novi-gold-hi) !important; }
.site-header[data-surface="clear"] .novi-nav__item.is-current > .novi-nav__link { color: #e2c192 !important; }
.novi-nav__item.is-current > .novi-nav__link::after { transform: scaleX(1); background: var(--novi-gold); }
.novi-nav__link:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: 2px; }
.novi-nav__caret {
  display: inline-block; width: 5px; height: 5px; margin-top: -3px; flex: none;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg);
  opacity: 0.7; transition: transform 0.3s var(--novi-ease);
}
.novi-nav__item:hover .novi-nav__caret, .novi-nav__item.is-open .novi-nav__caret { transform: translateY(2px) rotate(225deg); }

.novi-nav__sub {
  position: absolute; top: calc(50% + 26px); inset-inline-start: -6px; min-width: 250px; margin: 0; padding: 10px 0; list-style: none;
  background: var(--novi-panel); border: 1px solid var(--novi-line); border-top: 1px solid var(--novi-gold); border-radius: 0 0 10px 10px;
  box-shadow: var(--novi-shadow);
  opacity: 0; visibility: hidden; transform: translate3d(0, 8px, 0);
  transition: opacity 0.22s var(--novi-ease), transform 0.3s var(--novi-ease), visibility 0s linear 0.3s;
}
/* hover bridge: the pointer can travel from the link to the panel without closing it */
.novi-nav__sub::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 22px; }
.novi-nav__item:hover > .novi-nav__sub, .novi-nav__item:focus-within > .novi-nav__sub, .novi-nav__item.is-open > .novi-nav__sub {
  opacity: 1; visibility: visible; transform: none; transition: opacity 0.22s var(--novi-ease), transform 0.3s var(--novi-ease), visibility 0s;
}
.novi-nav__item.is-dismissed > .novi-nav__sub { opacity: 0; visibility: hidden; transform: translate3d(0, 8px, 0); }
.novi-nav__sub a {
  position: relative; display: block; padding: 10px 22px; white-space: nowrap;
  font: 400 15px/1.35 var(--ff-body); letter-spacing: 0; color: rgba(var(--novi-fg-rgb), 0.76) !important; text-decoration: none !important;
  transition: color 0.2s, background-color 0.2s, padding 0.3s var(--novi-ease);
}
.novi-rtl .novi-nav__sub a { font: 400 15px/1.45 var(--ff-body); }
.novi-nav__sub a::before {
  content: ""; position: absolute; inset-inline-start: 10px; top: 50%; width: 6px; height: 1px; background: var(--novi-gold);
  transform: scaleX(0); transition: transform 0.3s var(--novi-ease);
}
.novi-nav__sub a:hover, .novi-nav__sub a:focus-visible, .novi-nav__sub a[aria-current="page"] {
  color: var(--novi-gold-hi) !important; background: rgba(var(--novi-fg-rgb), 0.03); padding-inline-start: 28px;
}
.novi-nav__sub a:hover::before, .novi-nav__sub a:focus-visible::before, .novi-nav__sub a[aria-current="page"]::before { transform: scaleX(1); }
.novi-nav__sub a:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: -2px; }

/* utility cluster: always the far inline-end corner (top-right EN, top-left AR) */
.novi-hdr__utils { flex: 0 0 auto; display: flex; align-items: center; gap: clamp(8px, 0.7vw, 14px); margin-inline-start: auto; }
.novi-hdr__cta {
  display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 20px; border-radius: 999px; white-space: nowrap;
  background: var(--novi-gold); color: var(--novi-on-gold) !important; text-decoration: none !important;
  font: 600 12px/1 var(--ff-head); letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(var(--novi-gold-hi-rgb), 0); transition: background-color 0.3s, box-shadow 0.35s var(--novi-ease);
}
.novi-rtl .novi-hdr__cta { font: 700 14px/1 var(--ff-head); letter-spacing: 0; }
.novi-hdr__cta:hover, .novi-hdr__cta:focus-visible { background: var(--novi-gold-hi); box-shadow: 0 8px 26px -10px rgba(var(--novi-gold-hi-rgb), 0.7); }
.novi-hdr__cta:focus-visible { outline: 2px solid rgb(var(--hdr-rgb)); outline-offset: 2px; }

.novi-lang {
  display: inline-flex; align-items: center; height: 40px; padding: 3px; border-radius: 999px;
  border: 1px solid rgba(var(--hdr-rgb), 0.24); background: rgba(var(--hdr-rgb), 0.03); direction: ltr;
}
.novi-lang__opt {
  display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 32px; padding: 0 9px; border-radius: 999px;
  font: 600 12px/1 var(--ff-head); letter-spacing: 0.1em; color: rgba(var(--hdr-rgb), 0.72) !important; text-decoration: none !important;
  transition: color 0.2s, background-color 0.25s;
}
.novi-lang__opt[lang="ar"] { font: 700 16px/1 "Tajawal", system-ui, sans-serif; letter-spacing: 0; padding-bottom: 2px; }
.novi-lang__opt[lang="en"] { font-family: "Montserrat", system-ui, sans-serif; }
.novi-lang__opt.is-current { background: rgba(var(--novi-gold-rgb), 0.2); color: var(--novi-gold-hi) !important; box-shadow: inset 0 0 0 1px rgba(var(--novi-gold-hi-rgb), 0.45); cursor: default; }
.site-header[data-surface="clear"] .novi-lang__opt.is-current { color: #e2c192 !important; }
a.novi-lang__opt:hover, a.novi-lang__opt:focus-visible { color: rgb(var(--hdr-rgb)) !important; background: rgba(var(--hdr-rgb), 0.08); }
a.novi-lang__opt:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: 1px; }
.novi-lang__sep { width: 1px; height: 14px; margin: 0 2px; background: rgba(var(--hdr-rgb), 0.2); }

.novi-hdr__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; margin: 0;
  appearance: none; background: none; border: 1px solid transparent; border-radius: 50%; cursor: pointer; color: rgb(var(--hdr-rgb));
  transition: border-color 0.3s, background-color 0.3s;
}
.novi-hdr__icon:hover, .novi-hdr__icon:focus-visible { border-color: rgba(var(--novi-gold-hi-rgb), 0.5); background: rgba(var(--hdr-rgb), 0.04); }
.novi-hdr__icon:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: 2px; }
/* legacy theme.css paints `.mmenu-toggle button` white, which hid the phone menu button on the light header */
.mmenu-toggle .novi-hdr__icon { color: rgb(var(--hdr-rgb)); }
.novi-burger { position: relative; display: block; width: 22px; height: 10px; }
.novi-burger i {
  position: absolute; inset-inline-end: 0; display: block; height: 1.5px; border-radius: 2px; background: currentColor !important; color: inherit !important;
  transition: transform 0.35s var(--novi-ease), width 0.35s var(--novi-ease), top 0.35s var(--novi-ease);
}
.novi-burger i:first-child { top: 0; width: 22px; }
.novi-burger i:last-child { top: 8.5px; width: 14px; }
.novi-hdr__icon:hover .novi-burger i:last-child { width: 22px; }
#panel-btn.active .novi-burger i, #mmenu-toggle.active .novi-burger i { top: 4.25px; width: 22px; }
#panel-btn.active .novi-burger i:first-child, #mmenu-toggle.active .novi-burger i:first-child { transform: rotate(45deg); }
#panel-btn.active .novi-burger i:last-child, #mmenu-toggle.active .novi-burger i:last-child { transform: rotate(-45deg); }
#mmenu-toggle { display: none; }

/* ---------- theme toggle (sits right after the EN|ع pill; visible at every width) ---------- */
.novi-theme-toggle {
  position: relative; flex: none; display: inline-grid; place-items: center; width: 40px; height: 40px; padding: 0; margin: 0;
  appearance: none; cursor: pointer; border-radius: 50%; color: rgba(var(--hdr-rgb), 0.86);
  border: 1px solid rgba(var(--hdr-rgb), 0.24); background: rgba(var(--hdr-rgb), 0.03);
  transition: color 0.25s, border-color 0.3s, background-color 0.3s;
}
.novi-theme-toggle:hover { color: var(--novi-gold-hi); border-color: rgba(var(--novi-gold-hi-rgb), 0.55); }
.site-header[data-surface="clear"] .novi-theme-toggle:hover { color: #e2c192; }
.novi-theme-toggle:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: 2px; }
.novi-theme-toggle__icon { grid-area: 1 / 1; transition: opacity 0.35s var(--novi-ease), transform 0.5s var(--novi-ease); }
/* the icon shows the CURRENT theme: moon in dark, sun in light */
.novi-theme-toggle__icon.is-sun { opacity: 0; transform: rotate(-60deg) scale(0.6); }
:root[data-theme="light"] .novi-theme-toggle__icon.is-sun { opacity: 1; transform: none; }
:root[data-theme="light"] .novi-theme-toggle__icon.is-moon { opacity: 0; transform: rotate(40deg) scale(0.6); }

/* colour changes between themes are quick cross-fades on the big surfaces only (no layout work) */
@media (prefers-reduced-motion: no-preference) {
  html.novi-theme-anim body, html.novi-theme-anim .site-header, html.novi-theme-anim .novi-arch,
  html.novi-theme-anim .nh, html.novi-theme-anim section, html.novi-theme-anim .novi-footer {
    transition: background-color 0.35s ease, color 0.35s ease !important;
  }
}
/* large displays (the owner reviews at ~2000 px): a taller bar and larger type, same layout */
@media (min-width: 1800px) {
  :root { --novi-header-h: 88px; --novi-logo-h: 48px; --novi-fs-nav: 13.5px; }
  .novi-nav__link { padding: 0 14px; }
  .novi-rtl .novi-nav__link { font-size: 16.5px; }
  .novi-nav__link::after { inset-inline: 14px; }
  .novi-nav__sub { top: calc(50% + 28px); }
  .novi-hdr__cta { height: 44px; padding: 0 24px; font-size: 12.5px; }
  .novi-rtl .novi-hdr__cta { font-size: 15px; }
  .novi-lang { height: 44px; }
  .novi-lang__opt { height: 36px; min-width: 42px; }
}
/* tighter rhythm while the full navigation still fits */
@media (min-width: 1200px) and (max-width: 1439px) {
  .novi-hdr__bar { gap: 12px; padding-inline: 20px; }
  .novi-nav__list { gap: 0; }
  :root { --novi-fs-nav: 12px; }
  .novi-nav__link { padding: 0 8px; letter-spacing: 0.04em; }
  .novi-rtl .novi-nav__link { font-size: 14.5px; }
  .novi-hdr__cta { padding: 0 15px; letter-spacing: 0.1em; }
}
/* compact header: logo · language pill · menu button */
@media (max-width: 1199px) {
  .novi-nav, .novi-hdr__utils > .novi-hdr__cta, #panel-btn { display: none !important; }
  #mmenu-toggle { display: block; }
}
@media (max-width: 359px) {
  .novi-hdr__bar .novi-lang__opt { min-width: 34px; padding: 0 7px; }
}

/* ---------- side panel + drawer: hidden panels are not focusable ---------- */
.side-panel, .mmenu-wrapper { visibility: hidden; transition: transform 0.4s var(--novi-ease), visibility 0s linear 0.4s !important; }
.side-panel.side-panel-open, .mmenu-wrapper.mmenu-open { visibility: visible; transition: transform 0.4s var(--novi-ease), visibility 0s !important; }
.side-panel { width: min(380px, 100vw); background: var(--novi-panel) !important; border-inline-start: 1px solid rgba(var(--novi-fg-rgb), 0.08); }
/* Arabic: the utilities live top-left, so the panels open from the left edge */
.novi-rtl .side-panel, .novi-rtl .mmenu-wrapper.novi-drawer { right: auto; left: 0; transform: translate3d(-100%, 0, 0); }
.novi-rtl .side-panel.side-panel-open, .novi-rtl .mmenu-wrapper.novi-drawer.mmenu-open { transform: none; }
.side-panel .side-panel-block { padding: 72px 28px 48px; width: 100%; }
.side-panel .side-panel-close { width: 56px; height: 56px; line-height: 56px; font-size: 16px; }
.novi-rtl .side-panel .side-panel-close { right: auto; left: 0; }
.side-panel-block .the-logo img { width: 132px; }
.side-panel-block .ot-heading h2 { font-size: var(--novi-fs-h4); }
.side-panel-cinfo, .side-panel-cinfo span, .side-panel-cinfo li { font-size: 14px !important; line-height: 1.6; font-family: inherit !important; }
.side-panel-cinfo img { width: 44px !important; height: auto; }
.side-panel-social a { font-size: 15px; min-width: 40px; min-height: 40px; display: inline-flex; align-items: center; justify-content: center; }

.mmenu-wrapper.novi-drawer { width: min(360px, 100vw); background: var(--novi-panel); border-inline-start: 1px solid rgba(var(--novi-fg-rgb), 0.08); z-index: 9999; }
.novi-drawer .mmenu-inner { width: 100%; padding: 12px 24px 32px; display: flex; flex-direction: column; gap: 8px; }
.novi-drawer .mmenu-inner > * { flex-shrink: 0; }
.novi-drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: 52px; margin-bottom: 8px; }
.novi-drawer .mmenu-close {
  position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: 0;
  padding: 0; border-radius: 50%; border: 1px solid rgba(var(--novi-fg-rgb), 0.16); background: none; color: var(--novi-strong); cursor: pointer;
}
.novi-close, .novi-close::before { position: absolute; width: 18px; height: 1.5px; background: currentColor; transform: rotate(45deg); }
.novi-close::before { content: ""; inset: 0; transform: rotate(90deg); }
.novi-drawer .mobile-nav { min-width: 0; }
.novi-drawer .mobile_mainmenu { margin: 0; padding: 0; list-style: none; }
.novi-drawer .mobile_mainmenu li { position: relative; list-style: none; }
.novi-drawer .mobile_mainmenu > li { border-bottom: 1px solid rgba(var(--novi-fg-rgb), 0.08); }
.novi-drawer .mobile_mainmenu > li > a, .novi-drawer .novi-drawer__parent {
  display: flex; align-items: center; width: 100%; min-height: 52px; padding: 0 48px 0 0; margin: 0; border: 0; background: none; text-align: start;
  font: 600 14px/1.3 var(--ff-head); letter-spacing: 0.1em; text-transform: uppercase; color: var(--novi-strong) !important; cursor: pointer;
}
.novi-rtl .novi-drawer .mobile_mainmenu > li > a, .novi-rtl .novi-drawer .novi-drawer__parent {
  padding: 0 0 0 48px; font: 500 17px/1.4 var(--ff-head); letter-spacing: 0; text-transform: none;
}
.novi-drawer .mobile_mainmenu ul { display: none; margin: 0 0 12px; padding: 0; }
.novi-drawer .mobile_mainmenu ul a {
  display: block; padding: 9px 0 9px 14px; border-inline-start: 1px solid rgba(var(--novi-gold-rgb), 0.35); border-bottom: 0;
  font: 400 15px/1.4 var(--ff-head); color: rgba(var(--novi-fg-rgb), 0.76) !important;
}
.novi-rtl .novi-drawer .mobile_mainmenu ul a { padding: 9px 14px 9px 0; font: 400 16px/1.5 var(--ff-head); }
.novi-drawer .mobile_mainmenu a[aria-current="page"], .novi-drawer .mobile_mainmenu li.is-current > a, .novi-drawer .mobile_mainmenu li.is-current > .novi-drawer__parent { color: var(--novi-gold-hi) !important; }
.novi-drawer .mobile_mainmenu li > .arrow {
  position: absolute; top: 4px; inset-inline-end: 0; width: 44px; height: 44px; padding: 0; margin: 0;
  display: flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--novi-strong); cursor: pointer; z-index: 1;
}
.novi-drawer .mobile_mainmenu li > .arrow .novi-nav__caret { width: 7px; height: 7px; }
.novi-drawer .mobile_mainmenu li > .arrow.active .novi-nav__caret { transform: translateY(2px) rotate(225deg); }
.novi-drawer .mobile_mainmenu a:focus-visible, .novi-drawer button:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: -2px; }
.novi-drawer__cta { align-self: flex-start; margin-top: 20px; height: 46px; padding: 0 26px; }

/* =====================================================================
   Hero
   ===================================================================== */
.novi-hero-wrap.content-novi { margin-top: 0 !important; position: relative; }
.novi-hero {
  position: relative; height: 92vh; height: 92svh; min-height: 520px; max-height: 900px;
  overflow: hidden; background: #000; color: #fff; isolation: isolate;
}
.novi-hero__stage, .novi-hero__slide { position: absolute; inset: 0; }
.novi-hero__slide { opacity: 0; transition: opacity 1s var(--novi-ease); }
.novi-hero__slide.is-active { opacity: 1; z-index: 1; }
.novi-hero__poster, .novi-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.novi-hero__slide.is-active .novi-hero__poster { animation: novi-kenburns 12s ease-out both; }
@keyframes novi-kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }
.novi-hero__video { opacity: 0; transition: opacity 0.9s var(--novi-ease); }
.novi-hero__slide.is-playing .novi-hero__video { opacity: 1; }
.novi-hero__shade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 60%);
}
.novi-rtl .novi-hero__shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.82) 100%),
    linear-gradient(270deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 60%);
}
.novi-hero__content { position: absolute; inset: auto 0 clamp(96px, 14vh, 140px) 0; z-index: 3; }
.novi-hero__copy { position: absolute; bottom: 0; left: 15px; right: 15px; max-width: 700px; }
.novi-rtl .novi-hero__copy { left: auto; }
.novi-hero__title {
  font: 500 var(--fs-display)/1.1 var(--ff-head); letter-spacing: -0.015em; color: #fff;
  margin: 0 0 12px; text-wrap: balance;
}
.novi-rtl .novi-hero__title { font-weight: 700; line-height: 1.3; letter-spacing: 0; }
.novi-hero__subtitle { font: 400 var(--fs-lead)/1.55 var(--ff-body); color: rgba(255,255,255,.85); margin: 0 0 22px; max-width: 520px; }
.novi-rtl .novi-hero__subtitle { line-height: 1.75; }
.novi-hero__cta {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: #fff !important; text-decoration: none !important;
  font: 600 12px/1 var(--ff-head); letter-spacing: .14em; text-transform: uppercase;
  padding: 0 22px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; background: rgba(0,0,0,.35);
  transition: border-color .3s, background-color .3s, gap .3s var(--novi-ease);
}
.novi-rtl .novi-hero__cta { font-family: var(--ff-head); font-size: 15px; letter-spacing: 0; font-weight: 700; }
.novi-hero__cta:hover { border-color: var(--novi-gold); background: rgba(190,149,101,.2); gap: 14px; }
.novi-rtl .novi-hero__cta i { transform: scaleX(-1); }
/* staggered copy entrance per slide */
.novi-hero__copy > * { opacity: 0; transform: translate3d(0, 20px, 0); transition: opacity .6s var(--novi-ease), transform .8s var(--novi-ease); }
.novi-hero__copy.is-active > * { opacity: 1; transform: none; }
.novi-hero__copy.is-active > :nth-child(2) { transition-delay: .12s; }
.novi-hero__copy.is-active > :nth-child(3) { transition-delay: .24s; }

.novi-hero__controls {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: clamp(28px, 5vh, 48px);
  display: flex; align-items: center; gap: 12px; padding: 0 max(15px, calc((100vw - var(--novi-container)) / 2 + 15px));
}
.novi-hero__arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.25);
  color: #fff; font-size: 22px; line-height: 1; display: grid; place-items: center; cursor: pointer;
  transition: border-color .3s, background-color .3s;
}
.novi-hero__arrow:hover { border-color: var(--novi-gold); background: rgba(190,149,101,.2); }
.novi-rtl .novi-hero__arrow span { transform: scaleX(-1); display: inline-block; }
.novi-hero__count { font: 400 13px/1 var(--ff-head); color: rgba(255,255,255,.7); letter-spacing: .08em; min-width: 58px; text-align: center; }
.novi-hero__count b { color: #fff; font-weight: 600; font-size: 16px; }
.novi-hero__dots { display: flex; gap: 4px; margin-inline-start: auto; }
.novi-hero__dot { width: 30px; height: 44px; padding: 0; background: none; border: 0; cursor: pointer; display: grid; align-items: center; }
.novi-hero__dot i { display: block; height: 2px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.novi-hero__dot i::after { content: ""; position: absolute; inset: 0; background: var(--novi-gold-hi); transform: scaleX(0); transform-origin: left; }
.novi-rtl .novi-hero__dot i::after { transform-origin: right; }
.novi-hero__dot.is-active i::after { animation: novi-progress var(--dur) linear forwards; }
.novi-hero__dot.is-active.is-paused i::after { animation-play-state: paused; }
@keyframes novi-progress { to { transform: scaleX(1); } }
.novi-hero__scroll {
  position: absolute; z-index: 4; left: 50%; bottom: 12px; width: 22px; height: 34px; margin-left: -11px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 12px;
}
.novi-hero__scroll span { position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; margin-left: -1px; background: #fff; border-radius: 2px; animation: novi-scrollcue 1.8s ease-in-out infinite; }
@keyframes novi-scrollcue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }
/* the vertical social-media rail (legacy .banner-desc-1) is retired: social links live in the footer
   and the side panel. Guard kept until the fragment is dropped from src/data/home.*.json (heroAfter). */
.banner-desc-1 { display: none !important; }
.novi-hero-wrap .grid-lines { z-index: 3; pointer-events: none; }
@media (max-width: 767px) {
  .novi-hero { height: 86svh; min-height: 480px; }
  .novi-hero__dots { display: none; }
  .novi-hero__controls { justify-content: flex-start; }
  .novi-hero__content { bottom: 92px; }
  .novi-hero__scroll { display: none; }
}

/* =====================================================================
   Reveal — one-shot, small blocks, opacity/transform only
   ===================================================================== */
.novi-motion .novi-rv { transition: opacity 0.7s var(--novi-ease) var(--rv-delay, 0ms), transform 0.8s var(--novi-ease) var(--rv-delay, 0ms); }
.novi-motion .novi-rv:not(.is-in) { opacity: 0; }
.novi-motion .novi-rv.from-below:not(.is-in) { transform: translate3d(0, 28px, 0); }
.novi-motion .novi-rv.from-start:not(.is-in) { transform: translate3d(-32px, 0, 0); }
.novi-motion .novi-rv.from-end:not(.is-in) { transform: translate3d(32px, 0, 0); }
.novi-rtl.novi-motion .novi-rv.from-start:not(.is-in), .novi-motion .novi-rtl .novi-rv.from-start:not(.is-in) { transform: translate3d(32px, 0, 0); }
.novi-motion .novi-rv.zoom:not(.is-in) { transform: scale(.96); }
/* gold hairline that draws across each section as it arrives */
.novi-sec { position: relative; }
.novi-sec::before {
  content: ""; position: absolute; z-index: 2; top: 0; left: 0; right: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(var(--novi-gold-rgb), .7) 20%, rgba(var(--novi-gold-hi-rgb), .9) 50%, rgba(var(--novi-gold-rgb), .7) 80%, transparent);
  transform: scaleX(0); transform-origin: center; transition: transform 1.4s var(--novi-ease) .1s;
}
.novi-sec.is-in::before, html:not(.novi-motion) .novi-sec::before { transform: scaleX(1); }

/* =====================================================================
   Our Philosophy
   ===================================================================== */
.novi-philosophy { position: relative; padding: var(--novi-sec-pad) 0; background: rgba(var(--novi-bg-rgb), .55); overflow: hidden; }
.novi-philosophy__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.novi-philosophy__media { --pp: 0; --tx: 0; --ty: 0; position: relative; aspect-ratio: 4 / 5; max-width: 480px; }
.novi-philosophy__frame {
  position: absolute; inset: 0; border: 1px solid rgba(var(--novi-gold-rgb), .55); border-radius: 4px;
  transform: translate3d(calc(18px + var(--tx) * 12px), calc(18px + var(--ty) * 12px), 0);
}
.novi-rtl .novi-philosophy__frame { transform: translate3d(calc(-18px + var(--tx) * 12px), calc(18px + var(--ty) * 12px), 0); }
.novi-philosophy__img {
  position: absolute; inset: 0; overflow: hidden; border-radius: 4px; background: var(--novi-surface);
  transform: perspective(1200px) rotateY(calc(var(--tx) * 4deg)) rotateX(calc(var(--ty) * -4deg));
  transition: opacity 1s var(--novi-ease);
}
.novi-motion .novi-philosophy:not(.is-in) .novi-philosophy__img { opacity: 0; }
.novi-philosophy__img img {
  width: 100%; height: 112%; object-fit: cover; display: block;
  transform: translate3d(0, calc(var(--pp) * -5%), 0);
}
.novi-philosophy__numeral {
  position: absolute; right: -14px; bottom: -26px; z-index: 2;
  font: 500 clamp(56px, 36px + 4vw, 96px)/1 var(--ff-head);
  color: transparent; -webkit-text-stroke: 1px rgba(var(--novi-gold-hi-rgb), .75); letter-spacing: -.04em; pointer-events: none;
}
.novi-rtl .novi-philosophy__numeral { right: auto; left: -14px; }
.novi-philosophy__caption {
  position: absolute; left: 18px; bottom: 18px; z-index: 2; padding: 7px 12px; border-radius: 999px;
  background: rgba(0,0,0,.72);
  font: 600 11.5px/1 var(--ff-head); letter-spacing: .16em; text-transform: uppercase; color: var(--novi-gold-hi);
}
.novi-rtl .novi-philosophy__caption { left: auto; right: 18px; letter-spacing: 0; font-family: var(--ff-head); font-size: 14px; }
.novi-philosophy__body .ot-heading { margin-bottom: 20px; }
.novi-philosophy__list { list-style: none; margin: 0; padding: 0; }
.novi-principle { border-top: 1px solid var(--novi-line); position: relative; }
.novi-principle:last-child { border-bottom: 1px solid var(--novi-line); }
.novi-principle__head {
  width: 100%; display: flex; align-items: baseline; gap: 18px; padding: 16px 0; min-height: 44px; background: none; border: 0;
  color: rgba(var(--novi-fg-rgb), .62); text-align: start; cursor: pointer; transition: color .3s;
}
.novi-principle__num { font: 600 12px/1 var(--ff-head); letter-spacing: .12em; color: rgba(var(--novi-gold-rgb), .8); min-width: 24px; }
.novi-principle__title { font: 400 var(--fs-h3)/1.25 var(--ff-head); transition: transform .4s var(--novi-ease), color .3s; }
.novi-rtl .novi-principle__title { font-family: var(--ff-head); font-weight: 500; line-height: 1.4; }
.novi-principle__plus { margin-inline-start: auto; width: 14px; height: 14px; position: relative; align-self: center; }
.novi-principle__plus::before, .novi-principle__plus::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .4s var(--novi-ease);
}
.novi-principle__plus::after { transform: rotate(90deg); }
.novi-principle.is-active .novi-principle__plus::after { transform: rotate(0); }
.novi-principle__head:hover, .novi-principle.is-active .novi-principle__head { color: var(--novi-strong); }
.novi-principle.is-active .novi-principle__title { transform: translateX(6px); color: var(--novi-strong); }
.novi-rtl .novi-principle.is-active .novi-principle__title { transform: translateX(-6px); }
.novi-principle.is-active .novi-principle__num { color: var(--novi-gold-hi); }
.novi-principle__bar { position: absolute; left: 0; right: 0; top: -1px; height: 1px; overflow: hidden; pointer-events: none; }
.novi-principle__bar i { position: absolute; inset: 0; background: var(--novi-grad-gold); transform: scaleX(0); transform-origin: left; }
.novi-rtl .novi-principle__bar i { transform-origin: right; }
.novi-principle.is-active .novi-principle__bar i { transform: scaleX(1); transition: transform .8s var(--novi-ease); }
.novi-principle.is-active .novi-principle__bar i.is-running { transform: scaleX(0); animation: novi-progress var(--dur) linear forwards; transition: none; }
.novi-principle__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--novi-ease); }
.novi-principle.is-active .novi-principle__panel { grid-template-rows: 1fr; }
.novi-principle__inner { overflow: hidden; padding-inline-start: 42px; }
.novi-principle__inner > * { opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .5s var(--novi-ease); }
.novi-principle.is-active .novi-principle__inner > * { opacity: 1; transform: none; }
.novi-principle.is-active .novi-principle__inner > :nth-child(2) { transition-delay: .06s; }
.novi-principle.is-active .novi-principle__inner > :nth-child(3) { transition-delay: .12s; }
.novi-principle.is-active .novi-principle__inner > :nth-child(4) { transition-delay: .18s; }
.novi-principle__lead { color: var(--novi-text); font-size: var(--fs-body); line-height: var(--lh-body); margin: 0 0 10px; }
.novi-principle__point { position: relative; color: var(--novi-muted); font-size: var(--novi-fs-small); line-height: 1.7; margin: 0 0 8px; padding-inline-start: 20px; }
.novi-principle__point:last-child { margin-bottom: 20px; }
.novi-principle__point i { position: absolute; inset-inline-start: 0; top: .7em; width: 6px; height: 6px; transform: rotate(45deg); border: 1px solid var(--novi-gold); }
@media (max-width: 991px) {
  .novi-philosophy__grid { grid-template-columns: 1fr; }
  .novi-philosophy__media { aspect-ratio: 4 / 3; max-width: 560px; }
  .novi-philosophy__numeral { right: 8px; bottom: -20px; }
  .novi-principle__inner { padding-inline-start: 0; }
}

/* =====================================================================
   Reference projects / suppliers / events
   ===================================================================== */
.novi-strips {
  padding: var(--novi-sec-pad) 0; background: rgba(var(--novi-bg-rgb), .5);
  display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(32px, 4vw, 56px);
}
.novi-strip { min-width: 0; }
.novi-strip .ot-heading { margin-bottom: 22px; }
.novi-marquee {
  position: relative; overflow: hidden; contain: paint;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.novi-marquee__track { display: flex; width: max-content; gap: 14px; margin: 0; padding: 8px 0 14px; list-style: none; animation: novi-marquee var(--dur, 40s) linear infinite; }
.novi-marquee.is-reverse .novi-marquee__track { animation-direction: reverse; }
.novi-marquee:hover .novi-marquee__track, .novi-marquee:focus-within .novi-marquee__track, .novi-marquee.is-off .novi-marquee__track { animation-play-state: paused; }
@keyframes novi-marquee { to { transform: translate3d(calc(-50% - 7px), 0, 0); } }
/* Tile geometry lives in these two custom properties so all three strips are
   identical at every width. Never size a logo from its own ratio: the tile is a
   fixed box, the <img> fills the padded content box and object-fit letterboxes
   the artwork, so a square or portrait mark cannot overflow its tile. */
.novi-strips { --novi-tile-w: 168px; --novi-tile-h: 104px; --novi-tile-pad: 16px; }
.novi-logo-tile {
  position: relative; flex: 0 0 auto;
  box-sizing: border-box; width: var(--novi-tile-w); height: var(--novi-tile-h); border-radius: 12px;
  padding: var(--novi-tile-pad) var(--novi-tile-pad) calc(var(--novi-tile-pad) + 8px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(160deg, rgba(var(--novi-fg-rgb), .07), rgba(var(--novi-fg-rgb), .02));
  border: 1px solid var(--novi-line); transition: transform .4s var(--novi-ease), border-color .3s, background-color .3s;
}
.novi-logo-tile__box { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; }
.novi-logo-tile__img {
  display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%;
  object-fit: contain; object-position: center;
  /* every mark is normalised to one light tone so dark and faint logos stay legible
     on the dark ground; opacity() lifts the marks that were uploaded semi-transparent.
     The real artwork comes back on hover/focus. */
  filter: grayscale(1) brightness(1.9) contrast(1.05) opacity(1.7); opacity: .82;
  transition: filter .4s, opacity .4s;
}
.novi-logo-tile__name {
  position: absolute; left: 8px; right: 8px; bottom: 6px; text-align: center; font-size: 12px; line-height: 1.2;
  color: var(--novi-gold-hi); opacity: 0; transition: opacity .3s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.novi-logo-tile:hover, .novi-logo-tile:focus-within {
  transform: translateY(-4px); border-color: rgba(var(--novi-gold-rgb), .6); background-color: rgba(var(--novi-fg-rgb), .05);
}
.novi-logo-tile:hover .novi-logo-tile__img, .novi-logo-tile:focus-within .novi-logo-tile__img { filter: none; opacity: 1; }
.novi-logo-tile:hover .novi-logo-tile__name, .novi-logo-tile:focus-within .novi-logo-tile__name { opacity: 1; }
@media (max-width: 991px) {
  .novi-strips { --novi-tile-w: 144px; --novi-tile-h: 90px; --novi-tile-pad: 13px; }
}
@media (max-width: 767px) {
  .novi-strips { --novi-tile-w: 124px; --novi-tile-h: 78px; --novi-tile-pad: 11px; }
  .novi-logo-tile { border-radius: 10px; }
  .novi-marquee__track { gap: 10px; }
  @keyframes novi-marquee { to { transform: translate3d(calc(-50% - 5px), 0, 0); } }
}

/* =====================================================================
   Portfolio, services cards, galleries
   ===================================================================== */
.projects-grid .projects-box, .novi-portfolio .projects-box {
  border: 1px solid var(--novi-line) !important; border-radius: 10px; overflow: hidden; min-height: 0 !important; background: rgba(var(--novi-surface-rgb), .6);
}
.projects-grid .projects-box img {
  height: auto !important; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; width: 100%;
  transition: transform .8s var(--novi-ease) !important;
}
.projects-grid .projects-box:hover img { transform: scale(1.04); }
.projects-grid .projects-thumbnail { overflow: hidden; }
.projects-grid .portfolio-info { padding: 14px 16px; }
.projects-grid .portfolio-info h5 { font-size: var(--novi-fs-h5); margin: 0 0 4px; }
.projects-grid .portfolio-cates { font-size: 13px; margin: 0; }
.novi-portfolio .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: var(--novi-gap); }
.novi-portfolio .projects-grid > .grid-sizer { display: none; }
.novi-portfolio .projects-grid > .project-item { width: auto; max-width: none; padding: 0; flex: none; }
.novi-portfolio .col-sm-6 .form-group:empty { display: none; }

.novi-gallery__item { margin-bottom: 16px; }
.novi-gallery__link { display: block; border-radius: 8px; overflow: hidden; background: var(--novi-surface); border: 1px solid var(--novi-line); }
.novi-gallery__link img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--novi-ease); }
.novi-gallery__link:hover img { transform: scale(1.04); }
.widget_nav_menu h2 { font-size: var(--novi-fs-h4); }
.services-menu li a { font-size: var(--novi-fs-small); padding-block: 10px; display: block; }

.industry-two-slider__single-item__image { border-radius: 10px; overflow: hidden; }
.industry-two-slider__single-item__image img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; }

/* service/article detail images: a native scroll-snap strip (replaces the never-initialised Owl slider) */
.owl-carousel:not(.simple-slide) { display: none; }
.simple-slide.owl-carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(78%, 1fr); gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; overscroll-behavior-x: contain; margin: 0 0 24px; padding-bottom: 6px;
}
.simple-slide.owl-carousel:empty { display: none; }
.simple-slide .item { scroll-snap-align: start; border-radius: 10px; overflow: hidden; background: var(--novi-surface); }
.simple-slide .item img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 768px) { .simple-slide.owl-carousel { grid-auto-columns: calc(50% - 6px); } }
.services-detail-content img, #ContentPlaceHolder1_LblContent img { height: auto; border-radius: 8px; }
.about-img img { width: 100%; height: auto; border-radius: 10px; }

/* =====================================================================
   Locations
   ===================================================================== */
.novi-locations { padding: var(--novi-sec-pad) 0; background: rgba(var(--novi-bg-rgb), .5); }
.novi-locations__lede { text-align: center; color: var(--novi-muted); max-width: 540px; margin: -6px auto 32px; font-size: var(--novi-fs-body); }
.novi-locations__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--novi-gap); }
.novi-office {
  display: grid; grid-template-rows: auto 1fr; border-radius: var(--novi-radius); overflow: hidden; background: rgba(var(--novi-surface-rgb), .85);
  border: 1px solid var(--novi-line); transition: border-color .3s, transform .4s var(--novi-ease);
}
.novi-office:hover { border-color: rgba(var(--novi-gold-rgb), .45); transform: translateY(-3px); }
.novi-map { position: relative; aspect-ratio: 16 / 9; background: var(--novi-surface); overflow: hidden; }
.novi-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; transition: opacity .6s; filter: grayscale(.85) invert(.9) hue-rotate(180deg) contrast(.9) brightness(.95); }
.novi-map.is-loaded iframe { opacity: 1; }
.novi-map__placeholder {
  position: absolute; inset: 0; width: 100%; border: 0; display: grid; place-content: center; justify-items: center; gap: 10px; color: var(--novi-text); font-size: 14px; cursor: pointer;
  background: radial-gradient(circle at 50% 45%, rgba(var(--novi-gold-rgb), .14), transparent 55%), repeating-linear-gradient(0deg, rgba(var(--novi-fg-rgb), .035) 0 1px, transparent 1px 40px), repeating-linear-gradient(90deg, rgba(var(--novi-fg-rgb), .035) 0 1px, transparent 1px 40px), var(--novi-surface);
}
.novi-map__placeholder:hover .novi-map__label { color: var(--novi-gold-hi); }
.novi-map__placeholder[disabled] { cursor: progress; }
.novi-map__label { border: 1px solid var(--novi-line-2); border-radius: 999px; padding: 10px 18px; min-height: 44px; display: inline-flex; align-items: center; }
.novi-map__pin { width: 18px; height: 18px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--novi-gold); }
.novi-office__body { padding: 20px clamp(18px, 2.4vw, 28px) 24px; display: flex; flex-direction: column; gap: 12px; }
.novi-office__head { display: flex; align-items: center; gap: 12px; }
.novi-office__head img { width: 32px; height: 21px; object-fit: cover; border-radius: 3px; }
.novi-office__country { font: 600 12px/1 var(--ff-head); letter-spacing: .16em; text-transform: uppercase; color: var(--novi-gold); }
.novi-rtl .novi-office__country { letter-spacing: 0; font-family: var(--ff-head); font-size: 14px; }
.novi-office__head h3 { margin: 4px 0 0; font-size: var(--novi-fs-h4); }
.novi-office__address { color: var(--novi-text); margin: 0; line-height: 1.65; font-size: var(--novi-fs-small); }
.novi-office__contacts { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.novi-office__contacts li { display: flex; align-items: center; gap: 10px; color: var(--novi-muted); font-size: var(--novi-fs-small); }
.novi-office__contacts li a { min-height: 40px; display: inline-flex; align-items: center; }
.novi-office__contacts i { width: 14px; font-size: 13px; color: var(--novi-gold); text-align: center; }
.novi-office__contacts a { color: var(--novi-strong); }
.novi-office__contacts a:hover { color: var(--novi-gold-hi); }
.novi-office__label { font-size: 13px; }
.novi-office__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
@media (max-width: 860px) { .novi-locations__grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Footer — compact
   ===================================================================== */
.novi-footer { position: relative; background: linear-gradient(180deg, rgba(var(--novi-bg-rgb), .6), var(--novi-bg) 30%); color: var(--novi-muted); padding-top: clamp(40px, 30px + 2.8vw, 68px); font-size: var(--novi-fs-small); }
.novi-footer a { color: inherit; text-decoration: none; transition: color .25s; }
.novi-footer a:hover { color: var(--novi-gold-hi); }
.novi-footer__eyebrow { display: inline-block; font: 600 12px/1 var(--ff-head); letter-spacing: .18em; text-transform: uppercase; color: var(--novi-gold); margin-bottom: 10px; }
.novi-rtl .novi-footer__eyebrow { letter-spacing: 0; }
.novi-footer__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap;
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.6vw, 34px); margin-bottom: clamp(28px, 3.4vw, 52px);
  border: 1px solid rgba(var(--novi-gold-rgb), .28); border-radius: 16px;
  background: radial-gradient(600px 200px at 0% 0%, rgba(var(--novi-gold-rgb), .16), transparent 70%), rgba(var(--novi-surface-rgb), .8);
}
.novi-footer__cta-title { margin: 0; font: 400 var(--fs-h3)/1.3 var(--ff-head); color: var(--novi-strong); max-width: 620px; }
.novi-rtl .novi-footer__cta-title { font-family: var(--ff-head); line-height: 1.45; }
.novi-footer__cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.novi-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)) 1.3fr; gap: 24px 28px; padding-bottom: 32px; }
.novi-footer__logo { display: inline-block; }
.novi-footer__logo img { width: 132px; height: auto; margin-bottom: 14px; }
.novi-footer__about { font-size: var(--fs-small); line-height: 1.65; margin: 0 0 16px; max-width: 340px; }
.novi-rtl .novi-footer__about { font-size: 15px; line-height: 1.8; }
.novi-footer__social { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.novi-footer__social a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--novi-line-2);
  color: var(--novi-text) !important; font-size: 13px; transition: border-color .25s, background-color .25s, color .25s;
}
.novi-footer__social a:hover { border-color: var(--novi-gold); background: var(--novi-gold); color: var(--novi-on-gold) !important; }
.novi-footer__title { font: 600 12px/1.2 var(--ff-head); letter-spacing: .14em; text-transform: uppercase; color: var(--novi-strong); margin: 4px 0 14px; }
.novi-rtl .novi-footer__title { letter-spacing: 0; font-size: 15px; font-family: var(--ff-head); }
.novi-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.novi-footer__col a { font-size: var(--fs-small); position: relative; }
.novi-rtl .novi-footer__col a { font-size: 15px; }
.novi-footer__col ul a::before { content: ""; position: absolute; inset-inline-start: 0; bottom: -2px; width: 100%; height: 1px; background: var(--novi-gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--novi-ease); }
.novi-rtl .novi-footer__col ul a::before { transform-origin: right; }
.novi-footer__col ul a:hover::before { transform: scaleX(1); }
.novi-footer__office { display: grid; gap: 3px; margin-bottom: 14px; font-size: var(--fs-small); line-height: 1.55; }
.novi-footer__office strong { color: var(--novi-strong); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.novi-footer__office img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.novi-footer__phone { color: var(--novi-text) !important; }
.novi-rtl .novi-footer__phone { text-align: right; }
.novi-footer__mail { color: var(--novi-gold-hi) !important; font-size: var(--fs-small); }
.novi-footer__bottom { border-top: 1px solid var(--novi-line); padding: 14px 0; font-size: 12.5px; }
.novi-footer__bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; }
.novi-footer__bottom p { margin: 0; }
.novi-footer__legal { display: flex; flex-wrap: wrap; gap: 4px 18px; list-style: none; margin: 0; padding: 0; }
.novi-footer__legal .novi-linkbtn { text-decoration: none; }
.novi-footer__acc-btn { all: unset; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer; }
.novi-footer__acc-btn::after { content: "+"; font: 400 20px/1 var(--ff-head); color: var(--novi-gold); transition: transform .3s var(--novi-ease); }
.novi-footer__col.is-open .novi-footer__acc-btn::after { transform: rotate(45deg); }
@media (min-width: 768px) {
  .novi-footer__acc-btn { cursor: default; pointer-events: none; }
  .novi-footer__acc-btn::after { display: none; }
}
@media (max-width: 1199px) {
  .novi-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .novi-footer__brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0 24px; align-items: start; }
  .novi-footer__brand .novi-footer__logo { grid-row: span 3; }
  .novi-footer__offices { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .novi-footer__offices .novi-footer__title, .novi-footer__mail { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .novi-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 0; padding-bottom: 20px; }
  .novi-footer__brand { display: block; padding-bottom: 20px; }
  .novi-footer__about { max-width: none; }
  .novi-footer__social { gap: 4px; }
  .novi-footer__social a { width: 44px; height: 44px; font-size: 15px; }
  .novi-footer__cta { flex-direction: column; align-items: flex-start; }
  .novi-footer__cta-actions .novi-btn { min-height: 44px; }
  /* link columns become disclosure rows (buttons injected by SiteEnhancements) */
  .novi-footer__col { border-top: 1px solid var(--novi-line); }
  .novi-footer__col .novi-footer__title { margin: 0; }
  .novi-footer__col .novi-footer__acc-btn { min-height: 48px; }
  .novi-footer__col.is-collapsible:not(.is-open) > ul { display: none; }
  .novi-footer__col.is-collapsible > ul { padding: 0 0 12px; gap: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 12px; }
  .novi-footer__col ul a { display: flex; align-items: center; min-height: 44px; }
  .novi-footer__col ul a::before { display: none; }
  .novi-footer__offices { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0 16px; padding-top: 14px; }
  .novi-footer__offices .novi-footer__title { margin-bottom: 10px; }
  .novi-footer__office a { display: inline-flex; align-items: center; min-height: 36px; }
  .novi-footer__mail { display: inline-flex; align-items: center; min-height: 44px; }
  .novi-footer__bottom-row { flex-direction: column; align-items: flex-start; }
  .novi-footer__legal a, .novi-footer__legal .novi-linkbtn { display: inline-flex; align-items: center; min-height: 44px; }
}

/* =====================================================================
   Cookie consent (solid card, no blur)
   ===================================================================== */
.novi-consent { position: fixed; z-index: 99999; left: 12px; right: 12px; bottom: 12px; display: flex; justify-content: flex-start; pointer-events: none; }
.novi-rtl .novi-consent { justify-content: flex-end; }
.novi-consent.is-prefs { inset: 0; align-items: center; justify-content: center; background: rgba(0,0,0,.72); padding: 12px; }
.novi-consent__card {
  pointer-events: auto; width: min(440px, 100%); max-height: calc(100svh - 24px); overflow: auto;
  background: var(--novi-panel); color: var(--novi-muted); border: 1px solid rgba(var(--novi-gold-rgb), .3); border-radius: 14px;
  padding: 18px 18px 16px; box-shadow: var(--novi-shadow); animation: novi-rise .5s var(--novi-ease) both;
}
.novi-consent.is-prefs .novi-consent__card { width: min(540px, 100%); }
@keyframes novi-rise { from { opacity: 0; transform: translateY(18px); } }
.novi-consent__title { font: 600 var(--fs-h5)/1.3 var(--ff-head); color: var(--novi-strong); margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.novi-rtl .novi-consent__title { font-family: var(--ff-head); }
.novi-consent__title i { color: var(--novi-gold); }
.novi-consent__body { font-size: var(--fs-small); line-height: 1.6; margin: 0 0 14px; }
.novi-consent__body a { color: var(--novi-gold-hi); text-decoration: underline; }
.novi-consent__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.novi-consent__actions .novi-btn { min-height: 44px; padding: 0 16px; font-size: 12px; }
.novi-consent__actions .novi-linkbtn { min-height: 44px; }
.novi-consent__prefs-head { display: flex; align-items: center; justify-content: space-between; }
.novi-consent__x { background: none; border: 0; color: var(--novi-strong); font-size: 26px; line-height: 1; cursor: pointer; min-width: 44px; min-height: 44px; }
.novi-consent__list { list-style: none; margin: 8px 0 16px; padding: 0; display: grid; gap: 2px; }
.novi-consent__list li { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--novi-line); }
.novi-consent__list strong { color: var(--novi-strong); font-size: 14.5px; }
.novi-consent__list p { margin: 4px 0 0; font-size: 13px; line-height: 1.55; }
.novi-consent__always { font-size: 12px; color: var(--novi-gold); white-space: nowrap; }
.novi-switch { position: relative; flex: 0 0 auto; width: 46px; height: 26px; margin: 0; }
.novi-switch input { position: absolute; opacity: 0; inset: -9px; margin: 0; cursor: pointer; z-index: 1; }
.novi-switch span { position: absolute; inset: 0; border-radius: 999px; background: rgba(var(--novi-fg-rgb), 0.22); transition: background-color .3s; }
.novi-switch span::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .3s var(--novi-ease); }
.novi-switch input:checked + span { background: var(--novi-gold); }
.novi-switch input:checked + span::after { transform: translateX(20px); }
.novi-switch input:focus-visible + span { outline: 2px solid var(--novi-gold-hi); outline-offset: 2px; }

/* =====================================================================
   Articles index + legal pages
   ===================================================================== */
.novi-articles, .novi-legal { position: relative; padding: var(--novi-sec-pad) 0; background: rgba(var(--novi-bg-rgb), .5); }
.novi-articles__lede { text-align: center; color: var(--novi-muted); max-width: 600px; margin: -4px auto 24px; font-size: var(--novi-fs-body); }
.novi-articles__filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 32px; }
.novi-articles__filter button { border: 1px solid var(--novi-line-2); background: transparent; color: var(--novi-text); border-radius: 999px; padding: 0 14px; min-height: 40px; font-size: 13px; cursor: pointer; transition: border-color .25s, color .25s, background-color .25s; }
.novi-articles__filter button small { opacity: .75; margin-inline-start: 4px; }
.novi-articles__filter button[aria-pressed="true"], .novi-articles__filter button:hover { border-color: var(--novi-gold); color: var(--novi-strong); background: rgba(var(--novi-gold-rgb), .14); }
.novi-articles__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--novi-gap); }
.novi-articles__card { display: flex; flex-direction: column; border-radius: var(--novi-radius); overflow: hidden; background: rgba(var(--novi-surface-rgb), .85); border: 1px solid var(--novi-line); transition: transform .4s var(--novi-ease), border-color .3s; }
.novi-articles__card[hidden] { display: none; }
.novi-articles__card:hover { transform: translateY(-4px); border-color: rgba(var(--novi-gold-rgb), .45); }
.novi-articles__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--novi-surface); }
.novi-articles__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--novi-ease); }
.novi-articles__card:hover .novi-articles__media img { transform: scale(1.04); }
.novi-articles__noimg {
  position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; width: 100%; height: 100%; padding: 18px;
  background: radial-gradient(120% 90% at 100% 0%, rgba(190,149,101,.28), transparent 60%), linear-gradient(160deg, #1b1a19, #0d0d0d);
  overflow: hidden;
}
.novi-articles__noimg::before { content: ""; position: absolute; inset: -20%; opacity: .16; background: #d8d2c8;
  -webkit-mask: url(/brand/plan-lines.webp) center / cover no-repeat; mask: url(/brand/plan-lines.webp) center / cover no-repeat; }
.novi-articles__noimg img { position: relative; width: 84px !important; height: auto !important; opacity: .9; transform: none !important; }
.novi-articles__noimg b { position: relative; font: 600 clamp(16px, 1.3vw, 20px)/1.3 var(--ff-head); color: #fff; max-width: 90%;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.novi-rtl .novi-articles__noimg b { font-family: var(--ff-head); }
.novi-articles__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.novi-articles__meta { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: 12px; color: var(--novi-muted); }
.novi-articles__meta span { color: var(--novi-gold); text-transform: uppercase; letter-spacing: .08em; }
.novi-articles__body h3 { font-size: var(--fs-h4); font-weight: 500; line-height: 1.35; margin: 0; }
.novi-rtl .novi-articles__body h3 { line-height: 1.55; }
.novi-articles__body h3 a { color: var(--novi-strong); }
.novi-articles__body h3 a:hover { color: var(--novi-gold-hi); }
.novi-articles__body p { color: var(--novi-muted); font-size: var(--novi-fs-small); line-height: 1.65; margin: 0; }
.novi-articles__more { margin-top: auto; padding-top: 4px; min-height: 40px; color: var(--novi-gold-hi) !important; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center; }
.novi-rtl .novi-articles__more { letter-spacing: 0; font-size: 14px; }
.novi-rtl .novi-articles__more i { transform: scaleX(-1); }
@media (max-width: 991px) { .novi-articles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .novi-articles__grid { grid-template-columns: 1fr; } }

.novi-legal__grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 40px; align-items: start; }
.novi-legal__nav { position: sticky; top: calc(var(--novi-header-h) + 20px); }
.novi-legal__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; border-inline-start: 1px solid var(--novi-line); }
.novi-legal__nav a { display: block; padding: 8px 16px; color: var(--novi-muted); font-size: 14px; margin-inline-start: -1px; border-inline-start: 1px solid transparent; }
.novi-legal__nav a[aria-current="page"], .novi-legal__nav a:hover { color: var(--novi-strong); border-color: var(--novi-gold); }
.novi-legal__body { max-width: 780px; color: var(--novi-text-2); font-size: var(--novi-fs-body); line-height: 1.75; }
.novi-legal__updated { color: var(--novi-gold); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.novi-legal__intro { font-size: clamp(16px, 15px + 0.3vw, 18px); color: var(--novi-text); margin-bottom: 26px; }
.novi-legal__block { padding: 20px 0; border-top: 1px solid var(--novi-line); }
.novi-legal__block h2 { font-size: var(--novi-fs-h4); margin: 0 0 10px; }
.novi-legal__block ul { padding-inline-start: 20px; display: grid; gap: 6px; }
.novi-legal__block li::marker { color: var(--novi-gold); }
.novi-legal__table { overflow-x: auto; margin-top: 12px; border: 1px solid var(--novi-line); border-radius: 10px; }
.novi-legal__table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.novi-legal__table th, .novi-legal__table td { padding: 10px 12px; text-align: start; border-bottom: 1px solid var(--novi-line); vertical-align: top; }
.novi-legal__table th { color: var(--novi-strong); background: rgba(var(--novi-fg-rgb), .03); font-weight: 600; }
.novi-legal__table tr:last-child td { border-bottom: 0; }
.novi-legal__table code { color: var(--novi-gold-hi); background: rgba(var(--novi-gold-rgb), .1); padding: 2px 6px; border-radius: 4px; font-size: 12.5px; white-space: nowrap; }
@media (max-width: 860px) {
  .novi-legal__grid { grid-template-columns: 1fr; gap: 20px; }
  .novi-legal__nav { position: static; }
  .novi-legal__nav ul { display: flex; flex-wrap: wrap; gap: 6px; border: 0; }
  .novi-legal__nav a { border: 1px solid var(--novi-line); border-radius: 999px; padding: 0 14px; min-height: 40px; display: inline-flex; align-items: center; }
}

/* =====================================================================
   Inner-page banner (short) + banner video
   ===================================================================== */
.inner-page.dtable {
  display: block !important; position: relative; overflow: hidden; width: 100%;
  height: clamp(260px, 38vh, 420px); margin-top: 0 !important; background: #000;
}
.inner-page > video.elementor-background-video-embed, .inner-page > .novi-bgvideo__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.inner-page > video.novi-bgvideo { opacity: 0; transition: opacity .8s var(--novi-ease); }
.inner-page > video.novi-bgvideo.is-playing { opacity: 1; }
.inner-page::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--novi-overlay); }
.inner-page > .dcell {
  position: absolute !important; z-index: 2; left: 0; right: 0; bottom: clamp(24px, 5vh, 48px);
  display: block !important; width: auto !important; height: auto !important;
  max-width: var(--novi-container); margin: 0 auto; padding: 0 15px; text-align: start;
  color: #fff; font: 500 var(--fs-h2)/1.18 var(--ff-head); letter-spacing: -0.01em;
}
.inner-page > .dcell h1 { font: inherit; color: inherit; margin: 0; }
.novi-rtl .inner-page > .dcell { font-weight: 700; line-height: 1.4; letter-spacing: 0; }
.inner-page > .dcell > .container { padding: 0; }
.inner-page .breadcrumbs { display: flex; flex-wrap: wrap; gap: 4px 10px; margin: 10px 0 0; padding: 0; list-style: none;
  font: 400 var(--fs-small)/1.4 var(--ff-body); letter-spacing: .02em; color: rgba(255,255,255,.78); }
.novi-rtl .inner-page .breadcrumbs { letter-spacing: 0; font-size: 15px; }
.inner-page .breadcrumbs li { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); }
.inner-page .breadcrumbs li.has-children::after { content: "/"; color: var(--novi-gold); }
.inner-page .breadcrumbs a { color: #fff; }
.inner-page .breadcrumbs a:hover { color: var(--novi-gold-hi); }
@media (max-width: 767px) {
  .inner-page.dtable { height: clamp(240px, 38svh, 300px); }
}
.content-novi { margin-top: var(--novi-header-h); }
.novi-hero-wrap.content-novi { margin-top: 0 !important; }

/* =====================================================================
   Click-to-load embeds (YouTube, maps, 3D tours) + Videos page
   ===================================================================== */
.novi-embed {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 10px;
  background: radial-gradient(circle at 50% 45%, rgba(190,149,101,.14), transparent 60%), #141414; border: 1px solid var(--novi-line);
  max-width: 880px; margin-inline: auto;
}
.novi-embed--map, .novi-embed--tour, .novi-embed--embed { aspect-ratio: 16 / 10; }
.novi-embed + .novi-embed { margin-top: 16px; }
.novi-embed__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s, transform .6s var(--novi-ease); }
.novi-embed:hover .novi-embed__thumb { opacity: 1; transform: scale(1.03); }
.novi-embed__btn {
  position: absolute; inset: 0; width: 100%; border: 0; padding: 16px; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55));
  color: #fff; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center;
}
.novi-embed__icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.55); position: relative; transition: background-color .3s, border-color .3s; }
.novi-embed__icon::after { content: ""; position: absolute; left: 50%; top: 50%; margin: -9px 0 0 -5px; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; }
.novi-embed--map .novi-embed__icon::after, .novi-embed--tour .novi-embed__icon::after, .novi-embed--embed .novi-embed__icon::after {
  border: 0; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50% 50% 50% 0; background: var(--novi-gold); transform: rotate(-45deg);
}
.novi-embed__btn:hover .novi-embed__icon, .novi-embed__btn:focus-visible .novi-embed__icon { background: var(--novi-gold); border-color: var(--novi-gold); }
.novi-embed__label { font: 600 12.5px/1.2 var(--ff-head); letter-spacing: .12em; text-transform: uppercase; }
.novi-rtl .novi-embed__label { font-family: var(--ff-head); letter-spacing: 0; font-size: 15px; }
.novi-embed__note { font-size: 12px; color: rgba(255,255,255,.72); }
.novi-embed.is-loaded iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.rev_slider .novi-embed { display: none; }

.novi-videos__group + .novi-videos__group { margin-top: clamp(32px, 4vw, 56px); }
.novi-videos__title { font-size: var(--novi-fs-h3); color: var(--novi-strong); text-align: center; margin: 0 0 20px; }
.novi-videos__title::after { content: ""; display: block; width: 48px; height: 1px; margin: 12px auto 0; background: var(--novi-gold); }
.novi-videos__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: var(--novi-gap); }
.novi-videos__item { min-width: 0; }
.novi-videos__item .novi-embed { border-radius: 10px; max-width: none; }
.novi-videos__name { font-size: 15px; line-height: 1.45; color: var(--novi-text); margin: 10px 0 0; }

/* =====================================================================
   Award badge — static image; grows on hover/focus like the legacy widget, never on its own
   ===================================================================== */
.novi-award {
  position: fixed; z-index: 60; top: calc(var(--novi-header-h) + 16px); inset-inline-end: clamp(16px, 2.4vw, 64px);
  display: block; width: 84px; aspect-ratio: 160 / 230; border-radius: 6px; background: #fff; cursor: pointer;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(190, 149, 101, 0.4);
  transform-origin: 100% 0;
  /* overshooting ease = a soft spring, transform only */
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s var(--novi-ease), visibility 0s;
}
.novi-rtl .novi-award { transform-origin: 0 0; }
.novi-award__img { display: block; width: 100%; height: 100%; border-radius: inherit; object-fit: contain; }
.novi-award:focus-visible { outline: 2px solid var(--novi-gold-hi); outline-offset: 3px; }
@media (hover: hover) and (pointer: fine) {
  .novi-award:hover { transform: scale(2); }
}
.novi-award:focus-visible, .novi-award:hover {
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(226, 193, 146, 0.65), 0 0 28px 2px rgba(226, 193, 146, 0.32);
}
.novi-award:focus-visible { transform: scale(2); }
body.side-panel-active .novi-award, body.mmenu-active .novi-award { visibility: hidden; }
@media (max-width: 767px) {
  .novi-award { width: 49px; top: calc(var(--novi-header-h) + 10px); inset-inline-end: 16px; border-radius: 4px; }
}
@media (max-height: 520px) { .novi-award { display: none; } }
@media (max-height: 520px) { .novi-award { display: none; } }

/* =====================================================================
   General responsiveness, forms, back-to-top, legacy icons
   ===================================================================== */
html:not(.novi-scrolled) #back-to-top { opacity: 0; pointer-events: none; }
#back-to-top { width: 44px; height: 44px; line-height: 44px; }
.footer-social ul { position: static !important; flex-wrap: wrap; }
.team-image iframe, .about-company iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; }
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), select, textarea { min-height: 44px; }
@media (max-width: 767px) {
  input, select, textarea { font-size: 16px !important; } /* iOS zooms on focus below 16px */
  .container, .container-fluid { padding-left: 16px; padding-right: 16px; }
  .story-author img { margin: 16px 0 0; }
  table { max-width: 100%; }
  .row { --bs-gutter-x: 1.25rem; }
}

/* headings inside the new dark sections (the theme only whitens them under .bg-dark-theratio) */
.novi-strips .ot-heading h2, .novi-locations .ot-heading h2, .novi-articles .ot-heading h2,
.novi-philosophy .ot-heading h2 { color: var(--novi-strong) !important; }
.novi-strips .ot-heading > span, .novi-locations .ot-heading > span, .novi-articles .ot-heading > span,
.novi-philosophy .ot-heading > span { color: var(--novi-gold) !important; }
.novi-strips .ot-heading.is-dots > span:before, .novi-strips .ot-heading.is-dots > span:after,
.novi-locations .ot-heading.is-dots > span:before, .novi-locations .ot-heading.is-dots > span:after,
.novi-articles .ot-heading.is-dots > span:before, .novi-articles .ot-heading.is-dots > span:after { border-color: var(--novi-gold) !important; background-color: var(--novi-gold) !important; }

/* legacy inline CSS dragged the story section up to sit over the old Revolution Slider */
#content .story-1 { margin-top: 0 !important; }

/* =====================================================================
   MOTION SYSTEM
   Original work, inspired by (never copied from) the reference template.

   Budget rules, on top of the file header:
   - scroll-linked work uses `animation-timeline: view()` where the browser has it;
     the fallback is a one-shot IntersectionObserver class, never a scroll listener
   - transform / opacity / colour only; no layout properties, no background-position
   - everything here is inert under `prefers-reduced-motion: reduce`
   ===================================================================== */

/* ---------- 1. session intro: moved to /novi/intro.css (linked by src/components/motion/Intro.tsx) ---------- */

/* ---------- 2. statement paragraphs fill word by word ---------- */
.novi-fill { color: var(--novi-muted); }
.novi-fill .novi-w { color: rgba(var(--novi-fg-rgb), 0.26); transition: color 0.5s var(--novi-ease); }
.novi-fill.is-gold .novi-w { color: rgba(var(--novi-gold-hi-rgb), 0.22); }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .novi-fill .novi-w {
      color: rgba(var(--novi-fg-rgb), 0.26); transition: none;
      animation: novi-word-fill linear both;
      animation-timeline: view();
      /* each word lights up a little later than the one before it */
      animation-range-start: cover calc(32% + var(--wi, 0) * var(--wstep, 1%));
      animation-range-end: cover calc(44% + var(--wi, 0) * var(--wstep, 1%));
    }
    .novi-fill.is-gold .novi-w { animation-name: novi-word-fill-gold; }
  }
  @supports not (animation-timeline: view()) {
    .novi-fill.is-in .novi-w { color: var(--novi-text); transition-delay: calc(var(--wi, 0) * 24ms); }
    .novi-fill.is-gold.is-in .novi-w { color: var(--novi-gold-hi); }
  }
}
@keyframes novi-word-fill { to { color: var(--novi-text); } }
@keyframes novi-word-fill-gold { to { color: var(--novi-gold-hi); } }

/* ---------- 3. headings + images unmask, images scale in ---------- */
.novi-unmask { position: relative; overflow: hidden; }
.novi-unmask > * { display: block; }
.novi-unmask::after {
  content: ""; position: absolute; inset: -1px; background: var(--novi-bg);
  transform-origin: 100% 50%; transform: scaleX(0); pointer-events: none;
}
.novi-rise { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .novi-unmask::after { transform: scaleX(1); }
  .novi-unmask.is-in::after { transform: scaleX(0); transition: transform 0.72s var(--novi-ease) var(--rv-delay, 0ms); }
  .novi-zoom img, .novi-zoom > .novi-zoom__i { transform: scale(1.08); transition: transform 1.1s var(--novi-ease); }
  .novi-zoom.is-in img, .novi-zoom.is-in > .novi-zoom__i { transform: scale(1); }
  .novi-rise { opacity: 0; transform: translate3d(0, 22px, 0); }
  .novi-rise.is-in { opacity: 1; transform: none; transition: opacity 0.6s var(--novi-ease) var(--rv-delay, 0ms), transform 0.7s var(--novi-ease) var(--rv-delay, 0ms); }
}
.novi-rtl .novi-unmask::after { transform-origin: 0 50%; }

/* ---------- 4. drafting guides: thin vertical rules behind a section ---------- */
.novi-guides { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; contain: strict; }
.novi-guides i {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(var(--novi-gold-rgb), 0.28) 18%, rgba(var(--novi-gold-rgb), 0.28) 82%, transparent);
  transform: scaleY(0); transform-origin: 50% 0;
}
.novi-guides i:nth-child(1) { inset-inline-start: 12%; }
.novi-guides i:nth-child(2) { inset-inline-start: 38%; opacity: 0.6; }
.novi-guides i:nth-child(3) { inset-inline-start: 62%; opacity: 0.6; }
.novi-guides i:nth-child(4) { inset-inline-start: 88%; }
@media (prefers-reduced-motion: reduce) { .novi-guides i { transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .novi-guides i { transform: scaleY(0); }
  @supports (animation-timeline: view()) {
    .novi-guides i { animation: novi-guide-draw linear both; animation-timeline: view(); animation-range: entry 0% cover 34%; }
  }
  @supports not (animation-timeline: view()) {
    .is-in > .novi-guides i, .novi-guides.is-in i { transform: scaleY(1); transition: transform 1s var(--novi-ease); }
  }
}
@keyframes novi-guide-draw { to { transform: scaleY(1); } }

/* ---------- 5. portfolio grid: columns drift at slightly different speeds ---------- */
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .our-portfolio-1 .project-item .projects-box, .novi-portfolio .project-item .projects-box {
      animation: novi-col-drift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%;
    }
    .our-portfolio-1 .project-item:nth-child(2n) .projects-box,
    .novi-portfolio .project-item:nth-child(2n) .projects-box { --drift: 13px; }
    .our-portfolio-1 .project-item:nth-child(3n) .projects-box,
    .novi-portfolio .project-item:nth-child(3n) .projects-box { --drift: 30px; }
  }
}
@keyframes novi-col-drift {
  from { transform: translate3d(0, var(--drift, 24px), 0); }
  to { transform: translate3d(0, calc(var(--drift, 24px) * -1), 0); }
}

/* ---------- 6. services: preview card follows the pointer ---------- */
.novi-svc-preview {
  position: fixed; top: 0; left: 0; width: 210px; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(190, 149, 101, 0.5); box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.95);
  pointer-events: none; z-index: 900; opacity: 0;
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0);
  transition: opacity 0.28s var(--novi-ease);
  will-change: transform;
}
.novi-svc-preview.is-on { opacity: 1; }
.novi-svc-preview img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.35s var(--novi-ease);
}
.novi-svc-preview img.is-on { opacity: 1; }
.services-1 .icon-box { transition: transform 0.45s var(--novi-ease), border-color 0.3s; }
.services-1.is-hovering .icon-box { opacity: 0.55; transition: opacity 0.35s var(--novi-ease); }
.services-1.is-hovering .icon-box:hover { opacity: 1; transform: translateY(-4px); }

/* ---------- 7. numbered zigzag process timeline ---------- */
.novi-process { position: relative; padding: var(--novi-sec-pad) 0; background: rgba(var(--novi-bg-rgb), 0.45); }
.novi-process .container { position: relative; z-index: 1; }
.novi-process__lead { margin: 14px auto 0; max-width: 62ch; text-align: center; color: var(--novi-muted); font-size: var(--novi-fs-body); line-height: var(--novi-lh-body); }
.novi-process__list { list-style: none; margin: clamp(28px, 4vw, 52px) 0 0; padding: 0; position: relative; }
.novi-process__list::before {
  content: ""; position: absolute; top: 0; bottom: 0; inset-inline-start: 18px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--novi-line-2) 8%, var(--novi-line-2) 92%, transparent);
}
.novi-step { position: relative; padding-block: 0 clamp(26px, 3.4vw, 44px); padding-inline: 58px 0; }
.novi-step__num {
  position: absolute; inset-inline-start: 0; top: 0; width: 37px; height: 37px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--novi-gold-hi); background: var(--novi-bg); border: 1px solid rgba(var(--novi-gold-rgb), 0.55);
}
.novi-step__title { font-size: var(--novi-fs-h4); margin: 4px 0 6px; color: var(--novi-strong); }
.novi-step__text { margin: 0; color: var(--novi-muted); font-size: var(--novi-fs-body); line-height: var(--novi-lh-body); max-width: 62ch; }
@media (min-width: 992px) {
  .novi-process__list::before { inset-inline-start: 50%; }
  .novi-step { width: 50%; padding-bottom: clamp(30px, 3vw, 48px); }
  .novi-step:nth-child(odd) { padding-inline: 0 62px; text-align: end; }
  .novi-step:nth-child(even) { margin-inline-start: 50%; padding-inline: 62px 0; text-align: start; }
  .novi-step:nth-child(odd) .novi-step__num { inset-inline-start: auto; inset-inline-end: -19px; }
  .novi-step:nth-child(even) .novi-step__num { inset-inline-start: -19px; }
  .novi-step:nth-child(odd) .novi-step__text { margin-inline-start: auto; }
}

/* ---------- 8. "From drawn to built": the wireframe tower ---------- */
.novi-tower { position: relative; padding: var(--novi-sec-pad) 0; background: rgba(var(--novi-bg-rgb), 0.55); overflow: hidden; }
.novi-tower .container { position: relative; z-index: 1; }
.novi-tower__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(26px, 4vw, 54px); align-items: center; }
@media (min-width: 992px) { .novi-tower__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); } }
.novi-tower__copy p { color: var(--novi-muted); font-size: var(--novi-fs-body); line-height: var(--novi-lh-body); max-width: 56ch; }
.novi-tower__floors { list-style: none; margin: clamp(18px, 2vw, 28px) 0 0; padding: 0; display: grid; gap: 2px; }
.novi-tower__floors li { margin: 0; }
.novi-tower__floor {
  display: flex; align-items: baseline; gap: 12px; width: 100%; text-align: start;
  background: none; border: 0; border-top: 1px solid var(--novi-line); padding: 11px 6px; cursor: default;
  color: var(--novi-text); font: inherit; transition: background-color 0.3s, padding-inline-start 0.3s var(--novi-ease);
}
.novi-tower__floors li:last-child .novi-tower__floor { border-bottom: 1px solid var(--novi-line); }
.novi-tower__floor b { color: var(--novi-gold); font-size: 12px; letter-spacing: 0.1em; font-weight: 600; min-width: 22px; }
.novi-tower__floor span { font-size: var(--novi-fs-body); }
.novi-tower__floor i { margin-inline-start: auto; font-style: normal; font-size: var(--novi-fs-small); color: var(--novi-muted); }
.novi-tower__floor:hover, .novi-tower__floor:focus-visible, .novi-tower__floor.is-active {
  background: rgba(var(--novi-gold-rgb), 0.08); padding-inline-start: 14px;
}
.novi-tower__floor:hover span, .novi-tower__floor.is-active span { color: var(--novi-gold-hi); }
.novi-tower__stage {
  position: relative; aspect-ratio: 4 / 5; max-height: 78vh; margin-inline: auto; width: 100%;
  display: grid; place-items: center; contain: layout paint;
}
.novi-tower__stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 0.6s var(--novi-ease); }
.novi-tower__stage.is-live canvas { opacity: 1; }
.novi-tower__poster { width: 100%; height: 100%; object-fit: contain; opacity: 0.9; transition: opacity 0.5s var(--novi-ease); }
.novi-tower__stage.is-live .novi-tower__poster { opacity: 0; }
.novi-tower__hint { margin: 10px 0 0; font-size: var(--novi-fs-small); color: var(--novi-muted); text-align: center; }

/* ---------- 9. lenis (smooth-scroll inertia) ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =====================================================================
   Motion preferences + hidden tab
   ===================================================================== */
html.novi-hidden *, html.novi-hidden *::before, html.novi-hidden *::after { animation-play-state: paused !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .novi-hero__slide.is-active .novi-hero__poster { animation: none; }
  .novi-arch__plane, .novi-arch__glow-lines { animation: none !important; }
  .novi-marquee { -webkit-mask: none; mask: none; }
  .novi-marquee__track { animation: none !important; flex-wrap: wrap; justify-content: center; width: auto; }
  .novi-marquee__track > [aria-hidden="true"] { display: none; }
  /* motion system: nothing scroll-linked, nothing hidden waiting for a reveal */
  .novi-fill .novi-w { color: var(--novi-text) !important; animation: none !important; }
  .novi-fill.is-gold .novi-w { color: var(--novi-gold-hi) !important; }
  .novi-unmask::after { display: none; }
  .novi-zoom img, .novi-zoom > .novi-zoom__i, .novi-rise { transform: none !important; opacity: 1 !important; }
  .novi-guides i { transform: scaleY(1) !important; animation: none !important; }
  .our-portfolio-1 .project-item .projects-box, .novi-portfolio .project-item .projects-box { animation: none !important; transform: none !important; }
  .novi-svc-preview { display: none !important; }
}


/* =====================================================================
   DESIGN SYSTEM — themed chrome, forms and legacy surfaces
   (dark = every section black; light = the same design on paper)
   ===================================================================== */
/* forms: one field style for every legacy/new input (the theme painted fields #fff) */
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]), select, textarea {
  background-color: var(--novi-field); color: var(--novi-text); border: 1px solid var(--novi-line-2); border-radius: 10px;
  font-family: var(--ff-body);
}
input::placeholder, textarea::placeholder { color: var(--novi-muted); opacity: 1; }
input:focus, select:focus, textarea:focus { border-color: var(--novi-gold); outline: none; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--novi-gold-hi) !important; outline-offset: 1px; }

/* back-to-top */
#back-to-top {
  background: var(--novi-surface) !important; color: var(--novi-gold-hi) !important; border: 1px solid var(--novi-line-2) !important;
  border-radius: 50%; box-shadow: var(--novi-shadow);
}
#back-to-top:hover { border-color: var(--novi-gold) !important; }

/* side panel (legacy fragment): text, heading and social chips follow the theme */
.side-panel { color: var(--novi-text-2); }
.side-panel-block .ot-heading h2, .side-panel-block .ot-heading .h2 { color: var(--novi-strong) !important; font-size: var(--fs-h4) !important; }
.side-panel-cinfo p, .side-panel-cinfo strong { color: var(--novi-strong) !important; }
.side-panel-cinfo li, .side-panel-cinfo a { color: var(--novi-text-2) !important; }
.side-panel-cinfo ul { color: var(--novi-gold) !important; }
.side-panel-cinfo a:hover { color: var(--novi-gold-hi) !important; }
.side-panel-social a { background-color: rgba(var(--novi-fg-rgb), 0.04) !important; border-color: var(--novi-line-2) !important; color: var(--novi-text) !important; }
.side-panel-social a:hover { border-color: var(--novi-gold) !important; color: var(--novi-gold-hi) !important; }
.side-panel .side-panel-close, .side-panel .side-panel-close i { color: var(--novi-text) !important; }
.side-panel .side-panel-close { background: rgba(var(--novi-fg-rgb), 0.05) !important; }
.site-overlay.panel-overlay, .site-overlay.mmenu-overlay { background: rgba(0, 0, 0, 0.5); }
:root[data-theme="light"] .site-overlay.panel-overlay, :root[data-theme="light"] .site-overlay.mmenu-overlay { background: rgba(20, 16, 10, 0.28); }

/* the home H1 band under the hero (inline styles in the page; tokens win here) */
.novi-home-h1 {
  background: var(--novi-bg) !important; color: var(--novi-gold) !important;
  font: 600 var(--fs-small)/1.45 var(--ff-head) !important; letter-spacing: var(--ls-eyebrow) !important; text-transform: var(--tt-eyebrow);
}
.novi-rtl .novi-home-h1 { font-size: 16px !important; }

/* reference-project / supplier logo tiles: one tone per theme */
:root[data-theme="light"] .novi-logo-tile { background: linear-gradient(160deg, #ffffff, rgba(255, 255, 255, 0.6)); }
:root[data-theme="light"] .novi-logo-tile__img { filter: grayscale(1) brightness(0.35) contrast(1.1); opacity: 0.78; }
:root[data-theme="light"] .novi-logo-tile:hover .novi-logo-tile__img, :root[data-theme="light"] .novi-logo-tile:focus-within .novi-logo-tile__img { filter: none; opacity: 1; }

/* maps: the dark-inverted map only belongs to the dark theme */
:root[data-theme="light"] .novi-map iframe { filter: grayscale(0.6) contrast(0.95); }

/* award badge frame + cookie banner */

/* Award badge: full size over the hero; once scrolled, a smaller tab that stays clear of the
   content column on non-ultrawide screens (hover/focus still enlarges it 2x). */
@media (min-width: 768px) and (max-width: 1799px) {
  .novi-scrolled .novi-award { width: 58px; inset-inline-end: 12px; }
}
/* phones: once the reader scrolls, the badge tucks into a small corner tab so it never sits on headings */
@media (max-width: 767px) {
  .novi-award { transition: width 0.35s var(--novi-ease), opacity 0.35s var(--novi-ease), transform 0.35s var(--novi-ease); }
  .novi-scrolled .novi-award { width: 34px; inset-inline-end: 8px; opacity: 0.92; }
}
:root[data-theme="light"] .novi-award { box-shadow: 0 10px 24px -14px rgba(40, 30, 18, 0.45), 0 0 0 1px rgba(var(--novi-gold-rgb), 0.45); }
:root[data-theme="light"] .novi-award:hover, :root[data-theme="light"] .novi-award:focus-visible {
  box-shadow: 0 22px 44px -20px rgba(40, 30, 18, 0.45), 0 0 0 1px rgba(var(--novi-gold-rgb), 0.7), 0 0 24px 2px rgba(var(--novi-gold-rgb), 0.22);
}
.novi-consent__card { box-shadow: var(--novi-shadow), 0 0 0 1px rgba(var(--novi-gold-rgb), 0.12); }
.novi-footer__eyebrow, .novi-office__country { font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: var(--tt-eyebrow); }

/* legacy dark-scheme theme blocks that hardcode white text on their own dark art */
:root[data-theme="light"] .bg-dark-theratio, :root[data-theme="light"] .services-1 { color: var(--novi-text-2); }
:root[data-theme="light"] :is(.bg-dark-theratio, .services-1, .story-1, .our-portfolio-1, .about-company) :is(h1, h2, h3, h4, h5, h6, .story-title, .story-text, .title) { color: var(--novi-strong) !important; }
:root[data-theme="light"] :is(.story-author .story-description, .top-info p, .portfolio-detail-info p) { color: var(--novi-muted) !important; }

/* ON-MEDIA SCOPE: anything drawn over photography, film or the dark flipbook/film frames keeps the
   dark-theme accents in the light theme too (brown #6E5130 on a dark photo would disappear).
   Add a new over-image component here, or give it the .novi-on-media class. */
:root[data-theme="light"] :is(.novi-on-media, .novi-hero, .inner-page, .nl-hero, .novi-embed, .nh-card__in, .nh-sector, .nh-svc__frame, .nh-svc__hud, .nh-film, .nh-ch__band, .novi-svc-preview, .novi-philosophy__caption, .projects-box .portfolio-info, .projects-box .overlay) {
  --novi-strong: #ffffff; --novi-text: #edeae4; --novi-text-2: rgba(237, 234, 228, 0.82); --novi-fg-rgb: 255, 255, 255;
  --novi-gold: #be9565; --novi-gold-hi: #e2c192; --novi-gold-rgb: 190, 149, 101; --novi-gold-hi-rgb: 226, 193, 146;
  --novi-on-gold: #0e0e0e; --novi-grad-gold: linear-gradient(100deg, #7a5a36 0%, #be9565 38%, #e2c192 55%, #be9565 72%, #7a5a36 100%);
  --nh-accent: #e2c192; --nh-gold: #be9565; --nh-muted: rgba(237, 234, 228, 0.66); --novi-muted: rgba(237, 234, 228, 0.66);
}
/* legacy portfolio tiles: the caption is a dark scrim over the photo in both themes */
.projects-box .portfolio-info :is(h5, h5 a, a) { color: #fff !important; text-decoration: none !important; }
.projects-box .portfolio-info .portfolio-cates, .projects-box .portfolio-info .portfolio-cates a { color: #e2c192 !important; font-family: var(--ff-body); font-size: var(--fs-small); letter-spacing: 0; text-transform: none; }

/* light theme: legacy Bootstrap light-text utilities outside media must follow the theme */
:root[data-theme="light"] .text-light:not(.novi-on-media .text-light),
:root[data-theme="light"] .text-white:not(.novi-on-media .text-white) { color: var(--novi-text) !important; }

/* =====================================================================
   Footer · "Our offices" band (round 4: the homepage Locations maps moved here and to Contact Us)
   ===================================================================== */
@media (min-width: 1200px) { .novi-footer__grid { grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)); } }
.novi-footer__places {
  display: grid; grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 1fr)); gap: 20px clamp(20px, 2.4vw, 40px);
  margin-bottom: 30px; padding: clamp(22px, 2.4vw, 32px); border: 1px solid var(--novi-line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(var(--novi-gold-rgb), 0.05), rgba(var(--novi-gold-rgb), 0) 70%), rgba(var(--novi-surface-rgb), 0.5);
}
.novi-footer__places-head { display: grid; gap: 8px; align-content: start; }
.novi-footer__places-head .novi-footer__title { margin: 0; }
.novi-footer__places-lead { margin: 0; font-size: var(--fs-small); line-height: 1.6; max-width: 38ch; }
.novi-rtl .novi-footer__places-lead { font-size: 15px; line-height: 1.8; }
.novi-footer__hours { margin: 2px 0 0; color: var(--novi-text); font-size: var(--fs-small); }
.novi-footer__hours span { display: block; color: var(--novi-gold); font: 600 var(--fs-eyebrow)/1.5 var(--ff-head); letter-spacing: var(--ls-eyebrow); text-transform: var(--tt-eyebrow); }
.novi-footer__places-links { display: flex; flex-wrap: wrap; gap: 4px 18px; margin: 4px 0 0; }
.novi-footer__places-links a { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; color: var(--novi-strong) !important; font: 600 13px/1.2 var(--ff-head); letter-spacing: .06em; text-transform: uppercase; }
.novi-rtl .novi-footer__places-links a { letter-spacing: 0; text-transform: none; font-size: 15px; }
.novi-footer__places-links a::after { content: ""; width: 14px; height: 1px; background: var(--novi-gold); transition: width .3s var(--novi-ease); }
.novi-footer__places-links a:hover::after { width: 22px; }
.novi-footer__place { display: grid; gap: 4px; align-content: start; padding-inline-start: clamp(16px, 1.6vw, 26px); border-inline-start: 1px solid var(--novi-line); font-size: var(--fs-small); line-height: 1.55; }
.novi-footer__place-country { color: var(--novi-gold); font: 600 var(--fs-eyebrow)/1.4 var(--ff-head); letter-spacing: var(--ls-eyebrow); text-transform: var(--tt-eyebrow); }
.novi-footer__place-city { color: var(--novi-strong); font: 500 var(--fs-h5)/1.35 var(--ff-head); }
.novi-rtl .novi-footer__place-city { font-weight: 700; }
.novi-footer__place address { margin: 2px 0 4px; font-style: normal; max-width: 34ch; }
.novi-rtl .novi-footer__place address { font-size: 15px; line-height: 1.75; }
.novi-footer__place-lines { display: grid; gap: 0; }
.novi-footer__place-lines a { display: inline-flex; align-items: center; min-height: 32px; width: fit-content; }
.novi-footer__dir { display: inline-flex; align-items: center; gap: 6px; width: fit-content; min-height: 36px; margin-top: 2px; color: var(--novi-gold-hi) !important; font: 600 13px/1.2 var(--ff-head); letter-spacing: .04em; }
.novi-rtl .novi-footer__dir { letter-spacing: 0; font-size: 14.5px; }
.novi-footer__dir span { transition: transform .3s var(--novi-ease); }
.novi-footer__dir:hover span { transform: translate(2px, -2px); }
.novi-rtl .novi-footer__dir:hover span { transform: translate(-2px, -2px); }
@media (max-width: 1199px) {
  .novi-footer__places { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .novi-footer__places-head { grid-column: 1 / -1; }
  .novi-footer__place { padding-inline-start: 0; border-inline-start: 0; padding-top: 16px; border-top: 1px solid var(--novi-line); }
}
@media (max-width: 767px) {
  .novi-footer__places { grid-template-columns: minmax(0, 1fr); padding: 20px 18px; margin-top: 8px; }
  .novi-footer__place-lines a { min-height: 40px; }
}

/* pages that already carry the smart lead form (home, Contact Us) don't repeat the footer CTA band */
body:has(.nlf) .novi-footer__cta { display: none; }
