/* ==============================================
   SUBPAGE STYLES — service pages, locations, blog
   Loaded in addition to styles.css
   ============================================== */

/* Page hero (used by all subpages) */
.page-hero {
  position: relative;
  padding: clamp(50px, 7vw, 80px) 0 clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80vw);
  height: 4px;
  background-image: radial-gradient(circle, var(--vegas-gold) 2px, transparent 2.5px);
  background-size: 18px 4px;
  background-repeat: repeat-x;
  opacity: 0.35;
}
.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  line-height: 1.05;
  color: var(--vegas-blue);
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
}
.page-hero h1 em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--vegas-red);
  font-size: 0.78em;
  display: block;
  line-height: 1;
  margin: 6px 0 4px;
}
.page-hero .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: var(--mid-gray);
  max-width: 680px;
  margin: 0 auto 24px;
  padding: 0 12px;
}

/* Breadcrumbs */
.breadcrumb {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 6px;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--vegas-red);
  transition: color 0.15s ease;
}
.breadcrumb a:hover { color: var(--vegas-blue); }
.breadcrumb .bc-sep {
  color: rgba(27,46,92,0.3);
  margin: 0 6px;
}
.breadcrumb [aria-current="page"] {
  color: var(--vegas-blue);
  font-weight: 600;
}

/* Quick-fact bar under hero */
.fact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 32px);
  padding: 16px 0;
  border-top: 1px solid rgba(27,46,92,0.1);
  border-bottom: 1px solid rgba(27,46,92,0.1);
  background: rgba(251,246,233,0.5);
  font-family: var(--sans);
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 500;
}
.fact-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fact-bar span::before {
  content: '★';
  color: var(--vegas-gold);
  font-size: 12px;
}

/* Article content blocks */
.content {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--cream);
}
.content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.content-wide {
  max-width: 1080px;
  margin: 0 auto;
}
.content h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.1;
  color: var(--vegas-blue);
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.content h2:first-child { margin-top: 0; }
.content h2 em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--vegas-red);
  font-size: 0.85em;
}
.content h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--vegas-blue);
  margin: 32px 0 12px;
  letter-spacing: -0.005em;
}
.content p {
  font-size: clamp(15px, 1.7vw, 16.5px);
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--asphalt);
}
.content p strong { color: var(--vegas-blue); }
.content ul, .content ol {
  margin: 16px 0 24px 24px;
}
.content ul li, .content ol li {
  margin-bottom: 10px;
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.65;
  color: var(--asphalt);
}
.content ul li::marker { color: var(--vegas-gold); }
.content ol li::marker { color: var(--vegas-red); font-weight: 700; }
.content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--vegas-gold);
  background: var(--cream-warm);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  color: var(--asphalt);
}
.content blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vegas-red);
  font-weight: 600;
}
.content a {
  color: var(--vegas-red);
  font-weight: 600;
  border-bottom: 1px solid rgba(200,16,46,0.3);
  transition: border-color 0.15s ease;
}
.content a:hover { border-color: var(--vegas-red); }

/* Pricing table */
.pricing-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: var(--cream);
  border: 1px solid rgba(27,46,92,0.12);
  font-family: var(--sans);
  font-size: 14.5px;
}
.pricing-table thead {
  background: var(--vegas-blue);
  color: var(--cream);
}
.pricing-table th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vegas-gold);
}
.pricing-table th:last-child { text-align: right; }
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(27,46,92,0.08);
  vertical-align: top;
}
.pricing-table td:last-child {
  text-align: right;
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  color: var(--vegas-red);
  white-space: nowrap;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--cream-warm); }
.pricing-table .row-strong { color: var(--vegas-blue); font-weight: 600; }
.pricing-table .row-note {
  display: block;
  font-size: 12px;
  color: var(--mid-gray);
  font-weight: 400;
  margin-top: 2px;
}

