:root {
  --black: #080706;
  --espresso: #2b170d;
  --brown: #5a351f;
  --brown-2: #7b5130;
  --gold: #c59a4a;
  --gold-2: #ead6a6;
  --ivory: #fbf7ef;
  --cream: #f3eadb;
  --white: #ffffff;
  --muted: #6f6258;
  --line: rgba(43, 23, 13, 0.13);
  --shadow: 0 18px 50px rgba(43, 23, 13, 0.15);
  --radius: 8px;
  --heading-font: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--espresso);
  background: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; }
img { display: block; height: auto; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--espresso); text-wrap: balance; }
h1, h2 { font-family: var(--heading-font); font-weight: 700; }
h1 { font-size: 4.15rem; max-width: 900px; }
h2 { font-size: 3rem; }
h3 { font-size: 1.18rem; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 99999; background: var(--gold); padding: .75rem 1rem; border-radius: 6px; color: var(--black); font-weight: 700; }
.skip-link:focus { left: 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::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(760px, 82vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(234,216,166,.78), rgba(197,154,74,.9), rgba(234,216,166,.78), transparent);
  box-shadow: 0 0 22px rgba(197,154,74,.5);
  opacity: .42;
  pointer-events: none;
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(8, 7, 6, 0.94);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 34px rgba(197,154,74,.12);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--white); font-weight: 800; min-width: 0; }
.brand img { width: 72px; height: auto; background: rgba(255,255,255,.93); border-radius: 6px; padding: 5px; box-shadow: 0 0 22px rgba(234,216,166,.28); }
.brand span { max-width: 220px; line-height: 1.1; }
.main-nav { display: flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.9); font-size: .93rem; font-weight: 700; }
.main-nav > a, .nav-dropdown > button { padding: .7rem .8rem; border-radius: 6px; transition: color .2s, background .2s; }
.main-nav > a:hover, .nav-dropdown > button:hover { color: var(--white); background: rgba(255,255,255,.09); }
.nav-phone { white-space: nowrap; }
.nav-dropdown { position: relative; }
.nav-dropdown > button { border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 285px;
  padding: .55rem;
  background: var(--white);
  color: var(--espresso);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}
.dropdown-menu a { display: block; padding: .7rem .75rem; border-radius: 6px; color: var(--brown); }
.dropdown-menu a:hover { background: var(--ivory); color: var(--black); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); border-radius: 6px; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 5px auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.25rem;
  border-radius: 8px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .2s, background .2s, color .2s, border .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: .55rem .85rem; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-2); }
