:root {
  --gold: #D4AF37;
  --gold-dark: #bf9928;
  --charcoal: #111111;
  --charcoal-soft: #1A1A1A;
  --light: #F5F5F5;
  --text: #222222;
  --muted: #5d5d5d;
  --white: #FFFFFF;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(17, 17, 17, 0.10);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --transition: 200ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--charcoal);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

body.menu-open { overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(17, 17, 17, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), transform var(--transition), border-color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.nav-button { margin-left: 0.25rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
}

.button-primary:hover {
  background: var(--gold-dark);
}

.button-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--gold);
}

.button-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.section-dark .button-outline,
.section-premium .button-outline,
.section-soft-dark .button-outline {
  color: var(--white);
}

.button-small {
  padding: 0.82rem 1.2rem;
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition), gap var(--transition);
}

.text-link::after {
  content: '→';
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--gold-dark);
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.40) 100%),
    var(--hero-image, url('assets/images/home-hero.webp')) center center / cover no-repeat;
}

.home-hero {
  min-height: calc(100vh - 86px);
}

.premium-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.42) 100%),
    var(--hero-image, url('assets/images/home-hero.webp')) center center / cover no-repeat;
}

.hero-inner {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.hero-copy-block {
  max-width: 760px;
  color: var(--white);
}

.hero-eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.hero-copy-block h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

.hero-accent {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold);
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 1.4rem 0 0;
}

.hero-copy-block .hero-copy strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-contact-stack {
  margin-top: 2rem;
  display: grid;
  gap: 0.45rem;
}

.hero-contact-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
}

.hero-phone {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--white);
}

.hero-phone:hover {
  color: var(--gold);
}

.hero-seo,
.hero-meta {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: var(--white);
}

.section-light { background: var(--light); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-premium { background: linear-gradient(180deg, #111111 0%, #181818 100%); color: var(--white); }
.section-soft-dark { background: var(--charcoal-soft); color: var(--white); }
.section-muted { background: #f8f8f8; }

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-intro {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-intro,
.section-premium .section-intro,
.section-soft-dark .section-intro,
.section-dark p,
.section-premium p,
.section-soft-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.authority-grid,
.grid-3,
.grid-2,
.service-grid,
.enhancement-grid,
.option-grid,
.pricing-grid,
.equipment-grid,
.footer-grid,
.stat-grid,
.info-grid {
  display: grid;
  gap: 1.5rem;
}

.authority-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.enhancement-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.option-grid,
.pricing-grid,
.equipment-grid,
.info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card,
.service-card,
.review-card,
.enhancement-card,
.option-card,
.pricing-card,
.info-card,
.equipment-card,
.faq-item,
.cta-panel,
.rating-bar,
.story-panel,
.expect-panel,
.notice-panel,
.result-panel,
.process-card,
.program-panel {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.service-card,
.review-card,
.option-card,
.pricing-card,
.info-card,
.equipment-card,
.story-panel,
.expect-panel,
.notice-panel,
.program-panel {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 1.7rem;
}

.section-dark .feature-card,
.section-dark .service-card,
.section-dark .review-card,
.section-dark .option-card,
.section-dark .pricing-card,
.section-dark .info-card,
.section-dark .equipment-card,
.section-dark .story-panel,
.section-dark .expect-panel,
.section-dark .notice-panel,
.section-dark .program-panel,
.section-premium .feature-card,
.section-premium .service-card,
.section-premium .review-card,
.section-premium .option-card,
.section-premium .pricing-card,
.section-premium .info-card,
.section-premium .equipment-card,
.section-premium .story-panel,
.section-premium .expect-panel,
.section-premium .notice-panel,
.section-premium .program-panel,
.section-soft-dark .feature-card,
.section-soft-dark .service-card,
.section-soft-dark .review-card,
.section-soft-dark .option-card,
.section-soft-dark .pricing-card,
.section-soft-dark .info-card,
.section-soft-dark .equipment-card,
.section-soft-dark .story-panel,
.section-soft-dark .expect-panel,
.section-soft-dark .notice-panel,
.section-soft-dark .program-panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.enhancement-card {
  background: #f1f1f1;
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 1.35rem;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.enhancement-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(212, 175, 55, 0.35);
}

.card-icon,
.review-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.card-icon svg,
.review-icon svg,
.check-list li svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.feature-card h3,
.service-card h3,
.review-card h3,
.enhancement-card h3,
.option-card h3,
.pricing-card h3,
.info-card h3,
.equipment-card h3,
.story-panel h3,
.expect-panel h3,
.program-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
}

.feature-card p,
.service-card p,
.review-card p,
.enhancement-card p,
.option-card p,
.pricing-card p,
.info-card p,
.equipment-card p,
.story-panel p,
.expect-panel p,
.program-panel p,
.notice-panel p,
.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.section-dark .feature-card p,
.section-dark .service-card p,
.section-dark .review-card p,
.section-dark .option-card p,
.section-dark .pricing-card p,
.section-dark .info-card p,
.section-dark .equipment-card p,
.section-dark .story-panel p,
.section-dark .expect-panel p,
.section-dark .program-panel p,
.section-premium .feature-card p,
.section-premium .service-card p,
.section-premium .review-card p,
.section-premium .option-card p,
.section-premium .pricing-card p,
.section-premium .info-card p,
.section-premium .equipment-card p,
.section-premium .story-panel p,
.section-premium .expect-panel p,
.section-premium .program-panel p,
.section-soft-dark .feature-card p,
.section-soft-dark .service-card p,
.section-soft-dark .review-card p,
.section-soft-dark .option-card p,
.section-soft-dark .pricing-card p,
.section-soft-dark .info-card p,
.section-soft-dark .equipment-card p,
.section-soft-dark .story-panel p,
.section-soft-dark .expect-panel p,
.section-soft-dark .program-panel p,
.section-dark .text-link,
.section-premium .text-link,
.section-soft-dark .text-link {
  color: rgba(255, 255, 255, 0.86);
}

.section-dark .text-link:hover,
.section-premium .text-link:hover,
.section-soft-dark .text-link:hover {
  color: var(--gold);
}

.authority-grid .feature-card,
.authority-grid .service-card {
  position: relative;
}

.authority-grid .feature-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.85), rgba(212, 175, 55, 0));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.service-card:hover,
.feature-card:hover,
.option-card:hover,
.pricing-card:hover,
.info-card:hover,
.equipment-card:hover,
.story-panel:hover,
.expect-panel:hover,
.program-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card.featured,
.option-card.featured,
.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 1) 34%);
}

