/* ==========================================================================
   Junk Ain't Good — shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
  --orange: #ff5500;
  --orange-dark: #e04c00;
  --dark: #1a1c1e;
  --dark-2: #101112;
  --text: #2b2b2b;
  --muted: #5c5c5c;
  --light-bg: #f2f2f2;
  --card-bg: #eceff1;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.25rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease, color .15s ease;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn-orange {
  background: var(--orange);
  color: var(--dark);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border: 2px solid var(--orange);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-link img {
  height: 70px;
  width: auto;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: flex-end;
  flex: 1;
}

.main-nav a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.nav-dropdown-toggle .caret {
  font-size: 0.7em;
  transition: transform 0.15s;
}

.nav-dropdown.open .nav-dropdown-toggle .caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  z-index: 50;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu a {
  padding: 8px 18px !important;
  white-space: nowrap;
  border-bottom: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255,255,255,0.06);
  color: var(--orange);
}

@media (min-width: 761px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
  padding: 64px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 420px;
}

.hero-copy .eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 380px;
}

.hero-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.phone-badge {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--dark);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 56px;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.85rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 12px auto 16px;
  max-width: 900px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #cfcfcf;
}

/* ---------- Orange band section ---------- */
.band-orange {
  background: var(--orange);
  color: var(--dark);
  padding: 64px 0;
}

.band-orange h2,
.band-orange h3 {
  color: var(--dark);
}

.band-orange .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 12px;
}

.section-header p {
  color: var(--muted);
}

.section-header .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

.accent {
  color: var(--orange);
}

/* ---------- Process steps ---------- */
.process-section {
  padding: 28px 0 36px;
}

.process-section .section-header {
  margin-bottom: 24px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.process-step-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.process-step-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50%;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

.process-step:first-child .process-step-top::before {
  display: none;
}

.process-step-num {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.process-step-num.is-active {
  background: var(--orange);
  color: var(--white);
}

.process-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 85, 0, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.process-step-icon svg {
  width: 20px;
  height: 20px;
}

.process-step h3 {
  font-size: 0.98rem;
  margin: 0 0 5px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0 0 10px;
}

.process-pill {
  display: inline-block;
  background: var(--light-bg);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.process-pill.is-active {
  background: rgba(255, 85, 0, 0.1);
  color: var(--orange-dark);
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .process-step:nth-child(3) .process-step-top::before {
    display: none;
  }
}

@media (max-width: 520px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step-top::before {
    display: none;
  }
}

/* ---------- Services / feature blocks ---------- */
.service-block {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid #e4e4e4;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block-copy {
  flex: 1 1 420px;
}

.service-block-copy h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.service-block-copy ul {
  columns: 2;
  -webkit-columns: 2;
  gap: 24px;
  margin-top: 16px;
}

.service-block-copy ul li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.service-block-image {
  flex: 1 1 320px;
}

.service-block-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ---------- Card grid (What We Haul Away) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid #dcdcdc;
  border-radius: var(--radius);
  padding: 28px;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #ffe3d1;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.card ul {
  columns: 1;
  margin-top: 14px;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.stats-section .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.85rem;
}

.stats-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 10px 0 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  color: #cfcfcf;
  font-size: 0.95rem;
  margin-top: 6px;
}

/* ---------- Commitment / CTA copy inside orange band ---------- */
.commitment {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
}

.commitment h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.commitment p {
  margin-bottom: 16px;
}

/* ---------- Reviews ---------- */
.reviews-section {
  padding: 64px 0;
  text-align: center;
}

.reviews-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 8px;
}

.reviews-sub {
  color: var(--muted);
  margin-bottom: 36px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: left;
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
}

.review-stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b93ff, #4b3b8f);
  flex-shrink: 0;
}

.review-avatar.alt {
  background: linear-gradient(135deg, #2f2f2f, #111);
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Before/After gallery ---------- */
.gallery-hero-image {
  margin-bottom: 40px;
}

.gallery-hero-image img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 420px;
  object-fit: cover;
}

.pair-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pair-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

.pair-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.pair-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pair-label.after {
  background: var(--orange);
  color: var(--dark);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dcdcdc;
}

.photo-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
}

.photo-caption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--dark);
  opacity: 0.85;
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.quote-layout .qq-text {
  grid-column: 1;
  grid-row: 1;
}

