/* ============================================
   MARCHY'S CUSTOM DECKS INC.
   ============================================ */

:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --card: #131313;
  --card-hover: #1a1a1a;
  --border: #1e1e1e;
  --border-light: #282828;
  --blue: #091730;
  --blue-light: #0F2550;
  --blue-bright: #1A3F8A;
  --blue-dim: rgba(9,23,48,0.45);
  --blue-glow: rgba(9,23,48,0.15);
  --red: #C41E1E;
  --red-light: #DC2626;
  --red-dim: rgba(196,30,30,0.25);
  --red-glow: rgba(196,30,30,0.1);
  --cream: #F0EBE1;
  --warm-gray: #A89880;
  --gold: #F59E0B;
  --muted: #5a5040;
  --nav-height: 80px;
  --max-w: 1200px;
  --t: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.page-ready { opacity: 1; }
body.page-exit { opacity: 0; transition: opacity 0.25s ease; }
body.no-scroll { overflow: hidden; }
body.touch-device { cursor: auto; }

/* Force cursor:none on all interactive elements so the native hand never shows */
body:not(.touch-device) a,
body:not(.touch-device) button,
body:not(.touch-device) input,
body:not(.touch-device) select,
body:not(.touch-device) label,
body:not(.touch-device) [role="button"],
body:not(.touch-device) [tabindex] { cursor: none !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
}

/* ── Scroll progress ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--red));
  z-index: 99999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Custom Cursor — Hammer ── */
.cursor {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-4px, -4px);
  will-change: left, top;
  transform-origin: 35px 33px; /* grip end of handle — head swings around this */
}

.cursor svg {
  width: 100%; height: 100%;
  filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.7));
}

.cursor.slam {
  animation: hammerSlam 0.26s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes hammerSlam {
  0%   { transform: translate(-4px,-4px) rotate(0deg); }
  14%  { transform: translate(-4px,-4px) rotate(-28deg); }
  38%  { transform: translate(-4px,-4px) rotate(14deg); }
  56%  { transform: translate(-4px,-4px) rotate(6deg); }
  74%  { transform: translate(-4px,-4px) rotate(-3deg); }
  100% { transform: translate(-4px,-4px) rotate(0deg); }
}

.cursor-ring { display: none; }

.trail-dot {
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%,-50%);
  will-change: left, top;
}

body.cursor-hover .cursor {
  filter: brightness(1.2);
}

body.touch-device .cursor,
body.touch-device .cursor-ring,
body.touch-device .trail-dot { display: none; }

/* ── Intro Overlay ── */
.intro-overlay {
  position: fixed; inset: 0;
  background: #000000;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-overlay.fade-out { opacity: 0; visibility: hidden; }


.intro-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative; z-index: 1;
  padding: 0 24px;
}

.intro-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 6rem);
  color: var(--blue-bright);
  letter-spacing: 0.12em;
  text-shadow: 0 0 40px rgba(30,79,168,0.6), 0 0 80px rgba(30,79,168,0.25);
  min-height: 1em;
  display: block;
}

.intro-blink {
  display: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 6rem);
  color: var(--red);
  animation: blink 0.65s step-end infinite;
  display: inline-block;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.intro-logo {
  width: clamp(220px, 36vw, 380px);
  opacity: 0;
  transform: scale(0.88);
  border-radius: 50%;
  clip-path: circle(48%);
  outline: 8px solid #000000;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.intro-logo.visible { opacity: 1; transform: scale(1); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(6px);
}

.nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-color: var(--border-light);
  backdrop-filter: blur(16px);
}

.nav-container {
  max-width: none;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo { flex-shrink: 0; z-index: 1; }

.nav-logo-img {
  height: 50px; width: auto;
  border-radius: 50%;
  transition: filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img { filter: drop-shadow(0 0 16px rgba(30,79,168,0.55)); }

/* Centered nav links */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,235,225,0.88);
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9), 0 0 3px rgba(0,0,0,0.6);
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196,30,30,0.06);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--red-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.34,1.3,0.64,1);
}

.nav-link:hover, .nav-link.active { color: var(--cream); text-shadow: 0 0 18px rgba(220,38,38,0.28), 0 1px 10px rgba(0,0,0,0.9); }
.nav-link:hover::before { opacity: 1; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-link-quote {
  color: var(--cream);
  background: var(--blue);
  border: 1px solid var(--blue-light);
  padding: 8px 20px;
  border-radius: 6px;
  margin-left: 8px;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.nav-link-quote::before { display: none; }
.nav-link-quote::after  { display: none; }
.nav-link-quote:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  color: #fff;
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,30,30,0.38);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none; border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  align-items: center; justify-content: center;
}

.nav-toggle span {
  display: block; height: 2px; width: 22px; background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }

.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.12) brightness(1.08) saturate(1.18); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.9) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: calc(var(--nav-height) + 80px) 24px 150px;
  max-width: 920px;
}

.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 18px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

/* Logo above hero title */
.hero-above-logo {
  width: clamp(260px, 32vw, 420px);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: block;
  opacity: 0; transform: translateY(16px) scale(0.9);
  transition: opacity 0.9s ease 0.1s, transform 0.9s ease 0.1s;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 6.4rem);
  line-height: 1; letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.85), 0 4px 48px rgba(0,0,0,0.6);
  color: var(--cream);
  white-space: nowrap;
  margin-bottom: 18px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}

