/* ==== Oint Towing Inc. — global stylesheet ====
   Component styles only. Brand tokens live in client-config.css. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-light);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0 0 .5em; line-height: 1.15; }
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }
p { margin: 0 0 1em; line-height: 1.7; text-align: justify; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--dark { background: var(--c-dark); color: var(--text-on-dark); }
.section--dark p { color: var(--text-muted-on-dark); }
.section--yellow { background: var(--c-yellow); color: var(--text-on-light); }
.section--gray { background: var(--c-gray-light); color: var(--text-on-light); }
.section--white { background: var(--c-white); color: var(--text-on-light); }
.eyebrow {
  display: inline-block; font-family: var(--font-heading); font-weight: 700;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-yellow-dark); margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--c-yellow); }
.section--yellow .eyebrow { color: var(--c-dark); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h1, .section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.one-col { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--c-yellow); color: var(--c-dark);
  padding: 12px 20px; z-index: 10000; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: var(--c-yellow); z-index: 9999; transition: width .1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(40,44,42,.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__top { background: rgba(0,0,0,.22); border-bottom: 1px solid rgba(255,255,255,.06); }
.site-header__top-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 7px 0; }
.site-header__tagline { font-size: .74rem; color: var(--text-muted-on-dark); letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-header__tagline strong { color: var(--c-white); font-weight: 800; letter-spacing: .03em; }
.site-header__top-phone {
  display: flex; align-items: center; gap: 6px; color: var(--c-white); font-weight: 700; font-size: .78rem;
  white-space: nowrap; flex-shrink: 0;
}
.site-header__top-phone svg { width: 14px; height: 14px; color: var(--c-yellow); }
.site-header__top-phone .call-now { color: var(--c-yellow); }
@media (max-width: 640px) { .site-header__top { display: none; } }

.site-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--c-white); font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; }
.brand__logo { height: 54px; width: auto; display: block; }
.brand__logo--footer { height: 168px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: var(--text-muted-on-dark); font-weight: 600; font-size: .95rem; position: relative; padding: 6px 0;
  transition: color .25s var(--ease-smooth);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--c-yellow);
  transition: width .3s var(--ease-smooth);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--c-white); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }

.nav-item-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item-dropdown > a svg { width: 13px; height: 13px; transition: transform .3s var(--ease-smooth); }
.nav-item-dropdown:hover > a svg, .nav-item-dropdown:focus-within > a svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--c-dark); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 18px; display: flex; gap: 28px; min-width: 480px; z-index: 1001;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease-smooth), transform .25s var(--ease-smooth), visibility .25s;
}
.nav-item-dropdown:hover .nav-dropdown, .nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown__col { display: grid; gap: 3px; min-width: 200px; }
.nav-dropdown__col li a { display: block; padding: 8px 10px; border-radius: 8px; font-size: .87rem; white-space: nowrap; color: var(--text-muted-on-dark); }
.nav-dropdown__col li a:hover { background: rgba(255,255,255,.07); color: var(--c-yellow); }

@media (max-width: 900px) {
  .nav-item-dropdown { display: block; width: 100%; }
  .nav-item-dropdown > a svg { display: none; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    background: transparent; box-shadow: none; border: none; padding: 4px 0 4px 16px; display: block; min-width: 0;
  }
  .nav-dropdown__col { min-width: 0; margin-bottom: 4px; }
}

.header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.header-quote-btn { margin-left: 22px; }
.lang-switch { display: flex; gap: 4px; background: rgba(255,255,255,.08); border-radius: 20px; padding: 4px; }
.lang-switch a { padding: 5px 12px; border-radius: 16px; font-size: .78rem; font-weight: 700; color: var(--text-muted-on-dark); }
.lang-switch a.is-active { background: var(--c-yellow); color: var(--c-dark); }
.header-phone { display: flex; align-items: center; gap: 8px; color: var(--c-white); font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.header-phone svg { width: 18px; height: 18px; color: var(--c-yellow); }
.header-phone .call-now { color: var(--c-yellow); margin-right: 3px; }
.nav-toggle { display: none; background: none; border: none; color: var(--c-white); cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); height: 100vh; background: var(--c-dark);
    flex-direction: column; align-items: flex-start; padding: 100px 30px 30px; gap: 22px;
    transform: translateX(100%); transition: transform .4s var(--ease-smooth); z-index: 999;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .main-nav.is-open { transform: translateX(0); }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
  .lang-switch { order: -1; }
}

/* ---------- Buttons (one color, one effect, everywhere) ---------- */
.btn {
  --btn-pad-y: 15px; --btn-pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--c-yellow); color: var(--c-dark); font-family: var(--font-heading);
  font-weight: 700; font-size: .95rem; padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px; border: none; cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-3px) scale(1.045); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px) scale(.97); }