.btn-dark { background: var(--espresso); color: var(--white); }
.btn-light { background: var(--white); color: var(--espresso); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.75); }
.btn-outline-light:hover { background: var(--white); color: var(--espresso); }
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.compact-hero { min-height: 68svh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--black); }
.hero-media { width: 100%; height: 100%; object-fit: cover; object-position: center; }
video.hero-media { object-position: 18% center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,7,6,.84), rgba(43,23,13,.62), rgba(8,7,6,.32)); }
.hero-content { position: relative; z-index: 1; padding: 9rem 0 5rem; }
.hero h1, .hero p { color: var(--white); }
.hero h1 { text-shadow: 0 3px 20px rgba(0,0,0,.42), 0 0 30px rgba(197,154,74,.24); }
.hero p { max-width: 740px; margin-top: 1.25rem; color: rgba(255,255,255,.86); font-size: 1.22rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.eyebrow { display: inline-flex; margin-bottom: .85rem; padding: .45rem .8rem; border-radius: 999px; background: rgba(197,154,74,.13); color: var(--brown); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0; box-shadow: 0 0 26px rgba(197,154,74,.16); }
.eyebrow.light { background: rgba(255,255,255,.13); color: var(--gold-2); }
.info-strip { background: var(--gold); color: var(--black); font-weight: 800; }
.info-strip-inner { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; text-align: center; font-size: .94rem; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-heading { margin-bottom: 2rem; max-width: 760px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { text-shadow: 0 0 24px rgba(197,154,74,.2); }
.section-heading h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: .85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
  box-shadow: 0 0 18px rgba(197,154,74,.45);
}
.section-heading.center h2::after { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), transparent); }
.section-heading p { margin-top: 1rem; font-size: 1.08rem; }
.split { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr); gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.split.reverse { grid-template-columns: minmax(300px, .98fr) minmax(0, 1.02fr); }
.split.reverse > :first-child { order: 1; }
.check-list, .feature-list, .included-list { display: grid; gap: .9rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.check-list p, .feature-list li, .included-list li {
  margin: 0;
  padding: 1rem 1rem 1rem 2.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 22px rgba(43,23,13,.06);
}
.check-list p::before, .feature-list li::before, .included-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.22rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.image-stack { position: relative; min-height: 460px; }
.image-stack img, .portrait-card img, .service-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.image-stack img:first-child { width: min(78%, 430px); margin-left: auto; }
.image-stack img:nth-child(2) { width: min(70%, 500px); position: absolute; bottom: 0; left: 0; border: 8px solid var(--ivory); }
.image-stack.single { min-height: 0; }
.image-stack.single img { width: 100%; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(43,23,13,.08); }
.service-card a { display: grid; height: 100%; }
.service-card img { width: 100%; height: 210px; object-fit: cover; }
.service-card-body { padding: 1.15rem; display: grid; gap: .7rem; }
.service-card-body p { font-size: .94rem; margin: 0; }
.service-card-body span { color: var(--brown); font-weight: 900; }
.values-section, .appointment-section, .gallery-section, .included-section.warm, .process-section.warm, .home-map-section { background: var(--cream); }
.values-section.warm, .process-section { background: var(--ivory); }
.service-local-section { background: linear-gradient(135deg, var(--ivory), #fffaf1); }
.local-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 12px 34px rgba(43,23,13,.08), 0 0 28px rgba(197,154,74,.1);
}
.local-copy p:last-child { margin-bottom: 0; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-grid article, .process-grid article, .contact-card, .form-shell, .review-shell, .map-shell, .portrait-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(43,23,13,.07);
}
.value-grid h3, .process-grid h3, .contact-card h3 { margin-bottom: .65rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.process-grid span { display: inline-flex; margin-bottom: 1rem; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--espresso); color: var(--gold-2); font-weight: 900; }
.photo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .75rem; }
.photo-grid img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.review-shell { padding: 1rem; overflow: hidden; }
.appointment-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 1.4rem; align-items: start; }
.form-shell { padding: .75rem; min-height: 760px; }
.calendar-shell { min-height: 1120px; }
.calendar-shell iframe { display: block; min-height: 1100px; }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .95rem; }
.contact-list.large { font-size: 1.04rem; margin-bottom: 1.5rem; }
.contact-list a { color: var(--brown); font-weight: 800; }
.faq-section { background: var(--ivory); }
.faq-list { background: var(--white); border-radius: 8px; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 12px 30px rgba(43,23,13,.07); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary { cursor: pointer; padding: 1.15rem 1.25rem; font-weight: 900; color: var(--espresso); }
.faq-item p { padding: 0 1.25rem 1.2rem; }
.cta-band { background: linear-gradient(135deg, var(--espresso), var(--black)); color: var(--white); padding: 3.2rem 0; }
.cta-inner { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band p { max-width: 700px; color: rgba(255,255,255,.78); margin-top: .65rem; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.related-grid a { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; font-weight: 900; color: var(--espresso); box-shadow: 0 12px 30px rgba(43,23,13,.07); }
.related-grid img { width: 100%; height: 180px; object-fit: cover; }
.related-grid span { display: block; padding: 1rem; }
.map-shell { padding: .6rem; min-height: 420px; }
.glow-shell { box-shadow: 0 12px 30px rgba(43,23,13,.07), 0 0 36px rgba(197,154,74,.18); }
.map-shell iframe { width: 100%; min-height: 420px; border-radius: 6px; }
.site-footer { background: var(--black); color: rgba(255,255,255,.78); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand img { width: 118px; background: var(--white); border-radius: 6px; padding: 6px; }
.site-footer h3 { color: var(--gold-2); font-size: .98rem; margin-bottom: 1rem; }
.site-footer p { color: rgba(255,255,255,.72); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; font-size: .94rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding: 1.25rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 1080px) {
  .service-grid, .value-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 84px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: 1rem;
    background: rgba(8,7,6,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-header.is-open .main-nav { display: flex; }
  .nav-dropdown > button { width: 100%; text-align: left; }
  .dropdown-menu { position: static; min-width: 100%; opacity: 1; visibility: visible; transform: none; margin-top: .25rem; display: none; }
  .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown:hover .dropdown-menu { display: block; }
  .split, .split.reverse, .appointment-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .hero { min-height: 82svh; }
  .compact-hero { min-height: 58svh; }
  .hero-content { padding: 7.5rem 0 4rem; }
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.45rem; }
  .hero p { font-size: 1.1rem; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .brand span { display: none; }
  .brand img { width: 68px; }
  .nav-wrap { min-height: 76px; }
  .main-nav { inset: 76px 14px auto 14px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .info-strip-inner { align-items: center; flex-direction: column; gap: .35rem; padding: .8rem 0; }
  .service-grid, .value-grid, .process-grid, .related-grid, .footer-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .image-stack { min-height: auto; display: grid; gap: 1rem; }
  .image-stack img:first-child, .image-stack img:nth-child(2) { width: 100%; position: static; border: 0; }
  .service-card img { height: 230px; }
  .form-shell { min-height: 780px; }
  h1 { font-size: 2.62rem; }
  h2 { font-size: 2.08rem; }
}
