/*
 * THE FRIENDLY HANDYMAN.COM
 * Animation system adapted from the Lithic template
 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   TOKENS
============================================================ */
:root {
  --black:    #0F0D0B;
  --dark:     #17140f;
  --dark-2:   #201c16;
  --white:    #ffffff;
  --off:      #f6f1e8;
  --light:    #fbf8f2;
  --g100:     #ece3d3;
  --g300:     #bdb098;
  --g500:     #8c8271;
  --g700:     #47423a;
  --red:      #A9302A;
  --red-2:    #8A2621;
  --tan:      #D9C9A8;
  --tan-2:    #C4B08A;

  --font:         'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --max:       1400px;
  --gutter:    clamp(1.5rem, 5vw, 5rem);

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--off);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

::-webkit-scrollbar { width: 0; }
::selection { background: var(--red); color: var(--white); }

h1, h2, .display-xl, .display-lg, .display-md, .heading,
.hero-title, .vh-title, .ph-title, .feature-title, .c-info-title,
.intro-lith, .intro-ic {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 100;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain — echoes the weathered texture of the logo */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   CURSOR
============================================================ */
.c-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  top: -3px; left: -3px;
  pointer-events: none;
  z-index: 10001;
}

.c-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(169, 48, 42, 0.4);
  border-radius: 50%;
  top: -16px; left: -16px;
  pointer-events: none;
  z-index: 10000;
  transition: width .25s var(--ease-expo), height .25s var(--ease-expo),
              top .25s var(--ease-expo), left .25s var(--ease-expo),
              border-color .2s, opacity .2s;
}

.c-hover .c-ring {
  width: 56px; height: 56px;
  top: -28px; left: -28px;
  border-color: rgba(169,48,42,.6);
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .c-dot, .c-ring { display: none; }
}

/* ============================================================
   SCROLL PROGRESS
============================================================ */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--red);
  z-index: 9000;
  transform-origin: left;
  transform: scaleX(0);
}

/* ============================================================
   HEADER / NAV
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.6rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease-expo), background .4s, backdrop-filter .4s;
}

.header.stuck {
  padding: 1rem var(--gutter);
  background: rgba(15, 13, 11, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--g700);
}

.h-logo {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .3s;
  white-space: nowrap;
}

.h-logo-badge {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.h-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.f-brand-name .h-logo-badge {
  width: 44px;
  height: 44px;
}

.h-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.h-links a {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  position: relative;
  transition: color .2s;
}

.h-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .3s var(--ease-expo);
}

.h-links a:hover, .h-links a.active { color: var(--white); }
.h-links a:hover::after, .h-links a.active::after { width: 100%; }

.h-links a.h-watch {
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.h-links a.h-watch:hover { color: #d24840; }

.h-watch svg { flex-shrink: 0; }

.h-cta {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  padding: .6rem 1.4rem;
  transition: border-color .2s, background .2s, color .2s;
}

.h-cta:hover { border-color: var(--red); background: var(--red); color: var(--white); }

.h-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.h-burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}

.header.open .h-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.header.open .h-burger span:nth-child(2) { opacity: 0; }
.header.open .h-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav li { overflow: hidden; text-align: center; margin-bottom: .5rem; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  transform: translateY(105%);
  transition: transform .55s var(--ease-expo), color .2s;
  line-height: 1.1;
}

.mobile-nav.open li:nth-child(1) a { transform: translateY(0); transition-delay: .05s; }
.mobile-nav.open li:nth-child(2) a { transform: translateY(0); transition-delay: .1s; }
.mobile-nav.open li:nth-child(3) a { transform: translateY(0); transition-delay: .15s; }
.mobile-nav.open li:nth-child(4) a { transform: translateY(0); transition-delay: .2s; }
.mobile-nav.open li:nth-child(5) a { transform: translateY(0); transition-delay: .25s; }
.mobile-nav.open li:nth-child(6) a { transform: translateY(0); transition-delay: .3s; }

.mobile-nav a:hover { color: var(--red); }

/* ============================================================
   HERO (inner-page fallback hero, kept for parity)
============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg { position: absolute; inset: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 150%; object-fit: cover; display: block; will-change: transform; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,11,.75) 0%, rgba(15,13,11,.1) 50%, rgba(15,13,11,.3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) clamp(4rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
}

.hero-title {
  font-size: clamp(4.5rem, 10vw, 11rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--white);
  overflow: hidden;
}

.hero-title-line { overflow: hidden; display: block; }

/* ============================================================
   VIDEO HERO — the site's main attraction
============================================================ */
.video-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(7rem, 14vh, 9rem) var(--gutter) clamp(3rem, 6vh, 4.5rem);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.vh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.vh-bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.vh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 8%, rgba(169,48,42,.28) 0%, transparent 65%),
    linear-gradient(180deg, rgba(15,13,11,.55) 0%, rgba(15,13,11,.8) 45%, rgba(15,13,11,.95) 100%);
}

