@font-face {
  font-family: 'Sora';
  font-style: normal;
  src: url('../fonts/Sora/Sora.ttf');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  src: url('../fonts/Manrope/Manrope.ttf');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  src: url('../fonts/SpaceGrotesk/SpaceGrotesk.ttf');
}

:root {
  --brand-dark: #450610;
  --brand-deep: #8f0c1e;
  --brand: #e0162b;
  --brand-mid: #b81024;
  --brand-accent: #ff2438;
  --grad-brand: linear-gradient(135deg, #8f0c1e 0%, #e0162b 55%, #ff2438 100%);

  --bg: #fbf4f4;
  --bg-2: #f4e9e9;
  --surface: #fdf7f7;
  --surface-2: #f3e6e6;
  --text: #2a1016;
  --text-muted: #7c525a;
  --border: rgba(69, 6, 16, 0.12);
  --border-strong: rgba(69, 6, 16, 0.2);
  --shadow: 0 18px 45px -18px rgba(69, 6, 16, 0.22);
  --shadow-sm: 0 8px 24px -12px rgba(69, 6, 16, 0.18);
  --dots: rgba(69, 6, 16, 0.13);
  --ring-line: rgba(69, 6, 16, 0.2);
  --topbar-bg: rgba(251, 244, 244, 0.85);
  --wash-1: #f9dcdd;
  --wash-2: #f3c6ca;
  --wash-3: #ecafb5;
  --btn-on-gradient: #fdf7f7;

  --theme-colors-accent-color: #8f0c1e;
  --theme-colors-accent-hover: #720a18;
  --theme-colors-text-color: #2a1016;
  --theme-popup-accent-color: #8f0c1e;

  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --font-utility: "Space Grotesk", monospace;

  --radius: 18px;
  --radius-lg: 16px;
  --section-y: clamp(3.8rem, 7vw, 6rem);
  --topbar-h: 84px;
}

html[data-theme="dark"] {
  --bg: #200710;
  --bg-2: #2a0914;
  --surface: #350c19;
  --surface-2: #431020;
  --text: #fbeef0;
  --text-muted: #e2ced1;
  --border: rgba(251, 238, 240, 0.1);
  --border-strong: rgba(251, 238, 240, 0.22);
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 10px 26px -14px rgba(0, 0, 0, 0.6);
  --dots: rgba(251, 238, 240, 0.12);
  --ring-line: rgba(251, 238, 240, 0.2);
  --topbar-bg: rgba(32, 7, 16, 0.82);
  --wash-1: #2c0913;
  --wash-2: #501020;
  --wash-3: #79132a;
  --btn-on-gradient: #200710;
  --theme-colors-text-color: #fbeef0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  transition: background-color 0.35s ease, color 0.35s ease;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-accent); }

img, svg, video { max-width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand); color: #fff; }

.section { position: relative; padding: var(--section-y) 0; }
.section-tint { background: var(--bg-2); }
.section > .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: radial-gradient(circle 4px at 82% 22%, var(--brand-accent) 98%, transparent 100%);
}

.section-heading { max-width: 660px; }
.section-heading h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
.section-heading.text-center { margin-inline: auto; }

.grad-text {
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead-copy { font-size: 1.13rem; }

.bg-dots::before,
.bg-grid::before,
.bg-diag::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg-dots::before {
  background-image: radial-gradient(var(--dots) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  opacity: 0.75;
}
.bg-grid::before {
  background-image:
    linear-gradient(var(--dots) 1px, transparent 1px),
    linear-gradient(90deg, var(--dots) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 25%, transparent 78%);
  opacity: 0.5;
}
.bg-diag::before {
  background-image: repeating-linear-gradient(45deg, var(--dots) 0 1.5px, transparent 1.5px 16px);
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 55%, #000 25%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 75% at 50% 55%, #000 25%, transparent 80%);
  opacity: 0.2;
}

.btn-brand,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-brand {
  color: #fff;
  background: var(--brand);
  background-size: 160% 160%;
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  background-position: 100% 50%;
}
.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { color: var(--text); border-color: var(--brand-accent); transform: translateY(-3px); }
.btn-brand i, .btn-ghost i { font-size: 0.85em; transition: transform 0.25s ease; }
.btn-brand:hover i, .btn-ghost:hover i { transform: translateX(4px); }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  z-index: 900;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.topbar.is-scrolled {
  background: var(--topbar-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo img { height: 52px; width: auto; display: block; }
@media screen and (max-width: 420px){
  .brand-logo img { height: 40px; width: auto; display: block; }
}
@media screen and (max-width: 359px){
  .brand-logo img { height: 32px; width: auto; display: block; }
}
.footer .brand-logo img,
/* .menu-brand > img { filter: brightness(0) invert(1); } */

.topbar-actions { display: flex; align-items: center; gap: 0.9rem; }

.theme-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.3s ease;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.05); border-color: var(--brand-accent); }
.theme-toggle .fa-sun { display: none; }
html[data-theme="dark"] .theme-toggle .fa-sun { display: inline; }
html[data-theme="dark"] .theme-toggle .fa-moon { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.menu-toggle .orbit-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  transition: border-color 0.25s ease, background-color 0.3s ease;
}
.menu-toggle .orbit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--brand-accent);
  transform: rotate(-40deg) translateX(25px);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0.2, 1.4);
}
.menu-toggle:hover .orbit-btn::after { transform: rotate(140deg) translateX(25px); }
.menu-toggle .orbit-btn span,
.menu-toggle .orbit-btn span::before,
.menu-toggle .orbit-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
}
.menu-toggle .orbit-btn span::before,
.menu-toggle .orbit-btn span::after { content: ""; position: absolute; left: 0; }
.menu-toggle .orbit-btn span::before { top: -6px; }
.menu-toggle .orbit-btn span::after { top: 6px; }

