:root {
  --bg: #121212;
  --surface: #1e1e1e;
  --surface-2: #242424;
  --text: #ffffff;
  --muted: #a7a7a7;
  --gold: #e4c14a;
  --gold-edge: #b8962e;
  --call: #007aff;
  --wa: #25d366;
  --line: rgba(228, 193, 74, 0.28);
  --header-h: 84px;
  --radius: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100%;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.12;
  margin: 0;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 200;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.gold {
  color: var(--gold);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-shrink {
  background: rgba(18, 18, 18, 0.97);
  border-bottom-color: var(--gold-edge);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header.is-shrink .header-inner {
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold-edge);
  background: #000;
  transition: width 0.25s ease, height 0.25s ease;
}

.site-header.is-shrink .brand img {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: Oswald, sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.brand-text span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 9px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  border-bottom-color: var(--gold);
}

.header-ctas {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.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);
}

.nav-toggle span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  user-select: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-call {
  background: var(--call);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.45);
}

.btn-call:hover {
  box-shadow: 0 0 18px rgba(0, 122, 255, 0.55);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
}

.btn-wa:hover {
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.5);
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-gold:hover {
  box-shadow: 0 0 18px rgba(228, 193, 74, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-edge);
}

.btn-ghost:hover {
  background: rgba(228, 193, 74, 0.08);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.35) 0%, rgba(18, 18, 18, 0.72) 48%, #121212 100%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.55), transparent 55%);
}

#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(34px, 8vw, 78px);
  max-width: 14ch;
  margin-bottom: 16px;
  color: var(--gold);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.hero .lead {
  max-width: 42ch;
  font-size: 16px;
  color: #d8d8d8;
  margin-bottom: 24px;
}

/* ---------- Sections ---------- */
section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold-edge));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
}

.reveal.is-in .section-title::after,
.page-hero .section-title::after {
  transform: scaleX(1);
}

.kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.page-hero {
  padding: 56px 0 24px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 200px at 10% 0%, rgba(228, 193, 74, 0.08), transparent 60%),
    var(--bg);
}

.page-hero h1 {
  font-size: clamp(32px, 6vw, 56px);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(184, 150, 46, 0.25);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  min-height: 170px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
}

