/* ============================================================
   Mini Dig Solutions: sleek monochrome theme
   Palette: black / white / greyscale only
   ============================================================ */

:root {
  --black: #0d0d0f;
  --ink: #16161a;
  --panel: #1c1c20;
  --panel-2: #232329;
  --line: #2e2e34;
  --grey: #8a8a92;
  --grey-light: #c7c7cd;
  --off-white: #f4f4f5;
  --white: #ffffff;
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --head: 'Anton', 'Oswald', Impact, sans-serif;
  --sub: 'Oswald', sans-serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sub);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .9rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; }

.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--off-white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .35); }
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, .06); }
.btn-light { background: rgba(255, 255, 255, .1); color: var(--white); border-color: rgba(255, 255, 255, .18); }
.btn-light:hover { background: rgba(255, 255, 255, .18); }
.btn-lg { padding: 16px 30px; font-size: .98rem; }
.btn-sm { padding: 10px 18px; font-size: .82rem; }
.btn-block { width: 100%; }

.icon { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 15, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.site-header.scrolled { background: rgba(13, 13, 15, .94); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-text {
  font-family: var(--head);
  font-size: 1.32rem;
  letter-spacing: .03em;
  line-height: .9;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.brand-text-sub { font-size: .72rem; letter-spacing: .42em; color: var(--grey-light); font-family: var(--sub); font-weight: 600; }

.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a {
  font-family: var(--sub);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  color: var(--grey-light);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--white);
  transition: width .25s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sub);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
}
.phone-link .icon { width: 17px; height: 17px; }
.phone-link:hover { color: var(--grey-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 0 auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 90px); }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 78% 12%, rgba(255, 255, 255, .07), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(255, 255, 255, .04), transparent 60%),
    linear-gradient(180deg, #111114 0%, #0d0d0f 100%);
  z-index: -2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  font-family: var(--sub);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--grey);
  margin: 0 0 16px;
}
.hero-title {
  font-family: var(--head);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.accent-line { position: relative; display: inline-block; }
.accent-line::after {
  content: '';
  position: absolute;
  left: 0; bottom: .08em;
  width: 100%; height: .09em;
  background: var(--white);
}
.hero-lead { font-size: 1.12rem; color: var(--grey-light); max-width: 540px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 0;
  margin: 0;
}
.hero-badges li {
  font-family: var(--sub);
  font-size: .86rem;
  letter-spacing: .04em;
  color: var(--grey-light);
  position: relative;
  padding-left: 22px;
}
.hero-badges li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 11px; height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
}
.hero-figure { display: flex; justify-content: center; }
.hero-logo {
  width: min(440px, 90%);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .6));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Hero with photo/video background ---------- */
.hero--media { min-height: min(88vh, 760px); display: flex; align-items: center; }
.hero--media .hero-inner { grid-template-columns: 1fr; }
.hero--media .hero-copy { max-width: 680px; }
.hero-media-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0d0d0f;
}
.hero-media-bg img, .hero-media-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero--media .hero-media-bg img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.14) translateY(-1.5%); } }
.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,8,10,.92) 0%, rgba(8,8,10,.72) 42%, rgba(8,8,10,.30) 100%),
    linear-gradient(0deg, rgba(8,8,10,.85) 0%, transparent 40%);
}
.hero--media .hero-title { text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.hero--media .eyebrow { color: #dcdce0; text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero--media .hero-lead { color: #e6e6ea; text-shadow: 0 1px 14px rgba(0,0,0,.6); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: var(--white); }
.btn .play-ico { width: 16px; height: 16px; fill: currentColor; }

/* ---------- In Action (video showcase) ---------- */
.action { background: linear-gradient(180deg, var(--black), var(--ink)); }
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
}
.video-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.video-card.is-feature { grid-row: span 2; aspect-ratio: auto; }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.video-card .vc-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.video-card:hover .vc-poster { transform: scale(1.05); }
.video-card.playing .vc-poster, .video-card.playing .vc-overlay { opacity: 0; pointer-events: none; }
.vc-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 55%);
  transition: opacity .3s var(--ease);
}
.vc-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.video-card:hover .vc-play { transform: translate(-50%, -50%) scale(1.08); }
.vc-play svg { width: 26px; height: 26px; fill: var(--black); margin-left: 4px; }
.vc-label { font-family: var(--sub); font-weight: 600; font-size: 1.1rem; letter-spacing: .01em; color: #fff; position: relative; z-index: 1; }
.vc-tag { font-family: var(--sub); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--grey-light); position: relative; z-index: 1; margin-bottom: 3px; }
.action-note { text-align: center; color: var(--grey); font-size: .9rem; margin: 22px 0 0; }