.hero-title span { display: inline; }
.hero-title-marchys { color: var(--red-light); }
.hero-title-sub { color: var(--cream); font-size: 1em; letter-spacing: 0.04em; }

.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--warm-gray);
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease 0.75s, transform 0.8s ease 0.75s;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease 1.05s, transform 0.8s ease 1.05s;
}

.hero-content.animated .hero-above-logo,
.hero-content.animated .hero-eyebrow,
.hero-content.animated .hero-title,
.hero-content.animated .hero-tagline,
.hero-content.animated .hero-btns { opacity: 1; transform: translateY(0); }

.hero-content.animated .hero-above-logo { transform: translateY(0) scale(1); }

@media (max-width: 600px) {
  .hero-title { white-space: normal; font-size: clamp(2rem, 8vw, 3.5rem); }
  .intro-logo { width: min(82vw, 340px); }
  .hero-above-logo { width: min(76vw, 320px); }
  .hero-scroll { display: none; }
}

/* Mute button */
.mute-btn {
  position: absolute; bottom: 28px; right: 28px;
  z-index: 10;
  display: flex; align-items: center; gap: 9px;
  background: rgba(8,8,8,0.65);
  border: 1px solid var(--border-light);
  color: var(--cream);
  padding: 10px 16px;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 500;
  cursor: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.mute-btn:hover { background: rgba(30,79,168,0.2); border-color: var(--blue-dim); color: var(--blue-bright); }
.mute-btn.unmuted { border-color: var(--blue-dim); color: var(--blue-bright); }

.hammer-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(30,79,168,0.25);
  width: 200%; padding-top: 200%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  animation: ripple 0.55s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple { to { transform: translate(-50%,-50%) scale(1); opacity: 0; } }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 52px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-gray);
  pointer-events: none;
}

.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 32px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease; cursor: none;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::before { transform: translateX(100%); }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,79,168,0.35); }

.btn-outline { border: 1px solid var(--border-light); color: var(--cream); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-bright); transform: translateY(-2px); }

.btn-blue { border: 1px solid var(--blue); color: var(--blue-bright); }
.btn-blue:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,30,30,0.3); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.section-alt { background: var(--surface); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.section-tag::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--blue);
}

.section-header.centered .section-tag { padding-left: 0; }
.section-header.centered .section-tag::before { display: none; }

.section-title { color: var(--cream); font-size: clamp(2.2rem, 5.5vw, 4.5rem); margin-bottom: 18px; }
.section-desc { font-size: 0.95rem; color: var(--warm-gray); max-width: 540px; line-height: 1.85; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 48px;
}

.service-card {
  background: var(--card); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--blue), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: var(--card-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 38px; height: 38px;
  color: var(--blue-bright); margin-bottom: 20px;
  transition: transform 0.35s ease;
}

.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.12); color: var(--red); }

.service-card h3 { font-size: 1.7rem; color: var(--cream); margin-bottom: 10px; }
.service-card p { font-size: 0.865rem; color: var(--warm-gray); line-height: 1.8; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-bright); margin-top: 18px; font-weight: 500;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

/* Full service cards */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}

.service-full-card {
  background: var(--card); padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}

.service-full-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--blue), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease;
}

.service-full-card:hover { background: var(--card-hover); }
.service-full-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; color: var(--border-light);
  line-height: 1; margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-full-card:hover .service-num { color: var(--blue-dim); }

.service-full-icon {
  width: 44px; height: 44px;
  color: var(--blue-bright); margin-bottom: 22px;
  transition: transform 0.35s ease;
}

.service-full-card:hover .service-full-icon { transform: rotate(-8deg) scale(1.1); color: var(--red); }

.service-full-card h3 { font-size: 2rem; color: var(--cream); margin-bottom: 14px; }
.service-full-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.85; }

/* ── Stats ── */
.stats-section { background: var(--blue); padding: 72px 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat-item {
  text-align: center; padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-num-wrap {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: #fff; line-height: 1; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
}

.stat-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── Projects preview ── */
.projects-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px 260px;
  gap: 8px; margin-bottom: 48px;
}

.proj-thumb { position: relative; overflow: hidden; background: var(--card); }
.proj-thumb:first-child { grid-row: span 2; }

.proj-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.proj-thumb:hover img { transform: scale(1.05); }

.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 22px;
}

.proj-thumb:hover .proj-overlay { opacity: 1; }
.proj-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--cream); }

/* ── Reviews ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 48px;
}

.review-card {
  background: var(--card); padding: 40px 36px;
  transition: background 0.3s ease;
  position: relative; overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute; top: 10px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem; color: var(--border);
  line-height: 1;
  transition: color 0.3s ease;
  pointer-events: none;
}

.review-card:hover { background: var(--card-hover); }
.review-card:hover::before { color: var(--blue-dim); }

.review-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--red); font-size: 13px; }
.review-text { font-size: 0.9rem; color: var(--cream); line-height: 1.85; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.review-author { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); }
.review-date { font-size: 0.62rem; color: var(--muted); margin-top: 4px; }

/* Full reviews */
.reviews-full-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 60px;
}

.review-full-card {
  background: var(--card); padding: 52px 44px;
  transition: background 0.3s ease;
  position: relative; overflow: hidden;
}