.service-num {
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

/* ---------- Trust ---------- */
.trust {
  padding: 0 0 72px;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-edge);
  border: 1px solid var(--gold-edge);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-item {
  background: var(--surface);
  padding: 20px 16px;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.12em;
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
}

/* ---------- Coverage ---------- */
.coverage {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.coverage-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.coverage-copy p {
  max-width: 56ch;
}

.coverage-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.coverage-card {
  background: #1e1e1e;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.coverage-card h3 {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.coverage-card p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* ---------- Reels ---------- */
.reels-section {
  overflow: hidden;
}

.reels-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 16px;
  padding: 4px 16px 18px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.reels-strip::-webkit-scrollbar {
  display: none;
}

.reels-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reel {
  position: relative;
  flex: 0 0 86%;
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  background: #000;
  border: 1px solid var(--gold-edge);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.reel-mute {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(228, 193, 74, 0.45);
  background: rgba(18, 18, 18, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.reel-mute:hover {
  border-color: var(--gold);
  background: rgba(18, 18, 18, 0.92);
}

.reel-mute svg {
  width: 18px;
  height: 18px;
}

.reel-label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(228, 193, 74, 0.35);
  padding: 4px 8px;
  border-radius: 999px;
}

/* ---------- Gallery ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(184, 150, 46, 0.28);
  background: #000;
  cursor: pointer;
  min-height: 220px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.5s ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.photo-card.is-hidden {
  display: none;
}

/* ---------- Quote form ---------- */
.quote {
  background:
    linear-gradient(180deg, transparent, rgba(228, 193, 74, 0.05)),
    var(--bg);
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--gold-edge);
  border-radius: 14px;
  padding: 24px 18px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(184, 150, 46, 0.35);
  border-radius: 8px;
  padding: 12px 12px;
  color: var(--text);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228, 193, 74, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: #ffb4b4;
  font-size: 13px;
  min-height: 1.2em;
}

/* ---------- Contact / about ---------- */
.split {
  display: grid;
  gap: 28px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.info-list a {
  color: var(--gold);
}

.director {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.director h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.cert-grid {
  display: grid;
  gap: 16px;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--gold-edge);
  border-radius: 12px;
  padding: 20px;
}

.cert-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.cert-card dl {
  margin: 0 0 16px;
  display: grid;
  gap: 6px;
}

.cert-card dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cert-card dd {
  margin: 0 0 8px;
  color: var(--text);
}

.pdf-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 8px;
  background: #0a0a0a;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-edge);
  padding-bottom: 2px;
}

.prose {
  max-width: 68ch;
}

.prose p + p {
  margin-top: 0.2rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 0;
}

.stat {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 14px;
}

.stat b {
  display: block;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gold-edge);
  background: #0e0e0e;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold-edge);
  margin-bottom: 12px;
}

.footer-col h4 {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-col a,
.footer-col p,
.footer-col li {
  color: var(--muted);
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--gold);
}

.legal {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 150, 46, 0.25);
  color: var(--muted);
  font-size: 12px;
}

/* ---------- Floating CTAs ---------- */
.float-ctas {
  position: fixed;
  right: 12px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: max-content;
  max-width: calc(100vw - 24px);
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  transform-origin: right center;
}

.float-btn svg {
  width: 18px;
  height: 18px;
}

.float-btn.call {
  background: var(--call);
}

.float-btn.wa {
  background: var(--wa);
}

.float-btn.pulse {
  animation: pulse-once 0.8s ease 0.35s 1;
}

@keyframes pulse-once {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

body {
  padding-bottom: 132px;
}

.quote {
  padding-bottom: 48px;
}

.quote .btn-wa[type="submit"] {
  margin-top: 4px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--gold-edge);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-edge);
  background: #111;
  color: #fff;
  cursor: pointer;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .service-card,
  .btn,
  .photo-card img,
  .section-title::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .float-btn.pulse {
    animation: none;
  }
}

/* ---------- Breakpoints ---------- */
@media (min-width: 600px) {
  .service-grid,
  .photo-grid,
  .cert-grid,
  .stat-row,
  .coverage-cards {
    grid-template-columns: 1fr 1fr;
  }

  .reel {
    flex-basis: 46%;
  }

  .quote-card {
    padding: 32px;
  }

  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid.two .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .header-ctas {
    display: flex;
  }

  .header-ctas .btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid.seven .service-card:last-child {
    grid-column: 2 / 3;
  }

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

  .coverage-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }

  .split,
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reel {
    flex-basis: 31%;
  }

  body {
    padding-bottom: 0;
  }

  .float-ctas {
    display: none;
  }

  .wrap {
    width: min(var(--max), calc(100% - 48px));
  }
}

@media (min-width: 1200px) {
  .service-grid.seven {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-grid.seven .service-card:nth-child(5),
  .service-grid.seven .service-card:nth-child(6),
  .service-grid.seven .service-card:nth-child(7) {
    grid-column: auto;
  }

  .photo-grid.five .photo-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-grid.five .photo-card:nth-child(1) img {
    aspect-ratio: auto;
    height: 100%;
  }
}

@media (max-width: 899px) {
  .coverage {
    padding-bottom: 148px;
  }

  .coverage-card {
    min-height: 92px;
    padding: 18px 14px;
  }

  .quote {
    padding-bottom: 160px;
  }

  .quote .btn-wa[type="submit"] {
    max-width: calc(100% - 132px);
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #161616;
    border-bottom: 1px solid var(--gold-edge);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(184, 150, 46, 0.18);
  }

  .brand-text {
    display: none;
  }

  .hero-copy {
    padding-bottom: 88px;
  }
}

@media (max-width: 699px) {
  .pdf-frame {
    display: none;
  }
}

@media (max-width: 400px) {
  .float-btn span {
    font-size: 12px;
  }

  .header-inner {
    width: calc(100% - 16px);
  }

  .wrap {
    width: calc(100% - 24px);
  }
}