.vh-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.vh-eyebrow {
  position: relative;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.vh-title {
  position: relative;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
  max-width: 900px;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
  margin-bottom: clamp(2rem, 4vh, 3rem);
}

.vh-title span { display: block; }
.vh-title span:last-child { color: var(--tan); }

.vh-frame {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.2);
  background: var(--dark);
  cursor: pointer;
}

.vh-poster,
.vh-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.vh-poster { transition: transform 1.2s var(--ease-expo), filter .4s; }
.vh-frame:hover .vh-poster { transform: scale(1.03); }

.vh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 40%, rgba(0,0,0,.35) 100%);
  transition: opacity .4s;
}

.vh-iframe {
  opacity: 0;
  transition: opacity .35s;
  z-index: 2;
}

.vh-frame.loaded .vh-iframe { opacity: 1; }
.vh-frame.playing .vh-poster,
.vh-frame.playing .vh-overlay,
.vh-frame.playing .vh-play,
.vh-frame.playing .vh-caption { opacity: 0; pointer-events: none; }

.vh-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(72px, 9vw, 100px);
  height: clamp(72px, 9vw, 100px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity .3s, transform .3s var(--ease-expo);
}

.vh-play:hover { transform: translate(-50%, -50%) scale(1.08); }

.vh-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}

.vh-play-icon {
  position: relative;
  color: var(--white);
  margin-left: 5px;
}

.vh-caption {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: opacity .3s;
}

.vh-caption-label {
  font-size: .52rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .3rem;
}

.vh-caption-title {
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
}

.vh-scroll-cue {
  position: relative;
  margin-top: clamp(1.5rem, 3.5vh, 2.5rem);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--g300);
  transition: color .2s;
}

.vh-scroll-cue:hover { color: var(--white); }
.vh-scroll-cue svg { animation: vhBounce 1.6s ease-in-out infinite; }

@keyframes vhBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Video recall module (secondary CTA further down the homepage) */
.video-recall {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem clamp(2rem, 5vw, 3.5rem);
  background: var(--dark-2);
  border-radius: 10px;
}

.vr-frame {
  position: relative;
  width: clamp(140px, 20vw, 220px);
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.vr-frame .vh-play {
  width: 44px; height: 44px;
}

.vr-frame .vh-play-icon { width: 14px; height: 14px; margin-left: 2px; }

.vr-text-title {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: .4rem;
}

.vr-text-desc { font-size: .85rem; font-weight: 300; color: var(--g300); }

/* ============================================================
   CONTAINER / SECTION
============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 9vh, 7.5rem) 0; }
.section-sm { padding: clamp(2.5rem, 5.5vh, 4.5rem) 0; }

.divider { width: 100%; height: 1px; background: var(--border-color, var(--g100)); }
.bg-dark .divider, .bg-black .divider { --border-color: var(--g700); }

.bg-light  { background: var(--light); color: var(--black); }
.bg-white  { background: var(--white); color: var(--black); }
.bg-off    { background: var(--off); color: var(--black); }
.bg-dark   { background: var(--dark); color: var(--off); }
.bg-black  { background: var(--black); color: var(--off); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
}

.display-xl { font-size: clamp(3rem, 7vw, 8rem); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
.display-lg { font-size: clamp(2.5rem, 5.5vw, 6.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
.display-md { font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.heading { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }

.body-lg { font-size: 1.05rem; font-weight: 300; line-height: 1.75; }
.body-md { font-size: .9rem; font-weight: 300; line-height: 1.75; }
.body-sm { font-size: .78rem; font-weight: 300; line-height: 1.7; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border: 1px solid currentColor;
  transition: background .2s, color .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}

.btn-dark { color: var(--black); border-color: var(--black); }
.btn-dark:hover { background: var(--black); color: var(--white); }

.btn-white { color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-white:hover { border-color: var(--white); background: var(--white); color: var(--black); }

.btn-red { color: var(--white); background: var(--red); border-color: var(--red); }
.btn-red:hover { background: var(--red-2); border-color: var(--red-2); }

.btn svg { flex-shrink: 0; }

.arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: inherit;
  opacity: .6;
  transition: opacity .2s, gap .3s var(--ease-expo);
}

.arrow-btn:hover { opacity: 1; gap: .9rem; }

/* ============================================================
   INTRO SECTION (2-col text)
============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--g100);
}

.intro-grid + .intro-stats { padding-top: 4rem; }

.intro-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.intro-stat { padding: 2rem; border-right: 1px solid var(--g100); }
.intro-stat:first-child { padding-left: 0; }
.intro-stat:last-child { border-right: none; }

.intro-stat .num { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 700; letter-spacing: -.01em; color: var(--black); line-height: 1; font-family: var(--font-display); }
.intro-stat .lbl { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--g500); margin-top: .4rem; }

/* ============================================================
   SERVICES CARDS
============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--g100); }

.svc-card { background: var(--white); display: flex; flex-direction: column; overflow: hidden; }
.svc-card-img { overflow: hidden; aspect-ratio: 4/3; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-expo); }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }

.svc-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-num { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.svc-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; color: var(--black); line-height: 1.2; margin-bottom: .75rem; }
.svc-card-desc { font-size: .8rem; font-weight: 300; line-height: 1.7; color: var(--g500); flex: 1; margin-bottom: 1.5rem; }

.svc-card-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--black); opacity: .5; transition: opacity .2s, gap .3s var(--ease-expo); }
.svc-card:hover .svc-card-link { opacity: 1; gap: .8rem; }

/* ============================================================
   NUMBERED ITEMS
============================================================ */
.num-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.num-item { padding: 3rem 2.5rem; border-right: 1px solid var(--g100); position: relative; }
.num-item:first-child { padding-left: 0; }
.num-item:last-child { border-right: none; }

.ni-big { font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7rem); font-weight: 700; color: var(--g100); line-height: 1; letter-spacing: -.01em; margin-bottom: 1.5rem; transition: color .4s; }
.num-item:hover .ni-big { color: var(--red); }
.ni-title { font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: .75rem; letter-spacing: -.01em; }
.ni-desc { font-size: .8rem; font-weight: 300; line-height: 1.7; color: var(--g500); }