.review-full-card::before {
  content: '"';
  position: absolute; top: 16px; right: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9rem; color: var(--border);
  line-height: 1; transition: color 0.3s ease;
}

.review-full-card:hover { background: var(--card-hover); }
.review-full-card:hover::before { color: var(--blue-dim); }

.review-full-text {
  font-size: 1rem; color: var(--cream);
  line-height: 1.9; margin: 20px 0 32px;
  font-style: italic;
  position: relative; z-index: 1;
}

.review-full-footer { display: flex; align-items: center; gap: 14px; }

.review-avatar {
  width: 44px; height: 44px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--blue-bright);
  flex-shrink: 0;
}

.review-full-name { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); margin-bottom: 3px; }
.review-full-date { font-size: 0.62rem; color: var(--muted); }

.rating-badge {
  text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  padding: 52px 40px; max-width: 380px; margin: 0 auto;
}

.rating-number { font-family: 'Bebas Neue', sans-serif; font-size: 5.5rem; color: var(--blue-bright); line-height: 1; margin-bottom: 8px; }
.rating-stars { display: flex; justify-content: center; gap: 4px; font-size: 22px; color: var(--red); margin-bottom: 10px; }
.rating-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-gray); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 96px 32px; text-align: center;
  position: relative; overflow: hidden;
}

.cta-banner h2 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--cream); margin-bottom: 18px; }
.cta-banner p { color: var(--warm-gray); font-size: 0.95rem; max-width: 480px; margin: 0 auto 36px; line-height: 1.85; }

.cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--blue-bright); display: block;
  margin-bottom: 32px; letter-spacing: 0.06em;
  transition: color 0.25s ease;
}

.cta-phone:hover { color: var(--red-light); }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--card); cursor: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-expand {
  width: 44px; height: 44px;
  border: 1.5px solid var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transform: scale(0.7);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.gallery-item:hover .gallery-expand { transform: scale(1); border-color: var(--blue-bright); color: var(--blue-bright); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(3,3,3,0.97);
  z-index: 10000; display: none;
  align-items: center; justify-content: center; padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox-img { max-width: 90%; max-height: 84vh; object-fit: contain; border: 1px solid var(--border-light); }

.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border: 1px solid var(--border-light); border-radius: 50%;
  background: none; color: var(--cream);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  cursor: none; transition: border-color 0.25s ease, color 0.25s ease;
}

.lightbox-close:hover { border-color: var(--red); color: var(--red); }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid var(--border-light); border-radius: 50%;
  background: none; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all 0.25s ease; font-size: 18px;
}

.lightbox-nav:hover { border-color: var(--blue); color: var(--blue-bright); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ── About ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 100px;
}

.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

.about-img-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 160px; height: 160px;
  border: 1px solid var(--blue-dim); z-index: -1;
}

.about-content h2 { color: var(--cream); margin-bottom: 24px; font-size: clamp(2rem, 4.5vw, 3.8rem); }
.about-content p { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }

.license-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-dim);
  padding: 18px 22px; margin-top: 36px;
}

.license-badge svg { width: 28px; height: 28px; color: var(--blue-bright); flex-shrink: 0; }
.license-badge span { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; color: var(--cream); }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 60px;
}

.value-card { background: var(--card); padding: 48px 36px; transition: background 0.3s ease; }
.value-card:hover { background: var(--card-hover); }
.value-icon { width: 42px; height: 42px; color: var(--blue-bright); margin-bottom: 22px; transition: transform 0.3s ease, color 0.3s ease; }
.value-card:hover .value-icon { transform: scale(1.12); color: var(--red); }
.value-card h3 { font-size: 1.9rem; color: var(--cream); margin-bottom: 12px; }
.value-card p { font-size: 0.875rem; color: var(--warm-gray); line-height: 1.85; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }

.contact-info h2 { color: var(--cream); margin-bottom: 20px; font-size: clamp(2rem, 4.5vw, 3.8rem); }
.contact-info-desc { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.9; margin-bottom: 44px; }

.contact-details { display: flex; flex-direction: column; gap: 26px; margin-bottom: 44px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow); border: 1px solid var(--blue-dim);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--blue-bright); flex-shrink: 0;
}

.contact-detail-icon svg { width: 17px; height: 17px; }
.contact-detail-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 4px; }
.contact-detail-value { font-size: 0.95rem; color: var(--cream); }
.contact-detail-value a { transition: color 0.25s ease; }
.contact-detail-value a:hover { color: var(--blue-bright); }

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.social-link svg { width: 18px; height: 18px; }
.social-link.fb:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.1); }
.social-link.ig:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.1); }

/* Form */
.contact-form { background: var(--card); border: 1px solid var(--border); padding: 52px 44px; }
.form-title { font-size: 1.8rem; color: var(--cream); margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 8px; }

.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 13px 15px; outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0; appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 130px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89880' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: var(--surface); padding-right: 36px;
}

.form-select option { background: var(--card); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--blue); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: none; position: relative; overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.5s ease;
}

.form-submit:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,79,168,0.35); }
.form-submit:hover::before { transform: translateX(100%); }

.form-success { display: none; text-align: center; padding: 32px; color: var(--blue-bright); font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; }

