/* ============================================
   Prestige BBQ and Oven Cleaning — Static Rebuild
   ============================================ */

:root {
  color-scheme: light;
  --navy: #22384A;
  --navy-deep: #16232E;
  --steel: #35618F;
  --steel-light: #EAF1F7;
  --accent: #E07B39;
  --accent-deep: #C15F22;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --text: #2B2B28;
  --text-light: #6B6D6A;
  --border: #E4E1D8;

  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 10px;
  --shadow: 0 4px 20px rgba(22, 35, 46, 0.08);
  --shadow-lg: 0 12px 40px rgba(22, 35, 46, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--accent-deep); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; }
.section-alt { background: var(--cream); }
.section-tight-bottom { padding-bottom: 32px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-deep); color: var(--white); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo img { height: 58px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}
.main-nav a:hover { color: var(--accent-deep); }
.main-nav .btn-primary { color: var(--white); padding: 10px 22px; font-size: 0.9rem; }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 190px;
  list-style: none;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 8px 12px; border-radius: 6px; }
.dropdown li a:hover { background: var(--steel-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 4px; }
  .main-nav ul li { width: 100%; }
  .main-nav a { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; box-shadow: none; display: block; padding-left: 12px; }
  .has-dropdown:hover .dropdown { display: block; }
}

/* ============ Hero / Slider ============ */
.hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 64px 0;
}
.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-slider {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  max-width: 520px;
}
.hero-text h1 {
  color: var(--white);
  font-style: italic;
}
.hero-text .sub {
  color: var(--steel-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hero-text p { color: var(--steel-light); }
@media (max-width: 800px) {
  .hero-columns { grid-template-columns: 1fr; }
  .hero-text { max-width: none; text-align: center; }
  .hero-slider { height: 320px; }
}

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 56px 0 40px;
  color: var(--white);
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--steel-light);
  margin-bottom: 10px;
}
.page-hero .breadcrumb a { color: var(--steel-light); }
.page-hero h1 { color: var(--white); margin: 0; }
.page-hero p a,
.hero-text p a {
  color: var(--white);
  text-decoration: underline;
}

/* ============ Service cards ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
/* Two-up variant (e.g. drop-off page): 2 columns on desktop, 1 on mobile */
.services-grid.services-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.img-placeholder {
  height: 220px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  padding: 12px;
}
.service-card .img-placeholder { margin-bottom: 16px; }
.photo-strip .img-placeholder { height: 160px; }
.service-card a.read-more {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============ Feature list (checkmarks) ============ */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.risk-list { list-style: none; margin: 24px 0 1em; padding: 0; }
.risk-list li { position: relative; padding-left: 32px; margin-bottom: 16px; }
.risk-list li strong { color: var(--navy); }
.risk-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 18px;
  text-align: center;
}