/* ============================================================
   FULL-BLEED FEATURE
============================================================ */
.feature-full { position: relative; height: clamp(480px, 65vh, 820px); overflow: hidden; }
.feature-full-img { position: absolute; inset: 0; will-change: transform; }
.feature-full-img img { width: 100%; height: 150%; object-fit: cover; will-change: transform; }
.feature-full-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,13,11,.85) 0%, rgba(15,13,11,.3) 60%, transparent 100%); }

.feature-full-content { position: absolute; bottom: clamp(3rem,7vh,6rem); left: var(--gutter); max-width: 600px; z-index: 1; }
.feature-tag { font-size: .55rem; letter-spacing: .35em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.feature-title { font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.feature-meta { display: flex; gap: 2rem; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2rem; }

/* ============================================================
   STATS ROW (dark bg)
============================================================ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-col { padding: 3rem 2rem; border-right: 1px solid var(--g700); text-align: center; }
.stat-col:last-child { border-right: none; }
.stat-big { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 700; letter-spacing: -.01em; color: var(--white); line-height: 1; }
.stat-big em { color: var(--red); font-style: normal; }
.stat-desc { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--g500); margin-top: .5rem; }

/* ============================================================
   TEAM GRID
============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--g100); }
.team-card { background: var(--white); overflow: hidden; }
.team-card-img { aspect-ratio: 3/4; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform .8s var(--ease-expo), filter .5s; }
.team-card:hover .team-card-img img { transform: scale(1.05); filter: grayscale(0%); }
.team-card-info { padding: 1.2rem 1.5rem; border-top: 1px solid var(--g100); }
.team-name { font-size: .9rem; font-weight: 600; color: var(--black); margin-bottom: .2rem; }
.team-role { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--g500); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section { display: grid; grid-template-columns: 1fr 1fr; }
.cta-img-side { position: relative; min-height: 500px; overflow: hidden; }
.cta-img-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-expo); }
.cta-section:hover .cta-img-side img { transform: scale(1.04); }

.cta-text-side { padding: clamp(4rem, 10vh, 8rem) clamp(3rem, 5vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
.cta-text-side.light { background: var(--light); color: var(--black); }
.cta-text-side.dark { background: var(--dark-2); color: var(--off); }
.cta-text-side.red { background: var(--red); color: var(--white); }
.cta-text-side.red .label { color: rgba(255,255,255,.7); }

/* ============================================================
   MARQUEE
============================================================ */
.marquee { overflow: hidden; padding: 1rem 0; border-top: 1px solid var(--g100); border-bottom: 1px solid var(--g100); }
.marquee-inner { display: flex; white-space: nowrap; animation: marq 20s linear infinite; }
.marquee.reverse .marquee-inner { animation-direction: reverse; }
.marquee-item { display: inline-flex; align-items: center; gap: 2rem; padding: 0 2rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--g500); font-weight: 300; }
.mi-dot { width: 4px; height: 4px; background: var(--red); transform: rotate(45deg); flex-shrink: 0; opacity: .5; }
.bg-black .marquee, .bg-dark .marquee { border-color: var(--g700); }
.bg-black .marquee-item, .bg-dark .marquee-item { color: var(--g700); }

@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero { position: relative; height: 60svh; min-height: 380px; overflow: hidden; display: flex; align-items: flex-end; }
.ph-img { position: absolute; inset: 0; }
.ph-img img { width: 100%; height: 150%; object-fit: cover; will-change: transform; }
.ph-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,13,11,.9) 0%, rgba(15,13,11,.3) 100%); }

