:root {
  --primary: #ffffff;
  --secondary: #8b1a1a;
  --accent: #c9a84c;
  --accent-dark: #a88935;
  --bg: #ffffff;
  --panel: #f8f5ef;
  --panel-2: #f2ede3;
  --text: #1a1a1a;
  --muted: #555555;
  --line: rgba(201, 168, 76, 0.4);
}

* { box-sizing: border-box; }

html,
body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Lato, "Open Sans", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  color: #1a1a1a;
}

.container { width: min(1160px, 92%); margin: 0 auto; }
.narrow { width: min(920px, 92%); margin: 0 auto; }

.top-call-bar { background: #1a1a1a; border-bottom: 1px solid var(--line); }
.top-call-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.45rem 0; }
.top-call-inner a { color: var(--accent); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; position: relative; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 0.65rem; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; }
.brand-top { display: block; color: var(--accent); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-main { display: block; font-size: 1.25rem; font-weight: 800; color: #1a1a1a; text-transform: none; }

.nav-links { display: flex; align-items: center; gap: 0.95rem; }
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #1a1a1a;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
  border-radius: 0.45rem;
  padding: 0.3rem 0.5rem;
  font-size: 1.3rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  padding: 0.72rem 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #151515; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-secondary:hover { background: rgba(201, 168, 76, 0.14); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 6rem;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.hero-kicker { color: var(--accent); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 700; letter-spacing: 0.08em; }
.hero-display { font-size: clamp(2rem, 7vw, 5rem); line-height: 1.04; margin-bottom: 0.55rem; }
.hero-title { font-size: clamp(1.15rem, 2.3vw, 1.7rem); max-width: 850px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.hero-subhead { color: #eef1fb; font-weight: 700; margin-bottom: 1rem; }
.eyebrow { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.08em; font-weight: 700; text-transform: uppercase; margin-bottom: 0.55rem; }
.sub-hero { min-height: 60vh; }

.hero-stack {
  text-align: center;
  margin-bottom: 1.2rem;
}

.hero-display-big {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  margin: 0;
  text-align: center;
}

.hero-h1 {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.hero-subhead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.cta-row {
  justify-content: center;
}

.section { padding: 3.2rem 0; background: var(--bg); }
.section.alt { background: var(--panel); }
.section-title { font-size: clamp(1.3rem, 2.4vw, 2rem); letter-spacing: 0.04em; display: inline-block; }
.section-title::after { content: ""; display: block; width: 74px; height: 3px; background: var(--accent); margin-top: 0.4rem; }
.lead { color: var(--muted); }

.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split-two-one { display: grid; grid-template-columns: 2fr 1fr; gap: 1.2rem; align-items: start; }
.split-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: start; }

.card,
.service-card,
.price-card,
.contact-card,
.form-card,
.feature-card,
.reason-card,
.detail-card,
.quote-card,
.tab-panel {
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0.85rem;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.service-card img,
.gallery-grid img,
.detail-image {
  width: 100%;
  border-radius: 0.6rem;
  object-fit: cover;
}

.service-card img { height: 190px; margin-bottom: 0.75rem; }
.service-card p,
.reason-card p,
.detail-card li,
.tab-panel p,
.quote-card p,
.timeline li,
.accordion-content,
.contact-card li { color: var(--muted); }

.price { color: var(--accent); font-size: 1.65rem; font-weight: 900; margin: 0.2rem 0 0.65rem; }
.price-card { position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); }
.price-card ul { margin: 0 0 1rem; padding-left: 1rem; color: var(--muted); }
.price-card.featured { border: 2px solid #c9a84c; background: linear-gradient(180deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03)); }
.badge { position: absolute; top: 0.7rem; right: 0.7rem; background: var(--accent); color: #151515; font-size: 0.68rem; border-radius: 999px; padding: 0.2rem 0.55rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 1.3rem; margin-bottom: 0.55rem; color: #555555; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.check-list.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.35rem 1rem; }
.offer-list { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--muted); }
.offer-list li { color: #555555; }

.tabs { border: 1px solid rgba(201, 168, 76, 0.3); border-radius: 0.85rem; overflow: hidden; }
.tab-buttons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: #f8f5ef; }
.tab-buttons.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tab-buttons.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tab-btn {
  border: none;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #1a1a1a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 0.8rem;
  cursor: pointer;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: rgba(201, 168, 76, 0.15); color: #a88935; }
.tab-panel { display: none; border: none; border-top: 1px solid rgba(201, 168, 76, 0.3); border-radius: 0; background: #ffffff; }
.tab-panel.active { display: block; }

.quote-form { display: grid; gap: 0.9rem; background: #f8f5ef; border: 1px solid rgba(201, 168, 76, 0.3); border-radius: 0.9rem; padding: 1.05rem; }
.form-grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.span-2 { grid-column: span 2; }
label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.3rem; }
input,
textarea {
  width: 100%;
  font: inherit;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #ccbbaa;
  border-radius: 0.48rem;
  padding: 0.65rem 0.72rem;
}
input:focus,
textarea:focus { outline: 2px solid rgba(201, 168, 76, 0.2); border-color: var(--accent); }
select {
  width: 100%;
  font: inherit;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #ccbbaa;
  border-radius: 0.48rem;
  padding: 0.65rem 0.72rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
select:focus {
  outline: 2px solid rgba(201, 168, 76, 0.2);
  border-color: #c9a84c;
}
select option { background: #ffffff; color: #1a1a1a; }
#service-banner {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid #c9a84c;
  color: #a88935;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.gallery-grid a { display: block; overflow: hidden; border-radius: 0.5rem; }
.gallery-grid img { height: 220px; transition: transform 0.3s ease; }
.gallery-grid img:hover { transform: scale(1.03); }

.reviews { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quote-card { border-left: 4px solid var(--accent); }
.stars { color: var(--accent); letter-spacing: 0.08em; margin: 0 0 0.5rem; font-weight: 900; }
.quote-card cite { color: var(--accent); font-style: normal; font-weight: 700; display: block; margin-top: 0.7rem; }

.footer-cta-band { background: #6b1414; padding: 2.7rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-cta-band p { color: #f3debc; }
.footer-cta-band h2 { margin-bottom: 0.35rem; }
.footer-cta-band h3 { margin-bottom: 0.55rem; }
.footer-cta { background: linear-gradient(120deg, #1a1a1a, #2a1219); }
.site-footer { background: #1a1a1a; padding-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.site-footer h4 { font-size: 1rem; }
.site-footer p,
.site-footer a { color: #d7dae3; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.copyright { border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 1rem 0 0; padding: 0.9rem 0 1.2rem; text-align: center; color: var(--accent); font-size: 0.92rem; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0 0.3rem; }
.pill { background: rgba(201, 168, 76, 0.17); border: 1px solid var(--line); color: var(--accent); border-radius: 999px; padding: 0.35rem 0.7rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }

.breadcrumbs { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.4rem; }

.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.timeline li { background: var(--panel-2); border: 1px solid var(--line); border-radius: 0.7rem; padding: 0.8rem 1rem; }

.accordion-item { border: 1px solid var(--line); border-radius: 0.7rem; padding: 0.8rem 1rem; background: var(--panel-2); margin-bottom: 0.7rem; }
.accordion-title { display: flex; align-items: center; gap: 0.65rem; font-weight: 900; color: var(--text); }
.num-circle {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #151515;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.accordion-content { margin: 0.45rem 0 0; }

.center { text-align: center; }
.full-width { width: 100%; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.6) 20%,
    #c9a84c 50%,
    rgba(201, 168, 76, 0.6) 80%,
    transparent
  );
  margin: 0;
  border: none;
}

.yelp-bar {
  background: #f8f5ef;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 1.4rem 0;
}

.yelp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.yelp-stars {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.star-row {
  color: #c9a84c;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.yelp-label {
  font-weight: 900;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.yelp-logo {
  font-size: 1.6rem;
}

.yelp-quote {
  font-style: italic;
  color: #555;
  max-width: 500px;
  margin: 0;
  font-size: 0.95rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0.85rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.step-card p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.kathie-quote {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: #f8f5ef;
  border-left: 4px solid #c9a84c;
  border-radius: 0 0.85rem 0.85rem 0;
}

.kathie-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c9a84c;
  flex-shrink: 0;
}

.kathie-text blockquote {
  margin: 0 0 0.4rem;
  font-style: italic;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
  border: none;
  padding: 0;
  background: none;
}

.kathie-text cite {
  font-style: normal;
  font-weight: 700;
  color: #c9a84c;
  font-size: 0.88rem;
}

.service-mini-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-mini-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

.service-mini-link:hover h3,
.service-mini-link:hover h4 {
  color: #c9a84c;
  transition: color 0.2s ease;
}

.grid.two .service-mini-link {
  align-self: stretch;
}

.service-mini-link > div,
.service-mini-link > article,
.service-mini-link > li {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.float-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: #c9a84c;
  color: #1a1a1a;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

.hero,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero p,
.footer-cta,
.footer-cta h1,
.footer-cta h2,
.footer-cta h3,
.footer-cta h4,
.footer-cta p,
.footer-cta-band,
.footer-cta-band h1,
.footer-cta-band h2,
.footer-cta-band h3,
.footer-cta-band h4,
.site-footer,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4 { color: #ffffff; }

.price-card ul li { color: #555555; }

@media (max-width: 980px) {
  .hide-mobile { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 4%;
    gap: 0.7rem;
  }
  .nav-links.open { display: flex; }
  .grid.two,
  .grid.three,
  .split-two-one,
  .split-equal,
  .footer-grid,
  .reviews,
  .check-list.two-col { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .tab-buttons,
  .tab-buttons.four,
  .tab-buttons.two { grid-template-columns: 1fr; }
  .tab-btn { border-right: none; border-bottom: 1px solid var(--line); text-align: left; }
  .tab-btn:last-child { border-bottom: none; }
  .hero-display { font-size: clamp(1.6rem, 9vw, 3rem); }
  .steps-grid { grid-template-columns: 1fr; }
  .float-call { display: inline-flex; align-items: center; gap: 0.4rem; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
