:root {
  --gold: #C99A3C;
  --gold-soft: #D8B15C;
  --black: #111111;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;

  --ink-70: rgba(17, 17, 17, .70);
  --ink-55: rgba(17, 17, 17, .55);
  --ink-35: rgba(17, 17, 17, .35);
  --hairline: rgba(17, 17, 17, .10);
  --hairline-on-dark: rgba(255, 255, 255, .14);

  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 20px 60px -25px rgba(17, 17, 17, .35);
  --shadow-gold: 0 18px 40px -18px rgba(201, 154, 60, .55);
}


/* =========================================================
   BASE
   ========================================================= */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--black);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: 1240px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: skewX(-20deg);
  border-radius: 2px;
}

.eyebrow.light {
  color: var(--gold-soft);
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--ink-55);
  font-size: 1.05rem;
  max-width: 620px;
}

.section-pad {
  padding: 100px 0;
}

.bg-soft {
  background: var(--gray-light);
}

.bg-dark {
  background: var(--black);
  color: rgba(255,255,255,.88);
}

.bg-dark .section-lead {
  color: rgba(255,255,255,.62);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band h4,
.contact-info-card h1,
.contact-info-card h2,
.contact-info-card h3,
.why-card h1,
.why-card h2,
.why-card h3,
.pricing-card.highlighted h1,
.pricing-card.highlighted h2,
.pricing-card.highlighted h3,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  color: var(--white);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: 13px 28px;
  transition: all .3s var(--ease);
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(95deg, var(--gold), var(--gold-soft));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -16px rgba(201,154,60,.65);
  color: var(--black);
}

.btn-outline-light-gold {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}

.btn-outline-light-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all .35s var(--ease);
  background: transparent;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6);
}

.navbar-brand-logo {
  height: 38px;
  width: auto;
}

.site-header .navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  padding: 10px 16px !important;
  position: relative;
}

.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link:hover {
  color: var(--white);
}

.site-header .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.site-header .navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  padding: 4px 8px;
  line-height: 1;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.header-solid .site-header {
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 500px at 85% 20%,
      rgba(201,154,60,.22),
      transparent 60%
    ),
    radial-gradient(
      500px 400px at 10% 90%,
      rgba(216,177,92,.14),
      transparent 60%
    );
  pointer-events: none;
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255,255,255,.05) 1px,
      transparent 1px
    );
  background-size: 100% 90px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 30%,
      black 70%,
      transparent
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}


/* =========================================================
   MARQUEE
   ========================================================= */

.hero-marquee {
  border-top: 1px solid var(--hairline-on-dark);
  padding-top: 26px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 8%,
      black 92%,
      transparent
    );
}

.hero-marquee-track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.hero-marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-marquee-track span::after {
  content: "\2726";
  color: var(--gold);
  font-size: .7rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
   HERO STAT CARDS
   ========================================================= */

.hero-stat-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--hairline-on-dark);
  border-radius: var(--radius);
  padding: 26px 22px;
  backdrop-filter: blur(6px);
}

.hero-stat-card .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat-card .label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}


/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 168px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 400px at 90% 10%,
      rgba(201,154,60,.2),
      transparent 60%
    );
}

.page-hero .breadcrumb-nav {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.page-hero .breadcrumb-nav a:hover {
  color: var(--gold);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-top: 12px;
}


/* =========================================================
   CARDS
   ========================================================= */

.card-clip {
  clip-path:
    polygon(
      0 0,
      100% 0,
      100% calc(100% - 22px),
      calc(100% - 22px) 100%,
      0 100%
    );
}

.service-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 34px 28px;
  height: 100%;
  transition:
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    border-color .4s var(--ease);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-soft)
    );
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}

.service-card:hover .icon-wrap {
  transform: rotate(-8deg) scale(1.06);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--ink-55);
  font-size: .95rem;
  margin-bottom: 0;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--black);
  margin-top: 18px;
}

.service-card .card-link i {
  transition: transform .3s var(--ease);
}

.service-card:hover .card-link i {
  transform: translateX(4px);
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-card {
  text-align: left;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--hairline-on-dark);
  height: 100%;
  transition:
    border-color .3s var(--ease),
    background .3s var(--ease);
}

.why-card:hover {
  border-color: rgba(201,154,60,.5);
  background: rgba(201,154,60,.06);
}

.why-card .num {
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 14px;
  display: block;
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  margin-bottom: 0;
}


