/* ================================================================
   INTERIOR PAGES — Residential, Commercial, Gallery, Reviews, etc.
   Extends global.css with shared interior-page components
   ================================================================ */

/* ================================================================
   PAGE HERO (not as tall as homepage hero, still high impact)
   ================================================================ */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border: 48px solid var(--orange);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(247,116,48,0.03) 0, rgba(247,116,48,0.03) 2px, transparent 2px, transparent 14px);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.page-hero-inner.single-col {
  display: block;
  max-width: 960px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--orange); transition: var(--t); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.page-hero h1 .o { color: var(--orange); }
.page-hero h1 .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  font-style: italic;
  font-weight: 900;
}
.page-hero .lead {
  font-size: clamp(17px, 1.8vw, 21px);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 32px;
}

.page-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
}
.page-hero-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.page-hero-meta .item svg { width: 18px; height: 18px; color: var(--orange); }

.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right-side photo callout on page heroes */
.page-hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: #1a2d52;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-photo::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 6px solid var(--orange);
  z-index: 2;
}
.page-hero-photo .tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
}

/* ================================================================
   INTRO / CONTENT BLOCKS
   ================================================================ */
.page-intro {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.page-intro-inner {
  max-width: 960px;
  margin: 0 auto;
}
.page-intro h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--ink);
}
.page-intro h2 .o { color: var(--orange); }
.page-intro .lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 24px;
}
.page-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 18px;
}
.page-intro h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 36px 0 16px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

/* ================================================================
   SPLIT CONTENT BLOCK (text + photo, alternating)
   ================================================================ */
.split-block {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.split-block.alt { background: var(--bg-soft); }
.split-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split-block.reverse .split-inner { direction: rtl; }
.split-block.reverse .split-inner > * { direction: ltr; }

.split-tx h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.split-tx h2 .o { color: var(--orange); }
.split-tx .lead-sm {
  font-size: 17px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 20px;
}
.split-tx p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 18px;
}
.split-tx ul {
  list-style: none;
  margin: 20px 0;
}
.split-tx ul li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  color: var(--body);
  line-height: 1.55;
}
.split-tx ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 20px; height: 2px;
  background: var(--orange);
}

.split-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(19,37,74,0.92);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ================================================================
   FEATURE GRID (like services, different context)
   ================================================================ */
.feature-grid {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.feature-inner { max-width: var(--max-w); margin: 0 auto; }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  padding: 36px 28px;
  background: var(--bg-soft);
  border-top: 4px solid var(--orange);
  transition: var(--t);
  position: relative;
}
.feature-card:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19,37,74,0.2);
}
.feature-card:hover p { color: rgba(255,255,255,0.8); }
.feature-card:hover .feature-num { color: var(--orange); }
.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

/* ================================================================
   MATERIAL / OPTIONS COMPARISON TABLE
   ================================================================ */
.options-table {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: var(--bg-soft);
}
.options-inner { max-width: var(--max-w); margin: 0 auto; }
.opt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--navy);
  border: 1px solid var(--navy);
  margin-top: 48px;
}
.opt-card {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.opt-card.featured {
  background: var(--navy);
  color: #fff;
}
.opt-card.featured h3 { color: #fff; }
.opt-card.featured p { color: rgba(255,255,255,0.8); }
.opt-card.featured .opt-price { color: var(--orange); }
.opt-card.featured .opt-feat { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.15); }
.opt-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--orange);
  color: #fff;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.opt-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.opt-card .opt-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.opt-card.featured .opt-sub { color: var(--orange); }
.opt-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1;
}
.opt-price .small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.opt-card .opt-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.opt-card.featured .opt-price-note { color: rgba(255,255,255,0.6); }
.opt-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.opt-feat {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--body);
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.4;
}
.opt-feat:first-child { border-top: none; }
.opt-feat svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ================================================================
   GALLERY GRID (masonry-style)
   ================================================================ */
.gallery-section {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.gallery-inner { max-width: var(--max-w); margin: 0 auto; }

.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.gallery-filter button {
  background: transparent;
  color: var(--body);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--line);
  transition: var(--t);
  cursor: pointer;
}
.gallery-filter button:hover,
.gallery-filter button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,37,74,0) 50%, rgba(19,37,74,0.92) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  opacity: 0;
  transition: var(--t);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.gallery-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
}