/* ============ Read more / show less ============ */
.read-more-btn {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  cursor: pointer;
}
.read-more-btn:hover { color: var(--accent-deep); }
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* ============ Two column ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col > * { min-width: 0; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.photo-strip img { height: 160px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ============ Pull quote ============ */
.pull-quote {
  border-left: 4px solid var(--accent);
  background: var(--steel-light);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.pull-quote p { margin: 0; font-style: italic; color: var(--navy); font-size: 1.05rem; }

/* ============ Brand logos ============ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 700px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
.brand-tile {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.2s ease;
}
.brand-tile:hover { transform: translateY(-4px); }
.brand-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-tile-empty { color: var(--text-light); font-size: 0.85rem; }

.brand-grid-awards { margin-top: 5px; }
.brand-grid-awards .brand-tile { height: 180px; padding: 8px; }

/* ============ Stat tiles ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.stat-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-tile .stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.stat-tile .stat-label {
  font-size: 0.92rem;
  color: var(--text-light);
}
.stat-tile.stat-tile-credential .stat-number { font-size: 1.15rem; line-height: 1.35; }

.pricing-note {
  background: var(--steel-light);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.service-area-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.service-area-columns li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}

.surcharge-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.surcharge-table td { padding: 10px 4px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.surcharge-table td:last-child { text-align: right; font-weight: 600; color: var(--accent-deep); font-family: var(--font-display); }

/* ============ Results gallery ============ */
.results-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.results-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.results-tab.active, .results-tab:hover { border-color: var(--accent); color: var(--accent-deep); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ba-pair {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-pair .ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pair .ba-images div { position: relative; }
.ba-pair .ba-images img { height: 200px; width: 100%; object-fit: cover; }
.ba-pair .ba-images span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(22,35,46,0.75);
  color: var(--white);
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.ba-caption { padding: 12px 16px; font-size: 0.9rem; color: var(--text-light); }
.ba-pair .ba-images .img-placeholder.ba-placeholder { height: 200px; border-radius: 0; padding: 12px; }
.ba-caption-placeholder { font-style: italic; opacity: 0.75; }

.is-hidden { display: none !important; }

.load-more-wrap { text-align: center; margin-top: 28px; }
.load-more-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.load-more-btn:hover { border-color: var(--accent); color: var(--accent-deep); }

.results-group { margin-bottom: 56px; }
.results-group h2 { margin-bottom: 24px; }
.results-group img { cursor: zoom-in; }

/* ============ Project card (multi-photo collections) ============ */
.project-card { cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-badge {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--accent-deep);
}
.project-gallery { display: none; }

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(22, 35, 46, 0.92);
  padding: 48px 24px;
  z-index: 1000;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: none;
  background: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 12px;
}
.lightbox-close:hover { color: var(--accent); }

.lightbox-label {
  position: absolute;
  top: 18px;
  left: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

@media (max-width: 700px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 2rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ============ Modal popup (disclaimers, etc.) ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(22, 35, 46, 0.72);
  padding: 24px;
  z-index: 1000;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
}
.modal-box h3 { margin-bottom: 14px; }
.modal-box p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 12px; }
.modal-box p:last-child { margin-bottom: 0; }
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: none;
  color: var(--text-light);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}
.modal-close:hover { color: var(--accent); }

/* ============ Manufacturer quote grid ============ */
.mfr-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .mfr-quote-grid { grid-template-columns: 1fr; } }
.mfr-quote-grid .pull-quote { margin: 0; }
.mfr-quote-cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

/* ============ Reviews ============ */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.reviews-summary .stars { color: var(--accent); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-summary .count { color: var(--text-light); font-size: 0.95rem; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.review-card .review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.review-card .review-head strong { font-family: var(--font-display); color: var(--navy); }
.review-card .review-date { color: var(--text-light); font-size: 0.85rem; }
.review-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 8px; display: block; }
.review-card .reply {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.review-card .reply strong { color: var(--navy); }

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 24px;
}
.reviews-track {
  flex: 1;
  overflow: hidden;
}
.reviews-track-inner {
  display: flex;
  transition: transform 0.4s ease;
}
.reviews-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.reviews-page .review-card { margin-bottom: 0; }
.reviews-nav-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease;
}
.reviews-nav-btn:hover { background: var(--navy); color: var(--white); }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.reviews-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
}
.reviews-dots .dot.active { background: var(--accent); }
@media (max-width: 800px) {
  .reviews-page { grid-template-columns: 1fr; }
  .reviews-nav-btn { display: none; }
}

/* ============ Live review list + submission form ============ */
.reviews-load-more {
  display: block;
  margin: 8px auto 0;
  background: var(--white);
  border-color: var(--navy);
  color: var(--navy);
}
.reviews-load-more:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.reviews-status {
  text-align: center;
  color: var(--text-light);
  padding: 20px 0;
}
.reviews-status.is-error { color: var(--accent-deep); }

.review-form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 40px 0;
}
.review-form-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--navy);
  text-align: left;
}
.review-form-toggle-icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.review-form-toggle[aria-expanded="true"] .review-form-toggle-icon { transform: rotate(45deg); }

.review-form-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.review-form-collapse-inner { padding-top: 20px; }
.review-form-card .sub { color: var(--text-light); margin-bottom: 20px; }

.review-form .field { margin-bottom: 16px; }
.review-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}
.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form textarea:focus {
  outline: 2px solid var(--steel);
  outline-offset: 1px;
}
.review-form textarea { min-height: 120px; resize: vertical; }
.review-form .honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.star-picker { display: inline-flex; gap: 6px; font-size: clamp(1.375rem, 4.5vw, 2.25rem); margin: 4px 0 8px; }
.star-picker button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--border);
  font-size: inherit;
  line-height: 1;
  transition: color 0.1s ease, transform 0.1s ease;
}
.star-picker button:hover { transform: scale(1.08); }
.star-picker button.is-filled { color: var(--accent); }