.section-dark .service-card.featured,
.section-premium .service-card.featured,
.section-soft-dark .service-card.featured,
.section-dark .option-card.featured,
.section-premium .option-card.featured,
.section-soft-dark .option-card.featured,
.section-dark .pricing-card.featured,
.section-premium .pricing-card.featured,
.section-soft-dark .pricing-card.featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.10), rgba(255, 255, 255, 0.06) 28%);
}

.short-copy { max-width: 34ch; }

.rating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-stars {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rating-bar strong {
  display: block;
  font-size: 1.15rem;
  color: var(--white);
}

.rating-bar p {
  margin: 0.35rem 0 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.large-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.result-panel {
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
  min-height: 290px;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.result-panel.result-minimal {
  border-radius: 0;
  box-shadow: none;
}

.result-panel img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.result-panel figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.65);
  color: var(--white);
  font-size: 0.94rem;
}

.result-minimal figcaption {
  background: none;
  border-radius: 0;
  padding: 0;
  left: 1.25rem;
  bottom: 1.25rem;
  right: auto;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: none;
}

.result-panel:hover img {
  transform: scale(1.04);
}

.section-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.75;
}

.review-label {
  margin-top: 1rem !important;
  color: rgba(212, 175, 55, 0.95) !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-author {
  margin-top: 0.45rem !important;
  font-weight: 700;
  color: var(--text) !important;
}

.section-dark .review-author,
.section-premium .review-author,
.section-soft-dark .review-author {
  color: var(--white) !important;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  color: var(--text);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
}

.section-dark .pill,
.section-premium .pill,
.section-soft-dark .pill {
  color: var(--white);
  background: rgba(212, 175, 55, 0.15);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.check-list.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.check-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--gold-dark);
  margin-top: 0.1rem;
}

.section-dark .check-list li,
.section-premium .check-list li,
.section-soft-dark .check-list li {
  color: var(--white);
}