/* =========================================================
   PORTFOLIO
   ========================================================= */

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--gray-light);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(17,17,17,.92) 0%,
      rgba(17,17,17,.15) 55%,
      transparent 100%
    );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay .cat {
  font-family: var(--font-display);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.portfolio-filters button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink-70);
  transition: all .3s var(--ease);
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p.quote {
  font-size: 1.02rem;
  color: var(--black);
  margin-bottom: 22px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-soft)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-person .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}

.testimonial-person .role {
  font-size: .82rem;
  color: var(--ink-55);
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition:
    transform .4s var(--ease),
    box-shadow .4s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.highlighted {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: var(--shadow-soft);
}

.pricing-card.highlighted .pricing-desc,
.pricing-card.highlighted .feature-list li {
  color: rgba(255,255,255,.65);
}

.pricing-card.highlighted .plan-name {
  color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background:
    linear-gradient(
      95deg,
      var(--gold),
      var(--gold-soft)
    );
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 16px;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-price small {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-55);
}

.pricing-card.highlighted .plan-price small {
  color: rgba(255,255,255,.5);
}

.pricing-desc {
  color: var(--ink-55);
  font-size: .9rem;
  margin-bottom: 26px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--ink-70);
  border-bottom: 1px dashed var(--hairline);
}

.pricing-card.highlighted .feature-list li {
  border-color: rgba(255,255,255,.12);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i.included {
  color: var(--gold);
}

.feature-list li i.excluded {
  color: var(--ink-35);
}

.feature-list li.excluded-text {
  color: var(--ink-35);
  text-decoration: line-through;
}


/* =========================================================
   COUNTERS
   ========================================================= */

.stat-block {
  text-align: center;
  padding: 20px;
}

.stat-block .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-block .stat-label {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-top: 6px;
}

.bg-dark .stat-block .stat-label {
  color: rgba(255,255,255,.55);
}


/* =========================================================
   CTA
   ========================================================= */

.cta-band {
  background:
    linear-gradient(
      100deg,
      var(--black) 0%,
      #1c1a15 100%
    );
  color: var(--white);
  border-radius: 22px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(201,154,60,.35),
      transparent 70%
    );
}


/* =========================================================
   FORMS
   ========================================================= */

.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  padding: 13px 16px;
  font-size: .95rem;
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,154,60,.18);
}

label.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 8px;
}

.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.contact-info-card .item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-on-dark);
}

.contact-info-card .item:last-child {
  border-bottom: none;
}

.contact-info-card .item i {
  color: var(--gold);
  font-size: 1.3rem;
}

.contact-info-card .item .lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
}

.contact-info-card .item .val {
  font-family: var(--font-display);
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  filter: grayscale(1) contrast(1.05);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}

.site-footer h5 {
  color: var(--white);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.site-footer .footer-logo {
  height: 36px;
  margin-bottom: 18px;
}

.site-footer p {
  font-size: .92rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--hairline-on-dark);
  margin-top: 56px;
  padding: 24px 0;
  font-size: .84rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom a:hover {
  color: var(--gold);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

#backToTop {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,154,60,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gold);
  color: var(--black);
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.gold-divider {
  width: 60px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-soft)
    );
  border-radius: 2px;
  margin: 0 auto;
}


/* =========================================================
   PRELOADER
   ========================================================= */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity .5s ease,
    visibility .5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(201,154,60,.25);
  border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   UTILITY
   ========================================================= */

.text-gold {
  color: var(--gold) !important;
}