.btn--outline { background: transparent; color: var(--c-white); border: 2px solid var(--c-yellow); }
.btn--outline:hover { background: var(--c-yellow); color: var(--c-dark); }

.btn--dark {
  background: var(--c-dark); color: var(--c-white);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1.5px, transparent 1.5px, transparent 7px),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.10), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), inset 0 -2px 4px rgba(0,0,0,.35), var(--shadow-sm);
}
.btn--dark:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -2px 4px rgba(0,0,0,.35), var(--shadow-md); }
.btn .ripple {
  position: absolute; border-radius: 50%; background: rgba(40,44,42,.28);
  transform: scale(0); animation: ripple .6s var(--ease-smooth); pointer-events: none; z-index: -1;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* magnetic wrapper: JS applies translate via inline transform on mousemove */
.btn--magnetic { transition: transform .25s var(--ease-smooth), box-shadow .35s var(--ease-spring); }

/* ---------- Entrance animations: exactly 2 types site-wide ---------- */
.reveal-up { opacity: 0; transform: translateY(42px); transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth); }
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(.82); transition: opacity .75s var(--ease-spring), transform .75s var(--ease-spring); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Hero: Home (Timed Card Opening carousel) ---------- */
.hero-home {
  position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: var(--c-dark);
}
.hero-home__slides { position: absolute; inset: 0; }
.hero-home__slide {
  position: absolute; inset: 0; opacity: 0; z-index: 1; pointer-events: none;
  transition: opacity .7s var(--ease-smooth);
}
.hero-home__slide.is-active { opacity: 1; z-index: 2; pointer-events: auto; }
.hero-home__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-home__overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(100deg, rgba(40,44,42,.92) 0%, rgba(40,44,42,.72) 42%, rgba(40,44,42,.35) 68%, rgba(40,44,42,.15) 100%);
}
.hero-home__content {
  position: relative; z-index: 4; height: 100%; display: flex; flex-direction: column; justify-content: center;
  max-width: 640px; padding: 0 min(6vw, 90px);
}
.hero-home__eyebrow { color: var(--c-yellow); font-family: var(--font-heading); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; margin-bottom: 18px; }
.hero-home__title {
  color: var(--c-white); font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 800; margin: 0 0 22px; letter-spacing: -.01em;
}
.hero-home__title .kw {
  display: inline-block; opacity: 0; transform: translateY(.4em); filter: blur(6px);
  transition: opacity .55s var(--ease-smooth), transform .55s var(--ease-smooth), filter .55s var(--ease-smooth);
}
.hero-home__slide.is-active .hero-home__title .kw { opacity: 1; transform: translateY(0); filter: blur(0); }
.hero-home__text {
  color: var(--text-muted-on-dark); font-size: 1.08rem; max-width: 480px; margin: 0 0 30px;
  opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
  text-align: left;
}
.hero-home__slide.is-active .hero-home__text { opacity: 1; transform: translateY(0); }
.hero-home__cta {
  opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth);
}
.hero-home__slide.is-active .hero-home__cta { opacity: 1; transform: translateY(0); }