/* ---------- Cinematic CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 12vw, 140px) 0;
  text-align: center;
}
.cta-band video, .cta-band .band-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,8,10,.74), rgba(8,8,10,.82));
}
.cta-band .band-title {
  font-family: var(--head);
  font-size: clamp(2rem, 5.5vw, 4rem);
  text-transform: uppercase;
  line-height: .98;
  margin: 0 0 10px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.cta-band p { color: var(--grey-light); margin: 0 auto 26px; max-width: 540px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,6,8,.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: lbin .3s var(--ease);
}
@keyframes lbin { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-caption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: var(--grey-light); font-size: .9rem; font-family: var(--sub); letter-spacing: .04em; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); color: var(--black); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 26px 24px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; }
.trust-num { font-family: var(--head); font-size: 2rem; line-height: 1; letter-spacing: .02em; }
.trust-label { font-family: var(--sub); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: #54545a; }

/* ---------- Sections ---------- */
.section { padding: clamp(60px, 9vw, 110px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-title {
  font-family: var(--head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 16px;
}
.section-sub { color: var(--grey-light); font-size: 1.06rem; margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--black); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, .4); }
.service-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .03);
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--white); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--sub); font-weight: 600; font-size: 1.18rem; margin: 0 0 9px; letter-spacing: .01em; }
.service-card p { color: var(--grey-light); font-size: .96rem; margin: 0; }
.service-card-cta {
  background: var(--white);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service-card-cta h3 { color: var(--black); }
.service-card-cta p { color: #444; margin-bottom: 18px; }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--ink) 0%, var(--black) 100%); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .015) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--panel-2), var(--ink));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--grey);
  overflow: hidden;
}
.media-frame .media-icon { width: 64px; height: 64px; fill: none; stroke: var(--grey); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; opacity: .6; }
.media-caption { font-family: var(--sub); letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.media-frame:hover img { transform: scale(1.04); }
.about-copy .section-title { margin-bottom: 20px; }
.about-copy p { color: var(--grey-light); margin: 0 0 16px; }
.brand-themes { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.brand-themes li {
  position: relative;
  padding-left: 34px;
  display: flex;
  flex-direction: column;
}
.brand-themes li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center / 18px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center / 18px no-repeat;
}
.brand-themes strong { font-family: var(--sub); font-size: 1.05rem; letter-spacing: .02em; }
.brand-themes span { color: var(--grey); font-size: .94rem; }
.lic-note { font-family: var(--sub); letter-spacing: .08em; color: var(--grey-light); text-transform: uppercase; font-size: .9rem; }
.lic-note strong { color: var(--white); }

/* ---------- Areas ---------- */
.areas { background: var(--black); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--ink), var(--black));
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.area-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, .35); }
.area-card h3 { font-family: var(--head); text-transform: uppercase; font-size: 1.5rem; margin: 0 0 6px; letter-spacing: .02em; }
.area-card p { color: var(--grey); margin: 0; font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, var(--black), var(--ink)); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .02) 0 16px, transparent 16px 32px),
    linear-gradient(160deg, var(--panel-2), var(--ink));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.gallery-tile { cursor: pointer; }
.gallery-tile:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, .35); }
.gallery-tile img, .gallery-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile span {
  position: relative;
  z-index: 1;
  width: 100%;
  font-family: var(--sub);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
  color: #fff;
  padding: 14px 16px;
}
.gallery-tile.has-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 45%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-tile.has-img:hover::before { opacity: 1; }
.gallery-tile.has-img span { opacity: 0; transition: opacity .3s var(--ease); }
.gallery-tile.has-img:hover span { opacity: 1; }
.gallery-zoom {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-tile:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ink); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  margin: 0;
  background: linear-gradient(180deg, var(--panel), var(--ink));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.stars { color: var(--white); letter-spacing: .18em; font-size: 1.05rem; margin-bottom: 14px; }
.review-card p { color: var(--off-white); font-size: 1.02rem; margin: 0 0 16px; font-style: italic; }
.review-card cite { color: var(--grey); font-style: normal; font-family: var(--sub); letter-spacing: .04em; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--black); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--panel), var(--ink));
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--sub);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 12px; height: 12px;
  border-right: 2px solid var(--grey-light);
  border-bottom: 2px solid var(--grey-light);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--white); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; color: var(--grey-light); }

/* ---------- Quote / contact ---------- */
.quote { background: linear-gradient(180deg, var(--ink), var(--black)); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.quote-copy .section-title { text-align: left; margin-bottom: 18px; }
.quote-copy > p { color: var(--grey-light); margin: 0 0 26px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-ico {
  flex: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .03);
}
.contact-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--white); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { display: block; font-family: var(--sub); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--grey); margin-bottom: 2px; }
.contact-list a { color: var(--white); font-size: 1.05rem; font-weight: 500; }
.contact-list a:hover { color: var(--grey-light); }

