
:root {
  --black: #050504;
  --ink: #0a0907;
  --charcoal: #12100d;
  --panel: #191713;
  --panel-2: #211e18;
  --line: rgba(237, 199, 96, 0.2);
  --line-strong: rgba(237, 199, 96, 0.42);
  --gold: #d8b75d;
  --gold-bright: #f0cf78;
  --gold-dark: #9f7926;
  --text: #fff8e8;
  --muted: #cfc4aa;
  --soft: #8d8574;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}
.narrow { max-width: 850px; }
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 99999;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(5, 5, 4, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}
.nav-shell {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand span {
  white-space: nowrap;
  font-size: 14px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.desktop-nav > a,
.nav-dropdown > button {
  color: rgba(255, 248, 232, 0.9);
  padding: 12px 13px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a:hover,
.nav-dropdown button:hover { color: var(--gold-bright); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown .icon {
  width: 15px;
  height: 15px;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 290px;
  background: var(--white);
  color: #191713;
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #2b2518;
  font-weight: 600;
}
.nav-dropdown-menu a:hover {
  background: #f7efd8;
  color: var(--gold-dark);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background: rgba(5, 5, 4, 0.98);
  border-top: 1px solid var(--line);
  padding: 12px 16px 22px;
}
.mobile-menu a {
  display: block;
  padding: 12px 8px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-weight: 600;
}
.mobile-call {
  margin-top: 12px;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: var(--radius);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 10px 14px; font-size: 14px; }
.btn-primary {
  color: var(--black);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 36px rgba(216, 183, 93, 0.18);
}
.btn-outline-light {
  color: var(--text);
  border-color: rgba(255, 248, 232, 0.65);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-light:hover {
  background: var(--text);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--gold-bright);
  border-color: rgba(0,0,0,.25);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero { min-height: 72vh; }
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,4,.88), rgba(5,5,4,.52), rgba(5,5,4,.72)),
    linear-gradient(0deg, rgba(5,5,4,.45), rgba(5,5,4,.14));
}
.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 88px;
  max-width: 860px;
}
.page-hero-content { padding-top: 160px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(216, 183, 93, 0.12);
  color: var(--gold-bright);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow.light {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 20px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.4vw, 70px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--gold-bright);
  text-shadow:
    0 0 14px rgba(240, 207, 120, .36),
    0 0 34px rgba(216, 183, 93, .22),
    0 3px 12px rgba(0, 0, 0, .55);
}
.page-hero h1 { font-size: clamp(34px, 4.7vw, 60px); }
.home-hero p,
.page-hero p {
  max-width: 720px;
  color: rgba(255, 248, 232, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 54px;
}
.hero-stats div {
  min-width: 132px;
  border-left: 1px solid rgba(255, 248, 232, 0.22);
  padding-left: 18px;
}
.hero-stats strong {
  display: block;
  color: var(--gold-bright);
  font-size: 42px;
  line-height: 1;
}
.hero-stats span {
  color: rgba(255, 248, 232, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.info-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 850;
}
.info-bar-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 11px 0;
  font-size: 14px;
}
.info-bar span,
.info-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-bar .icon { width: 18px; height: 18px; }

.section { padding: 92px 0; }
.section-contrast {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark {
  background: #080705;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-quote {
  background: linear-gradient(180deg, var(--charcoal), var(--ink));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2,
.cta-band h2 {
  margin: 14px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 780px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 58px;
  align-items: center;
}
.feature-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #11100d;
  box-shadow: var(--shadow);
}
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240, 207, 120, .22);
  pointer-events: none;
}
.feature-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 32px;
}
.proof-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 750;
}
.proof-list .icon {
  color: var(--gold-bright);
  margin-top: 3px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: var(--panel-2);
}
.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 22px;
}
.service-card h3,
.feature-panel h3,
.contact-card h3,
.mini-service h3,
.process-step h3,
.timeline-item h3,
.notice-panel h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.service-card p,
.feature-panel p,
.mini-service p,
.process-step p,
.timeline-item p,
.contact-card p,
.notice-panel li {
  color: var(--muted);
}
.service-card span,
.mini-service span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 900;
  margin-top: 10px;
}