/* ── Page Hero ── */
.page-hero {
  padding: calc(var(--nav-height) + 72px) max(32px, 7vw) 60px;
  background: #000000;
  position: relative;
  text-align: left;
}

@media (min-width: 769px) {
  .page-hero { text-align: center; }
  .page-hero-tag { justify-content: center; }
  .page-hero-tag::before { display: none; }
  .page-hero-title { max-width: 100%; margin-left: auto; margin-right: auto; }
  .page-hero-desc { margin: 0 auto; }
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 2px;
  background: var(--red);
}

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.page-hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.88;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 16ch;
}
.page-hero-desc {
  font-size: 0.93rem; color: var(--warm-gray);
  max-width: 54ch; line-height: 1.8;
}

/* ── Testimonial Stacked Cards ── */
.tc-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 60px;
}

.tc-stack {
  position: relative;
  width: 360px;
  height: 320px;
  cursor: grab;
}

.tc-stack:active { cursor: grabbing; }

.tc-card {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border-light);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  will-change: transform;
  transform-origin: center bottom;
  user-select: none;
}

.tc-arrows {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: var(--muted);
  pointer-events: none;
}

.tc-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--cream);
  flex-shrink: 0;
}

.tc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-top: 2px;
}

.tc-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.tc-desc {
  text-align: center;
  font-size: 0.83rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin: 4px 0 0;
  font-style: italic;
}

.tc-date { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; margin-top: auto; }

.tc-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  align-items: center;
}

.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tc-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue-bright);
}

@media (max-width: 420px) {
  .tc-stack { width: 300px; height: 290px; }
  .tc-card { padding: 28px 20px 20px; }
}

/* ── Testimonial Cards (home — 3-up grid) ── */
.tcard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
}

.tcard {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tcard-top {
  position: relative;
  height: 200px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcard-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to top, var(--card), transparent);
  pointer-events: none;
}

.tcard-initial {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  color: rgba(240,235,225,0.8);
  line-height: 1;
  position: relative; z-index: 1;
}

.tcard-body {
  padding: 12px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tcard-quote {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--cream);
  font-style: italic;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
  flex: 1;
}

.tcard-name {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 4px;
}

.tcard-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(to right, var(--red-light), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Reviews Slider (full slider) ── */
.tslider-wrap {
  display: grid;
  grid-template-columns: 200px 1fr 1.5fr;
  min-height: 540px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
}

.tslider-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
}

.tslider-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tslider-count {
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.tslider-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 16px;
}

.tslider-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tslider-thumb {
  width: 52px; height: 64px;
  border-radius: 10px;
  background: var(--blue);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--cream);
  opacity: 0.55;
  cursor: none;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tslider-thumb:hover {
  opacity: 1;
  border-color: var(--blue-bright);
  transform: scale(1.06);
}

.tslider-center {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  background: var(--surface);
  min-height: 400px;
}

.tslider-big-avatar {
  width: 160px; height: 210px;
  border-radius: 18px;
  background: linear-gradient(135deg, #091830 0%, #1a4fa8 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(240,235,225,0.85);
  letter-spacing: 0.02em;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.tslider-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 44px 40px;
}

.tslider-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.tslider-affil {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 6px;
}

.tslider-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 24px;
}