/* ================================================================
   REVIEWS PAGE — Full review grid
   ================================================================ */
.reviews-full {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.reviews-full-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-rating-banner {
  background: var(--bg-soft);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  border-left: 6px solid var(--orange);
}
.reviews-rating-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.reviews-rating-score small {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}
.reviews-rating-mid .stars {
  color: var(--star);
  letter-spacing: 3px;
  font-size: 20px;
  margin-bottom: 10px;
}
.reviews-rating-mid p {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 4px;
}
.reviews-rating-mid p b { color: var(--ink); }
.reviews-rating-cta a {
  background: #fff;
  border: 2px solid var(--navy);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reviews-rating-cta a:hover {
  background: var(--navy);
  color: #fff;
}

.reviews-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ================================================================
   PROCESS / STEPS
   ================================================================ */
.process {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: var(--bg-soft);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step {
  background: #fff;
  padding: 28px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step-num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  background: var(--navy);
  color: var(--orange);
  border: 4px solid var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}

/* ================================================================
   INLINE CTA BLOCK
   ================================================================ */
.inline-cta {
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  background: var(--orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border: 40px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.inline-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.inline-cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 8px;
}
.inline-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.inline-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

/* Left: Form + AI toggle */
.contact-form-wrap {
  background: var(--bg-soft);
  padding: clamp(32px, 4vw, 48px);
  border-top: 4px solid var(--orange);
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.contact-form-wrap h2 .o { color: var(--orange); }
.contact-form-wrap p {
  color: var(--body);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Tab toggle: Classic Form vs AI Assistant */
.contact-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--line);
}
.contact-tab {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
  border: none;
  text-align: center;
}
.contact-tab.active {
  background: var(--navy);
  color: #fff;
}
.contact-tab.ai { color: var(--orange); }
.contact-tab.ai.active { background: var(--orange); color: #fff; }
.contact-tab .badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  letter-spacing: 1px;
  margin-left: 6px;
  border-radius: 2px;
}
.contact-tab.ai.active .badge {
  background: #fff;
  color: var(--orange);
}

/* Panel visibility */
.contact-panel { display: none; }
.contact-panel.active { display: block; }

/* Form styling */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-field label .req { color: var(--orange); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 2px solid var(--line);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: var(--t);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,116,48,0.12);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}
.form-submit {
  margin-top: 12px;
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}
.form-submit svg { width: 16px; height: 16px; }
.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* AI panel specific */
.ai-panel-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  background: #fff;
  border-left: 4px solid var(--orange);
}
.ai-panel-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.ai-panel-title { font-weight: 800; font-size: 15px; color: var(--ink); line-height: 1.2; }
.ai-panel-sub {
  font-size: 11px;
  color: var(--green-ok);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-panel-sub::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green-ok); border-radius: 50%;
  box-shadow: 0 0 6px var(--green-ok);
  animation: pulse 2s infinite;
}
.ai-panel-messages {
  background: #fff;
  padding: 18px;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 12px;
}
.ai-panel-messages .ai-msg {
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.ai-panel-messages .ai-msg.bot {
  background: var(--bg-soft);
  color: var(--ink);
}
.ai-panel-messages .ai-msg.user {
  background: var(--navy);
  color: #fff;
  margin-left: 28px;
}

/* AI chat typing indicator (shown while Claude is thinking) */
.ai-panel-messages .ai-msg.ai-typing {
  display: inline-flex;
  gap: 4px;
  padding: 16px 14px;
  background: var(--bg-soft);
  width: auto;
  max-width: 60px;
}
.ai-typing .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: aiTyping 1.4s infinite ease-in-out;
}
.ai-typing .dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes aiTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* AI chat disabled state while request in-flight */
.ai-form input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.ai-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Right: Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}
.contact-info-head h2 .o { color: var(--orange); }
.contact-info-head p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--t);
}
.contact-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 24px rgba(19,37,74,0.08);
  transform: translateY(-2px);
}
.contact-card-ic {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-ic svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  display: block;
}
.contact-card a { color: var(--orange); font-weight: 700; }
.contact-card a:hover { color: var(--orange-deep); }

