:root {
  --white: #ffffff;
  --white-2: #ffffffcc;
  --black: #000000;
  --black-2: #0000001a;
  --main: #1f1f1f;
  --main-2: #181818;
  --main-3: #484848;
  --main-4: #818181;
  --main-5: #bababa;
  --main-6: #545454;
  --main-7: #1c1c1c99;
  --main-8: #646464;
  --main-9: #5a5a5a;
  --main-10: #d2d2d2;
  --main-11: #8f8f8f;
  --main-12: #667085;
  --primary: #ae873e;
  --primary-2: #957127;
  --primary-3: #8c763b;
  --secondary: #ff6969;
  --secondary-2: #e5775f;
  --secondary-3: #df7c1f;
  --secondary-4: #f43b3b;
  --bg: #f5f2e9;
  --bg-2: #776733;
  --bg-3: #000000cc;
  --bg-4: #281c06cc;
  --bg-5: #777433;
  --bg-6: #00000033;
  --bg-7: #a63a27;
  --bg-8: #423321;
  --bg-9: #e8ebdd;
  --bg-10: #454d25;
  --bg-11: #fff7ed;
  --bg-12: #c2c2c299;
  --bg-13: #9d5100;
  --bg-14: #efe8d5;
  --bg-15: #d9d9d9;
  --bg-16: #dadec9;
  --bg-17: #d4b04c;
  --bg-18: #ededed;
  --bg-19: #fbece3;
  --bg-20: #97764e;
  --bg-21: #fff3e4;
  --bg-22: #765540;
  --bg-23: #fff7e7;
  --bg-24: #ecdbf2;
  --bg-25: #ffebd4;
  --bg-26: #f3f3f3;
  --line: #11111126;
  --line-2: #1111111a;
  --line-3: #e0e0e0;
  --line-4: #515151;
  --line-5: #7d7d7d;
  --line-6: #787878;
  --line-7: #a2a2a2;
  --line-8: #ebebeb;
  --line-9: #e1e1e1;
  --line-10: #9c9c9c;
  --line-11: #cacaca;
  --line-12: #efefef;
  --line-13: #e8d2a7;
  --shadow-1: #a3a3a340;
  --green: #3fc53a;
  --linear-1: linear-gradient(
    180deg,
    rgba(246, 221, 190, 0) 0%,
    rgba(246, 221, 190, 0.5) 100%
  );
  --linear-2: linear-gradient(137.6deg, #c09c71 23.87%, #664b18 99.83%);
  --linear-3: linear-gradient(285.63deg, #4b2c17 5.45%, #905e3d 94.52%);
  --linear-4: linear-gradient(133.57deg, #fff0d3 25.62%, #ebd1a2 100%);
  --linear-5: linear-gradient(138.03deg, #fff3e5 23.68%, #ffcda2 100%);
  --success: #3dab25;
  --error: #f03e3e;

  /* Header sizing */
  --upper-h: 48px;
  /* top info bar height on md+ */
  --nav-h: 72px;
  /* navbar height on md+ */
}

html,
body {
  scroll-behavior: smooth;
  background: var(--main-2);
  color: var(--white);
}

a {
  text-decoration: none;
}

/* ===== Preloader (gold + black) ===== */
body.preloading {
  overflow: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      60% 40% at 50% 60%,
      rgba(174, 135, 62, 0.12),
      transparent 70%
    ),
    #0b0b0b;
  display: grid;
  place-items: center;
  z-index: 20000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader .pl-inner {
  text-align: center;
}

#preloader .pl-logo {
  height: 64px;
  width: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

#preloader .pl-ring {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  box-shadow: 0 0 0 1px rgba(174, 135, 62, 0.15) inset;
}

#preloader .pl-text {
  margin-top: 10px;
  color: var(--white-2);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #preloader .pl-ring {
    animation: none;
    border-top-color: var(--primary);
  }
}



/*  whats icon */
/* ===== WhatsApp Floating Button (bottom-right) ===== */


 .fab-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    cursor: pointer;
    z-index: 9999;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    border: 0;
  }
  .fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
  }

  /* WhatsApp - bottom left */
  .fab-whatsapp {
    left: 18px;
    bottom: 18px;
    background: #25D366;         /* WhatsApp green */
  }

  /* Call - bottom right */
  .fab-call {
    left: 18px;
    bottom: 84px;
    background: #0d6efd;         /* Bootstrap primary blue */
  }

  /* Number pill next to call button (desktop) */


  /* Make sure they don't overlap Bootstrap toasts or fixed navbars */
  @media (max-width: 576px) {
    .call-pill { display: none; }    /* keep mobile clean */
    .fab-btn { width: 52px; height: 52px; }
  }

  /* Simple focus ring for accessibility */
  .fab-btn:focus-visible, .call-pill:focus-visible {
    outline: 3px solid rgba(13,110,253,.45);
    outline-offset: 3px;
  }