.info-split,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.notice-panel {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.20);
  padding: 1.35rem 1.4rem;
}

.notice-panel strong {
  display: block;
  margin-bottom: 0.4rem;
}

.option-details,
.pricing-card-note {
  margin-top: 0.85rem !important;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.96rem;
}

.section-dark .option-details,
.section-premium .option-details,
.section-soft-dark .option-details,
.section-dark .pricing-card-note,
.section-premium .pricing-card-note,
.section-soft-dark .pricing-card-note {
  color: rgba(255, 255, 255, 0.75);
}

.price {
  margin-top: 0.35rem !important;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text) !important;
}

.section-dark .price,
.section-premium .price,
.section-soft-dark .price {
  color: var(--white) !important;
}

.pricing-note {
  margin-top: 1.25rem;
  color: var(--muted);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cta-panel h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.cta-panel p {
  margin: 0;
  max-width: 760px;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
}

.cta-phone {
  color: var(--white);
  font-weight: 700;
}

.cta-phone:hover {
  color: var(--gold);
}

.cta-trust {
  margin-top: 1rem !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border: 0;
  background: transparent;
  font-weight: 700;
  color: var(--text);
}

.faq-panel {
  padding: 0 1.4rem 1.35rem;
}

.faq-answer strong {
  color: var(--text);
}

.faq-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-plus::before,
.faq-plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-dark);
  transform: translateY(-50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-plus::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.2);
}

.equipment-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.inline-note {
  margin-top: 1rem;
  color: var(--muted);
}

.site-footer {
  background: var(--charcoal-soft);
  color: var(--white);
}

.footer-grid {
  padding: clamp(3rem, 5vw, 4rem) 0;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-column {
  position: relative;
  padding-right: 1.5rem;
}

.footer-column:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-column h3,
.footer-column h4 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.footer-column p,
.footer-column li,
.footer-column span,
.footer-column a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-brand-column p + p { margin-top: 0.8rem; }
.footer-trust { color: rgba(212, 175, 55, 0.98) !important; }

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list span:first-child {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  padding: 1.2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.separator { margin: 0 0.35rem; }

.centered-copy {
  max-width: 760px;
}

.stack > * + * { margin-top: 1rem; }

@media (max-width: 1080px) {
  .service-grid,
  .option-grid,
  .pricing-grid,
  .equipment-grid,
  .info-grid,
  .story-grid,
  .info-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .footer-column:not(:last-child)::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .rating-bar,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .authority-grid,
  .grid-3,
  .results-grid,
  .large-gallery,
  .enhancement-grid,
  .stat-grid,
  .check-list.columns-2,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.6rem 1.25rem 1.25rem;
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }

  body.menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: 0;
    margin-top: 0.4rem;
  }

  .nav-toggle { display: inline-block; }

  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .brand span { display: none; }
  .header-inner { min-height: 78px; }
  .site-nav { top: 78px; }

  .page-hero,
  .home-hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 4.5rem 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  .button {
    width: 100%;
  }

  .section-actions,
  .hero-actions {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-panel,
  .result-panel img {
    min-height: 240px;
  }
}

/* ============================================
   ADDITIONS — Spec updates (Revive Surface Care)
   ============================================ */

/* Section heading — gold underline accent for premium sections */
.section-heading.has-accent::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 1.25rem;
  opacity: 0.7;
}

.section-heading.has-accent.centered::after {
  margin-left: auto;
  margin-right: auto;
}

/* Authority grid — vertical dividers between columns (no icons) */
.authority-clean {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.authority-clean .feature-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.5rem 2rem;
  position: relative;
}

.authority-clean .feature-card::before {
  display: none;
}

.authority-clean .feature-card + .feature-card::after {
  content: '';
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.authority-clean .feature-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.authority-clean .feature-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.authority-clean .feature-card:hover {
  transform: none;
  box-shadow: none;
}

/* Service grid — 3+2 layout for full services page */
.service-grid.cols-3-2 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-grid.cols-3-2 > .service-card:nth-child(1),
.service-grid.cols-3-2 > .service-card:nth-child(2),
.service-grid.cols-3-2 > .service-card:nth-child(3) {
  grid-column: span 2;
}

.service-grid.cols-3-2 > .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-grid.cols-3-2 > .service-card:nth-child(5) {
  grid-column: span 2;
}

/* Featured ceramic card — slight scale + stronger gold border */
.service-card.featured-ceramic {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 1) 28%);
  transform: scale(1.02);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.service-card.featured-ceramic:hover {
  transform: scale(1.02) translateY(-3px);
}

