:root {
  --black: #080808;
  --ink: #141414;
  --charcoal: #1d1c19;
  --muted: #5d5b55;
  --line: #ded8cb;
  --soft: #f7f5ef;
  --white: #ffffff;
  --gold: #c9a24a;
  --gold-dark: #9f7a26;
  --gold-light: #ead79b;
  --shadow: 0 18px 45px rgba(8, 8, 8, 0.14);
  --container: min(1180px, calc(100vw - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Optima, Avenir Next, Segoe UI, Arial, sans-serif;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-family: Bodoni 72, Didot, Baskerville, Georgia, Times New Roman, serif;
  color: var(--ink);
}
h1 { font-size: 3.75rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.2rem; }
svg { width: 1.05em; height: 1.05em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 10000; background: var(--gold); color: var(--black); padding: .75rem 1rem; border-radius: 4px; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(8, 8, 8, .94);
  border-bottom-color: rgba(201, 162, 74, .35);
  box-shadow: 0 12px 35px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand-logo {
  width: auto;
  height: 68px;
  max-width: 240px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(201,162,74,.75);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.desktop-nav { display: flex; align-items: center; gap: .25rem; color: rgba(255,255,255,.86); font-size: .94rem; font-weight: 700; }
.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: .75rem .8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .25rem;
}
.desktop-nav a:hover,
.nav-dropdown > button:hover,
.desktop-nav a[aria-current="page"] { color: var(--gold-light); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 290px;
  padding: .65rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(201,162,74,.35);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.dropdown-menu a { display: block; padding: .72rem .8rem; color: var(--ink); border-radius: 4px; font-size: .9rem; }
.dropdown-menu a:hover { background: var(--soft); color: var(--gold-dark); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-actions { display: flex; align-items: center; gap: .75rem; color: var(--white); }
.nav-phone { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.9); font-weight: 800; white-space: nowrap; }
.menu-toggle { display: none; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); color: var(--white); width: 42px; height: 42px; place-items: center; border-radius: 4px; }
.mobile-panel { display: none; background: var(--black); border-top: 1px solid rgba(201,162,74,.25); }
.mobile-nav { width: var(--container); margin-inline: auto; display: grid; padding: .8rem 0 1.2rem; }
.mobile-nav a, .mobile-nav span { color: var(--white); padding: .72rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 750; }
.mobile-nav span { color: var(--gold-light); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .9rem 1.2rem;
  border-radius: 4px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: .7rem .9rem; font-size: .88rem; }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.76); background: rgba(255,255,255,.04); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.button-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.home-hero {
  min-height: 88svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.58) 45%, rgba(0,0,0,.5)); }
