/* Denzil design tokens (dark, magenta accent). Single source of truth. */
:root {
  --color-bg: #0A0A0A;
  --color-surface: #141414;
  --color-surface-2: #1C1C1C;
  --color-border: rgba(255,255,255,.10);
  --color-border-strong: rgba(255,255,255,.18);
  --color-text: #F5F5F5;
  --color-text-muted: #9A9A9A;
  --color-heading: #FFFFFF;
  --color-accent: #EA1565;
  --color-accent-hover: #C70F52;
  --color-accent-ink: #FFFFFF;
  --color-danger: #FA4031;
  --color-ok: #29C56F;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Poppins", var(--font-body);
  --fs-h1: clamp(2.1rem, 4.5vw, 3.5rem);
  --fs-h2: clamp(1.7rem, 3.2vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.55rem);
  --fs-lead: clamp(1.05rem, 1.5vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: .875rem;
  --lh-head: 1.14;
  --lh-body: 1.75;
  --space-1:.25rem;
  --space-2:.5rem;
  --space-3:.75rem;
  --space-4:1rem;
  --space-5:1.5rem;
  --space-6:2rem;
  --space-7:3rem;
  --space-8:4rem;
  --space-9:5rem;
  --section-pad: clamp(3.5rem, 7vw, 6.5rem);
  --radius-sm:8px;
  --radius:16px;
  --radius-lg:24px;
  --radius-pill:999px;
  --border-w:1px;
  --shadow-card:0 20px 40px -24px rgba(0,0,0,.7);
  --container:1240px;
  --container-pad:20px;
  --header-h:64px;
}

@media (min-width: 768px) {
  :root {
    --container-pad:32px;
    --header-h:72px;
  }
}
@media (min-width: 1024px) {
  :root {
    --container-pad:40px;
    --header-h:80px;
  }
}
/* Breakpoints (px constants; media queries can't read custom props):
   sm 576 · md 768 · lg 992 · xl 1200 — Bootstrap-aligned (markup uses col-lg/col-xl). */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video, iframe {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-head);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-heading);
}

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-accent-hover);
}

strong, b {
  color: var(--color-heading);
  font-weight: 700;
}

::selection {
  background: var(--color-accent);
  color: var(--color-accent-ink);
}

.capitalize-first::first-letter {
  text-transform: uppercase;
}

.blog-meta-two, .prose {
  color: var(--color-text);
  max-width: 74ch;
}

.blog-meta-two.max-w-none, .prose.max-w-none {
  max-width: none;
}

.blog-meta-two h2, .prose h2 {
  font-size: var(--fs-h2);
  margin: var(--space-8) 0 var(--space-4);
}

.blog-meta-two h3, .prose h3 {
  font-size: var(--fs-h3);
  margin: var(--space-6) 0 var(--space-3);
}

.blog-meta-two h4, .prose h4 {
  margin: var(--space-5) 0 var(--space-2);
}

.blog-meta-two p, .prose p {
  margin: 0 0 var(--space-5);
}

.blog-meta-two ul, .blog-meta-two ol, .prose ul, .prose ol {
  margin: 0 0 var(--space-5);
  padding-left: var(--space-5);
  display: grid;
  gap: var(--space-2);
}

.blog-meta-two ul, .prose ul {
  list-style: disc;
}

.blog-meta-two ol, .prose ol {
  list-style: decimal;
}

.blog-meta-two li::marker, .prose li::marker {
  color: var(--color-accent);
}

.blog-meta-two a, .prose a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-meta-two a:hover, .prose a:hover {
  color: var(--color-accent-hover);
}

.blog-meta-two img, .prose img {
  border-radius: var(--radius);
  border: var(--border-w) solid var(--color-border);
  margin: var(--space-5) 0;
}

.blog-meta-two blockquote, .prose blockquote {
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  padding: var(--space-3) var(--space-5);
  margin: 0 0 var(--space-5);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.blog-meta-two code, .prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: var(--color-surface-2);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}

.blog-meta-two hr, .prose hr {
  border: 0;
  border-top: var(--border-w) solid var(--color-border);
  margin: var(--space-7) 0;
}

h2[id], h3[id], h4[id] {
  scroll-margin-top: calc(var(--header-h) + var(--space-4));
}

/* Minimal Bootstrap-compatible grid + utilities used by the Habu markup (flat CSS). */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--space-4) * -1);
}

.row > [class*=col] {
  padding-inline: var(--space-4);
}

/* gx-5 gutter must not exceed container padding, or the negative row margin overflows.
   Small on mobile (<= --container-pad 20px), larger from md where padding grows to 32px+. */
.row.gx-5 {
  margin-inline: calc(var(--space-4) * -1);
}