.tslider-stars { color: #FFD700; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; min-height: 1.2em; }

.tslider-quote {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.tslider-nav {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.tslider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.tslider-btn--prev {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--warm-gray);
}

.tslider-btn--prev:hover { border-color: var(--cream); color: var(--cream); }

.tslider-btn--next {
  background: var(--blue-bright);
  border: 1px solid var(--blue-bright);
  color: #fff;
}

.tslider-btn--next:hover { background: var(--red); border-color: var(--red); }

@keyframes tsSlideInUp   { from { transform: translateY(55px);  opacity: 0; } to { transform: translateY(0);  opacity: 1; } }
@keyframes tsSlideInDown { from { transform: translateY(-55px); opacity: 0; } to { transform: translateY(0);  opacity: 1; } }
@keyframes tsSlideInR    { from { transform: translateX(48px);  opacity: 0; } to { transform: translateX(0);  opacity: 1; } }
@keyframes tsSlideInL    { from { transform: translateX(-48px); opacity: 0; } to { transform: translateX(0);  opacity: 1; } }

.ts-av-up   { animation: tsSlideInUp   0.52s cubic-bezier(0.4,0,0.2,1) forwards; }
.ts-av-down { animation: tsSlideInDown 0.52s cubic-bezier(0.4,0,0.2,1) forwards; }
.ts-tx-r    { animation: tsSlideInR    0.52s cubic-bezier(0.4,0,0.2,1) forwards; }
.ts-tx-l    { animation: tsSlideInL    0.52s cubic-bezier(0.4,0,0.2,1) forwards; }

/* sreel-outer is built by JS — hidden on mobile, flex row on desktop */
.sreel-outer { display: none; }

@media (min-width: 769px) {
  .sreel-outer {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto 80px;
    min-height: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .tc-reviews-outer { display: block !important; padding: 0 !important; }
  .atest-grid { display: none !important; }
}

/* ── Scroll Reel: Reel Section ── */
.sreel-reel {
  position: relative;
  width: 380px;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.sreel-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.sreel-col {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0; will-change: transform;
}
.sreel-cell {
  width: 121px; height: 121px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(to bottom, #141414, var(--bg));
  filter: blur(1px);
  flex-shrink: 0;
}
.sreel-feat {
  width: 121px; height: 121px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.08) inset;
}
.sreel-feat-i {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: rgba(240,235,225,0.88);
  line-height: 1;
}

/* ── Scroll Reel: Content Section ── */
.sreel-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 40px 36px;
  align-self: stretch;
}
.sreel-icon { color: rgba(255,255,255,0.18); margin-bottom: 4px; }
.sreel-stage {
  position: relative; width: 100%; max-width: 390px; overflow: hidden;
}
.sreel-sizer {
  visibility: hidden;
  min-height: 140px;
  display: flex; flex-direction: column; gap: 19px;
}
.sreel-block {
  position: absolute; left: 0; right: 0; top: 0;
  display: flex; flex-direction: column; gap: 19px;
  will-change: transform, opacity;
}
.sreel-block.sreel-exiting {
  animation: sreel-exit 240ms ease forwards;
}
.sreel-q {
  font-size: 1.15rem; font-weight: 500;
  line-height: 1.3; letter-spacing: -0.02em;
  color: var(--cream); margin: 0;
}
.sreel-auth {
  font-size: 0.85rem; font-weight: 500;
  color: var(--warm-gray); margin: 0;
}
.sreel-char {
  display: inline-block;
  opacity: 0; transform: translateY(8px);
  animation: sreel-char-rise 0.32s ease forwards;
}
.sreel-nav { display: flex; align-items: center; gap: 6px; margin-top: 24px; }
.sreel-navbtn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent; color: var(--cream);
  display: grid; place-items: center;
  cursor: none; padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.sreel-navbtn:not(:disabled):hover { transform: scale(1.1); border-color: var(--red); }
.sreel-navbtn:disabled { opacity: 0.35; cursor: default; }
.sreel-navbtn svg { opacity: 0.75; }

@keyframes sreel-char-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sreel-exit {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

/* ── Spotlight Rating Card ── */
.rating-badge {
  position: relative;
}

.rating-glow-inner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  will-change: filter;
  opacity: 0.6;
  filter: blur(8px);
}

[data-glow].rating-badge {
  --x: -9999;
  --y: -9999;
  --xp: 0;
  --yp: 0;
  --hue: calc(30 + (var(--xp) * 60));
  --ssize: 200px;
  --bsize: 1px;
  background-image: radial-gradient(
    var(--ssize) var(--ssize) at calc(var(--x) * 1px) calc(var(--y) * 1px),
    hsl(var(--hue) 80% 65% / 0.12), transparent
  );
  background-color: var(--surface);
  background-attachment: fixed;
  background-size: calc(100% + 2px) calc(100% + 2px);
  background-position: 50% 50%;
  border: 1px solid var(--border);
}

[data-glow].rating-badge::before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  background-attachment: fixed;
  background-image: radial-gradient(
    calc(var(--ssize) * 0.75) calc(var(--ssize) * 0.75) at calc(var(--x) * 1px) calc(var(--y) * 1px),
    hsl(var(--hue) 100% 55% / 1), transparent 100%
  );
  filter: brightness(2);
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  -webkit-mask-clip: padding-box, border-box;
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

[data-glow].rating-badge::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  background-attachment: fixed;
  background-image: radial-gradient(
    calc(var(--ssize) * 0.5) calc(var(--ssize) * 0.5) at calc(var(--x) * 1px) calc(var(--y) * 1px),
    hsl(0 100% 100% / 0.8), transparent 100%
  );
  mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
  mask-clip: padding-box, border-box;
  -webkit-mask-clip: padding-box, border-box;
  mask-composite: intersect;
  -webkit-mask-composite: destination-in;
}

@media (max-width: 768px) {
  [data-glow].rating-badge {
    background-image: none;
    background-color: var(--surface);
    border: 1px solid var(--border);
  }
  [data-glow].rating-badge::before,
  [data-glow].rating-badge::after { display: none; }
  .rating-glow-inner { display: none; }
}

/* ── Footer ── */
.footer { background: #040404; border-top: 1px solid var(--border); padding: 64px 32px 36px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid var(--border); margin-bottom: 32px;
}

.footer-logo { height: 56px; width: auto; margin-bottom: 18px; border-radius: 50%; }
.footer-tagline { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray);
  transition: all 0.25s ease;
}

.footer-social svg { width: 16px; height: 16px; }
.footer-social.fb:hover { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.1); }
.footer-social.ig:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.1); }

.footer-col-title { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 18px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.84rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s ease;
}

