:root {
  --black: #050407;
  --near-black: #09060d;
  --plum: #261134;
  --purple: #8b25d6;
  --purple-soft: #b66dff;
  --gold: #d9b66a;
  --gold-bright: #f8df9a;
  --silver: #e8e8ed;
  --silver-muted: #a9a9b3;
  --white: #ffffff;
  --surface: #111018;
  --surface-2: #17131f;
  --line: rgba(232, 232, 237, 0.16);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--silver);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
p { margin: 0 0 1rem; color: rgba(232, 232, 237, 0.78); }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 10001;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(5, 4, 7, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--white);
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { max-width: 210px; line-height: 1.1; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.desktop-nav > a,
.nav-menu > button {
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  border: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
}
.desktop-nav > a:hover,
.nav-menu > button:hover,
.nav-phone:hover { color: var(--gold-bright); }
.nav-menu { position: relative; }
.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  background: rgba(9, 6, 13, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 150ms ease;
  border-radius: 8px;
}
.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(232, 232, 237, 0.88);
  font-size: 0.92rem;
}
.nav-dropdown a:hover { background: rgba(217, 182, 106, 0.12); color: var(--gold-bright); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.92rem; }
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 6px;
  place-items: center;
}
.mobile-panel {
  display: none;
  background: rgba(5,4,7,0.98);
  border-top: 1px solid var(--line);
  padding: 16px 20px 24px;
}
.mobile-panel a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--silver);
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 10px 14px; font-size: 0.9rem; }
.btn-primary {
  color: #100a07;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 48%, #a87522);
  box-shadow: 0 12px 30px rgba(217, 182, 106, 0.22);
}
.btn-primary:hover { background: linear-gradient(135deg, #fff1bf, var(--gold-bright), var(--gold)); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { color: var(--gold-bright); border-color: rgba(217,182,106,0.62); background: rgba(217,182,106,0.06); }
.btn-outline-dark:hover { background: rgba(217,182,106,0.14); }
.btn-light { color: var(--black); background: var(--white); }
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-hero { min-height: 470px; padding-top: 84px; }
.hero-media,
.hero-media picture,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img,
.hero-media video,
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .hero-media video { z-index: 1; }
.home-hero .hero-media picture { z-index: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 26%, rgba(139, 37, 214, 0.30), transparent 34%),
    linear-gradient(90deg, rgba(5,4,7,0.92), rgba(5,4,7,0.68) 48%, rgba(5,4,7,0.74)),
    linear-gradient(180deg, rgba(5,4,7,0.25), rgba(5,4,7,0.86));
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 150px 0 84px;
}
.inner-hero .hero-content { padding: 88px 0 76px; }
.eyebrow {
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}
.eyebrow.light { color: var(--gold-bright); }
h1, h2, h3 { color: var(--white); line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: 3.6rem; max-width: 900px; }
h2 { font-size: 2.35rem; }
h3 { font-size: 1.22rem; }
.hero p {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.inline-actions { margin-top: 24px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 56px;
}
.hero-stats div {
  min-width: 142px;
  padding-left: 18px;
  border-left: 1px solid rgba(217,182,106,0.55);
}
.hero-stats strong { display: block; color: var(--gold-bright); font-size: 1.5rem; line-height: 1; }
.hero-stats span { display: block; color: rgba(255,255,255,0.68); font-size: 0.78rem; text-transform: uppercase; font-weight: 800; margin-top: 6px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.breadcrumbs a:hover { color: var(--gold-bright); }
.contact-strip {
  background: linear-gradient(90deg, #6b4c16, var(--gold), #7f28bf, #21122f);
  color: var(--white);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 13px 0;
  font-weight: 800;
  font-size: 0.94rem;
}
.strip-grid div,
.strip-grid a { display: flex; align-items: center; justify-content: center; gap: 9px; }
.section { padding: 88px 0; position: relative; }
.section.surface { background: var(--surface); }
.section-heading { margin-bottom: 32px; }
.section-heading.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-heading p { font-size: 1.05rem; margin-top: 14px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr); }
.split.reverse > :first-child { order: 2; }
.split p { font-size: 1.04rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 13px;
}
.check-list.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(232,232,237,0.88);
  font-weight: 700;
}
.check-list .icon { color: var(--gold-bright); margin-top: 4px; }
.image-stack {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-stack.small { min-height: 390px; }
.portrait-media {
  height: 620px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mini-panel {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 16px 18px;
  max-width: calc(100% - 40px);
  background: rgba(5,4,7,0.86);
  border: 1px solid rgba(217,182,106,0.36);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.mini-panel strong { display: block; color: var(--gold-bright); font-size: 1.2rem; }
.mini-panel span { color: rgba(255,255,255,0.78); font-weight: 700; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.related-card,
.value-grid article,
.process-grid article,
.feature-list article,
.contact-card,
.service-panel,
.faq-list,
.quote-embed {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}
.service-card { overflow: hidden; transition: transform 170ms ease, border-color 170ms ease; }
.service-card:hover { transform: translateY(-3px); border-color: rgba(217,182,106,0.52); }
.service-card-media { height: 235px; }
.service-card-body { padding: 22px; }
.service-card-body p { font-size: 0.94rem; }
.service-card-body span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 900;
}
.dark-band {
  background:
    radial-gradient(circle at 78% 25%, rgba(139,37,214,0.28), transparent 34%),
    linear-gradient(135deg, #070509, #160c20 55%, #08050b);
  border-block: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-list article { padding: 22px; }
.feature-list h3 { color: var(--gold-bright); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 12px 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  line-height: 1.25;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-grid article { padding: 26px; }
.process-grid span {
  display: block;
  color: var(--gold-bright);
  font-weight: 900;
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.areas-section {
  background:
    radial-gradient(circle at 14% 24%, rgba(139,37,214,0.22), transparent 32%),
    linear-gradient(180deg, #09060d, #12101a);
}
.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}
.map-areas { margin-bottom: 6px; }
.map-card {
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(217,182,106,0.35);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.05);
}
.map-card iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}
.reviews-section {
  background:
    linear-gradient(180deg, var(--black), var(--surface)),
    var(--surface);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.rating-stars .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.review-card blockquote {
  margin: 0;
  color: rgba(232,232,237,0.86);
  font-size: 1rem;
  line-height: 1.65;
}
.review-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-meta strong,
.review-meta span {
  display: block;
}
.review-meta strong { color: var(--white); }
.review-meta span {
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 800;
  margin-top: 3px;
}
.quote-section { background: linear-gradient(180deg, var(--surface), var(--near-black)); }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 26px;
  align-items: start;
}
.quote-embed {
  min-height: 990px;
  overflow: visible;
  background: #0f0d15;
  padding: 10px;
}
.quote-embed iframe {
  display: block;
  width: 100%;
  height: 960px !important;
  min-height: 960px;
}
.contact-card,
.service-panel {
  padding: 26px;
}
.contact-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(232,232,237,0.88);
  overflow-wrap: anywhere;
}
.contact-list .icon { color: var(--gold-bright); margin-top: 4px; }
.contact-list.large { gap: 18px; font-size: 1.12rem; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.service-tags span,
.area-grid span {
  border: 1px solid rgba(217,182,106,0.34);
  color: var(--gold-bright);
  background: rgba(217,182,106,0.08);
  border-radius: 6px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 0.86rem;
}
.faq-section { background: var(--black); }
.faq-list {
  padding: 12px 24px;
  background: rgba(255,255,255,0.04);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 900;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: -8px; padding-bottom: 18px; }
.cta-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(248,223,154,0.18), transparent 30%),
    linear-gradient(110deg, #261134, #09060d 45%, #7a5520);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { max-width: 700px; }
.cta-inner p { max-width: 720px; margin-top: 14px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; min-width: 300px; }
.stats-band {
  background: linear-gradient(90deg, #6e4f18, var(--gold), #8325ce, #1a0d25);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
}
.stats-grid span {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 8px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.value-grid article { padding: 26px; }
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.38fr);
  gap: 36px;
}
.service-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(232,232,237,0.86);
}
.service-panel li { margin-bottom: 10px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.related-card a { display: block; padding: 24px; }
.related-card:hover { border-color: rgba(217,182,106,0.52); }
.site-footer {
  background: #050407;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.7fr 1fr;
  gap: 34px;
  padding: 58px 0;
}
.footer-brand img { width: 68px; height: 68px; object-fit: contain; }
.site-footer h2 {
  font-size: 0.84rem;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--gold-bright); }
.service-area-line { font-size: 0.86rem; margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px;
}
.footer-bottom p { margin: 0; font-size: 0.84rem; color: rgba(232,232,237,0.66); }

@media (max-width: 1060px) {
  .desktop-nav,
  .nav-actions { display: none; }
  .mobile-toggle { display: grid; }
  .mobile-panel.is-open { display: block; }
  .nav-wrap { height: 76px; }
  .brand img { width: 50px; height: 50px; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .service-grid,
  .process-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split,
  .split.reverse,
  .feature-grid,
  .quote-grid,
  .areas-layout,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse > :first-child { order: 0; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { justify-content: flex-start; min-width: 0; }
}

@media (max-width: 720px) {
  .home-hero .hero-media video { display: none; }
  .container,
  .narrow { width: min(100% - 28px, 1180px); }
  .hero { min-height: 760px; }
  .inner-hero { min-height: 470px; }
  .hero-content { padding: 122px 0 58px; }
  .inner-hero .hero-content { padding: 70px 0 58px; }
  h1 { font-size: 2.32rem; }
  h2 { font-size: 1.72rem; }
  h3 { font-size: 1.1rem; }
  .hero p { font-size: 1.02rem; }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .btn { width: 100%; }
  .strip-grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .feature-list,
  .review-grid,
  .stats-grid,
  .value-grid,
  .related-grid,
  .check-list.two-col {
    grid-template-columns: 1fr;
  }
  .strip-grid div,
  .strip-grid a { justify-content: flex-start; }
  .section { padding: 64px 0; }
  .image-stack,
  .portrait-media { min-height: 330px; height: 360px; }
  .gallery-grid figure { height: 230px; }
  .quote-embed { min-height: 1120px; padding: 6px; }
  .quote-embed iframe { height: 1090px !important; min-height: 1090px; }
  .map-card { min-height: 340px; }
  .map-card iframe { height: 340px; }
  .brand span { font-size: 0.95rem; max-width: 178px; }
}