.section-dark .service-card.featured-ceramic,
.section-soft-dark .service-card.featured-ceramic,
.section-premium .service-card.featured-ceramic {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.04) 28%);
}

/* Client Care — dark image-based feature section */
.client-care-feature {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--charcoal);
  color: var(--white);
}

.client-care-feature::before {
  /* Neutralized: image now lives in <img class="cc-bg-img"> for reliability */
  content: none;
}

.client-care-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.78) 35%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.30) 100%
  );
  z-index: 1;
}

.client-care-feature .container {
  position: relative;
  z-index: 2;
}

.client-care-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.client-care-copy {
  max-width: 540px;
}

.client-care-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
}

.client-care-copy .lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 0 0 1.4rem;
}

.client-care-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1rem;
  line-height: 1.7;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin: 1.75rem 0 2rem;
  list-style: none;
  padding: 0;
}

.feature-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.feature-row li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

@media (max-width: 1080px) {
  .client-care-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .client-care-feature::before {
    background-position: center center;
  }
}

/* Final CTA — subtle background image variant */
.final-cta-bg {
  position: relative;
  overflow: hidden;
  background-color: var(--charcoal);
  color: var(--white);
}

.final-cta-bg::before {
  /* Neutralized: image now lives in <img class="cta-bg-img"> for reliability */
  content: none;
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.82) 100%);
  z-index: 1;
}

.final-cta-bg > .container {
  position: relative;
  z-index: 2;
}

.final-cta-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--white);
}

.final-cta-center h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--white);
}

.final-cta-center p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta-center .button-primary {
  padding: 1.1rem 2.2rem;
  font-size: 1.02rem;
}

.final-cta-center .cta-phone {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.final-cta-center .cta-phone:hover {
  color: var(--gold);
}

.final-cta-center .cta-trust {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.62) !important;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

/* Apply same defaults when page-cta also has final-cta-bg */
.page-cta.final-cta-bg .cta-panel {
  background: transparent;
  border: 0;
  padding: 0;
}

/* Trust bar — refined for reviews section */
.rating-bar.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  background: transparent;
  border: 0;
  padding: 0 0 2.5rem;
  margin-bottom: 0.5rem;
}