.ph-content { position: relative; z-index: 1; padding: 0 var(--gutter) clamp(3rem, 7vh, 6rem); }
.ph-label { font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.ph-title { font-size: clamp(3.5rem, 9vw, 9rem); font-weight: 700; letter-spacing: -.015em; line-height: .95; color: var(--white); }
.ph-title em { font-style: italic; color: rgba(255,255,255,.4); font-weight: 400; }

/* ============================================================
   GALLERY
============================================================ */
.gallery-filters { display: flex; gap: 0; border-bottom: 1px solid var(--g100); margin-bottom: 3rem; overflow-x: auto; }
.gf { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--g500); padding: 1rem 1.5rem; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap; }
.gf:hover, .gf.on { color: var(--black); border-bottom-color: var(--black); }

.gallery-mosaic { columns: 3; column-gap: 1px; }
.gm-item { break-inside: avoid; margin-bottom: 1px; overflow: hidden; position: relative; }
.gm-item img { width: 100%; display: block; transition: transform .9s var(--ease-expo); }
.gm-item:hover img { transform: scale(1.06); }
.gm-overlay { position: absolute; inset: 0; background: rgba(15,13,11,.6); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.gm-item:hover .gm-overlay { opacity: 1; }
.gm-title { font-size: 1.1rem; font-weight: 600; color: var(--white); letter-spacing: -.01em; margin-bottom: .25rem; text-align: center; padding: 0 1rem; }
.gm-type { font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: var(--red); }

/* ============================================================
   BEFORE / AFTER
============================================================ */
.ba-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: ew-resize; user-select: none; }
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--red); z-index: 10; transform: translateX(-50%); }
.ba-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .65rem; letter-spacing: -.1em; box-shadow: 0 0 0 4px rgba(169,48,42,.25); }
.ba-lbl { position: absolute; top: 1rem; font-size: .52rem; letter-spacing: .28em; text-transform: uppercase; background: rgba(15,13,11,.7); padding: .3rem .65rem; color: var(--off); backdrop-filter: blur(6px); }
.ba-lbl.l { left: 1rem; }
.ba-lbl.r { right: 1rem; }

/* ============================================================
   SERVICE DETAIL ROWS
============================================================ */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.svc-row-img { overflow: hidden; }
.svc-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-expo); }
.svc-row:hover .svc-row-img img { transform: scale(1.04); }
.svc-row-text { padding: clamp(3rem, 7vh, 6rem) clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }

/* ============================================================
   REVIEWS GRID
============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--g100); }
.review-card { background: var(--white); padding: 2.5rem; display: flex; flex-direction: column; }
.review-card.alt { background: var(--off); }

/* ============================================================
   ABOUT
============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.about-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-expo); }
.about-img:hover img { transform: scale(1.04); }
.about-accent { position: absolute; width: 55%; aspect-ratio: 1; bottom: -1.5rem; left: -1.5rem; border: 1.5px solid rgba(169,48,42,.35); z-index: -1; }

.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--g100); }
.value-block { background: var(--white); padding: 2.5rem; transition: background .3s; }
.value-block:hover { background: var(--off); }
.v-icon { width: 36px; height: 36px; border: 1px solid var(--g100); display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 1.2rem; transition: border-color .3s; }
.value-block:hover .v-icon { border-color: var(--red); }
.v-icon svg { width: 18px; height: 18px; }
.v-title { font-size: 1.2rem; font-weight: 600; color: var(--black); letter-spacing: -.01em; margin-bottom: .5rem; }
.v-desc { font-size: .8rem; font-weight: 300; line-height: 1.75; color: var(--g500); }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 6vw, 8rem); }
.c-info-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -.01em; color: var(--black); margin-bottom: 2rem; }
.c-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid var(--g100); }
.c-icon { width: 32px; height: 32px; border: 1px solid var(--g100); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; transition: border-color .2s; }
.c-detail:hover .c-icon { border-color: var(--red); }
.c-lbl { font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: var(--g500); margin-bottom: .2rem; }
.c-val { font-size: .88rem; font-weight: 300; color: var(--black); }

.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.form-field label { font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: var(--g500); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--off);
  border: 1px solid var(--g100);
  color: var(--black);
  padding: .9rem 1rem;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select option { background: var(--off); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FAQ */
.faq { border-top: 1px solid var(--g100); }
.faq-row { border-bottom: 1px solid var(--g100); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; font-size: .85rem; font-weight: 400; color: var(--black); transition: color .2s; cursor: pointer; }
.faq-q:hover { color: var(--red); }
.faq-plus { width: 20px; height: 20px; border: 1px solid var(--g100); display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .8rem; flex-shrink: 0; transition: transform .3s, background .2s, border-color .2s; }
.faq-row.open .faq-plus { transform: rotate(45deg); background: var(--red); color: var(--white); border-color: var(--red); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-expo); }
.faq-row.open .faq-body { max-height: 260px; }
.faq-inner { padding-bottom: 1.4rem; font-size: .82rem; font-weight: 300; line-height: 1.8; color: var(--g500); }