.hero-home__thumbs {
  position: absolute; z-index: 5; right: min(4vw, 64px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px;
}
.hero-home__thumb {
  width: 132px; height: 92px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  border: 3px solid var(--c-white); box-shadow: var(--shadow-md); position: relative;
  opacity: 1; transform: translateX(0);
  transition: transform .3s var(--ease-spring);
  animation: thumb-in .5s var(--ease-spring) backwards;
}
@keyframes thumb-in { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.hero-home__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-home__thumb-label {
  position: absolute; inset: auto 0 0 0; background: rgba(40,44,42,.82); color: var(--c-white);
  font-size: .68rem; font-weight: 700; text-align: center; padding: 4px 2px; line-height: 1.2;
}
.hero-home__thumb:hover { transform: scale(1.06); }
.hero-home__thumb.is-active { border-color: var(--c-yellow); }
.hero-home__thumbs.is-sliding .hero-home__thumb { animation: thumbs-slide-left .5s var(--ease-spring); }
@keyframes thumbs-slide-left { from { transform: translateX(26px); opacity: .3; } to { transform: translateX(0); opacity: 1; } }

.hero-home__controls {
  position: absolute; z-index: 6; left: min(6vw, 90px); bottom: 44px; display: flex; align-items: center; gap: 14px;
}
.hero-home__playpause {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  color: var(--c-white); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .25s var(--ease-smooth), transform .3s var(--ease-spring);
}
.hero-home__playpause:hover { background: var(--c-yellow); color: var(--c-dark); transform: scale(1.08); }
.hero-home__playpause svg { width: 18px; height: 18px; }
.hero-home__playpause .ico-play { display: none; }
.hero-home__playpause.is-paused .ico-pause { display: none; }
.hero-home__playpause.is-paused .ico-play { display: inline-flex; }
.hero-home__dots { display: flex; gap: 8px; }
.hero-home__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: background .3s, transform .3s; }
.hero-home__dot.is-active { background: var(--c-yellow); transform: scale(1.3); }

.hero-home__scrolldown {
  position: absolute; z-index: 6; left: 50%; bottom: 20px; transform: translateX(-50%);
  color: var(--text-muted-on-dark); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .7rem;
}
.hero-home__scrolldown svg { width: 16px; height: 16px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 900px) {
  .hero-home__thumbs { display: none; }
  .hero-home__content { max-width: 100%; padding: 0 24px; }
}

/* ---------- Hero: inner pages (cross-fade slideshow) ---------- */
.hero-inner { position: relative; height: 56vh; min-height: 380px; overflow: hidden; background: var(--c-dark); }
.hero-inner__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease-in-out; }
.hero-inner__slide.is-active { opacity: 1; }
.hero-inner__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,44,42,.55), rgba(40,44,42,.86)); z-index: 2; }
.hero-inner__content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--c-white); }
.hero-inner__content h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--c-white); }
.hero-inner__crumbs { display: flex; gap: 8px; color: var(--text-muted-on-dark); font-size: .85rem; margin-bottom: 16px; }
.hero-inner__crumbs a:hover { color: var(--c-yellow); }

/* ---------- Service inner H2 panel text (mirrors hero-home kinetic style) ---------- */
.hero-inner__text { max-width: 620px; color: var(--text-muted-on-dark); margin: 14px 0 0; text-align: center; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Service card (3D tilt) ---------- */
.card-service {
  background: var(--c-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .4s var(--ease-smooth); transform-style: preserve-3d; will-change: transform;
}
.card-service:hover { box-shadow: var(--shadow-lg); }
.card-service__img { position: relative; height: 190px; overflow: hidden; }
.card-service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-smooth); }
.card-service:hover .card-service__img img { transform: scale(1.08); }
.card-service__icon {
  position: absolute; bottom: -22px; left: 22px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--c-yellow); display: flex; align-items: center; justify-content: center; color: var(--c-dark);
  box-shadow: var(--shadow-sm);
}
.card-service__icon svg { width: 26px; height: 26px; }
.card-service__body { padding: 38px 24px 26px; }
.card-service__body h3 { font-size: 1.15rem; }
.card-service__body p { font-size: .92rem; color: var(--text-muted-on-light); }
.card-service__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--c-dark); font-size: .88rem; margin-top: 8px; }
.card-service__link svg { width: 15px; height: 15px; transition: transform .3s var(--ease-spring); }
.card-service__link:hover svg { transform: translateX(4px); }