/* Map embed */
.contact-map {
  margin-top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 24px;
}
.contact-map h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-map p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.contact-map iframe,
.contact-map .map-placeholder {
  width: 100%;
  height: 200px;
  border: 0;
  background: #eef1f5;
  display: block;
}

/* ================================================================
   SERVICE AREA FULL PAGE MAP (big version)
   ================================================================ */
.sa-full {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.sa-inner { max-width: var(--max-w); margin: 0 auto; }
.sa-big-map {
  background: #f6f7f9;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  margin-bottom: 40px;
}
.sa-big-map-visual {
  background: #eef1f5;
  height: 440px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.sa-big-map-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sa-big-map-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.sa-big-map-note .orange { color: var(--orange); font-weight: 700; }

.sa-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sa-city-card {
  background: var(--bg-soft);
  padding: 20px;
  border-left: 3px solid var(--orange);
  transition: var(--t);
}
.sa-city-card:hover {
  background: var(--navy);
  color: #fff;
  transform: translateX(4px);
}
.sa-city-card:hover p { color: rgba(255,255,255,0.75); }
.sa-city-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.sa-city-card p {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* Article-style topic page (What Are Seamless / Advantages) */
.topic-page {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.topic-inner {
  max-width: 840px;
  margin: 0 auto;
}
.topic-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.topic-meta span { display: flex; align-items: center; gap: 6px; }
.topic-meta svg { width: 14px; height: 14px; color: var(--orange); }
.topic-meta .tag {
  background: var(--orange);
  color: #fff;
  padding: 4px 10px;
  font-weight: 500;
}
.topic-inner h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 18px;
  color: var(--ink);
}
.topic-inner h1 .o { color: var(--orange); }
.topic-inner .lede {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 36px;
  font-weight: 400;
}
.topic-inner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 48px 0 20px;
  line-height: 1.1;
}
.topic-inner h2 .o { color: var(--orange); }
.topic-inner h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin: 32px 0 14px;
  letter-spacing: -0.3px;
}
.topic-inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 20px;
}
.topic-inner ul,
.topic-inner ol {
  margin: 20px 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.topic-inner ul li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
}
.topic-inner ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 20px; height: 2px;
  background: var(--orange);
}
.topic-inner ol {
  counter-reset: topic-ol;
}
.topic-inner ol li {
  padding-left: 44px;
  margin-bottom: 16px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  counter-increment: topic-ol;
}
.topic-inner ol li::before {
  content: counter(topic-ol);
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 30px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
}
.topic-inner blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 4px solid var(--orange);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}
.topic-inner blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.topic-inner .callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--navy);
  color: #fff;
  border-left: 4px solid var(--orange);
}
.topic-inner .callout h3 {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-weight: 500;
}
.topic-inner .callout p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.topic-inner .callout p a { color: var(--orange); font-weight: 700; }