/* Area grid */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--g100); }
.area-cell { background: var(--white); padding: 1.8rem; transition: background .2s; }
.area-cell:hover { background: var(--off); }
.area-name { font-size: 1.1rem; font-weight: 600; letter-spacing: -.01em; color: var(--black); margin-bottom: .2rem; }
.area-sub { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--g500); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--black); padding: clamp(4rem, 9vh, 7rem) var(--gutter) 0; border-top: 1px solid var(--g700); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: clamp(3rem,7vh,5rem); border-bottom: 1px solid var(--g700); }
.f-brand-name { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.f-diamond { width: 8px; height: 8px; background: var(--red); transform: rotate(45deg); flex-shrink: 0; }
.f-brand p { font-size: .78rem; font-weight: 300; line-height: 1.8; color: var(--g500); max-width: 240px; margin-bottom: 1.5rem; }
.f-social { display: flex; gap: .8rem; }
.f-social a { width: 28px; height: 28px; border: 1px solid var(--g700); display: flex; align-items: center; justify-content: center; color: var(--g500); font-size: .55rem; letter-spacing: .1em; transition: border-color .2s, color .2s; }
.f-social a:hover { border-color: var(--red); color: var(--red); }
.f-col h4 { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; color: var(--g700); margin-bottom: 1.2rem; font-weight: 500; }
.f-col li { margin-bottom: .6rem; }
.f-col a { font-size: .78rem; font-weight: 300; color: var(--g500); transition: color .2s; }
.f-col a:hover { color: var(--red); }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .62rem; color: var(--g700); max-width: var(--max); margin: 0 auto; }
.footer-bottom a { color: var(--red); transition: opacity .2s; }
.footer-bottom a:hover { opacity: .7; }

/* ============================================================
   HORIZONTAL SCROLL (mobile carousels)
============================================================ */
.hs-clip { overflow: hidden; position: relative; width: 100%; touch-action: pan-y; }
.hs-dots { display: flex; justify-content: center; gap: 6px; padding: 1.2rem 0 .25rem; }
.hs-dot { width: 20px; height: 2px; background: var(--g100); transition: background .25s, width .3s var(--ease-expo); flex-shrink: 0; }
.hs-dot.on { background: var(--red); width: 32px; }

[data-anim] { will-change: transform, opacity; }

/* ============================================================
   POLISH PASS — typography, depth, motion
============================================================ */

/* Brand red is too dark to read on black — lighter variant for
   any red text sitting on a dark surface. */
:root { --red-lt: #E2705E; }

.vh-eyebrow,
.h-links a.h-watch,
.ph-label,
.feature-tag,
.vh-caption-label,
.bg-black .label,
.bg-dark .label,
.cta-text-side.dark .label { color: var(--red-lt); }

.h-links a.h-watch:hover { color: #f08a79; }
.h-links a.h-watch::after { background: var(--red-lt); }

/* Dark, desaturated surround so the video frame is the clear focal point */
.vh-bg img { filter: saturate(.55) contrast(1.05); }
.vh-bg::after {
  background:
    radial-gradient(ellipse 70% 60% at 50% 4%, rgba(169,48,42,.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,9,8,.82) 0%, rgba(10,9,8,.88) 45%, rgba(10,9,8,.97) 100%);
}

/* Poster stays legible — scrim only at the bottom for the caption */
.vh-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 32%, transparent 60%);
}