.quote-layout .qq-form {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.quote-layout .qq-image {
  grid-column: 1;
  grid-row: 2;
}

.contact-form {
  background: var(--light-bg);
  padding: 32px;
  border-radius: var(--radius);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 10px;
}

.form-success {
  display: none;
  background: #e6f7ec;
  border: 1px solid #b7e4c7;
  color: #1e6b3c;
  padding: 14px 18px;
  border-radius: 4px;
  margin-top: 16px;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.req {
  color: var(--orange);
}

.form-error {
  display: none;
  background: #fbe7e7;
  border: 1px solid #eab2b2;
  color: #9c2b2b;
  padding: 14px 18px;
  border-radius: 4px;
  margin-top: 16px;
}

.form-error.show {
  display: block;
}

.photo-upload-zone {
  border: 2px dashed #bbb;
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s;
}

.photo-upload-zone:hover,
.photo-upload-zone.dragover {
  border-color: var(--orange);
}

.photo-upload-zone p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.photo-upload-zone .upload-icon {
  font-size: 2rem;
}

.photo-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.photo-thumb {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--light-bg);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-thumb .remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.8rem;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.consent-row {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 14px 16px;
}

.consent-row .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.consent-label span {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.keyword-cloud {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.9;
}

.keyword-cloud span::after {
  content: ' , ';
}

.keyword-cloud span:last-child::after {
  content: '';
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.faq-item {
  margin-bottom: 28px;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
}

/* ---------- Blog ---------- */
.blog-list {
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
}

.blog-card h2 {
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.blog-card h2 a:hover {
  color: var(--orange);
}

.blog-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 12px;
}

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #cfcfcf;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* ---------- Footer Service Area ---------- */
.footer-service-area {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-service-area h4 {
  color: var(--orange);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.service-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.service-area-links a {
  color: #cfcfcf;
  font-size: 0.82rem;
}

.service-area-links a:hover {
  color: var(--orange);
}

.footer-inner .footer-service-area {
  border-bottom: none;
  padding: 0 0 20px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.footer-brand .accent-bar {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--orange);
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin: 0 0 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 12px;
  color: #cfcfcf;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
}

.footer-bottom .badge {
  color: var(--orange);
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mt-16 {
  margin-top: 16px;
}

.page-hero-tight {
  padding-top: 20px;
  padding-bottom: 32px;
}

.page-hero-tight .eyebrow {
  display: inline-block;
  margin-bottom: 4px;
}

.page-hero-tight h1 {
  margin: 4px auto 10px;
  line-height: 1.12;
}

/* ---------- Blog post enhancements ---------- */
.key-takeaways {
  background: #fff4ec;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 8px 0 40px;
}

.key-takeaways h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.key-takeaways ul {
  margin: 0;
  padding-left: 1.1rem;
}

.key-takeaways li {
  margin-bottom: 8px;
  color: var(--text);
}

.key-takeaways li:last-child {
  margin-bottom: 0;
}

.pull-quote {
  border-left: 4px solid var(--dark);
  background: var(--card-bg);
  padding: 24px 28px;
  margin: 40px 0;
  border-radius: var(--radius);
}

.pull-quote p {
  font-size: 1.25rem !important;
  line-height: 1.5;
  font-weight: 700;
  color: var(--dark);
  margin: 0 !important;
}

.post-image-block {
  margin: 40px 0;
}

.post-image-block img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.post-image-block figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.post-faq {
  margin: 48px 0 8px;
}

.post-faq h2 {
  margin-bottom: 20px;
}

.post-faq-item {
  border-bottom: 1px solid #e4e4e4;
  padding: 18px 0;
}

.post-faq-item:last-child {
  border-bottom: none;
}

.post-faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--dark);
}

.post-faq-item p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.related-reading {
  margin: 40px 0 8px;
}

.related-reading h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.related-reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-reading-card {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.related-reading-card:hover {
  background: var(--dark);
  color: var(--white);
}

.related-reading-card .rr-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quote-layout .qq-text,
  .quote-layout .qq-form,
  .quote-layout .qq-image {
    grid-column: 1;
    grid-row: auto;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pair-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-reading-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-block,
  .service-block.reverse {
    flex-direction: column;
  }

  .service-block-copy ul {
    columns: 1;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
    background: var(--dark-2);
    padding: 12px 0 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    min-width: 0;
    padding: 0 0 0 16px;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown-menu a {
    padding: 10px 4px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }

  .site-header .header-inner {
    padding: 12px 20px;
  }

  .hero {
    padding: 40px 0;
  }

  .section,
  .band-orange,
  .stats-section,
  .reviews-section {
    padding: 44px 0;
  }
}