.row.gx-5 > [class*=col] {
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .row.gx-5 {
    margin-inline: calc(var(--space-6) * -1);
  }
  .row.gx-5 > [class*=col] {
    padding-inline: var(--space-6);
  }
}
.col {
  flex: 1 1 0%;
  max-width: 100%;
}

/* Flex children must be allowed to shrink, else long content forces overflow (clipped by overflow-x:clip). */
[class*=col-], .col {
  min-width: 0;
}

/* A "12/12" column is full width at every breakpoint (base col-*-12 rules only kick in at their bp). */
.col-12, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-0 {
  flex: 1 1 0%;
  width: auto;
}

.col-xs-1 {
  flex: 0 0 auto;
  width: 8.333333%;
}

.col-xs-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}

.col-xs-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-xs-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

.col-xs-5 {
  flex: 0 0 auto;
  width: 41.666667%;
}

.col-xs-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-xs-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}

.col-xs-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.col-xs-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-xs-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}

.col-xs-11 {
  flex: 0 0 auto;
  width: 91.666667%;
}

.col-xs-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-xs-0 {
  flex: 1 1 0%;
  width: auto;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-sm-0 {
    flex: 1 1 0%;
    width: auto;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-md-0 {
    flex: 1 1 0%;
    width: auto;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-lg-0 {
    flex: 1 1 0%;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-xl-0 {
    flex: 1 1 0%;
    width: auto;
  }
}
/* display */
.d-none {
  display: none !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right, .text-end {
  text-align: right;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.position-relative {
  position: relative;
}

.w-100 {
  width: 100%;
}

.mx-auto {
  margin-inline: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-15 {
  margin-bottom: 15px;
}

.ms-3 {
  margin-left: var(--space-4);
}

.p-2 {
  padding: var(--space-2);
}

.py-3 {
  padding-block: var(--space-3);
}

.py-4 {
  padding-block: var(--space-4);
}

.pt-4 {
  padding-top: var(--space-4);
}

.px-2 {
  padding-inline: var(--space-2);
}

.px-4 {
  padding-inline: var(--space-4);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-5 {
  gap: var(--space-5);
}

.fw-bold {
  font-weight: 700;
}

.fw-bolder {
  font-weight: 700;
}

.fs-5 {
  font-size: 1.15rem;
}

.text-white {
  color: var(--color-heading);
}

.text-decoration-none {
  text-decoration: none;
}

.border-bottom {
  border-bottom: var(--border-w) solid var(--color-border);
}

.border-secondary {
  border-color: var(--color-border) !important;
}

.max-w-none {
  max-width: none;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.relative {
  position: relative;
}

/* responsive display helpers the markup uses */
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .justify-content-center.d-lg-flex {
    justify-content: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .gap-xl-5 {
    gap: var(--space-6);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .d-md-block {
    display: block !important;
  }
}
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#page-wrapper {
  flex: 1 0 auto;
}

.header-area {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: var(--border-w) solid var(--color-border);
}

.header-area.bg-dark {
  background: var(--color-bg);
}

/* Blur only on desktop: backdrop-filter creates a containing block for position:fixed,
   which would trap the mobile drawer inside the (short) header. Desktop has no drawer. */
@media (min-width: 992px) {
  .header-area, .header-area.bg-dark {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
  }
}
#header-sticky.menu-area {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
}

.second-menu {
  width: 100%;
}

.header-area .logo a {
  display: inline-flex;
  align-items: center;
}

.header-area .logo img {
  max-width: 150px !important;
  height: auto;
}

/* desktop nav */
.main-menu nav .nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  justify-content: flex-end;
  margin: 0;
}

.main-menu .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35ch;
  color: var(--color-text);
  font-weight: 600;
  padding: var(--space-2) 0;
}

.main-menu .nav-link:hover, .main-menu .has-submenu[aria-current] .nav-link, .main-menu .nav-link[aria-current=page] {
  color: var(--color-accent);
}

.main-menu .has-submenu {
  position: relative;
}

.main-menu .dropdown-toggle::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.2em;
}

.main-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + var(--space-3));
  min-width: 220px;
  background: var(--color-surface);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.main-menu .has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

.main-menu .sub-menu a:hover {
  background: var(--color-surface-2);
  color: var(--color-heading);
}

.header-area-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

.header-area-right > ul {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0;
}

/* hamburger (added to markup) */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}
@media (max-width: 991.98px) {
  /* Pin the header to the viewport on mobile. A sticky header can detach when the drawer
     opens and body scroll is locked (html vs body scroller differ across browsers);
     position:fixed keeps it put. Compensate with padding on the content wrapper. */
  .header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  #page-content {
    padding-top: var(--header-h);
  }
  /* full-viewport drawer below the header (header no longer traps it — blur is desktop-only) */
  .main-menu {
    position: fixed;
    inset: var(--header-h) 0 0;
    width: auto;
    max-width: 100%;
    text-align: left;
    background: var(--color-bg);
    border-top: var(--border-w) solid var(--color-border);
    padding: var(--space-4) var(--container-pad) var(--space-8);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 90;
  }
  .main-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-menu nav {
    width: 100%;
  }
  .main-menu nav .nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }
  .main-menu .has-submenu {
    width: 100%;
  }
  /* links: full width, left aligned (override the column's .text-right) */
  .main-menu .nav-link {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: var(--space-4) 0;
    font-size: 1.15rem;
    border-bottom: var(--border-w) solid var(--color-border);
  }
  .main-menu .dropdown-toggle {
    justify-content: space-between;
  }
  .main-menu .sub-menu {
    position: static;
    display: block;
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 var(--space-2) var(--space-4);
    background: transparent;
  }
  .main-menu .sub-menu a {
    white-space: normal;
  }
  body.nav-open {
    overflow: hidden;
  }
}
.footer-section {
  border-top: var(--border-w) solid var(--color-border);
  background: var(--color-bg);
  margin-top: var(--section-pad);
}