/* ---------- About / feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__images { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split__images img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 260px; object-fit: cover; }
.split__images .img-b { margin-top: 40px; }
.split__images .parallax-img { will-change: transform; }

.feature-list { display: grid; gap: 18px; margin: 26px 0; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ico {
  width: 34px; height: 34px; border-radius: 10px; background: var(--c-yellow); color: var(--c-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-list .ico svg { width: 18px; height: 18px; }

/* ---------- Stats / counters ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--c-dark-soft); border-radius: var(--radius-lg); padding: 32px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.stat-card .ico { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--c-yellow); }
.stat-card .ico svg { width: 100%; height: 100%; }
.stat-card .num { font-family: var(--font-heading); font-size: 2.3rem; font-weight: 800; color: var(--c-white); }
.stat-card .lbl { color: var(--text-muted-on-dark); font-size: .88rem; font-weight: 600; }

/* ---------- Why choose us — darkened parallax banner ---------- */
.trust-banner { position: relative; overflow: hidden; min-height: 520px; display: flex; align-items: center; padding: 0; }
.trust-banner__media { position: absolute; inset: -140px 0; z-index: 0; }
.trust-banner__img { position: absolute; top: 0; left: 0; width: 100%; height: calc(100% + 280px); object-fit: cover; object-position: center; will-change: transform; }
.trust-banner__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(24, 27, 25, .66); }
.trust-banner .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; }
.trust-banner__content { max-width: 640px; }
.trust-banner__content h2 { color: var(--c-white); font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.trust-banner__content p { color: var(--text-muted-on-dark); font-size: 1.05rem; max-width: 560px; }
.trust-banner__content .btn { margin-top: 8px; }

.draw-line path { stroke-dasharray: 200; stroke-dashoffset: 200; transition: stroke-dashoffset 1.2s var(--ease-smooth); }
.in-view .draw-line path { stroke-dashoffset: 0; }

/* ---------- Value cards (About page) ---------- */
.card-value {
  background: var(--c-white); border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-smooth), box-shadow .4s var(--ease-smooth);
}
.card-value:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-value__icon {
  display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px;
  background: var(--c-yellow); color: var(--c-dark); margin-bottom: 16px;
}
.card-value__icon svg { width: 24px; height: 24px; }
.card-value h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card-value p { font-size: .9rem; color: var(--text-muted-on-light); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--c-white); border: 1px solid #EAEAE8; border-radius: var(--radius-md); overflow: hidden; }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600; gap: 16px;
  width: 100%; background: none; border: none; text-align: left; font-size: 1rem; color: inherit;
}
.faq-item__q:focus-visible { outline: 2px solid var(--c-yellow); outline-offset: -2px; }
.faq-item__q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .35s var(--ease-spring); }
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-smooth); padding: 0 24px; }
.faq-item.is-open .faq-item__a { max-height: 280px; padding-bottom: 20px; }
.faq-item__a p { color: var(--text-muted-on-light); font-size: .95rem; }

/* ---------- Free estimate banner (floating blobs) ---------- */
.estimate-banner {
  position: relative; overflow: hidden; text-align: center;
  background-image:
    repeating-linear-gradient(45deg, rgba(40,44,42,.06) 0px, rgba(40,44,42,.06) 2px, transparent 2px, transparent 12px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.10) 0px, rgba(255,255,255,.10) 2px, transparent 2px, transparent 12px);
}
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .35; animation: float 9s ease-in-out infinite; }
.blob--1 { width: 240px; height: 240px; background: var(--c-yellow); top: -80px; left: -60px; animation-delay: 0s; }
.blob--2 { width: 180px; height: 180px; background: var(--c-gray); top: 60%; right: -40px; animation-delay: 2.5s; }
.blob--3 { width: 120px; height: 120px; background: var(--c-yellow); bottom: -40px; left: 40%; animation-delay: 5s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-24px) scale(1.08); } }
.estimate-banner__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

/* ---------- Contact form ---------- */
.contact-split, .request-split { align-items: stretch; }
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 460px;
  position: relative;
}
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-map__link {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-white); color: var(--text-on-light); font-weight: 700; font-size: .82rem;
  padding: 9px 14px; border-radius: 999px; box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease-spring);
}
.contact-map__link:hover { transform: translateY(-2px); }
.contact-map__link svg { width: 14px; height: 14px; }
.request-split__image {
  position: relative; overflow: hidden; min-height: 420px; height: 100%;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.request-split__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.request-split__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 0%, transparent 35%, var(--c-white) 92%);
}
@media (max-width: 900px) {
  .request-split__image { border-radius: var(--radius-lg); min-height: 280px; }
  .request-split__image::after { background: linear-gradient(to bottom, transparent 0%, transparent 40%, var(--c-white) 95%); }
}

/* Subtle texture so the white "Get Help Right Now" container isn't flat. */
.request-section--textured {
  background-image:
    repeating-linear-gradient(45deg, rgba(40,44,42,.025) 0px, rgba(40,44,42,.025) 1.5px, transparent 1.5px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(40,44,42,.02) 0px, rgba(40,44,42,.02) 1.5px, transparent 1.5px, transparent 10px);
}
.contact-form-card {
  background: var(--c-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 44px; border: 1px solid #EFEFED;
}
.contact-form { display: grid; gap: 22px; max-width: 640px; margin: 0 auto; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 18px 16px 8px; border: 1.5px solid #D8D8D5; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: var(--c-white); color: var(--text-on-light);
  transition: border-color .25s var(--ease-smooth);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-yellow); }
.field label {
  position: absolute; left: 16px; top: 18px; color: var(--text-muted-on-light); font-size: 1rem; pointer-events: none;
  transition: transform .2s var(--ease-smooth), font-size .2s var(--ease-smooth), color .2s var(--ease-smooth), top .2s var(--ease-smooth);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 8px; font-size: .72rem; font-weight: 700; color: var(--c-yellow-dark);
}