/* Play button: brighter, with a soft halo */
.vh-play-ring {
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(255,255,255,.28), 0 0 40px rgba(169,48,42,.75), 0 10px 30px rgba(0,0,0,.45);
}
.vh-play-icon { color: #fff; }
.vh-caption-label { color: #fff; opacity: .75; }
.vh-caption-title { text-shadow: 0 2px 12px rgba(0,0,0,.7); }

/* ── Header: slimmer, tighter ─────────────────────────────── */
.header { padding: 1rem var(--gutter); }
.header.stuck {
  padding: .65rem var(--gutter);
  background: rgba(15,13,11,.86);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.h-logo-badge { width: 38px; height: 38px; }
.f-brand-name .h-logo-badge { width: 32px; height: 32px; }
.h-logo { font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.h-links { gap: 1.6rem; }
.h-links a { font-size: .61rem; font-weight: 600; letter-spacing: .13em; }
.h-cta {
  font-size: .58rem; font-weight: 800; letter-spacing: .15em;
  padding: .68rem 1.45rem;
}

/* ── Display type: Fraunces wants tighter tracking ────────── */
.display-xl, .display-lg, .display-md,
.feature-title, .c-info-title {
  font-weight: 600;
  letter-spacing: -.028em;
}
.heading { font-weight: 600; letter-spacing: -.02em; }
.ph-title { font-weight: 600; letter-spacing: -.035em; }
.ph-title em { color: var(--tan); opacity: .9; font-weight: 400; }

/* ── Micro-label with leading rule ────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .3em;
}
.label::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
  opacity: .55;
  flex-shrink: 0;
}

/* ── Buttons: sweep fill ──────────────────────────────────── */
.btn {
  position: relative;
  isolation: isolate;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: .17em;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s var(--ease-expo);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-dark::before  { background: var(--black); }
.btn-dark:hover    { background: transparent; color: var(--white); }
.btn-white::before { background: var(--white); }
.btn-white:hover   { background: transparent; color: var(--black); border-color: var(--white); }
.btn-red::before   { background: var(--red-2); }
.btn-red:hover     { background: var(--red); }

.arrow-btn { font-weight: 700; letter-spacing: .18em; }

/* ── Video hero: shorter, richer ──────────────────────────── */
.video-hero {
  min-height: 84svh;
  padding: clamp(6.5rem, 12vh, 8rem) var(--gutter) clamp(2.5rem, 5vh, 3.5rem);
}

.vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .36em;
  margin-bottom: 1.3rem;
}
.vh-eyebrow::before, .vh-eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .5;
}

.vh-title {
  font-size: clamp(2.5rem, 5.6vw, 4.9rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin-bottom: clamp(1.8rem, 3.5vh, 2.6rem);
}
.vh-title span:last-child {
  color: var(--tan);
  font-style: italic;
  font-weight: 400;
}

.vh-frame {
  max-width: 880px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 100px -35px rgba(169,48,42,.75);
}

/* trust strip under the video */
.vh-trust {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem 2.2rem;
  margin-top: clamp(1.5rem, 3vh, 2.1rem);
}
.vh-trust span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.vh-trust svg { color: var(--red); flex-shrink: 0; }

.vh-caption-title { font-family: var(--font-display); font-weight: 600; }

/* ── Intro media — fills the space beside the big statement ─ */
.intro-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 2.2rem;
  background: var(--g100);
}
.intro-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-expo);
}
.intro-media:hover img { transform: scale(1.04); }
.intro-media::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 4px;
  background: var(--red);
}

/* ── Service cards: lift + accent ─────────────────────────── */
.svc-card {
  border: 1px solid transparent;
  transition: transform .55s var(--ease-expo), box-shadow .55s var(--ease-expo), border-color .3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -22px rgba(15,13,11,.4);
  border-color: rgba(169,48,42,.35);
}
.svc-card-num {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.svc-card-title { font-weight: 600; letter-spacing: -.022em; }
.svc-card-link { font-weight: 700; letter-spacing: .18em; }

/* ── Numbered process items ───────────────────────────────── */
.ni-big {
  font-weight: 600;
  letter-spacing: -.04em;
  -webkit-text-stroke: 0;
}
.ni-title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: -.02em; }

/* ── Stats ────────────────────────────────────────────────── */
.stat-big, .intro-stat .num {
  font-weight: 600;
  letter-spacing: -.045em;
}
.stat-desc, .intro-stat .lbl { font-weight: 700; letter-spacing: .2em; }

/* ── Marquee: editorial, not a tag strip ──────────────────── */
.marquee { padding: 1.35rem 0; }
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--g300);
  gap: 2.2rem;
}
.mi-dot { width: 6px; height: 6px; background: var(--red); opacity: 1; }

/* ── Gallery tiles ────────────────────────────────────────── */
.gm-overlay { background: linear-gradient(to top, rgba(15,13,11,.85) 0%, rgba(15,13,11,.25) 100%); }
.gm-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }
.gm-type { font-weight: 700; }
.gf { font-weight: 700; letter-spacing: .17em; }
.gf:hover, .gf.on { border-bottom-color: var(--red); color: var(--red); }

/* ── Value / trust blocks ─────────────────────────────────── */
.value-block { transition: background .35s, transform .45s var(--ease-expo); }
.value-block:hover { transform: translateY(-4px); }
.v-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }
.v-icon { border-radius: 2px; }

/* ── Reviews ──────────────────────────────────────────────────
   The old 1px-gap-over-a-tinted-parent trick leaked a beige band
   whenever GSAP translated the cards. Real gaps + real borders. */
.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  background: transparent;
}
.review-card,
.review-card.alt {
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: 3px;
  padding: 2.3rem 2.1rem;
  transition: transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo), border-color .3s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px -22px rgba(15,13,11,.32);
  border-color: rgba(169,48,42,.3);
}
.rc-stars {
  color: var(--red);
  font-size: .82rem;
  letter-spacing: .16em;
  margin-bottom: 1.15rem;
}
.rc-quote {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -.012em;
  color: var(--black);
  flex: 1;
  margin-bottom: 1.7rem;
}
.rc-by { border-top: 1px solid var(--g100); padding-top: 1.05rem; }
.rc-name { font-size: .85rem; font-weight: 700; color: var(--black); margin-bottom: .22rem; }
.rc-meta {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g500);
}

/* ── Trust / values blocks: tighter, no dead space ─────────── */
.values-list {
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 1.25rem;
  background: transparent;
}
.value-block {
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: 3px;
  padding: 2rem 1.7rem;
  transition: transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo), border-color .3s;
}
.value-block:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 22px 45px -22px rgba(15,13,11,.32);
  border-color: rgba(169,48,42,.3);
}
.v-icon { width: 34px; height: 34px; margin-bottom: 1rem; }
.v-title { font-size: 1.08rem; margin-bottom: .45rem; }
.v-desc { font-size: .8rem; line-height: 1.7; }