.fab-btn:hover,
.fab-btn:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(174,135,62,.45);
  background: var(--primary-2);
}

.fab-btn::after{
  content:"";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(174,135,62,.35);
  opacity: 0;
  animation: fabPulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse{
  0%{ transform: scale(.9); opacity: .6; }
  100%{ transform: scale(1.25); opacity: 0; }
}

@media (max-width: 575.98px){
  .fab-btn{ padding: 12px; }
  .fab-label{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  .fab-btn::after{ animation: none; opacity: 0; }
} 

/* -------------------- HEADER -------------------- */
/* -------------------- HEADER -------------------- */
/* Upper header bar */
.upper-header {
  background:var(--bg-17);
  background: linear-gradient(348deg, #d4b04c 30%, transparent);
  height: 50px;
  width: 100%;
  padding: 10px 0;
}

.upper-header .reach-link {
  color: #fff;
  opacity: 0.95;
}

.upper-header .reach-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.upper-header .social-icon a {
  color: #fff;
  font-size: 20px;
  opacity: 0.9;
}

.upper-header .social-icon img{
width: 30px;
}


.upper-header .social-icon a:hover {
  opacity: 1;
  /* background-color: var(--bg-13); */
}




/* NAVBAR base */
.navbar {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.2s ease;
  z-index: 1040;
}

/* .navbar-nav li{

} */

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-link {
  color: var(--white-2) !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary) !important;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.brand-mark img {
  height: 100px;
  width: 100px;
}

/* compact desktop logo */

/* ---------- DESKTOP: only navbar sticks, upper header scrolls ---------- */
@media (min-width: 768px) {
  .upper-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1;
  }

  header .navbar.fixed-top {
    position: sticky !important;
    /* override Bootstrap fixed */
    top: 0;
    width: 100%;
  }

  body {
    padding-top: 0 !important;
  }


  /* no offset on desktop */
}


/* ---------- MOBILE/TABLET: keep fixed bar + padding ---------- */
@media (max-width: 991.98px) {
  .navbar.fixed-top {
    top: 0;
  }

  body {
    padding-top: 64px;
  }

  /* space for fixed bar */
  .brand-mark img {
    height: 100px;
  }

  /* hide desktop collapse; use sidebar */
  .navbar .navbar-collapse {
    display: none !important;
  }
}

/* ---------- Mobile Sidebar (left slide-in) ---------- */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 82vw;
  max-width: 340px;
  height: 100vh;
  background: #0f0f0f;
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1060;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-inner {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sidebar-top img {
  height: 100px;
  width: 100px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}

.side-link {
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.side-link:hover {
  color: var(--primary);
}

.sidebar-meta {
  color: var(--main-10);
  font-size: 0.95rem;
}

.sidebar-meta a {
  color: var(--white-2);
}

.sidebar-meta a:hover {
  color: var(--primary);
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1055;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Body lock while sidebar open */
body.sidebar-open {
  overflow: hidden;
}

/* Toggler icon */
#menuToggle i {
  line-height: 1;
}

/* Mobile CTA subtle lift */
.sidebar .btn.btn-primary {
  box-shadow: 0 12px 24px rgba(174, 135, 62, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(174, 135, 62, 0.35);
}


.sidebar-meta .mobi-menu a img{
  width: 30px;
}

/* -------------------- HERO -------------------- */
.hero {
  min-height: calc(100vh - 170px);
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
      1200px 600px at 70% -20%,
      rgba(174, 135, 62, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 120%,
      rgba(174, 135, 62, 0.2),
      transparent 60%
    ),
    #0b0b0b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.35) 38%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem;
}

.hero .eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.85rem;
}

.hero h1 {
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
}

.hero p {
  color: var(--white-2);
  max-width: 760px;
  margin: 0 auto 2rem;
}

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-2);
  --bs-btn-hover-border-color: var(--primary-2);
}

/* -------------------- SECTIONS -------------------- */
.section {
  padding: 80px 0;
  background: var(--main-2);
}

.section.alt {
  background: linear-gradient(180deg, #161616 0%, #0f0f0f 100%);
}

.section h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section .lead {
  color: var(--main-10);
}

/*   */
/* ===== The Way We Work (gold + black) ===== */
.work-section {
  background: var(--main-2);
}

.work-title {
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.work-underline {
  display: inline-block;
  width: 84px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 10px;
}

/* Cards */
.step-card {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  padding: 28px 18px;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease, background 0.28s ease;
  color: var(--white);
}

.step-card .step-label {
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--white-2);
}

/* Icon circle */
.icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: radial-gradient(
    120px 80px at 50% 0%,
    rgba(174, 135, 62, 0.12),
    transparent 70%
  );
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.icon-wrap i {
  font-size: 28px;
  color: var(--primary);
}

/* Hover / focus */
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  border-color: var(--primary);
  background: #121212;
}

.step-card:hover .icon-wrap {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(174, 135, 62, 0.12);
}

/* Subtle reveal on load */
.step-card {
  opacity: 0;
  transform: translateY(14px);
}

.step-card:nth-child(1) {
  animation: workUp 0.6s ease 0.05s forwards;
}

.step-card:nth-child(2) {
  animation: workUp 0.6s ease 0.15s forwards;
}

.step-card:nth-child(3) {
  animation: workUp 0.6s ease 0.25s forwards;
}

.step-card:nth-child(4) {
  animation: workUp 0.6s ease 0.35s forwards;
}

@keyframes workUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* About */
.sm-title {
  position: relative;
  color: var(--bg-17);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  overflow: hidden;
}

.sm-title::after {
  content: "";
  display: block;
  margin-top: 6px;
  width: 100px;
  height: 2px;
  background: var(--bg-17);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.sm-title:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--linear-2);
  display: grid;
  place-items: center;
}

.img-about {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: box-shodow 0.5s, cubic-bezier(0.198, 0.84, 0.44, 1) 0.6s;
}

.img-about:hover {
  box-shadow: 0px 5px 12px var(--bg-17);
}

/* -------- Mission & Vision split (your HTML) -------- */
#mission .row > .col-lg-12 {
  margin-bottom: 24px;
}