@media (max-width: 575.98px) {
  .menu-toggle .menu-label { display: none; }
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(320px, 40%) 1fr;
  visibility: hidden;
  clip-path: circle(0px at calc(100% - 76px) 42px);
  transition: clip-path 0.7s cubic-bezier(0.7, 0, 0.2, 1), visibility 0s linear 0.7s;
  background: var(--bg);
}
.site-menu.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 76px) 42px);
  transition: clip-path 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}

.menu-brand {
  position: relative;
  background: var(--brand-mid);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}
.menu-brand::before,
.menu-brand::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}
.menu-brand::before { width: 520px; height: 520px; right: -180px; bottom: -200px; }
.menu-brand::after { width: 340px; height: 340px; right: -70px; bottom: -90px; border-color: rgba(245, 133, 79, 0.4); }
/* .menu-brand .menu-sat {
  position: absolute;
  right: 96px;
  bottom: 226px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-accent);
} */
.menu-brand > img { height: 52px; width: auto; align-self: flex-start; }

.menu-brand-info { position: relative; z-index: 1; }
.menu-brand-info .tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  max-width: 20ch;
  line-height: 1.35;
  margin-bottom: 2rem;
}
.menu-brand-info ul { list-style: none; margin: 0; padding: 0; }
.menu-brand-info li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}
.menu-brand-info li i { color: var(--brand-accent); font-size: 0.9rem; }
.menu-brand-info a { color: #fff; }

.menu-nav {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 5rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.6rem;
}

.menu-group-label {
  font-family: var(--font-utility);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.menu-primary { list-style: none; margin: 0; padding: 0; }
.menu-primary a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  padding: 0.28rem 0;
  transition: color 0.25s ease, transform 0.3s ease;
}
.menu-primary a::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: radial-gradient(circle 0.12em at 80% 20%, var(--brand-accent) 98%, transparent 100%);
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.menu-primary a:hover { color: var(--text); transform: translateX(6px); }
.menu-primary a:hover::before,
.menu-primary a.is-active::before { opacity: 1; transform: scale(1) rotate(0deg); }
.menu-primary a.is-active { color: transparent; background: var(--brand); -webkit-background-clip: text; background-clip: text; }

.menu-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 2rem;
  max-width: 700px;
}
.menu-services a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.3rem 0;
}
.menu-services a i { font-size: 0.7rem; color: var(--brand-accent); opacity: 1; transform: translateX(-6px); transition: all 0.25s ease; }
.menu-services a:hover { color: var(--text); }
.menu-services a:hover i { opacity: 1; transform: translateX(0); }
.menu-services li.active a{color: var(--brand-accent);}
.menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  z-index: 2;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.menu-close:hover { transform: rotate(90deg); border-color: var(--brand-accent); }