.feature-grid,
.process-grid,
.review-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-panel,
.process-step,
.review-card,
.mini-service,
.notice-panel,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.process-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-weight: 950;
  margin-bottom: 18px;
}
.review-card {
  display: grid;
  gap: 12px;
}
.review-stars {
  color: var(--gold-bright);
  font-size: 18px;
  letter-spacing: .08em;
}
.review-card h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0;
}
.review-card p {
  color: var(--muted);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-image {
  width: 100%;
  height: clamp(190px, 18vw, 245px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-grid span {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(216, 183, 93, .08);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  font-size: 14px;
}
.service-area-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}
.area-button-grid {
  margin-top: 26px;
}
.area-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(216, 183, 93, .08);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.area-button:hover,
.area-button.is-active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}
.map-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-panel h3 {
  margin: 0;
  padding: 20px 22px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--line);
}
.map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  background: #111;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: 34px;
  align-items: start;
}
.two-column h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--text);
}
.check-list .icon {
  color: var(--gold-bright);
  margin-top: 2px;
}
.notice-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.timeline-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.timeline-item > span {
  color: var(--gold-bright);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.faq-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  min-height: 70px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}
.faq-mark {
  color: var(--gold-bright);
  font-size: 24px;
  line-height: 1;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  padding: 0 24px;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer > p {
  padding-bottom: 22px;
}

.cta-band {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  color: var(--black);
  padding: 58px 0;
}
.cta-band .eyebrow.light {
  background: rgba(0,0,0,.13);
  color: var(--black);
  border-color: rgba(0,0,0,.18);
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.cta-band p {
  max-width: 680px;
  color: rgba(5,5,4,.82);
  font-size: 18px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  gap: 28px;
  align-items: start;
}
.quote-frame {
  min-height: 681px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.contact-card {
  position: sticky;
  top: 104px;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.contact-methods a,
.contact-methods div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.contact-methods span {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 183, 93, .12);
  color: var(--gold-bright);
  flex: 0 0 auto;
}
.contact-methods strong {
  overflow-wrap: anywhere;
}
.mini-area {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 22px;
}
.mini-area h3 { font-size: 17px; }

.site-footer {
  background: #050504;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 58px 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-bright);
  font-weight: 950;
}
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.site-footer h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.site-footer a,
.site-footer li,
.site-footer p {
  color: rgba(255, 248, 232, .72);
  font-size: 14px;
}
.site-footer a:hover { color: var(--gold-bright); }
.footer-contact li,
.footer-contact a {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.footer-contact .icon {
  width: 16px;
  height: 16px;
  color: var(--gold-bright);
  margin-top: 2px;
}
.footer-areas { margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 16px;
  text-align: center;
}
.footer-bottom p { margin: 0; }

@media (max-width: 1080px) {
  .desktop-nav, .nav-actions { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu.is-open { display: block; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .process-grid, .review-grid, .timeline { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-area-map-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav-shell { height: 74px; }
  .brand span { font-size: 13px; }
  .brand img { width: 46px; height: 46px; }
  .home-hero, .page-hero { min-height: 760px; }
  .home-hero-content, .page-hero-content { padding: 120px 0 60px; }
  h1, .page-hero h1 { font-size: 40px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats { gap: 14px; }
  .hero-stats div { min-width: 108px; padding-left: 12px; }
  .hero-stats strong { font-size: 34px; }
  .section { padding: 64px 0; }
  .split-grid, .two-column, .quote-grid, .service-area-map-grid { grid-template-columns: 1fr; gap: 34px; }
  .feature-photo { aspect-ratio: 4 / 3; min-height: 260px; }
  .service-grid, .gallery-grid, .related-grid { grid-template-columns: 1fr; }
  .gallery-image { height: 230px; }
  .map-panel iframe { height: 360px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .contact-card { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .home-hero, .page-hero { min-height: 720px; }
  h1, .page-hero h1 { font-size: 34px; }
  .home-hero p, .page-hero p { font-size: 16px; }
  .section-heading h2, .cta-band h2 { font-size: 28px; }
  .info-bar-inner { align-items: flex-start; }
  .service-card { grid-template-rows: 170px 1fr; }
}