.footer-link::before {
  content: '';
  width: 12px; height: 1px; background: var(--border-light);
  transition: width 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.footer-link:hover { color: var(--cream); }
.footer-link:hover::before { width: 18px; background: var(--blue); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { font-size: 0.84rem; color: var(--muted); }
.footer-contact-item a { transition: color 0.25s ease; }
.footer-contact-item a:hover { color: var(--blue-bright); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.68rem; color: var(--muted); }
.footer-built { font-size: 0.62rem; color: var(--muted); opacity: 0.55; letter-spacing: 0.08em; transition: opacity 0.25s ease; display: flex; flex-direction: column; align-items: flex-end; }
.footer-built:hover { opacity: 1; color: var(--warm-gray); }
.footer-built-link { color: var(--blue-bright); text-decoration: none; font-size: 0.6rem; letter-spacing: 0.06em; margin-top: 2px; transition: color 0.2s ease; }
.footer-built-link:hover { color: #4a7fd4; }

/* ── Scroll reveal ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 768px) {
  .section-header.reveal, .section-header.reveal-left, .section-header.reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.sec-cta { text-align: center; margin-top: 48px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.15); border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* On medium screens nav links might crowd — reduce gaps */
  .nav-links { gap: 0; }
  .nav-link { padding: 8px 10px; font-size: 0.68rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 0 32px;
    border-bottom: 1px solid var(--border);
    transform: translateX(0) translateY(-110%);
    opacity: 0; pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    /* Reset absolute centering for mobile */
    left: 0; right: 0;
    /* Override the position:absolute left:50% transform */
    position: fixed;
  }

  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav-link { padding: 14px 28px; font-size: 0.9rem; width: 100%; }
  .nav-link::before { display: none; }
  .nav-link::after { display: none; }

  .nav-link-quote {
    display: block; text-align: center;
    width: calc(100% - 56px); box-sizing: border-box;
    margin: 12px auto 0;
    padding: 12px 20px;
    border: 1px solid var(--blue-dim);
    transform: none !important;
  }

  .hero-content { padding-bottom: 80px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 260px; justify-content: center; }

  .mute-btn { bottom: 14px; right: 14px; padding: 9px 12px; }
  .mute-label { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .projects-preview { grid-template-columns: 1fr; grid-template-rows: auto; }
  .projects-preview .proj-thumb:first-child { grid-row: span 1; height: 280px; }
  .projects-preview .proj-thumb { height: 200px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .about-img-wrap img { height: 300px; }
  .about-img-accent { display: none; }
  .lightbox { padding: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .intro-text { font-size: clamp(1.4rem, 7vw, 2.5rem); }
}

/* ── Micro-interactions & Ambient Motion ── */

/* Cursor glow spotlight */
#cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 700px; height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  background: radial-gradient(circle at center,
    rgba(26,63,138,0.052) 0%,
    rgba(196,30,30,0.016) 38%,
    transparent 68%);
  will-change: transform;
  transform: translate(-350px,-350px);
}

/* Nav logo hover glow + bounce */
.nav-logo-img {
  transition: filter 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(26,63,138,0.65)) brightness(1.14);
  transform: scale(1.1) rotate(-5deg);
}

/* Card tilt — base transitions (JS overrides on move) */
.service-card { will-change: transform; }
.value-card   { will-change: transform; }
.tcard        { will-change: transform; transition: transform 0.45s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.4s ease; }

/* Enhanced card hover glow */
.service-card:hover {
  box-shadow: 0 28px 80px rgba(0,0,0,0.72),
              0 0 0 1px rgba(26,63,138,0.45),
              inset 0 1px 0 rgba(255,255,255,0.05);
}
.value-card:hover {
  box-shadow: 0 22px 64px rgba(0,0,0,0.65),
              inset 0 1px 0 rgba(255,255,255,0.04);
}
.tcard:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,0.72),
              0 0 0 1px rgba(26,63,138,0.3);
}

/* Section tag shimmer */
.section-tag { position: relative; overflow: hidden; }
.section-tag::after {
  content: '';
  position: absolute; top: 0; left: -120%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), transparent);
  pointer-events: none;
}
.section-tag:hover::after { animation: tagShimmer 0.55s ease forwards; }
@keyframes tagShimmer { to { left: 200%; } }

/* Hero title hover letter-spacing on "Marchy's" */
.hero-title-marchys { transition: letter-spacing 0.45s ease; }
.hero-title:hover .hero-title-marchys { letter-spacing: 0.04em; }

/* Footer link slide on hover */
.footer-link { transition: color 0.25s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.footer-link:hover { transform: translateX(6px); color: var(--cream); }

/* Tslider buttons */
.tslider-btn { transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.tslider-btn:hover { transform: scale(1.12); }

/* Review page star rating pulse */
.rating-stars {
  display: flex; justify-content: center; gap: 4px;
  animation: starPulse 3.5s ease-in-out infinite;
}
@keyframes starPulse {
  0%,100% { text-shadow: 0 0 6px rgba(245,158,11,0.2); }
  50%      { text-shadow: 0 0 18px rgba(245,158,11,0.55), 0 0 36px rgba(245,158,11,0.2); }
}
@media (max-width: 600px) {
  .rating-stars { font-size: 36px; gap: 6px; }
  .rating-number { font-size: 4rem; }
}

/* CTA banner ambient floating orbs */
.cta-banner::before {
  content: '';
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,30,0.08) 0%, transparent 65%);
  top: -140px; left: -80px;
  animation: floatOrb 9s ease-in-out infinite;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,63,138,0.065) 0%, transparent 65%);
  bottom: -210px; right: -130px;
  animation: floatOrb 13s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-22px) scale(1.07); }
  66%      { transform: translate(-18px,14px) scale(0.95); }
}

/* Scroll progress bar glow */
#scroll-progress { box-shadow: 0 0 8px rgba(196,30,30,0.5); }

/* Hero scroll line already animates — add red tint */
.hero-scroll-line {
  background: linear-gradient(to bottom, var(--red), transparent);
}

