/* ================================================================
   ENTIGEN — GLOBAL DESIGN SYSTEM
   /assets/css/entigen-global.css
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --gold: #c5a554;
  --gold-bright: #e0c97a;
  --gold-dark: #8a6d2e;
  --gold-glow: rgba(197,165,84,0.18);
  --gold-faint: rgba(197,165,84,0.07);
  --black: #080a0c;
  --dark: #0d0f12;
  --dark-2: #141619;
  --dark-3: #1c1f24;
  --dark-4: #252930;
  --white: #f2f0eb;
  --white-dim: rgba(242,240,235,0.72);
  --white-faint: rgba(242,240,235,0.1);
  --white-ghost: rgba(242,240,235,0.04);
  --radius: 3px;
  --tr: 0.38s cubic-bezier(0.25,0.1,0.25,1);
  --container-max: 1260px;
  --header-h: 76px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  line-height: 0.93;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 36px;
}
.wrap { position: relative; z-index: 1; }

/* ── CANVAS BACKGROUND ── */
#canvas-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-c { justify-content: center; }
.eyebrow-c::before,
.eyebrow-c::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg,
    var(--white-dim) 0%, var(--white-dim) 35%,
    var(--gold-bright) 50%,
    var(--white-dim) 65%, var(--white-dim) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.d3 { transition-delay: .3s; }
.sr.d4 { transition-delay: .4s; }
.sr.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 14px 30px;
  font-size: 13px;
  box-shadow: 0 6px 20px rgba(197,165,84,0.28);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197,165,84,0.44);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  font-size: 13px;
  border: 1px solid rgba(242,240,235,0.22);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-wa { background: #25d366; color: #fff; padding: 14px 28px; font-size: 13px; }
.btn-wa:hover { background: #1fb059; transform: translateY(-2px); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,10,12,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,165,84,0.12);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(8,10,12,0.98); }
.hdr-logo { height: 42px; display: flex; align-items: center; }
.hdr-logo svg { height: 40px; width: auto; }
.hdr-logo img { height: 40px; width: auto; }
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.hdr-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--tr);
}
.hdr-nav a:hover,
.hdr-nav a.act { color: var(--gold); }
.hdr-right { display: flex; align-items: center; gap: 18px; }
.hdr-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--tr);
}
.hdr-phone:hover { color: var(--gold); }
.ph-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pdot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pdot {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.4); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger:hover span { background: var(--gold); }
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgb(8,10,12);
  background: rgba(8,10,12,0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 899;
  padding: 40px 28px 60px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(197,165,84,0.2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,240,235,0.85);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(197,165,84,0.12);
  transition: color 0.25s;
  display: block;
  background: transparent;
}
.mobile-menu a:hover,
.mobile-menu a:focus { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── BREADCRUMB ── */
.bc-bar {
  padding-top: var(--header-h);
  background: var(--dark-2);
  border-bottom: 1px solid rgba(197,165,84,0.08);
}
.bc-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(242,240,235,0.35);
}
.bc-inner a { color: rgba(242,240,235,0.35); transition: color var(--tr); }
.bc-inner a:hover { color: var(--gold); }
.bc-inner .sep { color: rgba(197,165,84,0.28); }
.bc-inner .cur { color: var(--gold); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(197,165,84,0.09);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
}
.t-item svg { color: var(--gold); flex-shrink: 0; }