.quote-form-wrap {
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 38px);
  box-shadow: var(--shadow);
}
.form-title { font-family: var(--sub); font-weight: 600; font-size: 1.4rem; margin: 0 0 20px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-family: var(--sub); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 7px; }
.field label span { color: var(--white); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08);
}
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color: #d36b6b; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238a8a92' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-note { font-size: .92rem; margin: 14px 0 0; min-height: 1px; }
.form-note.ok { color: #7fd18a; }
.form-note.err { color: #e08a8a; }
.form-alt { text-align: center; color: var(--grey); font-size: .92rem; margin: 14px 0 0; }
.form-alt a { color: var(--white); font-weight: 600; }
.btn-block { margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { width: 110px; height: auto; margin-bottom: 14px; }
.footer-tag { font-family: var(--sub); letter-spacing: .04em; color: var(--grey-light); margin: 0 0 6px; }
.footer-lic { color: var(--grey); font-size: .9rem; margin: 0; }
.footer-nav h4, .footer-contact h4 { font-family: var(--sub); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; color: var(--grey); margin: 0 0 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--grey-light); width: fit-content; transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { margin: 0 0 10px; color: var(--grey-light); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.footer-bottom p { margin: 0; color: var(--grey); font-size: .86rem; text-align: center; }

/* ---------- Landing pages ---------- */
.breadcrumb { font-family: var(--sub); font-size: .82rem; letter-spacing: .04em; color: var(--grey); margin: 0 0 18px; }
.breadcrumb a { color: var(--grey-light); }
.breadcrumb a:hover { color: var(--white); }
.lp-hero { text-align: center; }
.lp-hero .hero-title { margin-bottom: 18px; }
.lp-hero .hero-lead { margin-left: auto; margin-right: auto; }
.lp-hero .hero-actions { justify-content: center; }
.lp-prose { max-width: 800px; margin: 0 auto; }
.lp-prose h2 { font-family: var(--sub); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: .01em; margin: 38px 0 14px; }
.lp-prose h2:first-child { margin-top: 0; }
.lp-prose p { color: var(--grey-light); margin: 0 0 16px; font-size: 1.04rem; }
.lp-prose a.inline { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.tick-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 11px; }
.tick-list li { position: relative; padding-left: 32px; color: var(--grey-light); }
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center / 18px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z'/%3E%3C/svg%3E") center / 18px no-repeat;
}
.lp-cta { background: var(--white); color: var(--black); text-align: center; }
.lp-cta .section-title { color: var(--black); }
.lp-cta p { color: #444; max-width: 560px; margin: 0 auto 26px; }
.lp-cta .btn-outline { color: var(--black); border-color: rgba(0, 0, 0, .3); }
.lp-cta .btn-outline:hover { border-color: var(--black); background: rgba(0, 0, 0, .05); }
.lp-links { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin-top: 30px; }
.lp-links a { font-family: var(--sub); color: var(--grey-light); letter-spacing: .03em; }
.lp-links a:hover { color: var(--white); }

/* ---------- Mobile sticky call ---------- */
.mobile-call {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--white);
  color: var(--black);
  font-family: var(--sub);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}
.mobile-call .icon { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo { animation: none; }
  .hero--media .hero-media-bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 28px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 13, 15, .98);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
    margin-left: 0;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta, .phone-link { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-figure { order: 1; }
  .hero-logo { width: min(300px, 70%); }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .accent-line::after { left: 50%; transform: translateX(-50%); width: 100%; }

  .about-grid, .quote-grid { grid-template-columns: 1fr; gap: 34px; }
  .quote-copy .section-title { text-align: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .video-card.is-feature { grid-row: auto; aspect-ratio: 16 / 9; }
  .hero--media { min-height: 0; padding-top: 64px; padding-bottom: 56px; }
  /* Stronger, uniform veil so centred hero text stays readable over the photo */
  .hero--media .hero-media-overlay {
    background:
      linear-gradient(180deg, rgba(8,8,10,.80) 0%, rgba(8,8,10,.66) 45%, rgba(8,8,10,.90) 100%);
  }
  .hero--media .hero-media-bg img { object-position: center 35%; }
  /* Show content immediately on mobile — never rely on scroll-reveal to avoid blank/pop-in */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-call { display: flex; }
  body { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .areas-grid, .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .brand-text { font-size: 1.15rem; }
  .hero-actions .btn { width: 100%; }
}