/* ── Video recall module ──────────────────────────────────── */
.video-recall {
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color .35s;
}
.video-recall:hover { border-color: rgba(169,48,42,.45); }

/* ── Forms ────────────────────────────────────────────────── */
.form-field input, .form-field select, .form-field textarea { border-radius: 2px; }
.form-field label { font-weight: 700; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-q { font-family: var(--font-display); font-weight: 500; font-size: .95rem; letter-spacing: -.01em; }

/* ── Footer ───────────────────────────────────────────────── */
.f-brand-name { font-size: .74rem; font-weight: 800; letter-spacing: .13em; }
.f-col h4 { font-weight: 800; color: var(--g500); }
.f-col a { font-weight: 500; }

/* --g700 on near-black was close to unreadable — lift it */
.footer-bottom {
  font-weight: 500;
  color: var(--g500);
  gap: 1.25rem;
  flex-wrap: wrap;
}
.f-credit { letter-spacing: .01em; }
.f-credit a {
  color: var(--g300);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.f-credit a:hover { color: var(--off); border-bottom-color: var(--g500); }

/* keep the footer links clear of the floating chat button */
@media (min-width: 769px) {
  .footer-bottom { padding-right: 5.5rem; padding-bottom: 1.9rem; }
}

/* ── Area cells ───────────────────────────────────────────── */
.area-name { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }

/* ── Section head utility ─────────────────────────────────── */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--g100);
}
.bg-black .sec-head, .bg-dark .sec-head { border-bottom-color: var(--g700); }

/* ============================================================
   FAQ CHATBOT
============================================================ */
.cb-wrap {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
/* the site hides the native cursor — restore it inside the widget */
.cb-wrap, .cb-wrap * { cursor: auto; }
.cb-wrap button { cursor: pointer; }
.cb-wrap input { cursor: text; }

.cb-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 22px rgba(169,48,42,.42);
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
}
.cb-toggle:hover { transform: scale(1.07); background: var(--red-2); box-shadow: 0 8px 30px rgba(169,48,42,.55); }
.cb-icon-chat  { color: #fff; display: block; }
.cb-icon-close { color: #fff; display: none; }
.cb-toggle.cb-active .cb-icon-chat  { display: none; }
.cb-toggle.cb-active .cb-icon-close { display: block; }

.cb-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--off);
}