/* ---------- Reviews ---------- */
.rating-summary { display: flex; align-items: center; gap: 26px; justify-content: center; flex-wrap: wrap; }
.rating-summary .big { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 800; }
.stars { color: var(--c-yellow); display: inline-flex; gap: 2px; }
.stars--empty { color: #6E7377; }
.stars svg { width: 18px; height: 18px; }
.review-card { background: var(--c-white); border: 1px solid #EAEAE8; border-radius: var(--radius-lg); padding: 26px; }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--c-dark); color: var(--c-yellow); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-heading); }
.review-card p { font-size: .93rem; color: var(--text-muted-on-light); }
.empty-reviews { text-align: center; padding: 40px 20px; color: var(--text-muted-on-light); }
.empty-reviews > svg { width: 40px; height: 40px; color: #6E7377; margin-bottom: 10px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid a { display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-smooth); }
.gallery-grid a:hover img { transform: scale(1.1); }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(20,22,21,.94); z-index: 5000; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox__close { position: absolute; top: 24px; right: 30px; color: var(--c-white); background: none; border: none; cursor: pointer; }
.lightbox__close svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-dark); color: var(--text-muted-on-dark); padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--c-white); font-size: .95rem; margin-bottom: 18px; }
.footer-grid ul { display: grid; gap: 11px; }
.footer-grid a:hover { color: var(--c-yellow); }
.footer-brand p { color: var(--text-muted-on-dark); font-size: .9rem; max-width: 320px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--c-yellow); flex-shrink: 0; margin-top: 3px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s var(--ease-spring);
}
.social-row a:hover { background: var(--c-yellow); color: var(--c-dark); transform: translateY(-3px); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; }

/* ---------- Custom cursor (desktop only) ---------- */
.cursor-dot { position: fixed; width: 10px; height: 10px; border-radius: 50%; background: var(--c-yellow); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: opacity .3s; mix-blend-mode: difference; }
.cursor-ring { position: fixed; width: 34px; height: 34px; border: 1.5px solid var(--c-yellow); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .25s, height .25s, opacity .3s; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Cursor spotlight section ---------- */
.spotlight-section { position: relative; overflow: hidden; }
.spotlight-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(circle 260px at var(--mx,50%) var(--my,50%), rgba(245,187,60,.18), transparent 70%);
}

/* ---------- Skeleton loading (images) ---------- */
.skel { position: relative; background: var(--c-gray-light); overflow: hidden; }
.skel::after {
  content: ''; position: absolute; inset: 0; transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: skel-sweep 1.3s infinite;
}
.skel.is-loaded::after { display: none; }
@keyframes skel-sweep { 100% { transform: translateX(100%); } }

/* ---------- Horizontal scroll section ---------- */
.hscroll { display: flex; gap: 24px; overflow-x: auto; padding: 10px 4px 26px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.hscroll::-webkit-scrollbar { height: 8px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--c-yellow); border-radius: 8px; }
.hscroll > * { scroll-snap-align: start; flex: 0 0 300px; }

/* ---------- Flip card 3D (service cross-reference on service pages) ---------- */
.flip-card { perspective: 1200px; height: 220px; }
.flip-card__inner { position: relative; width: 100%; height: 100%; transition: transform .7s var(--ease-smooth); transform-style: preserve-3d; }
.flip-card:hover .flip-card__inner { transform: rotateY(180deg); }
.flip-card__face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: var(--radius-lg); overflow: hidden; }
.flip-card__face--front img { width: 100%; height: 100%; object-fit: cover; }
.flip-card__face--front .cap { position: absolute; inset: auto 0 0 0; background: rgba(40,44,42,.75); color: var(--c-white); padding: 12px 16px; font-weight: 700; }
.flip-card__face--back { transform: rotateY(180deg); background: var(--c-dark); color: var(--c-white); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; gap: 10px; }

/* ---------- Confetti burst (contact form success) ---------- */
.confetti-piece { position: fixed; top: -10px; width: 8px; height: 14px; z-index: 6000; pointer-events: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.pill { display: inline-block; padding: 5px 14px; border-radius: 999px; background: var(--c-yellow); color: var(--c-dark); font-weight: 700; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.crossref { margin-top: 10px; }

/* ---------- WordPress-specific: native custom-logo output ---------- */
.site-header .custom-logo-link img { height: 54px; width: auto; display: block; }
.site-footer .custom-logo-link img { height: 168px; width: auto; display: block; }
.faq-item__a ul, .faq-item__a ol { text-align: left; margin: 0 0 1em; padding-left: 1.2em; }