.review-form-message { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 0.92rem; }
.review-form-message.is-success { background: #E7F4EA; color: #2A6B3E; }
.review-form-message.is-error { background: #FBEAEA; color: var(--accent-deep); }

/* ============ FAQ accordion ============ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding-bottom: 22px; color: var(--text-light); }
.faq-answer-inner ul { padding-left: 20px; }
.faq-category {
  margin: 44px 0 8px;
}
.faq-category:first-child { margin-top: 0; }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card a { color: var(--steel-light); }
.contact-info-card .info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-card .info-row .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.form-embed-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px;
  min-height: 950px;
}
.form-embed-wrap iframe { border-radius: 8px; }

.policy-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 24px 0;
  font-size: 0.95rem;
}

/* ============ CTA band ============ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band .sub { color: var(--steel-light); margin-bottom: 26px; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-deep);
  color: var(--steel-light);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--steel-light); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(234,241,247,0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(234,241,247,0.75); }

/* ============ Photo guide (pricing page intro) ============ */
.quote-cta { font-size: 1.05rem; color: var(--navy); margin: 20px 0 8px; }
.quote-cta strong { font-family: var(--font-display); }
.quote-cta a[href^="tel:"] { white-space: nowrap; }
.photo-guide { margin: 28px 0; }
.photo-guide-heading { font-size: 1.15rem; margin-bottom: 4px; }
.photo-guide-sub { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.photo-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 520px) {
  .photo-guide-grid { grid-template-columns: 1fr; }
}
.photo-guide-item {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.photo-guide-item img { width: 100%; height: auto; aspect-ratio: 7 / 5; object-fit: cover; }
.photo-guide-item--cutout img { aspect-ratio: 884 / 599; object-fit: contain; }
.photo-guide-item figcaption { padding: 12px 16px; font-size: 0.92rem; color: var(--text-light); }
.photo-guide-item figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
}
.photo-guide-list { margin-top: 20px; font-size: 0.95rem; }
.photo-guide-list strong { color: var(--navy); }

/* ============ Quote Wizard ============ */
.quote-wizard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
}
.wizard-back-btn {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  cursor: pointer;
}
.wizard-back-btn:hover { color: var(--accent-deep); }

.wizard-dots { margin-bottom: 20px; }

.wizard-question-title { margin-bottom: 6px; }
.wizard-subtext { color: var(--text-light); margin-bottom: 24px; }

.wizard-card-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}
.wizard-card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wizard-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wizard-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 768px) {
  .wizard-card-grid--3, .wizard-card-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .wizard-card-grid--2, .wizard-card-grid--3, .wizard-card-grid--4 { grid-template-columns: 1fr; }
}

.wizard-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 148px;
  padding: 26px 16px;
  text-align: center;
  font: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.wizard-card:hover:not(:disabled) { border-color: var(--steel); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.wizard-card:disabled { cursor: default; opacity: 0.6; }
.wizard-card.is-selected {
  border-color: var(--accent);
  border-width: 2px;
  color: var(--accent-deep);
  opacity: 1;
  box-shadow: var(--shadow-lg);
}
.wizard-card-icon { display: block; width: 40px; height: 40px; color: var(--steel); }
.wizard-card.is-selected .wizard-card-icon { color: var(--accent-deep); }
.wizard-card-icon svg { width: 100%; height: 100%; display: block; }
.wizard-card:focus-visible { outline: 2px solid var(--steel); outline-offset: 2px; }

.wizard-result {
  background: var(--steel-light);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
  text-align: center;
}
.wizard-result-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.wizard-result-price-label { color: var(--navy); font-size: 0.95rem; margin: 0; }
.wizard-result-price-label.wizard-result-fallback { color: var(--text-light); font-style: italic; }

.wizard-start-over-btn { display: block; margin: 16px auto 0; }
.wizard-turnstile { margin: 4px 0 16px; }
.wizard-field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px; }
@media (max-width: 520px) {
  .wizard-field-row { grid-template-columns: 1fr; }
}
.wizard-quote-form input[readonly] { background: var(--cream); color: var(--text-light); }

/* ============ Wizard photo upload ============ */
.wizard-photo-optional { font-weight: 400; color: var(--text-light); text-transform: none; letter-spacing: normal; }
.wizard-photo-hint { margin: 0 0 10px; font-size: 0.88rem; color: var(--text-light); }
.wizard-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}
.wizard-photo-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
}
.wizard-photo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wizard-photo-tile.is-processing,
.wizard-photo-tile.is-error {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
}
.wizard-photo-tile.is-error { background: #FBEAEA; color: var(--accent-deep); border-color: transparent; }
.wizard-photo-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--steel);
  border-radius: 50%;
  animation: wizard-spin 0.8s linear infinite;
}
@keyframes wizard-spin { to { transform: rotate(360deg); } }
.wizard-photo-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: rgba(22, 35, 46, 0.7);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-photo-remove:hover { background: var(--accent-deep); }
/* Higher specificity than ".review-form label" (which would otherwise win on
   color/display and leave this looking like an empty navy bar). */
.review-form label.wizard-photo-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  cursor: pointer;
}
.review-form label.wizard-photo-add-btn.is-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.wizard-photo-status { margin: 6px 0 0; font-size: 0.85rem; color: var(--text-light); min-height: 1.2em; }
.wizard-photo-status.is-error { color: var(--accent-deep); }

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-discontinued {
  display: inline-block;
  background: #FBEAE0;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