.site-menu .menu-stagger { opacity: 0; transform: translateY(26px); transition: opacity 0.5s ease, transform 0.5s ease; }
.site-menu.is-open .menu-stagger { opacity: 1; transform: translateY(0); }
.site-menu.is-open .menu-stagger:nth-child(1) { transition-delay: 0.18s; }
.site-menu.is-open .menu-stagger:nth-child(2) { transition-delay: 0.28s; }

body.menu-open { overflow: hidden; }

@media (max-width: 991.98px) {
  .site-menu { grid-template-columns: 1fr; overflow-y: auto; }
  .menu-brand { order: 2; min-height: 260px; }
  .menu-brand-info .tagline { display: none; }
  .menu-nav { justify-content: flex-start; padding-top: 6.5rem; gap: 2rem; }
  .menu-services { grid-template-columns: 1fr; }
  .menu-primary a { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}

.hero-home {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: calc(var(--topbar-h) + 3rem) 0 5rem;
}
.hero-home .wash,
.page-hero .wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, var(--wash-1), var(--wash-2) 30%, var(--wash-3) 55%, var(--wash-2) 78%, var(--wash-1));
  background-size: 280% 280%;
  z-index: 0;
  pointer-events: none;
}
.hero-home .wash { animation: wash-move 5s ease-in-out infinite alternate; }
@keyframes wash-move {
  from { background-position: 0% 30%; }
  to { background-position: 100% 70%; }
}

.hero-home .container { position: relative; z-index: 2; }

.hero-orbit {
  position: absolute;
  top: 50%;
  right: -10vw;
  width: clamp(420px, 46vw, 700px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-orbit .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ring-line);
  animation: orbit-spin 46s linear infinite;
}
.hero-orbit .ring-2 { inset: 13%; border-color: rgba(255, 65, 65, 0.45); animation-duration: 32s; animation-direction: reverse; }
.hero-orbit .ring-3 { inset: 27%; animation-duration: 58s; }
.hero-orbit .ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-accent);
  /* box-shadow: 0 0 18px 3px rgba(245, 133, 79, 0.65); */
}
.hero-orbit .ring-3::before { 
  background: var(--brand); 
  /* box-shadow: 0 0 14px 2px rgba(122, 46, 156, 0.6);  */
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero-media-home { position: relative; z-index: 2; }
.hero-media-home .media-frame { min-height: 380px; transform: rotate(2deg); }
.hero-media-home .media-frame img { min-height: 380px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.6rem;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-kicker i { color: var(--brand-accent); font-size: 0.7rem; }

.hero-home h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  max-width: 15ch;
  margin-bottom: 1.4rem;
}
.hero-home .hero-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 54ch;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 1.2rem;
  animation: hero-bob 2.4s ease-in-out infinite;
}
@keyframes hero-bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

@media (max-width: 991.98px) {
  .hero-orbit { display: none; }
  .hero-media-home { margin-top: 2.5rem; }
  .hero-media-home .media-frame { transform: none; min-height: 260px; }
  .hero-media-home .media-frame img { min-height: 260px; }
}