/* Image box */
.mission-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 4/5;
  height: 350px;
  width: 100%;
  animation: mv-rise 0.7s ease both;
}

.mission-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.mission-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}

.mission-img-box:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.05);
}

/* Collection section (light look like screenshot) */
.collection-section {
  background: var(--bg);
  /* #F5F2E9 */
  color: var(--main-2);
}

.collection-copy .btn-ink {
  background: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  border: 1px solid #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.collection-copy .btn-ink:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Product cards */
.prod-card {
  background: #fff;
  border: 1px solid var(--line-8);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.prod-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #fff;
}

@media (max-width: 575.98px) {
  .prod-card img {
    height: 360px;
  }
}

.prod-info {
  padding: 18px;
  text-align: center;
  background: #fff;
}

.prod-title {
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--main-2);
  margin: 0 0 0.35rem;
}

.prod-price {
  color: var(--main-8);
  font-weight: 500;
}

/* Swiper arrows – white round buttons like screenshot */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--main-2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.product-swiper .swiper-button-prev:hover,
.product-swiper .swiper-button-next:hover {
  background: var(--primary);
  color: #fff;
}

.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

/* Spacing tweaks so arrows sit mid-height over images */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  top: 42%;
}

/* Slide spacing */
.product-swiper {
  padding: 8px 12px 24px;
}