/* ── PAGE HERO (hub pages) ── */
.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ph-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
    rgba(8,10,12,0.96) 0%,
    rgba(8,10,12,0.84) 42%,
    rgba(8,10,12,0.48) 68%,
    rgba(8,10,12,0.22) 100%);
}
.ph-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top,
    rgba(8,10,12,1) 0%,
    rgba(8,10,12,0.55) 55%,
    transparent 100%);
}
.ph-circuit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ph-mark {
  position: absolute;
  right: -1%; bottom: -4%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(260px,24vw,420px);
  color: rgba(197,165,84,0.035);
  user-select: none;
  pointer-events: none;
  letter-spacing: -8px;
  line-height: 1;
  z-index: 1;
}
.ph-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 0;
  width: 100%;
  flex: 1;
}
.ph-eye {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  animation: fadeUp 0.9s ease both;
}
.ph-eye::before { content: ''; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-h1 {
  font-size: clamp(44px,6.5vw,106px);
  color: var(--white);
  line-height: 0.87;
  margin-bottom: 22px;
  animation: fadeUp 0.9s 0.12s ease both;
}
.hero-h1 em { font-style: normal; color: var(--gold); display: block; }
.ph-sub {
  font-size: clamp(15px,1.6vw,18px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.22s ease both;
}
.ph-acts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.34s ease both;
}

/* ── HERO STAT STRIP ── */
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(197,165,84,0.16);
  margin-top: 40px;
  animation: fadeUp 0.9s 0.5s ease both;
  width: 100%;
  flex-shrink: 0;
}
.hero-strip .container { display: grid; grid-template-columns: repeat(4,1fr); }
.hs {
  padding: 22px 32px;
  border-right: 1px solid rgba(197,165,84,0.09);
  position: relative;
  overflow: hidden;
}
.hs:last-child { border-right: none; }
.hs::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--gold),transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.hs:hover::before { transform: scaleX(1); }
.hs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.hs-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}

/* ── SECTIONS ── */
.sec {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.sec-dark { background: var(--dark-2) !important; }
.sec-glow-l::before {
  content: '';
  position: absolute;
  left: -180px; top: 50%;
  transform: translateY(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle,rgba(197,165,84,0.055) 0%,transparent 70%);
  pointer-events: none;
}
.sec-glow-r::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle,rgba(197,165,84,0.05) 0%,transparent 70%);
  pointer-events: none;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.sec-title {
  font-size: clamp(36px,4.2vw,66px);
  color: var(--white);
  margin-top: 10px;
}
.sec-sub-right {
  font-size: 15px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 360px;
  line-height: 1.72;
  text-align: right;
}

/* ── INTRO / ABOUT GRID ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-h2 {
  font-size: clamp(34px,3.8vw,58px);
  color: var(--white);
  margin-bottom: 24px;
}
.intro-p {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 16px;
}
.intro-p strong { color: var(--white); font-weight: 600; }

/* ── CARD: WHY/CREDENTIAL ── */
.why-card {
  background: var(--dark-3);
  border: 1px solid rgba(197,165,84,0.14);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--gold),transparent);
}
.ck-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 20px;
}
.ck-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  color: var(--white-dim);
  line-height: 1.52;
}
.ck {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}
.review-card {
  margin-top: 22px;
  padding: 22px;
  background: rgba(197,165,84,0.045);
  border: 1px solid rgba(197,165,84,0.13);
  border-radius: 4px;
}
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; margin-bottom: 10px; }
.review-text { font-size: 14px; font-style: italic; color: var(--white-dim); line-height: 1.7; }
.review-by {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}

/* ── SERVICE/AREA CARDS ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--black);
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  background: var(--black);
}
.srv-card {
  background: var(--dark-3);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background var(--tr);
  text-decoration: none;
  color: inherit;
}
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(197,165,84,0.07) 0%,transparent 55%);
  opacity: 0;
  transition: opacity var(--tr);
}
.srv-card:hover { background: var(--dark-4); }
.srv-card:hover::before { opacity: 1; }
.srv-card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,var(--gold),transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.srv-card:hover .srv-card-bar { transform: scaleX(1); }
.srv-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(197,165,84,0.28);
}
.srv-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.srv-card-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(197,165,84,0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--tr);
}
.srv-card:hover .srv-card-icon {
  background: rgba(197,165,84,0.1);
  border-color: rgba(197,165,84,0.48);
}
/* Draw-in SVG icon on hover */
.srv-card-icon svg path,
.srv-card-icon svg polyline,
.srv-card-icon svg rect,
.srv-card-icon svg circle,
.srv-card-icon svg line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.7s ease;
}
.srv-card:hover .srv-card-icon svg path,
.srv-card:hover .srv-card-icon svg polyline,
.srv-card:hover .srv-card-icon svg rect,
.srv-card:hover .srv-card-icon svg circle,
.srv-card:hover .srv-card-icon svg line { stroke-dashoffset: 0; }
.srv-card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}
.srv-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,240,235,0.48);
  line-height: 1.68;
  flex: 1;
}
.srv-card-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--tr);
}
.srv-card:hover .srv-card-cta { gap: 14px; }
.srv-card.featured {
  background: linear-gradient(135deg,rgba(197,165,84,0.1) 0%,rgba(197,165,84,0.04) 100%);
  border: 1px solid rgba(197,165,84,0.2);
}