.cb-window {
  width: min(370px, calc(100vw - 2rem));
  max-height: min(520px, calc(100vh - 7rem));
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(15,13,11,.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s var(--ease-expo);
}
.cb-window.cb-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

.cb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.1rem;
  background: var(--black);
  flex-shrink: 0;
}
.cb-header-left { display: flex; align-items: center; gap: .6rem; }
.cb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ac26b; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,194,107,.2);
}
.cb-name {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: #fff;
}
.cb-close {
  background: transparent; border: none;
  color: rgba(255,255,255,.5);
  padding: .2rem; display: flex; align-items: center;
  transition: color .15s;
}
.cb-close:hover { color: #fff; }

.cb-msgs {
  flex: 1; overflow-y: auto;
  padding: 1rem;
  display: flex; flex-direction: column; gap: .55rem;
  scroll-behavior: smooth;
  background: var(--light);
}
.cb-msgs::-webkit-scrollbar { width: 4px; }
.cb-msgs::-webkit-scrollbar-thumb { background: var(--g300); border-radius: 2px; }

.cb-msg { display: flex; max-width: 88%; }
.cb-bot  { align-self: flex-start; }
.cb-user { align-self: flex-end; }
.cb-bubble {
  padding: .7rem .9rem;
  border-radius: 10px;
  font-size: .82rem; font-weight: 400; line-height: 1.65;
  color: var(--black); background: var(--white);
  border: 1px solid var(--g100);
}
.cb-user .cb-bubble { background: var(--red); color: #fff; border-color: var(--red); }
.cb-bubble a { color: var(--red); text-decoration: underline; font-weight: 700; }
.cb-user .cb-bubble a { color: #fff; }
.cb-bubble strong { font-weight: 700; }

.cb-typing { display: flex; align-items: center; padding: .8rem .9rem !important; }
.cb-typing span {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--g300); margin: 0 2px;
  animation: cb-bounce .8s infinite alternate;
}
.cb-typing span:nth-child(2) { animation-delay: .2s; }
.cb-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cb-bounce {
  from { opacity: .3; transform: translateY(0); }
  to   { opacity: 1;  transform: translateY(-3px); }
}

.cb-chips {
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: .75rem 1rem 0;
  background: var(--light);
  flex-shrink: 0;
}
.cb-chips.cb-chips-hidden { display: none; }
.cb-chips button {
  font-family: var(--font);
  font-size: .68rem; font-weight: 600;
  color: var(--g700);
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: 20px;
  padding: .38rem .75rem;
  transition: border-color .2s, color .2s;
}
.cb-chips button:hover { border-color: var(--red); color: var(--red); }

.cb-input-row {
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1rem;
  border-top: 1px solid var(--g100);
  background: var(--white);
  flex-shrink: 0;
}
.cb-input {
  flex: 1;
  border: 1px solid var(--g100);
  border-radius: 6px;
  padding: .55rem .75rem;
  font-family: var(--font);
  font-size: .82rem; font-weight: 400;
  color: var(--black);
  background: var(--light);
  outline: none;
  transition: border-color .15s;
}
.cb-input:focus { border-color: var(--red); }
.cb-input::placeholder { color: var(--g300); }
.cb-send {
  width: 33px; height: 33px; border-radius: 50%;
  background: var(--red); border: none;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
  transition: transform .15s, background .2s;
}
.cb-send:hover { transform: scale(1.1); background: var(--red-2); }

@media (max-width: 480px) {
  .cb-wrap { bottom: 1rem; right: 1rem; }
  .cb-toggle { width: 50px; height: 50px; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .num-items  { grid-template-columns: 1fr 1fr; }
  .num-item:nth-child(2) { border-right: none; }
  .gallery-mosaic { columns: 2; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .video-recall { grid-template-columns: 1fr; text-align: center; }
  .vr-frame { margin: 0 auto; }
}

@media (max-width: 900px) {
  .intro-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .cta-section  { grid-template-columns: 1fr; }
  .cta-img-side { min-height: 300px; }
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-inner   { grid-template-columns: 1fr; }
  .intro-stats  { grid-template-columns: repeat(2, 1fr); }
  .intro-stat:nth-child(2) { border-right: none; }
  .intro-stat:nth-child(4) { border-right: none; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .stat-col:nth-child(2) { border-right: none; }
  .stat-col:nth-child(4) { border-right: none; }
  .svc-row      { grid-template-columns: 1fr; min-height: auto; }
  .svc-row-img  { order: -1; min-height: 280px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .h-links, .h-cta { display: none; }
  .h-burger { display: flex; }
  body { cursor: auto; }
  .c-dot, .c-ring { display: none; }

  .hero-title { font-size: clamp(3.2rem, 13vw, 8rem); }
  .page-hero { height: 52svh; min-height: 320px; }

  .video-hero { padding: clamp(7rem, 16vh, 9rem) var(--gutter) clamp(3rem, 6vh, 4rem); }
  .vh-play { width: 64px; height: 64px; }

  .section     { padding: clamp(3rem, 8vh, 6rem) 0; }
  .section-sm  { padding: clamp(2rem, 5vh, 4rem) 0; }

  .num-items { grid-template-columns: 1fr; }
  .num-item  { border-right: none; border-bottom: 1px solid var(--g100); padding: 2rem 0; }

  .cards-grid,
  .team-grid,
  .reviews-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    background: transparent !important;
    width: max-content;
    padding: 0 var(--gutter) 0.5rem;
    align-items: stretch;
  }

  .svc-card { flex: 0 0 80vw; width: 80vw; border: 1px solid var(--g100); }
  .team-card { flex: 0 0 72vw; width: 72vw; border: 1px solid var(--g100); }
  .review-card, .review-card.alt { flex: 0 0 84vw; width: 84vw; background: var(--white) !important; border: 1px solid var(--g100); }

  .intro-stats { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 0; padding: 2rem 0 1.5rem; border-bottom: none; }
  .intro-stat { padding: 1.5rem !important; border-right: 1px solid var(--g100); border-bottom: 1px solid var(--g100); }
  .intro-stat:nth-child(2) { border-right: none; }
  .intro-stat:nth-child(3), .intro-stat:nth-child(4) { border-bottom: none; }
  .intro-stat:nth-child(4) { border-right: none; }

  .stats-row { display: grid !important; grid-template-columns: 1fr 1fr !important; width: 100% !important; }
  .stat-col { border-right: 1px solid var(--g700) !important; border-bottom: 1px solid var(--g700); }
  .stat-col:nth-child(2) { border-right: none !important; }
  .stat-col:nth-child(3), .stat-col:nth-child(4) { border-bottom: none; }
  .stat-col:nth-child(4) { border-right: none !important; }

  .gallery-mosaic { columns: 1; }
  .gallery-filters { flex-wrap: nowrap; padding-bottom: .25rem; -webkit-overflow-scrolling: touch; }

  .values-list { grid-template-columns: 1fr; }
  .form-row-2  { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .svc-row-text { padding: 2.5rem var(--gutter); }
  .ba-wrap { aspect-ratio: 4/3; }
  .btn { min-height: 48px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .team-card   { flex: 0 0 80vw; width: 80vw; }
  .intro-stat  { flex: 0 0 70vw; }
  .stat-col    { flex: 0 0 82vw; }
}