.home-hero-content,
.page-hero-content { position: relative; z-index: 2; color: var(--white); padding: 5rem 0 1.8rem; max-width: 920px; }
.home-hero-content { text-align: center; margin-inline: auto; }
.home-hero-content h1,
.page-hero-content h1 { color: var(--white); text-wrap: balance; }
.home-hero-content p,
.page-hero-content p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.home-hero-content p { margin-inline: auto; }
.home-hero-content .button-row { justify-content: center; }
.hero-logo {
  width: 202px;
  margin: 0 auto 1.2rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.eyebrow,
.section-heading span,
.cta-inner span {
  display: inline-block;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .13em;
  font-weight: 900;
  margin-bottom: .8rem;
  border: 1px solid rgba(201,162,74,.35);
  border-radius: 999px;
  padding: .38rem .75rem;
  background: rgba(201,162,74,.1);
}
.home-hero .eyebrow,
.cta-inner span,
.page-hero .breadcrumbs { color: var(--gold-light); }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin: 1.35rem auto 0;
  border: 1px solid rgba(201,162,74,.36);
  background: rgba(201,162,74,.36);
}
.hero-metrics div { padding: .78rem; background: rgba(8,8,8,.55); }
.hero-metrics strong { display: block; color: var(--white); font-family: Georgia, serif; font-size: 1.45rem; }
.hero-metrics span { display: block; color: rgba(255,255,255,.72); font-size: .76rem; text-transform: uppercase; font-weight: 850; letter-spacing: .08em; }
.info-bar { background: var(--gold); color: var(--black); }
.info-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 1rem; align-items: center; padding: .9rem 0; font-weight: 850; font-size: .92rem; }
.info-grid div, .info-grid a { display: flex; align-items: center; gap: .5rem; }
.section { padding: 6rem 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark li { color: rgba(255,255,255,.74); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split.reverse { grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr); }
.split.reverse > :first-child { order: 2; }
.section-heading { margin-bottom: 1.7rem; max-width: 760px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p { font-size: 1.05rem; margin-top: 1rem; }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .75rem; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--ink); font-weight: 700; }
.check-list svg { color: var(--gold-dark); margin-top: .2rem; }
.gold-list svg { color: var(--gold); }
.image-stack { position: relative; min-height: 520px; }
.primary-photo,
.secondary-photo,
.tall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.image-stack .primary-photo { height: 470px; box-shadow: var(--shadow); }
.image-stack .secondary-photo {
  position: absolute;
  width: 52%;
  height: 220px;
  right: -5%;
  bottom: 0;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.tall-photo { height: 610px; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card { background: var(--white); border: 1px solid rgba(201,162,74,.22); border-radius: 8px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.08); transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-image { width: 100%; height: 205px; object-fit: cover; }
.service-card-body { padding: 1.15rem; }
.service-card h3 { font-size: 1.12rem; }
.service-card p { font-size: .92rem; margin: .65rem 0 1rem; }
.service-card span { display: inline-flex; align-items: center; gap: .35rem; color: var(--gold-dark); font-weight: 900; font-size: .88rem; }
.section-dark .service-card { background: #111; border-color: rgba(201,162,74,.38); box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.section-dark .service-card h3 { color: var(--white); }
.section-dark .service-card p { color: rgba(255,255,255,.72); }
.section-dark .service-card span { color: var(--gold-light); }
.section-map { background: linear-gradient(135deg, #070707, #18130a); color: var(--white); border-top: 1px solid rgba(201,162,74,.32); border-bottom: 1px solid rgba(201,162,74,.32); }
.section-map h2, .section-map h3 { color: var(--white); }
.section-map p { color: rgba(255,255,255,.76); }
.section-map .section-heading span { color: var(--gold-light); background: rgba(201,162,74,.14); }
.area-map-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 1.4rem; align-items: stretch; }
.area-button-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; max-height: 590px; overflow: auto; padding-right: .25rem; }
.area-button {
  text-align: left;
  border: 1px solid rgba(201,162,74,.28);
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: .9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.area-button:hover,
.area-button.is-active { background: rgba(201,162,74,.18); border-color: rgba(201,162,74,.75); transform: translateY(-2px); }
.area-button strong { display: block; font-size: .98rem; margin-bottom: .35rem; }
.area-button span { display: block; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.45; }
.map-panel { min-height: 590px; background: var(--white); border: 1px solid rgba(201,162,74,.45); border-radius: 8px; overflow: hidden; box-shadow: 0 24px 55px rgba(0,0,0,.32); display: grid; grid-template-rows: auto 1fr; }
.map-panel-copy { padding: 1.25rem; background: var(--black); border-bottom: 1px solid rgba(201,162,74,.35); }
.map-panel-copy span { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
.map-panel-copy h3 { margin-top: .35rem; color: var(--white); }
.map-panel-copy p { margin: .55rem 0 0; color: rgba(255,255,255,.76); }
.map-panel iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.process-grid article,
.feature-grid article,
.two-column-lists > div,
.contact-panel,
.service-area-panel,
.contact-cards a,
.contact-cards div {
  border-radius: 8px;
  border: 1px solid rgba(201,162,74,.28);
  background: var(--white);
  padding: 1.35rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
}
.section-dark .process-grid article,
.section-dark .feature-grid article { background: rgba(255,255,255,.06); border-color: rgba(201,162,74,.28); box-shadow: none; }
.process-grid span { display: inline-block; color: var(--gold); font-family: Georgia, serif; font-size: 1.8rem; font-weight: 900; margin-bottom: .8rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.feature-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid svg { color: var(--gold); width: 1.8rem; height: 1.8rem; margin-bottom: .9rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 8px; background: var(--black); min-height: 250px; }
.gallery-grid img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; transition: transform .25s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: var(--white); font-size: .78rem; font-weight: 800; }
.small-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-wrap { max-width: 900px; }
.faq-list { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--white); }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem; text-align: left; border: 0; background: var(--white); color: var(--ink); font-weight: 900; font-size: 1rem; cursor: pointer; }
.faq-item button span { color: var(--gold-dark); transition: transform .18s ease; }
.faq-item.is-open button span { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .2s ease; }
.faq-answer p { overflow: hidden; padding: 0 1.2rem; margin: 0; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 1.2rem; }
.cta-band { background: linear-gradient(135deg, var(--black), #1a1306); color: var(--white); padding: 4rem 0; border-top: 1px solid rgba(201,162,74,.5); border-bottom: 1px solid rgba(201,162,74,.5); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,.76); max-width: 760px; }
.quote-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr); gap: 1.2rem; align-items: start; }
.quote-embed { height: 760px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.contact-panel { position: sticky; top: 100px; }
.contact-panel h3 { margin-bottom: .6rem; }
.contact-panel a, .contact-panel > div:not(.mini-service-list) { display: flex; align-items: flex-start; gap: .7rem; padding: .9rem 0; border-top: 1px solid var(--line); color: var(--ink); font-weight: 800; }
.contact-panel svg { color: var(--gold-dark); margin-top: .18rem; }
.mini-service-list { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .5rem; }
.mini-service-list strong { flex-basis: 100%; }
.mini-service-list span,
.area-tags span { border: 1px solid rgba(201,162,74,.45); color: var(--gold-dark); background: rgba(201,162,74,.1); padding: .4rem .55rem; border-radius: 4px; font-size: .82rem; font-weight: 850; }
.page-hero { min-height: 440px; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--black); }
.page-hero-content { padding-top: 8rem; padding-bottom: 4rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; margin-bottom: 1rem; font-size: .85rem; font-weight: 850; }
.breadcrumbs a { color: rgba(255,255,255,.78); }
.breadcrumbs a:hover { color: var(--gold-light); }
.two-column-lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.two-column-lists h2 { font-size: 2.05rem; }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.contact-cards a, .contact-cards div { display: grid; gap: .35rem; color: var(--ink); }
.contact-cards svg { color: var(--gold-dark); width: 1.55rem; height: 1.55rem; }
.contact-cards span { color: var(--muted); font-size: .94rem; word-break: break-word; }
.service-area-panel { align-self: stretch; background: var(--black); color: var(--white); }
.service-area-panel h2 { color: var(--white); font-size: 2rem; }
.service-area-panel p { color: rgba(255,255,255,.72); }
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.site-footer {
  background: #070707;
  color: var(--white);
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr 1fr;
  gap: 2.2rem;
  padding: 4rem 0 3rem;
}
.footer-logo img {
  width: 210px;
  background: var(--white);
  border: 1px solid rgba(201,162,74,.75);
}
.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255,255,255,.74); }
.footer-brand p { margin-top: 1rem; font-size: .94rem; }
.footer-tagline { color: var(--gold-light) !important; font-weight: 800; }
.footer-call { display: inline-flex; align-items: center; gap: .45rem; margin-top: .5rem; color: var(--gold-light) !important; font-weight: 900; }
.site-footer h3,
.site-footer h4 {
  margin: 0 0 .95rem;
  color: rgba(255,255,255,.78);
  font-family: Optima, Avenir Next, Segoe UI, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.site-footer h4 { margin-top: 1.5rem; font-size: .72rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .72rem; }
.site-footer a:hover { color: var(--white); }
.contact-list a,
.contact-list li { display: flex; align-items: flex-start; gap: .45rem; }
.contact-list svg { color: var(--gold-light); margin-top: .15rem; }
.service-areas { font-size: .88rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.2rem 0;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.62); }
@media (max-width: 1100px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: grid; }
  .site-header.menu-open .mobile-panel { display: block; }
  .services-grid, .feature-grid, .process-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-grid, .split, .split.reverse, .two-column-lists, .cta-inner, .area-map-grid, .footer-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .contact-panel { position: static; }
}
@media (max-width: 720px) {
  :root { --container: min(100vw - 28px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand-logo { height: 50px; max-width: 176px; }
  .home-hero-content, .page-hero-content { padding-top: 6.5rem; }
  .hero-logo { width: 190px; }
  .home-hero { min-height: 88svh; }
  .button-row { width: 100%; }
  .button-row .btn { width: 100%; }
  .hero-metrics { display: none; }
  .info-grid, .services-grid, .feature-grid, .feature-grid.compact, .process-grid, .gallery-grid, .related-grid, .contact-cards, .area-button-grid { grid-template-columns: 1fr; }
  .info-grid { gap: .45rem; }
  .section { padding: 3.5rem 0; }
  .image-stack { min-height: auto; }
  .image-stack .primary-photo { height: 360px; }
  .image-stack .secondary-photo { position: relative; width: 82%; right: auto; margin: -80px auto 0; height: 190px; }
  .tall-photo { height: 390px; }
  .quote-embed { height: 720px; }
  .map-panel { min-height: 520px; }
  .map-panel iframe { min-height: 360px; }
  .gallery-grid figure, .gallery-grid img { min-height: 230px; }
  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.2rem; }
  .two-column-lists h2 { font-size: 1.75rem; }
}