/* ── FEATURE/INFO PANELS ── */
.feat-panel {
  background: var(--dark-3);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--tr);
}
.feat-panel:hover { background: var(--dark-4); }
.feat-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: linear-gradient(to bottom,var(--gold),transparent);
  transition: height 0.5s ease;
}
.feat-panel:hover::before { height: 100%; }
.feat-panel-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.feat-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}
.feat-panel-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,240,235,0.52);
  line-height: 1.78;
}

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; }
.p-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(197,165,84,0.09);
  align-items: flex-start;
  transition: all var(--tr);
}
.p-step:last-child { border-bottom: none; }
.p-step:hover .ps-num { color: rgba(197,165,84,0.65); }
.ps-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: rgba(197,165,84,0.16);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  transition: color var(--tr);
}
.ps-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.ps-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,240,235,0.52);
  line-height: 1.72;
}

/* ── IMAGE BLOCK (gallery/process) ── */
.img-block {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(197,165,84,0.12);
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.img-block:hover img { transform: scale(1.04); filter: brightness(0.86); }
.img-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,rgba(8,10,12,0.58) 0%,rgba(8,10,12,0.2) 100%);
}
.img-corner-tl {
  position: absolute; top: 10px; left: 10px;
  z-index: 2;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  width: 18px; height: 18px;
  opacity: 0.65;
}
.img-corner-br {
  position: absolute; bottom: 10px; right: 10px;
  z-index: 2;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  width: 18px; height: 18px;
  opacity: 0.65;
}

/* ── GALLERY GRID ── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 48px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 240px;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,rgba(8,10,12,0.63) 0%,rgba(8,10,12,0.26) 100%);
  transition: background 0.4s;
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(0.84); }
.gal-item:hover::after { background: linear-gradient(160deg,rgba(8,10,12,0.78) 0%,rgba(8,10,12,0.4) 100%); }
.gal-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 14px 16px;
  background: linear-gradient(to top,rgba(8,10,12,0.92),transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gal-item:hover .gal-cap { transform: translateY(0); }
.gc-tl {
  position: absolute; top: 8px; left: 8px;
  z-index: 3;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  width: 16px; height: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gc-br {
  position: absolute; bottom: 8px; right: 8px;
  z-index: 3;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  width: 16px; height: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gal-item:hover .gc-tl,
.gal-item:hover .gc-br { opacity: 1; }

/* ── TAG CLOUDS ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 36px; }
.tag {
  background: var(--dark-3);
  border: 1px solid rgba(197,165,84,0.14);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: all var(--tr);
  cursor: default;
}
.tag:hover, .tag.pri {
  background: rgba(197,165,84,0.1);
  border-color: rgba(197,165,84,0.4);
  color: var(--gold);
}
.tag a { color: inherit; }

/* ── SERVICE LINK LIST ── */
.srv-link-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--black);
  margin-top: 56px;
}
.srv-link {
  background: var(--dark-3);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background var(--tr);
  text-decoration: none;
  color: inherit;
}
.srv-link:hover { background: var(--dark-4); }
.srv-link svg { color: var(--gold); flex-shrink: 0; }
.srv-link span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white-dim);
  transition: color var(--tr);
}
.srv-link:hover span { color: var(--white); }

