/* ==========================================================================
   Hylton Construction — multi-page additions
   Loaded after style.css on every page.
   ========================================================================== */

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 4rem;
}
.page-hero .hero-content { padding-top: 9rem; position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.page-hero .hero-lede { margin-bottom: 0; }

.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { margin: 0 0.5rem; color: var(--text-muted); }

/* ---------- Trust strip (home hero) ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.trust-strip li {
  list-style: none;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-left: 1.3rem;
}
.trust-strip li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold-bright);
}

/* ---------- Service detail layout ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.detail-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.2rem; }
.detail-copy p { color: var(--ivory-dim); margin-bottom: 1.1rem; font-size: 0.98rem; }
.detail-aside {
  background: var(--ink-card);
  border: 1px solid rgba(195, 160, 97, 0.18);
  padding: 2.2rem;
  position: sticky;
  top: 6rem;
}
.detail-aside h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.detail-aside p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.4rem; }

/* ---------- Service type cards ---------- */
.type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.type-card {
  background: var(--ink-card);
  border: 1px solid rgba(195, 160, 97, 0.14);
  border-top: 2px solid var(--gold);
  padding: 1.9rem 1.8rem;
  transition: border-color 0.4s, transform 0.4s;
}
.type-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.type-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.type-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 50rem; }
.faq-item {
  border-bottom: 1px solid rgba(195, 160, 97, 0.16);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  position: relative;
  color: var(--ivory);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 0.4rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-answer { padding: 0 0 1.6rem; color: var(--text-muted); font-size: 0.95rem; max-width: 44rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(195, 160, 97, 0.14), transparent 60%),
    var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { color: var(--ivory-dim); max-width: 36rem; margin: 0 auto 2.2rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-phone {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold-bright);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.cta-phone:hover { color: var(--ivory); }

/* ---------- Feature / benefit list ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.benefit {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.benefit h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.benefit h3 .benefit-icon { color: var(--gold); margin-right: 0.5rem; }
.benefit p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- AI edge panel ---------- */
.ai-panel {
  background: var(--ink-card);
  border: 1px solid rgba(195, 160, 97, 0.22);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ai-panel h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.1rem; }
.ai-panel > div > p { color: var(--ivory-dim); font-size: 0.98rem; margin-bottom: 1rem; }
.ai-points { list-style: none; display: grid; gap: 1.1rem; }
.ai-points li {
  border-left: 2px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1.2rem;
}
.ai-points li strong { display: block; font-size: 0.95rem; letter-spacing: 0.04em; }
.ai-points li span { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Areas ---------- */
.area-cloud { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.area-cloud li {
  list-style: none;
  border: 1px solid var(--line);
  color: var(--ivory-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
}

/* ---------- Footer contact links ---------- */
.footer-legal a { color: var(--ivory-dim); text-decoration: none; }
.footer-legal a:hover { color: var(--gold-bright); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.section-cta-row { margin-top: 3rem; }
.mt-2 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .detail-grid, .ai-panel { grid-template-columns: 1fr; gap: 2.6rem; }
  .detail-aside { position: static; }
  .benefit-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero { min-height: 40vh; }
  .ai-panel { padding: 2rem 1.6rem; }
}
