@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Anton&family=Beau+Rivage&family=Manrope:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0b0b0c;
  color: #f5f3ef;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
a, a:hover { text-decoration: none; }

@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cta-shimmer { 0% { left: -70%; } 100% { left: 130%; } }
@keyframes slideFromLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideFromRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,162,75,0.25);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 56px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-link { position: relative; color: #f5f3ef; font-family: 'League Gothic', sans-serif; font-weight: 300; font-size: 18px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: #c9a24b;
  transition: width 0.25s ease;
}
.nav-link:hover, .nav-link.is-active { color: #c9a24b; }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link .caret { font-size: 11px; }
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  display: none;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu > * {
  background: #131313;
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: 2px;
  min-width: 260px;
  padding: 8px;
}
.dropdown-menu {
  background: transparent;
}
.dropdown-menu::before { content: none; }
.dropdown-link {
  display: block;
  color: #d9d5cd;
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 2px;
  background: #131313;
}
.dropdown-link:first-child { border-radius: 2px 2px 0 0; }
.dropdown-link:last-child { border-radius: 0 0 2px 2px; }
.dropdown-menu { background: #131313; border: 1px solid rgba(201,162,75,0.25); border-radius: 2px; min-width: 260px; padding: 8px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); display: none; }
.dropdown-link { background: transparent; }
.dropdown-link:hover { color: #c9a24b; background: rgba(201,162,75,0.08); }
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-call { padding: 12px 24px; font-size: 18px; }
.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 2px;
  color: #c9a24b;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  background: #0b0b0c;
  border-top: 1px solid rgba(201,162,75,0.25);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-link {
  color: #f5f3ef;
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 23px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav-group { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-group-label { color: #f5f3ef; font-family: 'League Gothic', sans-serif; font-weight: 300; font-size: 20px; letter-spacing: 1px; text-transform: uppercase; }
.mobile-nav-sublink { color: #d9d5cd; font-family: 'League Gothic', sans-serif; font-weight: 300; font-size: 17px; letter-spacing: 0.5px; text-transform: uppercase; padding-left: 14px; }
.mobile-nav-sublink:hover { color: #c9a24b; }

@media (max-width: 760px) {
  .main-nav, .header-call { display: none; }
  .hamburger-btn { display: flex; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 2px;
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.25s ease;
}
.btn-gold { background: #c9a24b; color: #0b0b0c; }
.btn-gold:hover { background: #e0c17a; }
.btn-outline { background: transparent; border: 1px solid rgba(245,243,239,0.35); color: #f5f3ef; }
.btn-outline:hover { border-color: #c9a24b; color: #c9a24b; }

/* ---------- marquee ---------- */
.marquee {
  background: #c9a24b;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(11,11,12,0.15);
  border-bottom: 1px solid rgba(11,11,12,0.15);
  position: relative;
  z-index: 2;
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 22s linear infinite; }
.marquee-item { display: flex; align-items: center; flex-shrink: 0; padding: 0 28px; }
.marquee-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px,3.4vw,38px);
  letter-spacing: 0.5px;
  color: #0b0b0c;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot { color: #0b0b0c; font-size: 28px; margin-left: 28px; opacity: 0.5; }

/* ---------- image placeholder (replaces the drag-drop DC component) ---------- */
.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: rgba(245,243,239,0.06);
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 120px;
}
.img-placeholder input[type="file"] { display: none; }
.img-placeholder .ph-label {
  color: #e9c77a;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  padding: 16px;
  pointer-events: none;
}
.img-placeholder img.ph-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.img-placeholder.has-image .ph-label { display: none; }
.img-placeholder.has-image img.ph-preview { display: block; }

/* ---------- footer ---------- */
.site-footer { background: #000; padding: 70px 24px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,243,239,0.1);
}
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer-text { color: #8a867d; font-size: 13.5px; line-height: 1.7; margin: 0; }
.footer-text-inline { color: #b7b3aa; font-size: 14px; }
.footer-heading {
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  color: #c9a24b;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { color: #b7b3aa; font-size: 14px; }
.footer-link:hover { color: #c9a24b; }
.social-row { display: flex; gap: 14px; margin-top: 6px; }
.social-icon {
  color: #b7b3aa;
  font-size: 14px;
  border: 1px solid rgba(245,243,239,0.2);
  width: 36px;
  height: 36px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-icon:hover { color: #c9a24b; border-color: #c9a24b; transform: translateY(-3px); }
.footer-bottom { padding-top: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-copy { color: #6b6860; font-size: 12.5px; }

/* ---------- sticky mobile call button ---------- */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #c9a24b;
  color: #0b0b0c;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-family: 'League Gothic', sans-serif;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  overflow: hidden;
}
.sticky-call-shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: cta-shimmer 3.2s ease-in-out infinite;
}
@media (max-width: 760px) { .sticky-call { display: flex; } }

/* ---------- FAQ (native details/summary) ---------- */
.faq-item { border-bottom: 1px solid rgba(11,11,12,0.12); }
.faq-item.on-dark { border-bottom-color: rgba(245,243,239,0.12); }
.faq-item summary {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: 'League Gothic', sans-serif; font-weight: 300; font-size: 20px; }
.faq-icon { color: #c9a24b; font-size: 20px; flex-shrink: 0; }
.faq-a { margin: 0 0 24px; font-size: 14.5px; line-height: 1.7; padding-right: 32px; }

/* ---------- reveal-on-scroll (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- page layout helpers ---------- */
.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  gap: 48px;
  align-items: center;
}
.page-hero--center { text-align: center; }
.page-hero--dark { color: #f5f3ef; }
.page-hero--light { background: #f5f3ef; color: #0b0b0c; }
.page-hero--service {
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}
.page-hero-copy { animation: fadeUp 0.9s ease both; }
.page-hero-copy--delay { animation: fadeUp 0.9s ease 0.15s both; }
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.page-hero-line {
  width: 36px;
  height: 1px;
  background: #c9a24b;
}
.page-hero-eyebrow-text {
  color: #c9a24b;
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.page-hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.95;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.page-hero-title--sm { font-size: clamp(30px, 5.6vw, 60px); line-height: 1.02; }
.page-hero-title--md { font-size: clamp(32px, 6vw, 64px); line-height: 1; }
.page-hero-title--lg { font-size: clamp(38px, 6.5vw, 76px); line-height: 1; }
.page-hero-title--xl { font-size: clamp(40px, 7vw, 84px); line-height: 0.98; }
.page-hero-subtitle {
  font-family: 'Beau Rivage', cursive;
  font-size: clamp(28px, 3.4vw, 42px);
  color: #c9a24b;
  margin: 0 0 28px;
  line-height: 1;
}
.page-hero-subtitle--sm { font-size: clamp(24px, 3vw, 34px); }
.page-hero-body {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: #d9d5cd;
  max-width: 560px;
  margin: 0 0 40px;
}
.page-hero-body--compact { font-size: clamp(16px, 1.6vw, 19px); max-width: 700px; margin: 0; }
.page-hero-body--muted { color: #b7b3aa; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.page-hero-media {
  height: auto;
}
.page-hero-media--small { height: auto; }
.page-hero-media--tall { height: auto; }
.page-hero-media--compact { height: 320px; }
.page-hero-media--short { height: 220px; }
.page-hero-media--card { flex: 1; min-height: 260px; margin-bottom: 36px; }
.page-hero-media--contact { height: 340px; }

.section-block { padding: 90px 24px; }
.section-block--tight { padding: 100px 24px; }
.section-block--loose { padding: 70px 24px; }
.section-block--compact { padding: 70px 24px; }
.section-block--cta { padding: 110px 24px; text-align: center; }
.section-block--dark { background: #0b0b0c; color: #f5f3ef; }
.section-block--light { background: #f5f3ef; color: #0b0b0c; }
.section-block--accent { background: #131313; color: #f5f3ef; }
.section-block--center { text-align: center; }
.section-block__inner { max-width: 1280px; margin: 0 auto; }
.section-block__inner--wide { max-width: 1100px; margin: 0 auto; }
.section-block__inner--narrow { max-width: 820px; margin: 0 auto; }
.section-block__inner--thin { max-width: 960px; margin: 0 auto; }
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.section-title--center { text-align: center; }
.section-title--large { font-size: clamp(34px, 5.5vw, 64px); }
.section-title--xlarge { font-size: clamp(30px, 5vw, 56px); }
.section-title--hero { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.08; margin: 0 0 28px; }
.section-title--light { color: #f5f3ef; }
.section-title--dark { color: #0b0b0c; }
.section-title--muted { color: #c9a24b; }
.section-text {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.section-text--light { color: #d9d5cd; }
.section-text--muted { color: #b7b3aa; }
.section-text--soft { color: #5a564e; }
.section-text--small { font-size: 14.5px; line-height: 1.65; }
.section-text--xsmall { font-size: 14px; line-height: 1.6; }
.section-text--center { text-align: center; }
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(245, 243, 239, 0.1);
}
.section-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(11, 11, 12, 0.1);
}
.section-grid--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245, 243, 239, 0.12);
}
.section-grid--two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.section-grid--three { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 44px; }
.section-grid--services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; background: none; }
.section-stack { display: flex; flex-direction: column; gap: 1px; background: rgba(245, 243, 239, 0.1); }
.section-stack--cards { display: flex; flex-direction: column; gap: 20px; }
.section-inline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-inline-row--left { justify-content: flex-start; }
.section-inline-row--center { justify-content: center; }
.section-inline-row--between { justify-content: space-between; }

/* ---------- utility helpers ---------- */
.u-animate-up { animation: fadeUp 0.9s ease both; }
.u-animate-up-delay { animation: fadeUp 0.9s ease 0.15s both; }
.u-animate-left { animation: slideFromLeft 0.8s ease both; }
.u-animate-right { animation: slideFromRight 0.8s ease both; }
.u-flex { display: flex; }
.u-flex-col { display: flex; flex-direction: column; }
.u-flex-wrap { display: flex; flex-wrap: wrap; }
.u-align-center { align-items: center; }
.u-justify-center { justify-content: center; }
.u-justify-between { justify-content: space-between; }
.u-gap-8 { gap: 8px; }
.u-gap-10 { gap: 10px; }
.u-gap-16 { gap: 16px; }
.u-gap-20 { gap: 20px; }
.u-gap-24 { gap: 24px; }
.u-gap-28 { gap: 28px; }
.u-gap-36 { gap: 36px; }
.u-gap-48 { gap: 48px; }
.u-gap-56 { gap: 56px; }
.u-m-0 { margin: 0; }
.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-mb-8 { margin-bottom: 8px; }
.u-mb-12 { margin-bottom: 12px; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-20 { margin-bottom: 20px; }
.u-mb-24 { margin-bottom: 24px; }
.u-mb-28 { margin-bottom: 28px; }
.u-mb-32 { margin-bottom: 32px; }
.u-mb-36 { margin-bottom: 36px; }
.u-mb-40 { margin-bottom: 40px; }
.u-mb-48 { margin-bottom: 48px; }
.u-mb-56 { margin-bottom: 56px; }
.u-mt-48 { margin-top: 48px; }
.u-mt-56 { margin-top: 56px; }
.u-max-480 { max-width: 480px; }
.u-max-560 { max-width: 560px; }
.u-max-600 { max-width: 600px; }
.u-max-720 { max-width: 720px; }
.u-max-820 { max-width: 820px; }
.u-max-960 { max-width: 960px; }
.u-max-1080 { max-width: 1080px; }
.u-width-full { width: 100%; }
.u-height-220 { height: 220px; }
.u-height-280 { height: 280px; }
.u-height-320 { height: 320px; }
.u-height-340 { height: 340px; }
.u-height-360 { height: 360px; }
.u-height-440 { height: 440px; }
.u-min-h-260 { min-height: 260px; }
.u-min-h-280 { min-height: 280px; }
.u-min-h-340 { min-height: 340px; }
.u-order-1 { order: 1; }
.u-order-2 { order: 2; }
.u-overflow-x-auto { overflow-x: auto; }
.u-snap-x { scroll-snap-type: x mandatory; }
.u-snap-start { scroll-snap-align: start; }
.u-p-24 { padding: 24px; }
.u-p-28 { padding: 28px; }
.u-p-32 { padding: 32px; }
.u-p-36 { padding: 36px; }
.u-p-40 { padding: 40px; }
.u-p-56 { padding: 56px; }
.u-px-24 { padding-left: 24px; padding-right: 24px; }
.u-pb-100 { padding-bottom: 100px; }
.u-radius-2 { border-radius: 2px; }
.u-radius-4 { border-radius: 4px; }
.u-text-center { text-align: center; }
.u-text-light { color: #f5f3ef; }
.u-text-muted { color: #b7b3aa; }
.u-text-soft { color: #5a564e; }
.u-bg-dark { background: #0b0b0c; }
.u-bg-dark-panel { background: #131313; }
.u-bg-light { background: #f5f3ef; }
.u-hero-panel { position: relative; overflow: hidden; }
.u-hero-copy { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 120px 24px 80px; width: 100%; }
.u-hero-overlay { position: absolute; inset: 0; background: rgba(11, 11, 12, 0.72); pointer-events: none; }

.cover-card {
  background: #fff;
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cover-card--dark { background: #fff; }
.cover-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c9a24b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.cover-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11, 11, 12, 0.12); }
.cover-card:hover .cover-card-bar { transform: scaleX(1); }
.cover-card-title {
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #8a7f4d;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.cover-card-title--small { font-size: 20px; }
.cover-card-text { font-size: 14px; line-height: 1.6; color: #5a564e; margin: 0; }

.svc-flip-card {
  text-decoration: none;
  color: #f5f3ef;
  display: block;
  position: relative;
  min-height: auto;
}
.svc-flip-card .svc-front,
.svc-flip-card .svc-back {
  position: inherit;
  inset: 0;
}
.svc-front {
  background: #131313;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.svc-back {
  border-radius: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/*.svc-flip-card:hover .svc-front { opacity: 0; transform: scale(0.96); }*/
.svc-front:hover {transform: translateY(-6px);background: #1a1a1a;}
.svc-flip-card:hover .svc-back { opacity: 1; transform: scale(1); }
.svc-flip-card:hover .img-placeholder img.ph-preview { display:block}
.svc-card-id {
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  color: #c9a24b;
  font-size: 18px;
  letter-spacing: 1px;
}
.svc-card-title {
  font-family: 'League Gothic', sans-serif;
  font-size: 26px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  color: #c9a24b;
}
.svc-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #b7b3aa;
  margin: 0;
  flex: 1;
}
.svc-back-title {
  position: relative;
  z-index: 1;
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #c9a24b;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
  margin: 0;
}

.hiw-card,
.proc-card,
.who-card,
.process-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hiw-card:hover,
.proc-card:hover,
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(11, 11, 12, 0.14);
}
.hiw-num,
.proc-num,
.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0b0b0c;
  color: #c9a24b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  margin: 0 auto 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.hiw-card:hover .hiw-num,
.proc-card:hover .proc-num,
.process-card:hover .process-num {
  background: #c9a24b;
  color: #0b0b0c;
}
.hiw-card-title,
.proc-card-text,
.process-card-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #5a564e;
  margin: 0;
}
.hiw-card-title,
.proc-card-title,
.process-card-title {
  font-family: 'League Gothic', sans-serif;
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.belief-card,
.who-card {
  transition: transform 0.3s ease;
}
.belief-card:hover,
.who-card:hover {
  transform: translateY(-8px);
}
.belief-line,
.tint-line,
.cover-line {
  width: 44px;
  height: 2px;
  background: #c9a24b;
  margin-bottom: 18px;
  transition: width 0.3s ease;
}
.belief-card:hover .belief-line,
.tint-box:hover .tint-line,
.cover-card:hover .cover-line {
  width: 70px;
}
.tint-box {
  background: #131313;
  padding: 28px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.tint-box:hover { transform: translateY(-6px); background: #1a1a1a; }

.contact-card { background: #131313; padding: 40px; border: 1px solid rgba(245, 243, 239, 0.08); position: sticky; top: 100px; }
.contact-card .contact-list { display: flex; flex-direction: column; gap: 20px; }
.service-list { display: flex; flex-direction: column; gap: 1px; background: rgba(245, 243, 239, 0.1); }
.service-card { background: #131313; padding: 56px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.service-card:nth-child(even) .service-copy { order: 2; }
.service-card:nth-child(even) .service-visual { order: 1; }
.service-kicker { font-family: 'League Gothic', sans-serif; font-weight: 300; color: #c9a24b; font-size: 18px; letter-spacing: 1px; }
.service-title { font-family: 'Anton', sans-serif; font-size: clamp(28px, 3.2vw, 44px); margin: 12px 0 18px; text-transform: uppercase; }
.service-text { font-size: 16px; line-height: 1.7; color: #b7b3aa; margin: 0 0 32px; max-width: 480px; }
.service-visual { height: auto; }
.service-visual img.ph-preview { transition: transform 0.5s ease; }
.service-visual:hover img.ph-preview { transform: scale(1.06); }
.svc-cta { transition: transform 0.25s ease, background 0.25s ease; }
.svc-cta:hover { transform: translateY(-3px); }
.svc-contact-card { background: #131313; padding: 36px 28px; text-decoration: none; color: #f5f3ef; display: flex; flex-direction: column; justify-content: center; gap: 14px; min-height: 300px; }
.intro-section { position: relative; overflow: hidden; }
.intro-bg { position: absolute; inset: 0; border-radius: 0; border-top: 1px dashed rgba(201, 162, 75, 0.4); border-bottom: 1px dashed rgba(201, 162, 75, 0.4); }
.intro-content { position: relative; z-index: 1; }
.intro-copy { margin: 0 auto 20px; max-width: 960px; }
.intro-copy--small { color: #9c9890; font-size: 15px; line-height: 1.7; margin: 0 auto; max-width: 960px; }
.service-area { background: #0b0b0c; padding: 100px 24px; }
.service-area-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.1fr); gap: 56px; align-items: center; }
.service-area-title { font-family: 'Anton', sans-serif; font-size: clamp(30px, 5vw, 52px); margin: 0 0 20px; text-transform: uppercase; color: #f5f3ef; }
.service-area-subtitle { color: #b7b3aa; font-size: 15.5px; line-height: 1.75; margin: 0 0 24px; }
.service-area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.service-area-chip { border: 1px solid rgba(201, 162, 75, 0.35); color: #c9a24b; padding: 8px 16px; border-radius: 2px; font-size: 18px; font-family: 'League Gothic', sans-serif; font-weight: 300; letter-spacing: 0.5px; }
.service-area-image { height: 340px; }
.faq-panel { background: #f5f3ef; color: #0b0b0c; padding: 100px 24px; }
.faq-panel__inner { max-width: 820px; margin: 0 auto; }
.faq-panel__title { font-family: 'Anton', sans-serif; font-size: clamp(34px, 5.5vw, 60px); margin: 0 0 8px; text-transform: uppercase; }
.faq-panel__subtitle { font-family: 'Beau Rivage', cursive; font-size: clamp(22px, 2.6vw, 30px); color: #c9a24b; margin: 0 0 40px; }
.final-cta { background: #0b0b0c; padding: 110px 24px; text-align: center; }
.final-cta__inner { max-width: 900px; margin: 0 auto; }
.final-cta__title { font-family: 'Anton', sans-serif; font-size: clamp(36px, 6vw, 72px); margin: 0 0 12px; text-transform: uppercase; color: #f5f3ef; }
.final-cta__subtitle { font-family: 'Beau Rivage', cursive; font-size: clamp(24px, 3vw, 34px); color: #c9a24b; margin: 0 0 28px; }
.final-cta__copy { color: #b7b3aa; font-size: clamp(12px, 1.4vw, 16px); line-height: 1.7; margin: 0 0 36px; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.section-cta-banner { position: relative; overflow: hidden; }
.section-cta-banner__inner { position: relative; max-width: 1080px; margin: 0 auto; text-align: center; }
.banner-title { font-family: 'Anton', sans-serif; font-size: clamp(20px, 3.6vw, 58px); margin: 16px 0 20px; text-transform: uppercase; /*white-space: nowrap;*/ color: #f5f3ef; }
.banner-copy { color: #d9d5cd; font-size: clamp(13px, 1.5vw, 16px); line-height: 1.7; margin: 0 0 32px; /*white-space: nowrap;*/ }
.comparison-grid { border: 1px solid rgba(245, 243, 239, 0.12); }
.comparison-card { background: #131313; padding: 40px 32px; display: flex; gap: 28px; align-items: flex-start; }
.comparison-card__body { flex: 1; }
.comparison-card__title { font-family: 'League Gothic', sans-serif; font-weight: 300; color: #c9a24b; font-size: 28px; text-transform: uppercase; margin: 0 0 20px; }
.comparison-card__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comparison-card__item { font-size: 14.5px; color: #d9d5cd; display: flex; gap: 10px; }
.comparison-card__item--muted { color: #8a867d; }
.comparison-card__thumb { width: 250px; align-self: stretch; flex-shrink: 0; }
.steps-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px; }
.steps-connector { display: flex; align-items: center; justify-content: center; width: 32px; flex-shrink: 0; padding-top: 34px; color: rgba(11, 11, 12, 0.25); font-size: 24px; }
.why-copy { margin-bottom: 20px; }
.why-card-title { font-size: 23px; }
.why-card-text { margin: 0; }
.section-title--tight { margin-bottom: 56px; }
.section-title--centered { text-align: center; }

.what-we-cover{display: grid;grid-template-columns: repeat(4, 1fr);gap: 5px;}
.what-we-cover .cover-item{position: relative;display: block;height: 320px;overflow: hidden;background: #000;}
.what-we-cover .cover-item:last-child{border-right: none;}
.what-we-cover .cover-item img{width: 100%;height: 100%;object-fit: cover;display: block;transition: .5s;}
.what-we-cover .cover-item::before{content: "";position: absolute;inset: 0;/*background: rgba(0,0,0,.65);*/}
.what-we-cover .cover-content{position: absolute;inset: 0;display: flex;align-items: center;justify-content: center;z-index: 2;padding: 20px;text-align: center;}
.what-we-cover .cover-content h3{margin: 0;color: #c89b3c;font-size: 24px;font-weight: 700;text-transform: uppercase;font-family: 'League Gothic',sans-serif;}
.what-we-cover .cover-item:hover img{transform: scale(1.08);}

.tint-from{background:#0b0b0c;padding:0px 24px 50px;}
.tint-from-container{max-width:1100px;margin:0 auto;}
.tint-from-heading{text-align:center;margin-bottom:48px;}
.tint-from-subtitle{font-family:'League Gothic',sans-serif;font-weight:300;color:#c9a24b;font-size:18px;letter-spacing:2px;text-transform:uppercase;}
.tint-from-heading h2{font-family:'Anton',sans-serif;font-size:clamp(30px,5vw,54px);margin:12px 0;text-transform:uppercase;}
.tint-from-heading p{max-width:600px;margin:0 auto;font-size:15.5px;color:#9c9890;}
.tint-from-list{border-top:1px solid rgba(245,243,239,.1);}
.tint-pkg-row{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px 8px;border-bottom:1px solid rgba(245,243,239,.1);transition:background .25s ease;}
.tint-pkg-row:hover{background:rgba(255,255,255,.03);}
.tint-pkg-row h3{margin:0 0 4px;font-family:'League Gothic',sans-serif;font-weight:300;font-size:20px;color:#f5f3ef;text-transform:uppercase;}
.tint-pkg-row p{margin:0;font-size:14px;color:#9c9890;}
.tint-price{flex-shrink:0;white-space:nowrap;font-family:'Anton',sans-serif;color:#c9a24b;font-size:clamp(22px,2.6vw,30px);}

.what-it-does{background:#0b0b0c;padding:90px 24px;}
.what-it-does-wrapper{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1px;background:rgba(245,243,239,.1);}
.wd-box{padding:48px 40px;transition:transform .35s ease, box-shadow .35s ease;}
.wd-box:hover{transform:translateY(-6px);box-shadow:0 15px 40px rgba(0,0,0,.2);}
.wd-light{background:#f5f3ef;color:#0b0b0c;}
.wd-dark{background:#131313;color:#f5f3ef;}
.wd-subtitle{display:block;font-family:'League Gothic',sans-serif;font-weight:300;font-size:15px;letter-spacing:1.5px;text-transform:uppercase;}
.wd-light .wd-subtitle{color:#8a7f4d;}
.wd-dark .wd-subtitle{color:#c9a24b;}
.wd-box h2{margin:10px 0 20px;font-family:'Anton',sans-serif;font-size:clamp(24px,3.2vw,36px);text-transform:uppercase;}
.wd-box p{margin:0 0 16px;font-size:15px;line-height:1.75;}
.wd-box p:last-child{margin-bottom:0;}
.wd-light p{color:#3a372f;}
.wd-dark p{color:#b7b3aa;}

.ceramic-packages{background:#0b0b0c;padding:60px 24px 100px;}
.ceramic-packages-container{max-width:1280px;margin:0 auto;}
.ceramic-packages-heading{text-align:center;margin-bottom:32px;}
.ceramic-packages-heading h2{margin:0;font-family:'Anton',sans-serif;font-size:clamp(30px,5vw,54px);text-transform:uppercase;}
.ceramic-packages-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;}
.tier-card{position:relative;overflow:hidden;background:#131313;border:1px solid rgba(245,243,239,.1);border-radius:6px;padding:0 0 28px;transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;}
.tier-card:hover{transform:translateY(-8px);box-shadow:0 20px 44px rgba(0,0,0,.35);border-color:rgba(201,162,75,.5);}
.tier-card.recommended{background:#1a1510;border-color:rgba(201,162,75,.5);transform:translateY(-8px);box-shadow:0 20px 44px rgba(0,0,0,.35);}
.popular-badge{position:absolute;top:16px;right:16px;z-index:2;padding:4px 10px;border-radius:2px;background:#c9a24b;color:#0b0b0c;font-family:'League Gothic',sans-serif;font-weight:300;font-size:12px;letter-spacing:1px;text-transform:uppercase;}
.tier-content{padding:0 28px;}
.tier-content h3{margin:0 0 6px;color:#f5f3ef;font-family:'Anton',sans-serif;font-size:clamp(24px,3vw,32px);text-transform:uppercase;}
.tier-duration{margin:0 0 6px;color:#9c9890;font-size:14px;}
.tier-price{margin:0 0 20px;color:#c9a24b;font-family:'Anton',sans-serif;font-size:26px;}
.tier-btn{display:block;text-align:center;}

.correction-care{background:#f5f3ef;color:#0b0b0c;padding:64px 24px 100px;}
.correction-care-container{max-width:1100px;margin:0 auto;}
.correction-care-heading{text-align:center;margin-bottom:56px;}
.correction-care-heading h2{margin:0 0 12px;font-family:'Anton',sans-serif;font-size:clamp(30px,5vw,54px);text-transform:uppercase;}
.correction-care-heading p{max-width:640px;margin:0 auto;font-size:15.5px;color:#5a564e;}
.cc-tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-bottom:8px;}
.cc-tab{border:none;cursor:pointer;padding:16px 24px;border-radius:2px;background:#e7e3da;color:#5a564e;font-family:'League Gothic',sans-serif;font-weight:300;font-size:17px;letter-spacing:.5px;text-transform:uppercase;transition:.3s;}
.cc-tab.active,
.cc-tab:hover{background:#c9a24b;color:#0b0b0c;}
.cc-content{margin-top:24px;padding:44px;background:#131313;border-radius:6px;}
.cc-panel{display:grid;grid-template-columns:auto 1fr;gap:36px;align-items:start;animation:fadeUp .4s ease both;}
.cc-price-box{display:flex;flex-direction:column;align-items:flex-start;min-width:140px;}
.cc-price{font-family:'Anton',sans-serif;color:#c9a24b;font-size:clamp(36px,5vw,38px);line-height:1;}
.cc-label{margin-top:6px;font-family:'League Gothic',sans-serif;font-weight:300;font-size:14px;letter-spacing:1px;text-transform:uppercase;color:#9c9890;}
.cc-info h3{margin:0 0 16px;color:#f5f3ef;font-family:'Anton',sans-serif;font-size:clamp(22px,3vw,30px);text-transform:uppercase;}
.cc-info p{margin:0 0 20px;font-size:15px;line-height:1.75;color:#b7b3aa;}
.cc-info ul{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:14px;}
.cc-info li{display:flex;gap:10px;color:#d9d5cd;font-size:14px;}
.cc-info li span{color:#c9a24b;flex-shrink:0;}

.about-work-container{text-align:center;}
.about-work-heading{margin-bottom:48px;}
.about-work-heading .section-title{margin:0 0 16px;}
.about-work-heading .section-text{margin:0 0 48px;}
.about-work-grid{gap:10px;border-radius:6px;}
.who-card{position:relative;}
.who-front{background:#0b0b0c;opacity:1;transform:scale(1);transition:opacity .35s ease, transform .35s ease;}
.about-work-image{width:100%;margin-bottom:18px;background:rgba(245,243,239,.06);border-radius:4px;}
.about-work-image x-import{width:100%;height:100%;display:block;color:#e9c77a;}
.about-work-title{margin:0 0 10px;padding:0 15px;text-align:center;font-family:'League Gothic',sans-serif;font-weight:300;font-size:20px;text-transform:uppercase;color:#c9a24b;}
.about-work-text{margin:0;padding:0 21px 20px;text-align:center;font-size:14px;line-height:1.6;color:#9c9890;}

.about-process-title{text-align:center;}
.about-process-wrapper{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:0;padding-bottom:12px;}
.about-process-card{flex:0 0 220px;min-width:220px;scroll-snap-align:start;text-align:center;padding:32px 20px;border-radius:6px;transition:background .3s ease, box-shadow .3s ease;}
.about-process-card:hover{background:#f5f3ef;box-shadow:0 10px 30px rgba(0,0,0,.08);}
.about-process-card .process-num{width:64px;height:64px;margin:0 auto 20px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#0b0b0c;color:#c9a24b;font-family:'Anton',sans-serif;font-size:24px; transition:background .3s ease, color .3s ease;}
.about-process-card:hover .process-num{background:#c9a24b;color:#0b0b0c;}
.about-process-card h3{margin:0 0 10px;font-family:'League Gothic',sans-serif;font-size:22px;font-weight:300;text-transform:uppercase;}
.about-process-card p{margin:0;color:#5a564e;font-size:14.5px;line-height:1.65;}

.actually-involves{background:#f5f3ef;color:#0b0b0c;padding:90px 24px;}
.actually-involves__container{max-width:1000px;margin:0 auto;text-align:center;}
.actually-involves__title{font-family:'Anton',sans-serif;font-size:clamp(26px,4vw,40px);margin:0 0 20px;text-transform:uppercase;}
.actually-involves__text{max-width:820px;margin:0 auto 20px;font-size:15.5px;line-height:1.8;color:#3a372f;}
.actually-involves__text:last-child{margin-bottom:0;}
.actually-involves__video{position:relative;height:420px;margin-bottom:40px;border:1px dashed rgba(201,162,75,.5);border-radius:4px;overflow:hidden;background:#0b0b0c;}
.actually-involves__video-content{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:12px;color:#c9a24b;}
.actually-involves__play{font-size:44px;}
.actually-involves__label{font-family:'League Gothic',sans-serif;font-weight:300;font-size:16px;letter-spacing:1px;text-transform:uppercase;color:#b7b3aa;}

.wrap-vs-respray{background:#f5f3ef;color:#0b0b0c;padding:90px 24px;}
.wrap-vs-respray__container{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:48px;}
.wrap-vs-respray__title{margin:0 0 14px;font-family:'Anton',sans-serif;font-size:clamp(24px,3.6vw,34px);text-transform:uppercase;}
.wrap-vs-respray__text{margin:0;font-size:15px;line-height:1.75;color:#3a372f;}

.wrapped-car{background:#f5f3ef;color:#0b0b0c;padding:90px 24px;}
.wrapped-car__content{max-width:800px;margin:0 auto;text-align:center;}
.wrapped-car__title{margin:0 0 16px;font-family:'Anton',sans-serif;font-size:clamp(24px,3.6vw,34px);text-transform:uppercase;}
.wrapped-car__text{margin:0;font-size:15px;line-height:1.8;color:#3a372f;}
.wrapped-car__image{max-width:1280px;margin:40px auto 0;padding:0 24px;}
/*.wrapped-car__placeholder{height:400px;}*/



@media (max-width:768px){
.tint-pkg-row{ flex-direction:column; align-items:flex-start;}
.tint-price{ margin-top:12px;}
.what-it-does{padding:70px 20px;}
.wd-box{padding:35px 25px;}
.cc-content{padding:30px 24px;}
.cc-panel{grid-template-columns:1fr;gap:24px;}
}


@media (max-width: 760px) {
  .service-card { grid-template-columns: 1fr; gap: 24px; }
  .service-card:nth-child(even) .service-copy,
  .service-card:nth-child(even) .service-visual { order: initial; }
  .service-area-grid { grid-template-columns: 1fr; gap: 24px; }
  .comparison-card { flex-direction: column; }
  .comparison-card__thumb { width: 100%; min-height: 160px; }
}
.contact-label {
  display: block;
  color: #c9a24b;
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-link,
.contact-value {
  color: #f5f3ef;
  font-size: 18px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-input,
.contact-select,
.contact-textarea {
  background: #0b0b0c;
  border: 1px solid rgba(245, 243, 239, 0.15);
  color: #f5f3ef;
  padding: 14px;
  border-radius: 2px;
  font-size: 15px;
}
.contact-textarea { resize: vertical; }
.contact-multi { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-chip {
  font-family: 'League Gothic', sans-serif;
  font-weight: 300;
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: #c9a24b;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.btn--compact { display: inline-block; margin-top: 8px; width: fit-content; padding: 14px 24px; font-size: 17px; }
.btn--compact-alt { padding: 16px 34px; font-size: 18px; }
.btn--compact-sm { padding: 14px 28px; font-size: 17px; }
.section-block--light .section-text--muted { color: #5a564e; }
.section-block--light .section-title--light { color: #0b0b0c; }
.section-block--dark .section-text--muted { color: #b7b3aa; }
.section-block--dark .section-title--light { color: #f5f3ef; }

@media (max-width: 760px) {
  .page-hero { padding: 40px 24px 32px; }
  .page-hero-grid { gap: 36px; }
  .section-grid--two { grid-template-columns: 1fr; gap: 24px; }
  .section-block { padding: 70px 24px; }
  .contact-card { position: static; }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
.logo-img {height: 45px;}
.btn.btn-gold.header-call{padding: 10px 14px;text-align: center;}
.hustle-car-kustoms-white-logo {width: 155px;}
}
/* ============================
   iPad Header Responsive Fix
============================ */
@media only screen and (min-width:761px) and (max-width:1024px){

    .header-inner{
        padding:14px 20px;
    }

    /* Hide only desktop menu */
    .main-nav{
        display:none !important;
    }

    /* Keep Book Now button visible */
    .header-call{
        display:inline-flex !important;
        padding:10px 18px;
        font-size:16px;
    }

    /* Show hamburger */
    .hamburger-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
        margin-left:10px;
    }

    .logo-img{
        height:50px;
    }

    .header-actions{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .mobile-nav.is-open{
        display:flex !important;
    }
#mobileNav .btn.btn-gold.header-call {
  text-align: center;
  display: block !important;
}
}