.footer-top {
  padding-block: var(--section-pad);
}

.footer-section .widget-title {
  margin-bottom: var(--space-4);
}

.footer-section .widget-title .h3, .footer-section .widget-title p {
  color: var(--color-heading);
}

.footer-section .widget-title .logo img {
  max-width: 140px;
}

.footer-section .about-widget .contact-ft ul {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.footer-section .contact-ft li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.footer-section .contact-ft li svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--color-accent);
  margin-top: 2px;
}

.footer-section .widget p.capitalize-first {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.footer-section .link-widget ul {
  display: grid;
  gap: var(--space-2);
}

.footer-section .link-widget a {
  color: var(--color-text);
}

.footer-section .link-widget a:hover {
  color: var(--color-accent);
}

.lower-footer {
  border-top: var(--border-w) solid var(--color-border);
  padding-block: var(--space-5);
}

.lower-footer .copyright {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  margin: 0;
}

.lower-footer .copy-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.breadcumb-section {
  background: var(--color-surface);
  border-bottom: var(--border-w) solid var(--color-border);
  padding-block: var(--space-7);
}

.breadcumb-wrap h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-3);
}

.breadcumb-wrap ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5ch;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;
}

.breadcumb-wrap ol li + li::before {
  content: "/";
  margin-right: 0.5ch;
  color: var(--color-border-strong);
}

.breadcumb-wrap ol a {
  color: var(--color-text-muted);
}

.breadcumb-wrap ol a:hover {
  color: var(--color-accent);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader .loader {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--color-border-strong);
  border-top-color: var(--color-accent);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-style-1, .btn-style-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6ch;
  min-height: 44px;
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 0;
  text-align: center;
  transition: background-color 0.18s ease;
}

.btn-style-1:hover, .btn-style-2:hover {
  background: var(--color-accent-hover);
  color: var(--color-accent-ink);
}

.btn-style-2 {
  background: transparent;
  border: var(--border-w) solid var(--color-border-strong);
  color: var(--color-heading);
}

.btn-style-2:hover {
  background: transparent;
  border-color: var(--color-heading);
  color: var(--color-heading);
}

/* Play CTA — two-label vertical roll on hover (Framer-style). */
.cta-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 0;
  text-align: center;
  transition: background-color 0.18s ease;
}

.cta-button:hover {
  background: var(--color-accent-hover);
  color: var(--color-accent-ink);
}

.cta-button__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.cta-button__label--in {
  position: absolute;
  inset: 0;
  transform: translateY(115%);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .cta-button__label {
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .cta-button:hover .cta-button__label--base {
    transform: translateY(-115%);
  }
  .cta-button:hover .cta-button__label--in {
    transform: translateY(0);
  }
}
.cta-button--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-small);
  min-height: 38px;
}

.cta-button--block {
  width: 100%;
}

/* FAQ — bootstrap-accordion markup, styled + driven by vanilla JS (all closed at load). */
.section-heading {
  margin-bottom: var(--space-6);
}

.section-heading h2 {
  text-align: center;
}

.accordion {
  display: grid;
  gap: var(--space-3);
  max-width: 900px;
  margin-inline: auto;
}

.accordion-item {
  background: var(--color-surface);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 600;
  color: var(--color-heading);
  font-family: var(--font-body);
  font-size: 1rem;
}

.accordion-button::after {
  content: "";
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.2em;
}

.accordion-button[aria-expanded=true]::after {
  transform: rotate(-135deg);
  margin-top: 0.2em;
}