/* Input focus glow on contact form */
.form-input:focus, .form-textarea:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(26,63,138,0.22), 0 0 16px rgba(26,63,138,0.1);
}

/* Service icon ambient rotation on hover */
.service-card:hover .service-icon {
  animation: iconSpin 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes iconSpin {
  0%   { transform: rotate(0deg) scale(1); }
  40%  { transform: rotate(-12deg) scale(1.18); }
  70%  { transform: rotate(5deg) scale(1.12); }
  100% { transform: rotate(-8deg) scale(1.12); color: var(--red); }
}

/* About image accent pulse */
.about-img-accent {
  animation: accentPulse 4s ease-in-out infinite;
}
@keyframes accentPulse {
  0%,100% { opacity: 0.45; transform: translate(12px,12px) scale(1); }
  50%      { opacity: 0.65; transform: translate(14px,14px) scale(1.02); }
}

/* Gallery item caption on hover */
.gallery-item-overlay { background: linear-gradient(to top, rgba(9,23,48,0.78) 0%, rgba(196,30,30,0.1) 60%, transparent 100%); }

/* Tcard top initial float */
.tcard:hover .tcard-initial {
  animation: initialFloat 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes initialFloat {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-6px) scale(1.06); }
  100% { transform: translateY(-4px) scale(1.04); }
}

/* ── Testimonials Columns ── */
.tcols-outer {
  width: 100%;
  max-height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .tcols-outer { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tcols-outer { grid-template-columns: 1fr 1fr 1fr; } }
.tcol-col { overflow: hidden; }
.tcol-track {
  display: flex; flex-direction: column; gap: 16px;
  will-change: transform;
}
.tcol-track.speed-a { animation: tcolScroll 18s linear infinite; }
.tcol-track.speed-b { animation: tcolScroll 23s linear infinite; }
.tcol-track.speed-c { animation: tcolScroll 20s linear infinite; }
@keyframes tcolScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.tcol-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3), inset 1px 1px 1px rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.tcol-text {
  font-size: 0.88rem; color: var(--warm-gray);
  line-height: 1.62; font-style: italic;
}
.tcol-author { display: flex; align-items: center; gap: 12px; }
.tcol-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.tcol-name { font-size: 0.85rem; font-weight: 600; color: var(--cream); line-height: 1.3; }
.tcol-role { font-size: 0.72rem; color: var(--warm-gray); opacity: 0.7; margin-top: 1px; }
.tcol-stars { color: #fff200; font-size: 0.78rem; letter-spacing: 1px; }

/* ── Marquee Testimonials ── */
.marquee-wrap {
  overflow: hidden; width: 100%; padding: 8px 0; margin-top: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: mqScroll 44s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes mqScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-card {
  width: 280px; flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: inset 1px 1px 1px rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.35);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.mq-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-4px); }
.mq-card-header { display: flex; align-items: center; gap: 12px; }
.mq-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  flex-shrink: 0; border: 1px solid var(--border);
}
.mq-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.mq-role { font-size: 0.73rem; color: var(--warm-gray); margin-top: 1px; }
.mq-quote { font-size: 0.84rem; color: var(--warm-gray); line-height: 1.65; font-style: italic; flex: 1; }
.mq-stars { color: #fff200; font-size: 0.88rem; letter-spacing: 2px; }

/* ── Animated Testimonials (Reviews) ── */
.atest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
@media (min-width: 768px) {
  .atest-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 48px 32px 80px; }
}
.atest-stack-wrap { display: flex; justify-content: center; }
.atest-stack { position: relative; width: 260px; height: 300px; }
.atest-img-card {
  position: absolute; inset: 0;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.65);
  transition: transform 0.52s cubic-bezier(0.4,0,0.2,1), opacity 0.52s ease;
  will-change: transform, opacity;
}
.atest-init {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem; line-height: 1;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
  user-select: none;
}
.atest-text-col { display: flex; flex-direction: column; gap: 24px; }
.atest-content { }
.atest-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; color: var(--cream); line-height: 1;
  margin-bottom: 4px;
}
.atest-stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; }
.atest-desig {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #4a7fd4; margin-bottom: 18px;
}
.atest-quote {
  font-size: 0.94rem; color: var(--warm-gray); line-height: 1.8; font-style: italic;
}
.atest-quote::before { content: '\201C'; }
.atest-quote::after  { content: '\201D'; }
.atest-btns { display: flex; gap: 12px; }
.atest-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--cream); font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.atest-btn:hover { background: var(--red); border-color: var(--red); }
.atest-prev:hover { transform: translateX(-2px); }
.atest-next:hover { transform: translateX(2px); }