.rating-bar.trust-bar .rating-stars {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.rating-bar.trust-bar strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.rating-bar.trust-bar p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Service-card icons — keep cards clean (icon hidden on home/services lists) */
.service-card.no-icon .card-icon { display: none; }

/* Responsive — collapse 3+2 to single column on mobile */
@media (max-width: 1080px) {
  .service-grid.cols-3-2 {
    grid-template-columns: 1fr;
  }
  .service-grid.cols-3-2 > .service-card:nth-child(n) {
    grid-column: 1 / -1;
  }
  .service-card.featured-ceramic {
    transform: none;
  }
  .service-card.featured-ceramic:hover {
    transform: translateY(-3px);
  }
  .authority-clean {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .authority-clean .feature-card + .feature-card::after {
    display: none;
  }
  .authority-clean .feature-card {
    padding: 0 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .authority-clean .feature-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* ============================================
   SPLIT SECTIONS — text + image side by side
   ============================================ */

.split-section {
  padding: 0 !important;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  max-width: none;
  gap: 0;
  padding: 0;
}

.split-section.section-dark {
  background: var(--charcoal);
}

.split-section.section-light {
  background: var(--light);
}

.split-text {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.split-section.section-dark .split-text {
  margin-right: auto;
  margin-left: 0;
}

.split-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.split-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.split-eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.split-section .split-text h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.split-section.section-dark .split-text h2 {
  color: var(--white);
}

.split-section .split-text p {
  margin: 0 0 0.85rem;
  line-height: 1.7;
}

.split-section.section-dark .split-text p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section.section-light .split-text p {
  color: var(--muted);
}

.split-section .split-text .check-list {
  margin-top: 1rem;
}

.gold-callout {
  color: var(--gold) !important;
  font-weight: 600;
  margin-top: 1rem !important;
}

.gold {
  color: var(--gold);
}

@media (max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
  .split-section .split-grid {
    direction: ltr;
  }
  .split-img {
    min-height: 240px;
    order: 0 !important;
  }
  .split-text {
    order: 1 !important;
    padding: 2.5rem 1.25rem;
  }
}

/* ============================================
   PAINT CORRECTION — 3-column options layout
   ============================================ */

.correction-options-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.correction-options-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.correction-options-text > p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.correction-option-row h3 {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.correction-option-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.correction-options-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
}

.correction-options-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.correction-options-pricing {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.centered-eyebrow {
  text-align: center;
}

.pricing-row h4 {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.pricing-line:last-child {
  border-bottom: 0;
}

.pricing-line span:last-child {
  color: var(--white);
  font-weight: 700;
}

.pricing-fine {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0.5rem 0 !important;
}

@media (max-width: 1080px) {
  .correction-options-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CERAMIC COATINGS — special layouts
   ============================================ */

.shield-callout-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2rem 1.75rem;
  margin: 2rem;
  text-align: center;
  align-self: center;
}

.shield-callout-box p {
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0;
  max-width: 280px;
}

.shield-icon-large svg {
  width: 50px;
  height: 50px;
  fill: var(--gold);
}

.shield-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--gold);
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .benefits-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cer-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cer-results-grid .result-panel {
  min-height: 240px;
}

.cer-results-grid .result-panel img {
  min-height: 240px;
}

@media (max-width: 700px) {
  .cer-results-grid {
    grid-template-columns: 1fr;
  }
}

.cer-option-card {
  text-align: center;
}

.option-eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.gold-bg {
  background: var(--gold);
  color: var(--charcoal) !important;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 4px;
}

.cer-option-card h3 {
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.cer-option-card p {
  margin: 0 0 0.85rem;
}

.cer-option-card .pricing-line {
  text-align: left;
  font-size: 1rem;
}

/* ============================================
   ENHANCEMENT CARDS WITH IMAGES
   ============================================ */

.enhancement-card-img {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.enhancement-card-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.enhancement-card-img .enh-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.enhancement-card-img h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--gold);
}

.enhancement-card-img p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ============================================
   INTERIOR DETAIL — special bits
   ============================================ */

.centered-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.centered-callout p:not(.split-eyebrow) {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.82) !important;
}

.centered-callout .split-eyebrow {
  margin-bottom: 0.25rem;
}

.centered-callout .shield-icon {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .centered-callout {
    flex-direction: column;
    text-align: center;
  }
}

/* Large single result image */
.result-panel-large {
  margin: 2rem auto 0;
  max-width: 760px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.result-panel-large img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

/* hero accent inline (for "Detail" gold portion of "Exterior Detail") */
.hero-accent-inline {
  color: var(--gold);
}


/* ============================================
   IMAGE-FEATURE SECTIONS (split text + photo)
   ============================================ */

/* Two-column section: text on one side, photo on the other.
   Use modifiers .image-right (default) or .image-left.            */
.image-feature {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.image-feature .if-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: clamp(300px, 38vw, 460px);
}

.image-feature.image-left .if-grid {
  grid-template-columns: 1fr 1fr;
}

.image-feature .if-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--charcoal);
  color: var(--white);
}

.image-feature.on-light .if-copy {
  background: var(--light);
  color: var(--text);
}

.image-feature .if-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
}

/* Default: image on RIGHT, text on LEFT */
.image-feature .if-copy { grid-column: 1; grid-row: 1; }
.image-feature .if-image { grid-column: 2; grid-row: 1; }

/* Modifier: image on LEFT, text on RIGHT */
.image-feature.image-left .if-copy { grid-column: 2; grid-row: 1; }
.image-feature.image-left .if-image { grid-column: 1; grid-row: 1; }

.image-feature .if-eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.image-feature .if-copy h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.image-feature.on-light .if-copy h2 {
  color: var(--text);
}

.image-feature .if-copy h2 + .if-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 1.5rem;
}

.image-feature .if-copy p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.image-feature.on-light .if-copy p {
  color: var(--muted);
}

.image-feature .if-copy p:last-of-type {
  margin-bottom: 0;
}

.image-feature .if-actions {
  margin-top: 1.5rem;
}

.image-feature .check-list {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .image-feature .if-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .image-feature .if-copy,
  .image-feature.image-left .if-copy { grid-column: 1; grid-row: 2; }
  .image-feature .if-image,
  .image-feature.image-left .if-image { grid-column: 1; grid-row: 1; min-height: 240px; }
}

/* ============================================
   CARD WITH IMAGE TOP (for enhancement cards)
   ============================================ */

.enhancement-card.has-image {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-light .enhancement-card.has-image,
.section:not(.section-dark):not(.section-soft-dark):not(.section-premium) .enhancement-card.has-image {
  background: var(--white);
  border-color: rgba(17, 17, 17, 0.08);
}

.enhancement-card.has-image .ec-image {
  width: 100%;
  aspect-ratio: 16/8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.enhancement-card.has-image .ec-body {
  padding: 1.2rem 1.35rem 1.45rem;
}

.enhancement-card.has-image h3 {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 1.05rem;
}

.section-light .enhancement-card.has-image h3,
.section:not(.section-dark):not(.section-soft-dark):not(.section-premium) .enhancement-card.has-image h3 {
  color: var(--gold-dark);
}

.enhancement-card.has-image p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.55;
}

.section-light .enhancement-card.has-image p,
.section:not(.section-dark):not(.section-soft-dark):not(.section-premium) .enhancement-card.has-image p {
  color: var(--muted);
}

/* ============================================
   RESULTS GRID (results panels with title above)
   ============================================ */

.results-banner {
  background: var(--charcoal);
}

.results-banner .section-heading h2 {
  text-align: center;
}

.results-banner .results-grid {
  gap: 1rem;
}

/* ============================================
   PROFESSIONAL CARE BANNER (centered shield/icon callout)
   ============================================ */

.care-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.care-banner .care-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.care-banner .care-icon svg {
  width: 22px; height: 22px; fill: currentColor;
}

.care-banner .care-text {
  max-width: 640px;
}

.care-banner h3 {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
}

.care-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
}

@media (max-width: 700px) {
  .care-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   CERAMIC: shield-in-box callout (light bordered)
   ============================================ */

.shield-callout {
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 320px;
  align-self: center;
}

.shield-callout .shield-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.shield-callout .shield-icon svg { width: 26px; height: 26px; fill: currentColor; }

.shield-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============================================
   BENEFITS ROW (Ceramic page — 5 icons across)
   ============================================ */

.benefits-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.benefits-row .benefit {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.benefits-row .benefit-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefits-row .benefit-icon svg { width: 100%; height: 100%; fill: currentColor; }

.benefits-row .benefit-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 14ch;
}

@media (max-width: 900px) {
  .benefits-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .benefits-row { grid-template-columns: 1fr; }
}



/* ============================================================ */
/* SPEC GUIDE ADDITIONS — Revive Surface Care image spec v1     */
/* ============================================================ */

/* Bulletproof hero: uses an inline <img class="hero-bg-img"> rather than
   a CSS background-image, so the image element either loads or fails
   visibly. The gradient overlay sits in ::after and is purely cosmetic.
   Both the original .page-hero / .premium-hero background shorthand
   rules above are NEUTRALIZED here to prevent them from rendering an
   invisible background that would mask the real <img>. */
.page-hero,
.premium-hero {
  position: relative;
  background: var(--charcoal) !important;
  isolation: isolate;
}

.page-hero .hero-bg-img,
.premium-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border: 0;
  pointer-events: none;
}

.page-hero.hero-right-subject .hero-bg-img,
.premium-hero.hero-right-subject .hero-bg-img {
  object-position: 70% center;
}

.page-hero::after,
.premium-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.42) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero > *,
.premium-hero > * {
  position: relative;
  z-index: 2;
}

/* Authority section with photos — 1:1 squares, consistent zoom */
.authority-photos .feature-card.photo-card,
.service-grid-photo .service-card.photo-card,
.service-grid-five .service-card.photo-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--charcoal-soft);
  border: 1px solid var(--border-dark);
  color: var(--white);
}