/* Mobile pricing — collapse table to cards */
@media (max-width: 640px) {
  .pricing-table thead { display: none; }
  .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    background: var(--cream);
    border: 1px solid rgba(27,46,92,0.12);
    margin-bottom: 12px;
    padding: 6px 10px;
  }
  .pricing-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(27,46,92,0.06);
  }
  .pricing-table td:last-child {
    text-align: left;
    border-bottom: none;
    padding-top: 4px;
  }
  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--vegas-red);
    margin-bottom: 3px;
  }
}

/* Related pages / interlinking grid */
.related {
  padding: clamp(50px, 7vw, 90px) 0;
  background: var(--cream-warm);
  border-top: 1px solid rgba(27,46,92,0.08);
}
.related-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.related-card {
  background: var(--cream);
  border: 1px solid rgba(27,46,92,0.12);
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--vegas-blue);
  box-shadow: 0 18px 40px -22px rgba(27,46,92,0.25);
}
.related-card .kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vegas-red);
  margin-bottom: 8px;
}
.related-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--vegas-blue);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.related-card p {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.55;
  margin: 0 0 14px;
  flex-grow: 1;
}
.related-card .arrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vegas-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.related-card .arrow::after { content: '→'; font-size: 14px; transition: transform 0.2s ease; }
.related-card:hover .arrow::after { transform: translateX(4px); }

/* Highlight banner / call-out */
.highlight-banner {
  background: var(--vegas-blue);
  color: var(--cream);
  padding: clamp(40px, 6vw, 60px) 0;
  position: relative;
  overflow: hidden;
}
.highlight-banner::before, .highlight-banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background-image: radial-gradient(circle, var(--vegas-gold) 2px, transparent 2.5px);
  background-size: 22px 3px;
  opacity: 0.4;
}
.highlight-banner::before { top: 16px; }
.highlight-banner::after { bottom: 16px; }
.highlight-banner-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.highlight-banner h3 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.highlight-banner h3 em {
  font-family: var(--script);
  font-style: normal;
  color: var(--vegas-gold);
  font-weight: 400;
  font-size: 0.85em;
}
.highlight-banner p {
  color: rgba(251,246,233,0.85);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.highlight-banner .btn-primary { background: var(--vegas-red); border-color: var(--vegas-red); }

/* Two-column content layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; }
}

/* Specs grid for service pages */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.spec-item {
  background: var(--cream-warm);
  padding: 18px 20px;
  border-left: 3px solid var(--vegas-gold);
}
.spec-item .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vegas-red);
  margin-bottom: 4px;
}
.spec-item .value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vegas-blue);
  line-height: 1.3;
}

/* Inline note callout */
.inline-note {
  background: var(--cream-warm);
  border: 1px solid rgba(244,185,40,0.4);
  padding: 18px 22px;
  margin: 24px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--asphalt);
  border-radius: 1px;
}
.inline-note strong {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vegas-red);
  margin-bottom: 6px;
}

/* Blog-specific styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--cream);
  border: 1px solid rgba(27,46,92,0.1);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--vegas-blue);
  box-shadow: 0 22px 50px -28px rgba(27,46,92,0.25);
}
.blog-card .blog-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vegas-red);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--vegas-blue);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.blog-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mid-gray);
  margin: 0 0 16px;
  flex-grow: 1;
}
.blog-card .read {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vegas-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card .read::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.2s ease;
}
.blog-card:hover .read::after { transform: translateX(4px); }

/* Article reading content */
.article-meta {
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vegas-red);
  font-weight: 600;
}
.article-meta .dot {
  margin: 0 10px;
  color: var(--vegas-gold);
}

/* CTA strip */
.cta-strip {
  background: var(--cream);
  border-top: 4px solid var(--vegas-gold);
  padding: 36px 0;
  text-align: center;
}
.cta-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--vegas-blue);
  max-width: 480px;
}
.cta-strip p strong {
  font-style: normal;
  color: var(--vegas-red);
  font-weight: 700;
}
@media (max-width: 640px) {
  .cta-strip .container { flex-direction: column; gap: 16px; }
}