/* bottom room for shadow */

/* Content card */
#mission .kard {
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: mv-fade 0.7s ease 0.08s both;
  border-color: var(--line-3);
}

#mission .kard h3 {
  color: var(--primary);
  margin-bottom: 10px !important;
  letter-spacing: 0.3px;
}

#mission .kard p {
  color: var(--main-10);
  line-height: 1.7;
}

#mission .kard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--line-13);
}

#mission .row.g-4 > .col-lg-12 .row {
  align-items: stretch;
}

#mission.section.alt {
  background: linear-gradient(180deg, #161616 0%, #0f0f0f 100%);
}

@media (min-width: 992px) {
  .mission-img-box {
    aspect-ratio: 3/4;
  }
}

@media (max-width: 767.98px) {
  .mission-img-box {
    margin-bottom: 14px;
  }
}

@keyframes mv-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mv-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* CTA band */
.cta {
  background: linear-gradient(
    135deg,
    rgb(235 161 23 / 42%),
    rgba(174, 135, 62, 0) 60%
  );
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Golden glow backdrop reused */
/* Centered small title with gold underline */
.sm-title-center {
  position: relative;
  display: block;
  text-align: center;
  color: var(--bg-17);
  /* gold text */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 0.5rem;
  /* space before H2 */
}

.sm-title-center::after {
  content: "";
  display: block;
  width: 88px;
  /* underline length */
  height: 2px;
  margin: 10px auto 0;
  /* center it */
  background: var(--linear-2);
  /* gold gradient */
  border-radius: 2px;

  /* reveal animation */
  transform: scaleX(0);
  transform-origin: center;
  animation: smCenterLine 0.8s ease forwards;
}

@keyframes smCenterLine {
  to {
    transform: scaleX(1);
  }
}

.testi-marquee {
  position: relative;
  background: radial-gradient(
      120% 70% at 50% 105%,
      rgba(174, 135, 62, 0.28),
      rgba(174, 135, 62, 0) 60%
    ),
    radial-gradient(
      80% 50% at 10% -10%,
      rgba(174, 135, 62, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  overflow: hidden;
}

.testi-marquee::before {
  content: "";
  position: absolute;
  inset: -20% -10% -35% -10%;
  background: radial-gradient(
    50% 35% at 50% 90%,
    rgba(174, 135, 62, 0.35) 0%,
    rgba(174, 135, 62, 0) 70%
  );
  filter: blur(36px);
  z-index: 0;
}

.testi-marquee .container {
  position: relative;
  z-index: 1;
}

/* Cards (reuse your .testi style, add fixed width for marquee) */
.testi {
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  min-width: 360px;
  max-width: 360px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.testi .stars {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testi blockquote {
  margin: 0 0 0.5rem;
  color: var(--white-2);
}

.testi .author {
  color: var(--main-10);
}

/* Marquee rows */
.marquee {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.marquee-row {
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee-left var(--speed, 36s) linear infinite;
}

/* Directions */
.r1 .track {
  --speed: 38s;
  animation-name: marquee-right;
}

.r2 .track {
  --speed: 42s;
  animation-name: marquee-left;
}

.r3 .track {
  --speed: 40s;
  animation-name: marquee-right;
}

/* Pause on hover for readability */
.marquee:hover .track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Responsive card width */
@media (max-width: 767.98px) {
  .testi {
    min-width: 280px;
    max-width: 280px;
  }
}

/* Form */
/* .form-control,
.form-select {
  background: #0f0f0f;
  border: 1px solid var(--line-3);
  color: var(--white);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 .25rem rgba(174, 135, 62, .25);
  border-color: var(--primary);
}

.required::after {
  content: " *";
  color: var(--secondary-4);
} */

/* ===== Contact card (gold + black) ===== */
.contact-card {
  position: relative;
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.contact-card::before {
  /* soft gold rim */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: var(--linear-2);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Inputs as rounded pills with icons */
.field {
  position: relative;
}

.field .form-control {
  background: #101010;
  border: 1px solid var(--line-3);
  color: #fff;
  height: 56px;
  border-radius: 999px;
  padding-left: 48px;
}

.field .form-control::placeholder {
  color: var(--main-11);
}

.field .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(174, 135, 62, 0.25);
}

/* textarea variant */
.field .textarea {
  height: auto;
  border-radius: 16px;
  padding-left: 48px;
  padding-top: 14px;
}

/* left icons / addons */
.field-icon,
.field-addon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  color: var(--main-10);
  pointer-events: none;
}

.field-addon {
  background: #151515;
  border: 1px solid var(--line-3);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  left: 10px;
}

.field .form-control + .textarea,
.field .textarea + .field-icon {
  top: 18px;
}

/* map box already styled earlier; ensure full height looks nice */
.map-embed {
  border: 1px solid var(--line);
  background: #0f0f0f;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

/* tiny polish for the subtext link */
#contact .lead a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
}

#contact .lead a:hover {
  border-bottom-color: var(--primary);
}

/* responsive spacing */
@media (max-width: 991.98px) {
  .map-embed iframe {
    min-height: 420px;
  }
}

/* ===== Footer (gold + black) ===== */
.footer {
  background: #0f0f0f;
  color: var(--white);
  border-top: 1px solid var(--line);
}

.footer-top {
  padding: 64px 0;
}

.footer-bottom {
  border-top: 1px solid var(--bg-17);
  padding: 14px 0;
  color: var(--main-10);
}

.footer-bottom a {
  color: var(--main-10);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Headings */
.ft-head {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.ft-head::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--primary);
  margin-top: 0.55rem;
  border-radius: 2px;
}

/* Brand block */
.footer .brand-mark img {
  height: 150px;
  width: 150px;
}

.footer .brand-note {
  color: var(--main-10);
  max-width: 460px;
}

/* Links */
.link-list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--main-10);
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* List (brands, contact) */
.ft-list li {
  color: var(--main-10);
  padding: 0.35rem 0;
}

.ft-list a {
  color: var(--main-10);
}

.ft-list a:hover {
  color: var(--primary);
}

/* Social icons */
.footer .social a img{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    /* border-radius: 50%; */
    border: 1px solid var(--line);
    color: var(--white-2);
    transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
    font-size: 24px;
}

.footer .social a:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Spacing on small screens */
@media (max-width: 991.98px) {
  .footer-top {
    padding: 48px 0;
  }
}

/*  gallery */

/* ===== Gallery tiles (Bootstrap rows/cols) ===== */
.gallery-tiles {
  background: var(--main-2);
}

/* Config */
.gallery-tiles {
  --tile-h: 240px;
  /* base height of a small tile */
  --tile-b: 1px;
  /* .tile border width */
}

/* Base tile */
.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  min-height: var(--tile-h);
  color: #fff;
  border: var(--tile-b) solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease, filter 0.35s ease;
  box-sizing: border-box;
  /* include border in height math */
}

/* Tall = 2 * small + vertical gutter + border difference (2px) */
.tile-tall {
  min-height: calc(
    var(--tile-h) * 2 + var(--bs-gutter-y, 1rem) + (var(--tile-b) * 2)
  );
}

/* Optional: wide same as small */
.tile-wide {
  min-height: var(--tile-h);
}

/* Responsive tuning */
@media (max-width: 991.98px) {
  .gallery-tiles {
    --tile-h: 220px;
  }
}

@media (max-width: 575.98px) {
  .gallery-tiles {
    --tile-h: 260px;
  }
}

@media (min-width: 1400px) {
  .gallery-tiles {
    --tile-h: 300px;
  }
}

/* Overlay + hover */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.58) 100%
  );
  transition: opacity 0.35s ease;
}

.tile:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.tile:hover::before {
  opacity: 0.9;
}

/* Gold glint */
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.tile:hover::after {
  transform: translateX(120%);
}

/* Title */
.tile-title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.8rem + 1.2vw, 1.75rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