/* ── Reviews Swipe Carousel (legacy, unused) ── */
.tc-reviews-outer {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 0 72px;
}
.tcar-stage {
  position: relative;
  width: 320px; height: 268px;
  margin: 0 auto;
}
.tcar-card {
  position: absolute; top: 0; left: 0;
  width: 320px; height: 252px;
  border-radius: 20px;
  border: 1px solid rgba(74,127,212,0.35);
  background: var(--surface);
  padding: 20px 24px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), inset 1px 1px 1px rgba(255,255,255,0.05);
  transition: transform 0.38s cubic-bezier(0.34,1.1,0.64,1), opacity 0.38s ease;
  will-change: transform, opacity;
  touch-action: pan-y;
}
.tcar-card[data-pos="current"] { z-index: 3; transform: rotate(0deg) translateY(0) scale(1); opacity: 1; cursor: grab; }
.tcar-card[data-pos="current"]:active { cursor: grabbing; transition: none; }
.tcar-card[data-pos="prev"]    { z-index: 2; transform: rotate(-2deg) translateY(8px) scale(0.95); opacity: 0.55; pointer-events: none; }
.tcar-card[data-pos="next"]    { z-index: 1; transform: rotate(-4deg) translateY(16px) scale(0.90); opacity: 0.28; pointer-events: none; }
.tcar-card[data-pos="hidden"]  { z-index: 0; transform: rotate(-6deg) translateY(24px) scale(0.85); opacity: 0; pointer-events: none; }
.tcar-arrows {
  position: absolute; top: 12px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 14px;
  pointer-events: none;
}
.tcar-arrow {
  font-size: 1.3rem; color: rgba(255,255,255,0.25);
  pointer-events: auto; cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px 8px; user-select: none;
}
.tcar-arrow:hover { color: rgba(255,255,255,0.65); }
.tcar-avatar-lg {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  border: 2px solid rgba(255,255,255,0.14);
}
.tcar-name { font-size: 0.9rem; font-weight: 600; color: var(--red); }
.tcar-stars { font-size: 1rem; color: #FFD700; letter-spacing: 2px; line-height: 1; }
.tcar-desc { font-size: 0.83rem; color: #d8d8e0; text-align: center; line-height: 1.6; font-style: italic; }
.tcar-role { font-size: 0.72rem; color: #4a7fd4; opacity: 0.9; }
.tcar-dots {
  display: flex; gap: 6px; align-items: center;
  margin-top: 20px;
}
.tcar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  cursor: pointer;
}
.tcar-dot.active {
  background: var(--blue-light);
  width: 22px; border-radius: 4px;
}
@media (max-width: 380px) {
  .tcar-stage { width: 290px; }
  .tcar-card  { width: 290px; padding: 18px 18px 14px; }
}

/* ── Contact Action Modal ── */
.caction-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.caction-overlay.is-open { opacity: 1; pointer-events: auto; }
.caction-card {
  background: #111113; border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px 28px;
  width: min(340px, 90vw); text-align: center;
  position: relative;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}
.caction-overlay.is-open .caction-card { transform: translateY(0) scale(1); }
.caction-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: var(--warm-gray);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 2px 6px;
  transition: color 0.2s;
}
.caction-close:hover { color: var(--cream); }
.caction-icon { font-size: 2.2rem; margin-bottom: 10px; }
.caction-label {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.caction-value {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem;
  color: var(--cream); margin-bottom: 24px; letter-spacing: 0.04em;
  word-break: break-all;
}
.caction-primary {
  display: block; width: 100%; padding: 13px;
  border-radius: 10px; background: var(--red); border: none;
  color: #fff; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s ease;
}
.caction-primary:hover { background: #a81818; }
.caction-secondary {
  display: block; width: 100%; padding: 11px; margin-top: 10px;
  background: none; border: 1px solid var(--border);
  border-radius: 10px; color: var(--warm-gray);
  font-size: 0.78rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.caction-secondary:hover { border-color: var(--cream); color: var(--cream); }
.caction-copied {
  font-size: 0.75rem; color: #4ade80; margin-top: 10px;
  opacity: 0; transition: opacity 0.3s ease;
}
.caction-copied.show { opacity: 1; }

/* ── Shuffle Cards ── */
.shuffle-outer {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 0 48px;
}
.shuffle-stage {
  position: relative; width: 340px; height: 460px;
  margin: 0 auto;
}
.scard {
  position: absolute; top: 0; left: 0;
  width: 340px; height: 440px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1), z-index 0s;
  will-change: transform;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 1px 1px 1px rgba(255,255,255,0.07);
}
.scard[data-pos="front"] { z-index: 3; transform: rotate(-6deg) translateX(-10px); cursor: grab; }
.scard[data-pos="front"]:active { cursor: grabbing; }
.scard[data-pos="middle"] { z-index: 2; transform: rotate(0deg) translateX(40px); }
.scard[data-pos="back"]   { z-index: 1; transform: rotate(6deg) translateX(90px); }
.scard-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--blue); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  border: 2px solid rgba(255,255,255,0.14); flex-shrink: 0;
}
.scard-quote {
  font-size: 0.9rem; color: var(--warm-gray);
  text-align: center; font-style: italic; line-height: 1.65;
}
.scard-author { font-size: 0.82rem; font-weight: 600; color: var(--blue-light); }
.scard-stars  { color: #fff200; font-size: 0.9rem; letter-spacing: 2px; }
.shuffle-hint {
  margin-top: 32px; font-size: 0.78rem; color: var(--warm-gray); opacity: 0.65;
}
@media (max-width: 480px) {
  .shuffle-stage { width: 290px; height: 420px; }
  .scard { width: 290px; height: 400px; padding: 28px 20px; }
  .scard[data-pos="middle"] { transform: rotate(0deg) translateX(30px); }
  .scard[data-pos="back"]   { transform: rotate(6deg) translateX(60px); }
}