/* ── FAQ ── */
.faq-wrap { max-width: 820px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid rgba(197,165,84,0.09); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--gold); }
.faq-tog {
  width: 32px; height: 32px;
  border: 1px solid rgba(197,165,84,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 18px;
  transition: all var(--tr);
}
.faq-item.open .faq-tog {
  background: rgba(197,165,84,0.12);
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner {
  font-size: 15px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.85;
  padding-bottom: 24px;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ── CTA SECTION ── */
.sec-cta {
  padding: 100px 0;
  background: var(--dark-3);
  border-top: 1px solid rgba(197,165,84,0.1);
  position: relative;
  overflow: hidden;
}
.sec-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,rgba(197,165,84,0.065) 0%,transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-h2 {
  font-size: clamp(38px,5.5vw,80px);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 0.9;
}
.cta-h2 span { color: var(--gold); display: block; }
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.cta-contact { text-align: center; }
.cta-clabel {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cta-cval {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--white);
  transition: color var(--tr);
  display: block;
}
.cta-cval:hover { color: var(--gold); }
.cta-div { width: 1px; height: 44px; background: rgba(197,165,84,0.2); }
.cta-acts { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(242,240,235,0.26);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(197,165,84,0.09);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197,165,84,0.07);
}
.footer-logo { height: 36px; width: auto; margin-bottom: 18px; }
.ft-tag {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,240,235,0.35);
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: 24px;
}
.ft-contacts { display: flex; flex-direction: column; gap: 9px; }
.ft-contacts a {
  font-size: 14px;
  color: rgba(242,240,235,0.42);
  transition: color var(--tr);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-contacts a:hover { color: var(--gold); }
.ft-contacts a svg { color: rgba(197,165,84,0.48); flex-shrink: 0; }
.ft-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ft-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-nav li a { font-size: 14px; color: rgba(242,240,235,0.42); transition: color var(--tr); }
.ft-nav li a:hover { color: var(--white); }
.ft-hours p { font-size: 14px; color: rgba(242,240,235,0.42); line-height: 1.9; }
.ft-hours strong { color: var(--white-dim); }
.ft-bot {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-copy {
  font-size: 12px;
  color: rgba(242,240,235,0.2);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}
.ft-legal {
  font-size: 12px;
  color: rgba(242,240,235,0.2);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
  transition: color var(--tr);
}
.ft-legal:hover { color: var(--white-dim); }

/* ── WHATSAPP FLOAT ── */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.36);
  transition: transform var(--tr), box-shadow var(--tr);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.54); }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.38);
  animation: wap 2.5s ease-in-out infinite;
}
@keyframes wap {
  0%, 100% { transform: scale(1); opacity: .5; }
  50%       { transform: scale(1.2); opacity: 0; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 960px) {
  .hdr-nav { display: none; }
  .hamburger { display: flex; }
  .hdr-phone { font-size: 14px; }
}
@media (max-width: 640px) {
  .hdr-phone { display: none; }
  .trust-bar .container { gap: 18px; }
  .t-item { font-size: 11px; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sec-sub-right { text-align: left; max-width: 100%; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .site-header { padding: 0 20px; }
  .ph-mark { display: none; }

  /* Hero */
  .page-hero { min-height: auto; flex-direction: column !important; }
  .ph-content { padding: 36px 0 24px !important; }
  .hero-h1 { font-size: clamp(32px,9vw,52px) !important; line-height: 0.9 !important; }
  .hero-h1 em { display: inline !important; }
  .ph-sub { font-size: 15px !important; }

  /* Hero strip */
  .hero-strip .container { grid-template-columns: repeat(2,1fr) !important; }
  .hs { padding: 14px 16px !important; border-right: none !important; border-bottom: 1px solid rgba(197,165,84,.08); }
  .hs:nth-child(odd) { border-right: 1px solid rgba(197,165,84,.08) !important; }
  .hs:nth-last-child(-n+2) { border-bottom: none !important; }

  /* Grids */
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr !important; }
  .srv-link-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .feat-panel { padding: 38px 26px !important; }

  /* Process */
  .process-wrap { grid-template-columns: 1fr !important; }
  .proc-img { height: 260px !important; }

  /* FAQ */
  .faq-q { color: var(--white) !important; background: transparent !important; }

  /* CTA */
  .cta-contacts { flex-direction: column !important; gap: 20px !important; }
  .cta-div { display: none !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Section dark bg guarantee */
  body { background: var(--black) !important; }
  .sec { background: var(--dark) !important; }
  .sec-dark { background: var(--dark-2) !important; }
  .sec-cta { background: var(--dark-3) !important; }
  .trust-bar { background: var(--dark-2) !important; }
  .site-footer { background: var(--black) !important; }
  .footer-grid { background: var(--black) !important; }
  .why-card, .srv-card, .feat-panel, .srv-link { background: var(--dark-3) !important; }
  h1,h2,h3,h4 { color: var(--white) !important; }
  .intro-p, .srv-card-desc, .feat-panel-body, .faq-a-inner { color: rgba(242,240,235,0.72) !important; }
}

@media (max-width: 560px) {
  .card-grid-3 { grid-template-columns: 1fr !important; }
  .gal-grid { grid-template-columns: 1fr !important; }
  .gal-item { height: 200px !important; }
  .srv-link-grid { grid-template-columns: 1fr !important; }
  .wa-btn { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(28px,8.5vw,44px) !important; }
}

/* ── ADDITIONAL MOBILE FIXES ── */
@media (max-width: 768px) {
  /* Breadcrumb: prevent overflow */
  .bc-inner { flex-wrap: wrap; row-gap: 4px; }
  
  /* CTA button stacking */
  .cta-acts { flex-direction: column; align-items: center; gap: 12px !important; }
  .cta-acts .btn { width: 100%; max-width: 340px; justify-content: center; }
  
  /* Trust bar items wrapping */
  .trust-bar .container { 
    display: flex; flex-wrap: wrap; gap: 12px 18px; 
    justify-content: flex-start;
  }
  .t-item { font-size: 12px; flex: 0 0 auto; }
  
  /* Hero actions stacking on very small phones */
  .ph-acts { flex-direction: column; align-items: flex-start; gap: 12px; }
  
  /* Page-level hero strip: ensure 2-col */
  .hero-strip .container { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  
  /* Section eyebrow spacing */
  .eyebrow { margin-bottom: 8px; }
  
  /* FAQ button full width */
  .faq-q { padding-right: 36px; }
}

@media (max-width: 480px) {
  /* Ph acts full width */
  .ph-acts .btn { width: 100%; justify-content: center; }
  
  /* CTA contacts */
  .cta-contacts { gap: 16px !important; }
  .cta-cval { font-size: 22px !important; }
}

/* ================================================================
   MOBILE QA FIXES — added post-audit
   ================================================================ */

/* 1. Prevent canvas from causing scroll on mobile */
#canvas-bg { display: none; }
@media (min-width: 769px) { #canvas-bg { display: block; } }

/* 2. Prevent long words / URLs from overflowing on mobile */
@media (max-width: 768px) {
  p, li, .intro-p, .srv-card-desc, .feat-panel-body,
  .faq-a-inner, .ph-sub, .hero-sub {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .ck-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 13px;
    align-items: flex-start;
    padding-left: 0;
    word-break: normal;
    overflow-wrap: normal;
  }

  .ck-list li .ck {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 2px;
  }

  .ck-list li .ck-copy {
    grid-column: 2;
    min-width: 0;
    max-width: 100%;
  }

  .ck-list li .ck-sep {
    display: none;
  }

  .ck-list li .ck-desc {
    display: block;
    margin-top: 3px;
  }

  .ck-list li strong {
    display: block;
    word-break: normal;
    overflow-wrap: normal;
    min-width: 0;
    max-width: 100%;
  }
}

/* 3. Ensure Our Work case-study layout stacks on mobile */
@media (max-width: 900px) {
  .cs-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .cs-sidebar { position: static !important; }
  .cs-nav { grid-template-columns: 1fr !important; }
  .cs-gallery { grid-template-columns: 1fr !important; }
}

/* 4. Our Work card grid stacks on mobile */
@media (max-width: 580px) {
  .ow-grid { grid-template-columns: 1fr !important; }
}

/* 5. Our Work breadcrumb wraps safely */
.cs-bc-inner {
  flex-wrap: wrap;
  row-gap: 4px;
}

/* 6. FAQ max-height: allow long answers on mobile */
@media (max-width: 768px) {
  .faq-item.open .faq-a { max-height: 800px; }
}

/* 7. Tap target minimums: ensure all interactive elements are ≥44px */
@media (max-width: 768px) {
  .btn { min-height: 44px; }
  .faq-q { min-height: 44px; padding-top: 16px; padding-bottom: 16px; }
  .mobile-menu a { min-height: 52px; display: flex; align-items: center; }
  .wa-btn { min-width: 52px; min-height: 52px; }
  .hdr-phone { min-height: 44px; display: flex; align-items: center; }
  .ft-contacts a { min-height: 44px; }
  .ft-nav li a { min-height: 36px; display: flex; align-items: center; }
}

/* 8. Hero strip: don't let numbers overflow at very small sizes */
@media (max-width: 375px) {
  .hs-num { font-size: 28px !important; }
  .hs-label { font-size: 10px !important; }
  .hs { padding: 12px 10px !important; }
}

/* 9. Prevent horizontal scroll from inline-styled elements */
@media (max-width: 768px) {
  .our-work section, .cs-layout, .cs-body, .cs-sidebar-card,
  .cs-gallery, .cs-nav {
    max-width: 100% !important;
    overflow-x: hidden;
  }
}

/* 10. Contact form step labels and radio tiles stack cleanly */
@media (max-width: 480px) {
  .enq-grid { grid-template-columns: 1fr !important; }
  .form-progress { gap: 4px !important; }
  .prog-step span { display: none; }
}

/* 11. sr (scroll-reveal) fallback on reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .sr {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sr.visible {
    opacity: 1 !important;
    transform: none !important;
  }
  @keyframes fadeUp { from { opacity:1; transform:none; } to { opacity:1; transform:none; } }
  @keyframes shimmer { from { background-position: 0; } to { background-position: 0; } }
  @keyframes pdot { 0%,100% { opacity:.5; transform:scale(1); } }
  @keyframes wap { 0%,100% { transform:scale(1); opacity:.5; } }
  .btn-gold:hover { transform: none; }
  .btn-wa:hover { transform: none; }
}

/* 12. Ensure trust bar doesn't cause horizontal overflow at 320px */
@media (max-width: 375px) {
  .trust-bar .container { gap: 10px 14px; padding: 0 16px; }
  .t-item { font-size: 11px; letter-spacing: 0.5px; }
  .container { padding: 0 16px; }
}

/* 13. Footer grid single column on small phones */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* 14. Image overflow protection */
img { max-width: 100%; height: auto; }

/* 15. Hero H1 doesn't clip at 320px */
@media (max-width: 340px) {
  .hero-h1, .cs-h1 { font-size: 28px !important; letter-spacing: 0px !important; }
  .ph-content { padding: 24px 0 16px !important; }
}

/* Tap highlight fix for iOS/Android */
a, button, [role="button"], .btn, .srv-card, .faq-q, .enq-tile, .ow-card-img-wrap, .cs-nav-item {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ================================================================
   SERVICE CARD SCROLL-TRIGGERED ANIMATION — MOBILE
   ================================================================
   On mobile (no hover), srv-card icons are hidden by default because
   stroke-dashoffset:200 makes SVG paths invisible until :hover draws them.
   Fix: reset icons to visible at mobile baseline; add .in-view class
   (set by IntersectionObserver in JS) to trigger the animated version.
   Desktop :hover behaviour is completely unchanged.
   ================================================================ */

/* ── Mobile baseline: ensure icon SVG paths are always visible ── */
/* Without this, SVG icons are stroke-dashoffset:200 = invisible on mobile */
@media (hover: none), (max-width: 960px) {
  .srv-card-icon svg path,
  .srv-card-icon svg polyline,
  .srv-card-icon svg rect,
  .srv-card-icon svg circle,
  .srv-card-icon svg line {
    stroke-dashoffset: 0;
    transition: none;
  }
}

/* ── .in-view: scroll-triggered state, replaces :hover on mobile ── */
/* Applied by IntersectionObserver when card enters viewport */
@media (hover: none), (max-width: 960px) {
  .srv-card.in-view {
    background: var(--dark-4);
  }
  .srv-card.in-view::before {
    opacity: 1;
  }
  .srv-card.in-view .srv-card-bar {
    transform: scaleX(1);
  }
  .srv-card.in-view .srv-card-icon {
    background: rgba(197,165,84,0.1);
    border-color: rgba(197,165,84,0.48);
  }
  .srv-card.in-view .srv-card-icon svg path,
  .srv-card.in-view .srv-card-icon svg polyline,
  .srv-card.in-view .srv-card-icon svg rect,
  .srv-card.in-view .srv-card-icon svg circle,
  .srv-card.in-view .srv-card-icon svg line {
    stroke-dashoffset: 0;
  }
  .srv-card.in-view .srv-card-cta {
    gap: 14px;
  }
}

/* ── Staggered entrance animation for card grids on mobile ── */
@media (hover: none), (max-width: 960px) {
  .srv-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease, background var(--tr);
  }
  .srv-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger siblings: nth-child delays */
  .srv-card:nth-child(1) { transition-delay: 0s; }
  .srv-card:nth-child(2) { transition-delay: 0.08s; }
  .srv-card:nth-child(3) { transition-delay: 0.16s; }
  .srv-card:nth-child(4) { transition-delay: 0.08s; }
  .srv-card:nth-child(5) { transition-delay: 0.16s; }
  .srv-card:nth-child(6) { transition-delay: 0.24s; }
  /* If JS fails, cards still show (no-JS fallback handled in JS) */
}

/* ── Reduced motion: skip animation, show instantly ── */
@media (prefers-reduced-motion: reduce) {
  .srv-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .srv-card-icon svg path,
  .srv-card-icon svg polyline,
  .srv-card-icon svg rect,
  .srv-card-icon svg circle,
  .srv-card-icon svg line {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* ── Desktop: cards always fully visible (no opacity:0 at wide widths) ── */
@media (hover: hover) and (min-width: 961px) {
  .srv-card {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   SMALL PHONE HEADER — prevent wrapping at 375px–390px
   ================================================================ */

/* Always prevent phone number and Get a Quote from wrapping */
.hdr-phone { white-space: nowrap; }
.site-header .btn-gold { white-space: nowrap; }

/* 390px — iPhone 13 mini, iPhone SE 3rd gen */
@media (max-width: 390px) {
  .site-header { padding: 0 14px; gap: 0; }
  .hdr-right { gap: 10px; }
  .hdr-logo img { max-width: 108px; width: 108px; }
  .hdr-phone {
    font-size: 13px;
    letter-spacing: 0.5px;
    gap: 6px;
  }
  .site-header .btn-gold {
    padding: 10px 16px !important;
    font-size: 11px !important;
    letter-spacing: 0.8px;
  }
  .hamburger { padding: 6px; }
  .ph-dot { width: 6px; height: 6px; }
}

/* 375px — iPhone SE, older iPhones */
@media (max-width: 375px) {
  .site-header { padding: 0 12px; }
  .hdr-right { gap: 8px; }
  .hdr-logo img { max-width: 96px; width: 96px; }
  .hdr-phone {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
  .site-header .btn-gold {
    padding: 9px 12px !important;
    font-size: 11px !important;
    min-width: 0;
  }
  .hamburger { padding: 5px; }
}