.photo-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 350ms ease;
}

.service-grid-photo .photo-card-image {
  aspect-ratio: 4 / 3;
}

.service-grid-five .photo-card-image {
  aspect-ratio: 4 / 3;
}

.photo-card:hover .photo-card-image {
  transform: scale(1.04);
}

.photo-card h3 {
  margin: 1.25rem 1.4rem 0.6rem;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: -0.005em;
}

.photo-card p {
  margin: 0 1.4rem 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.photo-card .text-link {
  margin: 0 1.4rem 1.4rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.92rem;
}

.photo-card .service-card-copy {
  color: rgba(255, 255, 255, 0.78);
}

/* Override the dark-section service-card white background for photo cards */
.section-dark .service-card.photo-card,
.section-soft-dark .service-card.photo-card,
.section-premium .service-card.photo-card {
  background: var(--charcoal-soft);
  color: var(--white);
  border: 1px solid var(--border-dark);
}

.section-dark .service-card.photo-card h3,
.section-soft-dark .service-card.photo-card h3 {
  color: var(--white);
}

.section-dark .service-card.photo-card p,
.section-soft-dark .service-card.photo-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* View All Services — 5-card grid */
.service-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.compact-card {
  padding: 0 !important;
}

.compact-card h3 {
  font-size: 1rem;
  margin: 1rem 1.1rem 0.45rem;
}

.compact-card .text-link {
  margin: 0 1.1rem 1.1rem;
  font-size: 0.85rem;
}

@media (max-width: 1100px) {
  .service-grid-five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .service-grid-five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .service-grid-five { grid-template-columns: 1fr; }
}

/* 4:5 Results section (homepage) */
.results-4-5 .result-panel {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.results-4-5 .result-panel img {
  height: 100%;
  min-height: 0;
}

@media (max-width: 720px) {
  .results-4-5 { grid-template-columns: 1fr; }
  .results-4-5 .result-panel { aspect-ratio: 4 / 3; }
}

/* Ceramic asymmetric 2x2 — top-left ~10-15% larger */
.cer-results-asymmetric {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  grid-template-rows: 1.13fr 1fr;
  gap: 1.2rem;
}

.cer-results-asymmetric .result-panel {
  min-height: 280px;
  aspect-ratio: auto;
}

.cer-results-asymmetric .cer-tl { grid-column: 1; grid-row: 1; }
.cer-results-asymmetric .cer-tr { grid-column: 2; grid-row: 1; }
.cer-results-asymmetric .cer-bl { grid-column: 1; grid-row: 2; }
.cer-results-asymmetric .cer-br { grid-column: 2; grid-row: 2; }

@media (max-width: 720px) {
  .cer-results-asymmetric {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .cer-results-asymmetric .cer-tl,
  .cer-results-asymmetric .cer-tr,
  .cer-results-asymmetric .cer-bl,
  .cer-results-asymmetric .cer-br {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Client Care left-to-right gradient (homepage spec section 5) */
.client-care-ltr-gradient::after {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.18) 65%,
    rgba(0, 0, 0, 0.00) 100%
  );
}

/* Final CTA overlay variable consumption */
.final-cta-bg::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, var(--cta-overlay, 0.72)) 0%,
    rgba(0, 0, 0, calc(var(--cta-overlay, 0.72) + 0.08)) 100%
  );
}

.cta-tight-crop::before {
  opacity: 0.55;
  background-position: center;
}

/* Process Image section (signature page sec 5) */
.process-section .process-image-wrap {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.process-section .process-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.process-section .inline-note.centered {
  text-align: center;
  margin: 1.25rem auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Client Care Mid section (client-care page sec 2) */
.cc-mid-section .cc-mid-image {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.cc-mid-section .cc-mid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive: stack service grid + view-all on mobile */
@media (max-width: 720px) {
  .service-grid-photo {
    grid-template-columns: 1fr;
  }
}

/* CTA background image (replaces fragile background-image CSS) */
.final-cta-bg .cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  z-index: 0;
  border: 0;
  pointer-events: none;
}

.final-cta-bg.cta-tight-crop .cta-bg-img {
  opacity: 0.55;
}

/* Client Care background image */
.client-care-feature .cc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  border: 0;
  pointer-events: none;
}

/* Ensure final-cta-bg and client-care-feature contents stay above the bg img */
.final-cta-bg > .container,
.client-care-feature > .container {
  position: relative;
  z-index: 2;
}