.bg-gray-light {
  background: var(--gray-light);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

  .navbar-collapse {
    background: rgba(17,17,17,.98);
    backdrop-filter: blur(10px);
    margin-top: 14px;
    padding: 14px 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .site-header .navbar-nav .nav-link {
    padding: 12px 14px !important;
  }

  .site-header .navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .site-header .navbar-nav .nav-item.ms-lg-2 {
    border-top: none;
    margin-top: 10px;
  }

  .site-header .navbar-nav .btn-gold {
    width: 100%;
    justify-content: center;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }


  /* -------------------------------------------------------
     SECTION
     ------------------------------------------------------- */

  .section-pad {
    padding: 64px 0;
  }


  /* -------------------------------------------------------
     HEADER
     ------------------------------------------------------- */

  .site-header {
    padding: 12px 0;
  }

  .site-header.is-scrolled {
    padding: 9px 0;
  }

  .site-header .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .navbar-brand-logo {
    height: 30px;
    width: auto;
    max-width: 175px;
  }

  .site-header .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 8px;
    border-radius: 17px;
    background: rgba(15,15,15,.98);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
  }

  .site-header .navbar-nav .nav-link {
    padding: 13px 14px !important;
    font-size: .82rem;
    border-radius: 10px;
  }

  .site-header .navbar-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255,255,255,.05);
  }

  .site-header .navbar-nav .nav-link.active {
    background: rgba(201,154,60,.08);
  }

  .site-header .navbar-nav .btn-gold {
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
  }


  /* -------------------------------------------------------
     HERO
     ------------------------------------------------------- */

  .hero {
    min-height: 100svh;
    padding-top: 96px;
    padding-bottom: 32px;
    display: flex;
    align-items: flex-start;
  }

  .hero::before {
    background:
      radial-gradient(
        380px 350px at 100% 5%,
        rgba(201,154,60,.20),
        transparent 68%
      ),
      radial-gradient(
        320px 300px at 0% 75%,
        rgba(216,177,92,.10),
        transparent 70%
      );
  }

  .hero-grid-line {
    background-size: 100% 72px;
    opacity: .45;
  }

  .hero-content {
    width: 100%;
  }


  /* -------------------------------------------------------
     HERO EYEBROW
     ------------------------------------------------------- */

  .hero .eyebrow {
    display: flex;
    align-items: center;
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: .19em;
    max-width: 235px;
    margin-bottom: 18px;
  }

  .hero .eyebrow::before {
    width: 24px;
    min-width: 24px;
    height: 3px;
    margin-top: 0;
  }


  /* -------------------------------------------------------
     HERO TITLE
     ------------------------------------------------------- */

  .hero-title {
    font-size: clamp(2.55rem, 12.2vw, 3.7rem);
    line-height: .94;
    letter-spacing: -.055em;
    max-width: 330px;
    margin-bottom: 20px;
  }

  .hero-title .accent {
    color: var(--gold);
  }


  /* -------------------------------------------------------
     HERO DESCRIPTION
     ------------------------------------------------------- */

  .hero-sub {
    font-size: .88rem;
    line-height: 1.72;
    max-width: 300px;
    margin-bottom: 23px;
    color: rgba(255,255,255,.58);
  }


  /* -------------------------------------------------------
     HERO BUTTONS
     ------------------------------------------------------- */

  .hero-cta {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
    gap: 9px;
    width: 100%;
    margin-bottom: 38px;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 47px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    white-space: nowrap;
  }


  /* -------------------------------------------------------
     HERO CARD GRID
     ------------------------------------------------------- */

  .hero-content .col-lg-5 {
    width: 100%;
    margin-top: 12px;
  }

  .hero-content .col-lg-5 > .row {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
    gap: 12px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .col-lg-5 > .row > [class*="col-"] {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }


  /* -------------------------------------------------------
     HERO STAT CARDS
     ------------------------------------------------------- */

  .hero-stat-card {
    width: 100%;
    min-height: 118px;
    padding: 19px 17px;
    border-radius: 17px;

    background:
      linear-gradient(
        145deg,
        rgba(255,255,255,.065),
        rgba(255,255,255,.018)
      );

    border: 1px solid rgba(255,255,255,.13);

    backdrop-filter: blur(10px);

    box-shadow:
      0 16px 40px rgba(0,0,0,.20);

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
    position: relative;
  }

  .hero-stat-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -42px;
    top: -42px;
    border-radius: 50%;
    background:
      radial-gradient(
        circle,
        rgba(201,154,60,.20),
        transparent 70%
      );
  }

  .hero-stat-card .num {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 9px;
    color: var(--gold);
  }

  .hero-stat-card .label {
    position: relative;
    z-index: 1;
    font-size: .58rem;
    line-height: 1.5;
    letter-spacing: .12em;
    color: rgba(255,255,255,.52);
    max-width: 115px;
  }


  /* -------------------------------------------------------
     STAGGERED CARDS
     ------------------------------------------------------- */

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(1) {
    transform: translateY(0);
  }

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(2) {
    transform: translateY(28px);
  }

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(3) {
    transform: translateY(8px);
  }

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(4) {
    transform: translateY(36px);
  }


  /* -------------------------------------------------------
     MARQUEE
     ------------------------------------------------------- */

  .hero-marquee {
    width: calc(100% + 36px);
    margin-left: -18px;
    margin-top: 56px;
    padding-top: 17px;
    padding-bottom: 7px;

    border-top:
      1px solid rgba(255,255,255,.13);

    border-bottom:
      1px solid rgba(255,255,255,.07);

    overflow: hidden;

    mask-image:
      linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
      );
  }

  .hero-marquee-track {
    gap: 32px;
    animation: marquee 23s linear infinite;
  }

  .hero-marquee-track span {
    font-size: .59rem;
    letter-spacing: .16em;
    color: rgba(255,255,255,.42);
    gap: 10px;
  }

  .hero-marquee-track span::after {
    font-size: .52rem;
    color: var(--gold);
  }


  /* -------------------------------------------------------
     PAGE HERO
     ------------------------------------------------------- */

  .page-hero {
    padding: 120px 0 55px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .page-hero .breadcrumb-nav {
    font-size: .63rem;
  }


  /* -------------------------------------------------------
     SERVICE CARDS
     ------------------------------------------------------- */

  .service-card {
    width: 100%;
    min-height: 0;
    padding: 26px 21px;
    border-radius: 17px;
  }

  .service-card .icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 17px;
    font-size: 1.15rem;
  }

  .service-card h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .service-card p {
    font-size: .84rem;
    line-height: 1.65;
  }

  .service-card .card-link {
    font-size: .76rem;
  }


  /* -------------------------------------------------------
     WHY CARDS
     ------------------------------------------------------- */

  .why-card {
    padding: 24px 20px;
    border-radius: 17px;
    min-height: 160px;
  }

  .why-card .num {
    font-size: .69rem;
  }

  .why-card h3 {
    font-size: .98rem;
  }

  .why-card p {
    font-size: .82rem;
    line-height: 1.65;
  }


  /* -------------------------------------------------------
     PORTFOLIO
     ------------------------------------------------------- */

  .portfolio-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .portfolio-filters button {
    flex: 0 0 auto;
    font-size: .69rem;
    padding: 8px 14px;
    white-space: nowrap;
  }

  .portfolio-item {
    margin-bottom: 18px;
    border-radius: 17px;
  }

  .portfolio-thumb {
    aspect-ratio: 1 / .78;
    border-radius: 17px;
  }

  .portfolio-overlay {
    opacity: 1;
    padding: 18px;
    background:
      linear-gradient(
        0deg,
        rgba(17,17,17,.94),
        rgba(17,17,17,.08) 75%,
        transparent
      );
  }

  .portfolio-overlay .cat {
    font-size: .59rem;
  }

  .portfolio-overlay h3 {
    font-size: .92rem;
  }


  /* -------------------------------------------------------
     TESTIMONIALS
     ------------------------------------------------------- */

  .testimonial-card {
    padding: 25px 20px;
    border-radius: 17px;
  }

  .testimonial-card p.quote {
    font-size: .87rem;
    line-height: 1.7;
  }

  .testimonial-avatar {
    width: 42px;
    height: 42px;
  }


  /* -------------------------------------------------------
     PRICING
     ------------------------------------------------------- */

  .pricing-card {
    padding: 31px 20px;
    border-radius: 18px;
  }

  .pricing-card:hover {
    transform: none;
  }

  .plan-name {
    font-size: .86rem;
  }

  .plan-price {
    font-size: 2.1rem;
  }

  .pricing-desc {
    font-size: .81rem;
    line-height: 1.65;
  }

  .feature-list li {
    font-size: .8rem;
    line-height: 1.5;
  }

  .pricing-badge {
    top: -13px;
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }


  /* -------------------------------------------------------
     COUNTER BLOCKS
     ------------------------------------------------------- */

  .stat-block {
    width: 100%;
    min-height: 138px;
    padding: 20px 17px;
    border-radius: 17px;

    text-align: left;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    background:
      linear-gradient(
        145deg,
        rgba(255,255,255,.055),
        rgba(255,255,255,.012)
      );

    border: 1px solid rgba(255,255,255,.13);
    overflow: hidden;
  }

  .stat-block::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    right: -38px;
    bottom: -38px;
    border-radius: 50%;
    background:
      radial-gradient(
        circle,
        rgba(201,154,60,.15),
        transparent 70%
      );
  }

  .stat-block .stat-num {
    font-size: 2.45rem;
    line-height: .9;
    letter-spacing: -.06em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }

  .stat-block .stat-label {
    font-size: .59rem;
    line-height: 1.55;
    letter-spacing: .12em;
    max-width: 110px;
    position: relative;
    z-index: 1;
  }


  /* -------------------------------------------------------
     CTA
     ------------------------------------------------------- */

  .cta-band {
    padding: 40px 21px;
    margin-left: 4px;
    margin-right: 4px;
    border-radius: 19px;
    text-align: left;
  }

  .cta-band h2 {
    font-size: 1.8rem;
    line-height: 1.04;
    letter-spacing: -.04em;
  }

  .cta-band p {
    font-size: .84rem;
    line-height: 1.7;
  }

  .cta-band .col-lg-4.text-lg-end {
    text-align: left !important;
    margin-top: 20px;
  }

  .cta-band .btn {
    width: 100%;
    min-height: 48px;
  }


  /* -------------------------------------------------------
     CONTACT
     ------------------------------------------------------- */

  .contact-info-card {
    padding: 29px 20px;
    border-radius: 17px;
  }

  .contact-info-card .item {
    gap: 12px;
    padding: 14px 0;
  }

  .contact-info-card .item i {
    font-size: 1.05rem;
  }

  .contact-info-card .item .lbl {
    font-size: .6rem;
  }

  .contact-info-card .item .val {
    font-size: .8rem;
    line-height: 1.5;
    word-break: break-word;
  }


  /* -------------------------------------------------------
     FOOTER
     ------------------------------------------------------- */

  .site-footer {
    padding: 58px 0 0;
    text-align: center;
  }

  .site-footer .footer-logo {
    height: 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer h5 {
    font-size: .76rem;
    margin-bottom: 16px;
  }

  .site-footer p {
    font-size: .8rem;
    line-height: 1.7;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: .79rem;
  }

  .footer-bottom {
    margin-top: 42px;
    padding: 20px 0;
    font-size: .67rem;
    justify-content: center;
    text-align: center;
  }


  /* -------------------------------------------------------
     BACK TO TOP
     ------------------------------------------------------- */

  #backToTop {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

  .hero-title {
    font-size: clamp(
      2.45rem,
      12vw,
      3.25rem
    );
    max-width: 310px;
  }

  .hero-sub {
    max-width: 285px;
  }

  .hero-cta {
    gap: 8px;
  }

  .hero-cta .btn {
    font-size: .69rem;
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-stat-card {
    min-height: 112px;
    padding: 17px 15px;
  }

  .hero-stat-card .num {
    font-size: 1.85rem;
  }

  .hero-stat-card .label {
    font-size: .55rem;
  }

  .hero-content .col-lg-5 > .row {
    gap: 10px;
  }

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(2) {
    transform: translateY(22px);
  }

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(3) {
    transform: translateY(5px);
  }

  .hero-content .col-lg-5 > .row > [class*="col-"]:nth-child(4) {
    transform: translateY(27px);
  }

  .hero-marquee {
    margin-top: 49px;
  }

  .stat-block {
    min-height: 128px;
  }

  .stat-block .stat-num {
    font-size: 2.2rem;
  }

  .pricing-badge {
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero {
    padding-top: 91px;
  }

  .hero-title {
    font-size: 2.35rem;
    max-width: 290px;
  }

  .hero-sub {
    font-size: .82rem;
    max-width: 270px;
  }

  .hero-cta .btn {
    min-height: 44px;
    font-size: .64rem;
  }

  .hero-stat-card {
    min-height: 106px;
    padding: 15px 13px;
  }

  .hero-stat-card .num {
    font-size: 1.65rem;
  }

  .hero-stat-card .label {
    font-size: .51rem;
  }

  .hero-content .col-lg-5 > .row {
    gap: 8px;
  }

  .hero-marquee {
    margin-top: 43px;
  }

  .hero-marquee-track {
    gap: 27px;
  }

  .hero-marquee-track span {
    font-size: .53rem;
  }

  .stat-block {
    min-height: 120px;
    padding: 17px 14px;
  }

  .stat-block .stat-num {
    font-size: 2rem;
  }

  .stat-block .stat-label {
    font-size: .53rem;
  }
}


/* =========================================================
   EXTRA SMALL PHONES
   ========================================================= */

@media (max-width: 350px) {

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-sub {
    font-size: .78rem;
  }

  .hero-cta .btn {
    font-size: .59rem;
  }

  .hero-stat-card {
    min-height: 100px;
  }

  .hero-stat-card .num {
    font-size: 1.5rem;
  }

  .hero-stat-card .label {
    font-size: .48rem;
  }
}