/* Related topic links at bottom of article */
.topic-related {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: var(--bg-soft);
}
.topic-related-inner { max-width: var(--max-w); margin: 0 auto; }
.topic-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.topic-related-card {
  background: #fff;
  padding: 24px;
  border-top: 3px solid var(--orange);
  transition: var(--t);
  text-decoration: none;
  color: inherit;
  display: block;
}
.topic-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(19,37,74,0.1);
}
.topic-related-card .cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.topic-related-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}
.topic-related-card p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .split-inner { grid-template-columns: 1fr; }
  .split-block.reverse .split-inner { direction: ltr; }
  .feature-cards { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; }
  .reviews-grid-full { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .inline-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .inline-cta-actions { justify-content: center; }
  .reviews-rating-banner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .sa-city-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sa-city-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   BLOG PAGES
   ================================================================ */

/* Blog index — grid */
.blog-index {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.blog-index-inner { max-width: var(--max-w); margin: 0 auto; }

.blog-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.blog-filter button {
  background: transparent;
  color: var(--body);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--line);
  transition: var(--t);
  cursor: pointer;
}
.blog-filter button:hover,
.blog-filter button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19,37,74,0.12);
  border-color: var(--orange);
}
.blog-card-img {
  aspect-ratio: 16/10;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.blog-card-body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.blog-card-meta span { display: flex; align-items: center; gap: 6px; }
.blog-card-meta svg { width: 12px; height: 12px; color: var(--orange); }
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-read {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: var(--t);
}
.blog-card-read svg { width: 14px; height: 14px; transition: var(--t); }
.blog-card:hover .blog-card-read svg { transform: translateX(4px); }

/* Blog post page */
.post-hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(80px, 10vw, 120px) var(--pad-x) clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.post-hero--photo {
  background-image: linear-gradient(rgba(10,22,48,0.6), rgba(10,22,48,0.7)),
                    url('/assets/img/photos/gutter-copper-hero.jpg');
  background-size: cover;
  background-position: center top;
}
.post-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border: 48px solid var(--orange);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.post-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.post-hero .breadcrumb { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.post-hero .breadcrumb a { color: var(--orange); }
.post-hero .breadcrumb a:hover { color: #fff; }
.post-hero-cat {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.post-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
}
.post-hero h1 .o { color: var(--orange); }
.post-hero-lede {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 760px;
  margin-bottom: 32px;
}
.post-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.post-hero-meta .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-hero-meta .item svg { width: 14px; height: 14px; color: var(--orange); }

/* Post body — uses topic-inner + topic-page already styled */
.post-body {
  padding: clamp(60px, 7vw, 90px) var(--pad-x) clamp(40px, 6vw, 60px);
  background: #fff;
}
.post-inner {
  max-width: 760px;
  margin: 0 auto;
}
.post-inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 22px;
}
.post-inner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--ink);
  margin: 48px 0 18px;
}
.post-inner h2 .o { color: var(--orange); }
.post-inner h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.3px;
}
.post-inner ul, .post-inner ol {
  margin: 18px 0 24px;
  padding-left: 0;
  list-style: none;
}
.post-inner ul li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}
.post-inner ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 2px;
  background: var(--orange);
}
.post-inner ol {
  counter-reset: post-ol;
}
.post-inner ol li {
  padding-left: 42px;
  margin-bottom: 14px;
  position: relative;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  counter-increment: post-ol;
}
.post-inner ol li::before {
  content: counter(post-ol);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
}
.post-inner blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  background: var(--bg-soft);
  border-left: 4px solid var(--orange);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}
.post-inner blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.post-inner .callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--navy);
  color: #fff;
  border-left: 4px solid var(--orange);
}
.post-inner .callout h3 {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 500;
}
.post-inner .callout p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.post-inner .callout a { color: var(--orange); font-weight: 700; }

.post-inner a { color: var(--orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.post-inner a:hover { color: var(--orange-deep); }

/* Share bar */
.post-share {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.post-share-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.post-share-links {
  display: flex;
  gap: 8px;
}
.post-share-links a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--navy);
  transition: var(--t);
}
.post-share-links a:hover {
  background: var(--orange);
  color: #fff;
}
.post-share-links svg { width: 16px; height: 16px; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SHARED LAYOUT UTILITIES (used by generated service/blog pages)
   ================================================================ */

/* Generic centered container — alias for .wrap */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Buttons — orange fill and ghost variants */
.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
}
.btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); }

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-lg.btn-orange,
.btn-lg.btn-ghost { padding: 18px 36px; font-size: 16px; }

/* Page hero extras */
.page-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 680px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Generic padded content section */
.content-section {
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
  background: #fff;
}
.content-section.bg-light { background: var(--bg-soft); }

/* 2-column layout: main content + sidebar */
.content-2col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 960px) {
  .content-2col { grid-template-columns: 1fr; }
}

.content-main h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 36px 0 16px;
  line-height: 1.15;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  margin: 28px 0 12px;
}
.content-main p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 18px;
}

/* Sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  padding: 24px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 10px;
}
.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-card ul li {
  font-size: 14px;
  color: var(--body);
  line-height: 2.2;
}
.sidebar-card ul li a { color: var(--orange); font-weight: 600; }
.sidebar-card ul li a:hover { text-decoration: underline; }

/* Checkmark list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}
.check-list li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Narrow centered column */
.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* Section heading */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.1;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
}
.faq-item summary {
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { background: var(--bg-soft); color: var(--orange); }
.faq-item p {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; }
.cta-text a { color: var(--orange); font-weight: 700; }
@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; }
}