.accordion-collapse {
  display: none;
}

.accordion-collapse.show {
  display: block;
}

.accordion-body {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-muted);
}

.accordion-body p {
  margin: 0 0 var(--space-3);
}

.accordion-body :last-child {
  margin-bottom: 0;
}

.contact-form-area .form-field, .contact-form-area .form-control {
  margin-bottom: var(--space-4);
}

.form-control {
  width: 100%;
  background: var(--color-surface);
  color: var(--color-text);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--color-accent);
  outline: none;
}

.form-control.has-error {
  border-color: var(--color-danger);
}

.submit-area {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

#loader {
  display: none;
}

.error-handling-messages {
  margin-top: var(--space-3);
  font-size: var(--fs-small);
}

#success {
  display: none;
  color: var(--color-ok);
}

#success.is-visible {
  display: block;
}

#error {
  display: none;
  color: var(--color-danger);
}

.field-error {
  display: none;
  color: var(--color-danger);
  font-size: var(--fs-small);
  margin-top: calc(var(--space-3) * -1 + 2px);
  margin-bottom: var(--space-3);
}

.form-field.has-error .field-error {
  display: block;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-5) 0;
  border-radius: var(--radius);
  border: var(--border-w) solid var(--color-border);
}

.table-scroll table {
  min-width: 640px;
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.table-scroll th, .table-scroll td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: var(--border-w) solid var(--color-border);
  vertical-align: top;
}

.table-scroll thead th {
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-weight: 700;
  border-bottom: 0;
}

.table-scroll thead th strong, .table-scroll thead th b, .table-scroll thead th a {
  color: inherit;
}

.table-scroll tbody tr:nth-child(even) {
  background: var(--color-surface);
}

.table-scroll tbody td strong {
  color: var(--color-heading);
}

/* Trust/brand logo strip — natural colour, no filters, no dimming (§8.6). */
.copy-right ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin: 0;
  justify-content: flex-end;
}

.casino-li {
  display: inline-flex;
}

img.casino-logos {
  height: 30px;
  width: auto;
  opacity: 1;
  filter: none;
}

@media (max-width: 991.98px) {
  .copy-right ul {
    justify-content: flex-start;
    margin-top: var(--space-4);
  }
}
/* TOC shortcode container (dark Denzil; overrides the shortcode's inline light styles). */
.toc-container {
  background: var(--color-surface);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  margin: 0 0 var(--space-7);
}

.toc-container .toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.toc-container .toc-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.toc-container .toc-toggle-icon {
  color: var(--color-text-muted) !important;
}

.toc-container nav a {
  color: var(--color-text-muted) !important;
}

.toc-container nav a:hover {
  color: var(--color-accent) !important;
}

.toc-container nav ul {
  list-style: none;
  padding-left: 0;
}

.toc-container nav#TableOfContents ul ul {
  padding-left: var(--space-4);
  border-left: var(--border-w) solid var(--color-border);
  margin-top: var(--space-2);
}

.toc-container nav li {
  margin-top: 12px;
}

.features-area, .blog-section {
  padding-block: var(--section-pad);
}

.blog-section.relative {
  position: relative;
}

.section-padding {
  padding-block: var(--section-pad);
}

.features-area article, .blog-section article {
  margin-inline: auto;
}

.map-section {
  border-bottom: var(--border-w) solid var(--color-border);
}

.map-section .map {
  aspect-ratio: 16/6;
}

.map-section .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.contact-page {
  padding-block: var(--section-pad);
}

.section-title-s3 h2 {
  margin-bottom: var(--space-6);
}

.office-info {
  background: var(--color-surface);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
}

.office-info-text ul {
  display: grid;
  gap: var(--space-4);
  margin: 0;
}

.office-info-text li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text);
}

.office-info-text li svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--color-accent);
  margin-top: 3px;
}

.contact-form-area {
  background: var(--color-surface);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
}

@media (min-width: 992px) {
  .contact-page .office-info {
    margin-bottom: 0;
  }
}
.office-info {
  margin-bottom: var(--space-6);
}

.opps-404-section {
  padding-block: var(--section-pad);
}

.opps-404-section .content {
  text-align: center;
  display: grid;
  gap: var(--space-4);
  place-items: center;
}

.opps-404-section .error img {
  max-width: min(420px, 80vw);
  margin-inline: auto;
}

.opps-404-section .opps-message h3 {
  font-size: var(--fs-h2);
}

.opps-404-section .opps-message p {
  color: var(--color-text-muted);
  max-width: 48ch;
  margin-inline: auto;
}

.opps-404-section .opps-message .btn-style-2 {
  margin-top: var(--space-3);
}