/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #1a1a1a;
  color: #e8e0d4;
  line-height: 1.6;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 18, 10, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid #d4820a;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #f0a030;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-brand span { color: #e8e0d4; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: #c8b89a;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #f0a030; }
.nav-cta {
  background: #d4820a;
  color: #1a1208 !important;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: #f0a030; color: #1a1208 !important; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #1a1208;
  padding: 80px 1.5rem 1rem;
  font-size: 0.85rem;
  color: #6a5a4a;
  letter-spacing: 0.05em;
}
.breadcrumb .container { max-width: 1100px; margin: 0 auto; }
.breadcrumb a { color: #8a7b6a; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #f0a030; }
.breadcrumb .sep { color: #4a3828; margin: 0 0.5rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.04) 2px,
      rgba(0,0,0,0.04) 4px
    );
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4820a;
  margin-bottom: 1rem;
  position: relative;
}
.page-hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #f5f0e8;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
}
.page-hero-title .accent { color: #d4820a; }
.page-hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #f0e8d8;
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 2rem;
  position: relative;
}
.page-hero-divider {
  width: 60px;
  height: 3px;
  background: #d4820a;
  margin: 0 auto 2rem;
  position: relative;
}
.btn-primary {
  display: inline-block;
  background: #d4820a;
  color: #1a1208;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 2px solid #d4820a;
  position: relative;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(212, 130, 10, 0.35);
}
.btn-primary:hover {
  background: #f0a030;
  border-color: #f0a030;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #e8e0d4;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  border: 2px solid #8a7b6a;
  transition: border-color 0.2s, color 0.2s;
  margin-left: 0.75rem;
}
.btn-outline:hover { border-color: #d4820a; color: #f0a030; }

/* ===== SECTIONS ===== */
section { padding: 4.5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.narrow { max-width: 820px; margin: 0 auto; }
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4820a;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #f5f0e8;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-bar {
  width: 48px;
  height: 3px;
  background: #d4820a;
  margin-bottom: 2rem;
}
.lead {
  color: #c8b89a;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
p { color: #b0a090; margin-bottom: 1.1rem; }
p strong { color: #e8e0d4; }
ul.bullets { color: #b0a090; margin: 0 0 1.4rem 1.2rem; }
ul.bullets li { margin-bottom: 0.5rem; }

/* ===== INTRO / DARK ALT BACKGROUNDS ===== */
.bg-darker { background: #201610; }
.bg-darkest { background: #1a1208; }

/* ===== PROCESS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.step {
  background: #2c1f14;
  border: 1px solid #3d2b1a;
  border-top: 3px solid #d4820a;
  border-radius: 4px;
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
}
.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #d4820a;
  margin-bottom: 0.5rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f0a030;
  margin-bottom: 0.6rem;
}
.step-text {
  color: #a09080;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== USE CASES ===== */
.uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.use {
  background: #2c1f14;
  border-left: 3px solid #d4820a;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
}
.use h3 {
  color: #f0a030;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.use p { color: #a09080; font-size: 0.92rem; margin: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  border: 1px solid #2c1f14;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

/* ===== FAQ ===== */
details.faq {
  background: #2c1f14;
  border: 1px solid #3d2b1a;
  border-left: 3px solid #d4820a;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.85rem;
}
details.faq summary {
  cursor: pointer;
  color: #f0a030;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  float: right;
  color: #d4820a;
  font-weight: 800;
  transition: transform 0.2s;
}
details.faq[open] summary::after { content: '−'; }
details.faq p {
  margin-top: 0.75rem;
  color: #b0a090;
  font-size: 0.95rem;
}

/* ===== RELATED ===== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.related-card {
  background: #2c1f14;
  border: 1px solid #3d2b1a;
  border-radius: 4px;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: #d4820a;
}
.related-card h3 {
  color: #f0a030;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.related-card p { color: #8a7b6a; font-size: 0.88rem; margin: 0; }

/* ===== CTA ===== */
.cta-section { text-align: center; }
.cta-section .section-title { margin-bottom: 1rem; }
.cta-section .section-bar { margin-left: auto; margin-right: auto; }
.cta-phone {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #f0a030;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin: 1rem 0 1.5rem;
}
.cta-phone:hover { color: #ffc050; }

/* ===== FOOTER ===== */
footer {
  background: #0f0a05;
  border-top: 2px solid #2c1f14;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0a030;
  margin-bottom: 0.5rem;
}
.footer-brand span { color: #8a7b6a; }
.footer-tagline {
  color: #6a5a4a;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: #6a5a4a;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: #d4820a; }
.footer-copy { color: #4a3828; font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  section { padding: 3rem 1rem; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: inline-block; }
}

/* ===== INSURANCE STRIP (sitewide trust banner) ===== */
.insurance-strip {
  background: linear-gradient(90deg, #d4820a 0%, #f0a030 50%, #d4820a 100%);
  color: #1a1208;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 3px solid #1a1208;
  border-top: 1px solid #1a1208;
  margin-top: 60px; /* offset for fixed nav */
}
.insurance-strip .ico { font-size: 1.2rem; vertical-align: -2px; margin-right: 0.4rem; }
.insurance-strip .sep { color: rgba(26,18,8,0.5); margin: 0 0.7rem; }
@media (max-width: 600px) {
  .insurance-strip .sep { display: block; height: 0; visibility: hidden; margin: 0.15rem 0; }
}
/* When strip precedes breadcrumb, breadcrumb doesn't need to clear the nav anymore */
.insurance-strip + .breadcrumb { padding-top: 1.5rem; }
/* When strip precedes a page-hero that has its own padding-top, no adjustment needed (hero handles its own spacing) */