.page-hero {
  position: relative;
  padding: calc(var(--topbar-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(2.8rem, 5.5vw, 4.2rem);
  background: var(--bg-2);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dots) 1px, transparent 1px),
    linear-gradient(90deg, var(--dots) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(115deg, transparent 40%, #000 100%);
  mask-image: linear-gradient(115deg, transparent 40%, #000 100%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.page-hero .hero-tag::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: radial-gradient(circle 3.5px at 82% 22%, var(--brand-accent) 98%, transparent 100%);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 18ch; margin: 0; }
.page-hero .hero-sub { max-width: 70ch; margin: 1.2rem 0 0; font-size: 1.13rem; line-height: 1.5; }
.page-hero .hero-media { position: relative; }
.page-hero .media-frame { min-height: 280px; }
.page-hero .media-frame img { min-height: 280px; }
@media (max-width: 991.98px) {
  .page-hero .hero-media { margin-top: 2rem; }
  .page-hero .media-frame, .page-hero .media-frame img { min-height: 220px; }
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
  outline: 1px solid #13131313;
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(circle at 70% 30%, #000 20%, transparent 75%);
  opacity: 0;
}
.media-frame img { position: relative; width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.media-frame.media-missing img { display: none; }
.media-frame.media-missing::after {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
}
.media-sm, .media-sm img { min-height: 260px; }

.icon-tile {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px -10px rgba(122, 46, 156, 0.55);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  transition: border-color 0.3s ease, transform 0.5s ease;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.service-card:hover::after { border-color: rgba(245, 133, 79, 0.5); transform: rotate(35deg); }
.service-card h3 { font-size: 1.26rem; margin: 0; }
.service-card p { font-size: 0.98rem; margin: 0; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-utility);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-link i { transition: transform 0.25s ease; font-size: 0.75rem; }
.service-card:hover .card-link i { transform: translateX(5px); }

.card-rail {
  position: relative;
  height: 100%;
  padding: 2rem 1.9rem 2rem 2.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* .card-rail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--brand);
} */
.card-rail:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.card-rail h3 { font-size: 1.1rem; }
.card-rail h3 i { color: var(--brand-accent); margin-right: 0.6rem; font-size: 1rem; }
.card-rail p { font-size: 0.98rem; margin: 0; }

.card-corner {
  position: relative;
  height: 100%;
  padding: 2.1rem 1.9rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card-corner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 74px;
  height: 74px;
  background: var(--brand);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.9;
  transition: width 0.35s ease, height 0.35s ease;
}
.card-corner:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.card-corner:hover::before { width: 92px; height: 92px; }
.card-corner h3 { font-size: 1.2rem; padding-right: 3.2rem; }
.card-corner h3 i { color: var(--brand); margin-right: 0.6rem; font-size: 1rem; }
.card-corner p { font-size: 0.97rem; margin: 0; }

.step-num {
  display: inline-block;
  font-family: var(--font-utility);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--brand);
  margin-bottom: 0.7rem;
}

.facet {
  height: 100%;
  padding: 1.8rem 1.7rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.facet .facet-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.facet .facet-label i { color: var(--text); }
.facet p { font-size: 0.97rem; margin: 0; }
.facet-t1, .facet-t2, .facet-t3 { position: relative; overflow: hidden; }
.facet-t1::before, .facet-t2::before, .facet-t3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  border-radius: 0 0 4px 0;
}
.facet-t1::before { width: 34%; background: var(--brand-deep); }
.facet-t2::before { width: 56%; background: var(--brand); }
.facet-t3::before { width: 78%; background: var(--brand-accent); }

.loop-slider { position: relative; overflow: hidden; }
.loop-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.loop-track > * { flex: 0 0 calc((100% - 1.4rem) / 2); min-width: 0; }
@media (max-width: 767.98px) {
  .loop-track > * { flex-basis: 100%; }
}
.slider-controls { display: flex; gap: 0.7rem; }
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.slider-btn:hover { border-color: transparent; background: var(--brand); color: #fff; transform: translateY(-2px); }

.accordion.brand-accordion {
  --bs-accordion-bg: var(--surface);
  --bs-accordion-color: var(--text-muted);
  --bs-accordion-border-color: var(--border);
  --bs-accordion-border-radius: var(--radius);
  --bs-accordion-inner-border-radius: calc(var(--radius) - 2px);
  --bs-accordion-btn-color: var(--text);
  --bs-accordion-active-color: var(--text);
  --bs-accordion-active-bg: var(--surface);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(122, 46, 156, 0.25);
  --bs-accordion-btn-padding-y: 1.25rem;
  --bs-accordion-btn-padding-x: 1.5rem;
  --bs-accordion-body-padding-x: 1.5rem;
}
.brand-accordion .accordion-item { margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.brand-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  gap: 0.9rem;
}
.brand-accordion .accordion-button i { color: var(--brand-accent); font-size: 0.95rem; }
.brand-accordion .accordion-button:not(.collapsed) { box-shadow: inset 0 -1px 0 var(--border); }
.brand-accordion .accordion-body { font-size: 0.99rem; }

.brand-tabs { gap: 0.7rem; margin-bottom: 2rem; }
.brand-tabs .nav-link {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  white-space: normal;
  line-height: 1.35;
  text-align: left;
  transition: all 0.25s ease;
}
.brand-tabs .nav-link:hover { color: var(--text); border-color: var(--brand-accent); }
.brand-tabs .nav-link.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.tab-panel {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.panel-watermark {
  position: absolute;
  right: -20px;
  bottom: -26px;
  font-size: 9rem;
  color: var(--text);
  opacity: 0.05;
  pointer-events: none;
}

.step-rail { list-style: none; margin: 0; padding: 0; position: relative; }
.step-rail::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-deep), var(--brand), var(--brand-accent));
  opacity: 0.5;
}
.step-rail li { position: relative; padding: 0 0 2rem 3.2rem; }
.step-rail li:last-child { padding-bottom: 0; }
.step-rail li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: var(--bg) radial-gradient(circle 4px at 78% 22%, var(--brand-accent) 98%, transparent 100%);
}
.step-rail h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.step-rail p { font-size: 0.97rem; margin: 0; }

.pulse-line {
  position: relative;
  height: 2px;
  margin: 1.4rem 0 0;
  background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
  overflow: visible;
}
.pulse-line::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-accent);
  /* box-shadow: 0 0 14px 3px rgba(245, 133, 79, 0.65); */
  animation: pulse-run 4.5s ease-in-out infinite;
}
@keyframes pulse-run {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

.statement {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 4.5vw, 3.6rem);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image: repeating-linear-gradient(45deg, var(--dots) 0 1.5px, transparent 1.5px 16px);
  -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 55%);
  mask-image: linear-gradient(100deg, #000 0%, transparent 55%); */
  pointer-events: none;
}
.statement > * { position: relative; }
.statement h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.statement .statement-mark {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 0.9rem;
}
.statement .statement-watermark {
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-size: 12rem;
  color: var(--text);
  opacity: 0.025;
  transform: rotate(-12deg);
  pointer-events: none;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.2rem;
}
.checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 1.3rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.99rem;
  line-height: 1.5;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.checklist li:hover { transform: translateX(6px); border-color: rgba(245, 133, 79, 0.55); }
.checklist li i {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  background: var(--brand-accent);
}
@media (max-width: 767.98px) { .checklist { grid-template-columns: 1fr; } }

.checklist-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.checklist-pills li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.checklist-pills li:hover { border-color: var(--brand-accent); transform: translateY(-3px); }
.checklist-pills li i { color: var(--brand); font-size: 1rem; flex: none; }
@media (max-width: 767.98px) { .checklist-pills { grid-template-columns: 1fr; } }

.checklist-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  counter-reset: row;
}
.checklist-rows li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.4rem;
  font-weight: 600;
  font-size: 0.99rem;
  color: var(--text);
  background: var(--surface);
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}
.checklist-rows li:nth-child(even) { background: var(--surface-2); }
.checklist-rows li i { color: var(--brand-accent); font-size: 0.85rem; flex: none; }
.checklist-rows.ledger li { counter-increment: row; }
.checklist-rows.ledger li::before {
  content: counter(row, decimal-leading-zero);
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand);
  flex: none;
}

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 4.5vw, 3.8rem);
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 0;
}
.cta-band::before { width: 430px; height: 430px; right: -190px; bottom: -280px; }
.cta-band::after { width: 250px; height: 250px; right: -70px; bottom: -140px; border-color: rgba(245, 133, 79, 0.4); }
.cta-band > * { position: relative; z-index: 1; }
.cta-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.cta-band .eyebrow { color: rgba(255, 255, 255, 1); }
.cta-band .eyebrow::before { border-color: rgba(255, 255, 255, 1); }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: none; margin-bottom: 0; }
.cta-band .cta-text { color: rgba(255, 255, 255, 0.85); max-width: none; margin: 1.4rem 0 0; }
.cta-band .btn-brand {
  background: var(--btn-on-gradient);
  color: var(--brand-dark);
  flex: none;
}
html[data-theme="dark"] .cta-band .btn-brand { color: #f7ecec; }
.cta-band .btn-brand:hover { color: var(--brand); }
@media (max-width: 767.98px) {
  .cta-band::before, .cta-band::after { display: none; }
}

.contact-panel {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}

.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.contact-info-list li:hover { transform: translateX(5px); border-color: var(--border-strong); }
.contact-info-list li > i { margin-top: 0.35rem; font-size: 1.05rem; color: var(--brand); }
.contact-info-list b { display: block; font-family: var(--font-display); color: var(--text); font-size: 1rem; }
.contact-info-list span, .contact-info-list a { color: var(--text-muted); font-size: 0.97rem; }
.contact-info-list a:hover { color: var(--brand-accent); }

.contact-form label {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  display: block;
}
.contact-form .form-control {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  color: var(--text);
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form .form-control:focus {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(122, 46, 156, 0.15);
}
.contact-form .form-control::placeholder { color: var(--text-muted); opacity: 0.7; }
.contact-form .captcha-render-wrap { margin-top: 1.4rem; }

.colors-captcha-overlay {
  background-color: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.colors-captcha-modal {
  border-radius: var(--radius) !important;
  box-shadow: 0 30px 70px -20px rgba(10, 12, 40, 0.55) !important;
}
.colors-captcha-are-you-human label {
  font-family: var(--font-utility);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
  cursor: pointer;
}
.colors-captcha-check-icon .fa-square { border-radius: 8px !important; }

.legal-article { max-width: none; }
.legal-article a{ color: var(--text); }
.legal-article h2 {
  font-size: 1.4rem;
  margin: 2.4rem 0 0.9rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}
.legal-article h3 {
  font-size: 1.2rem;
  margin: 2.4rem 0 0.9rem;
}
.legal-article div:first-of-type h2{ border-top: 0; padding-top: 0; margin-top: 1.6rem; }
.legal-article ol { color: var(--text-muted); padding-left: 1.3rem; margin: 0 0 1.1rem; }
.legal-article ul { color: var(--text-muted); padding-left: 1.3rem; margin: 0 0 1.1rem; }
.legal-article li { margin-bottom: 0.45rem; }
.legal-updated {
  display: inline-block;
  font-family: var(--font-utility);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}

.footer {
  position: relative;
  background: #1e0d11;
  color: #e2ced1;
  padding: 4.5rem 0 0;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brand);
}
.footer::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  right: -160px;
  bottom: -220px;
  pointer-events: none;
}
.footer-title {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-utility);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.65rem; }
.footer a { color: #e2ced1; font-size: 0.96rem; }
.footer a:hover { color: var(--brand-accent); }

.footer-brand img { height: 44px; width: auto; margin-bottom: 1.4rem; }
.footer-brand li { display: flex; gap: 0.8rem; align-items: baseline; font-size: 0.97rem; }
.footer-brand li i { color: var(--brand-accent); font-size: 0.85rem; flex: none; }

.footer-services {
  display: grid;
  gap: 0 1.6rem;
}
@media (max-width: 575.98px) { .footer-services { display: block; } }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: #fff;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
}
.footer-bottom li { margin: 0; }
.footer-bottom a { font-size: 0.92rem; }

.duo-block h3 { font-size: 1.15rem; }
.duo-block h3 i { margin-right: 0.55rem; font-size: 0.95rem; color: var(--brand); }
.duo-block p { font-size: 0.97rem; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .hero-home .wash { animation: none; }
  .pulse-line::before { animation: none; }
}
