/* CoolHome Tint — self-contained theme CSS (Bluehost-safe, no build step) */

:root {
  --cht-bg: #ffffff;
  --cht-cream: #f9f5ee;
  --cht-primary: #28657c;
  --cht-primary-dark: #1e4f61;
  --cht-primary-light: #5d8b9c;
  --cht-link: #6a9caf;
  --cht-text: #2a2a2a;
  --cht-muted: #666666;
  --cht-nav: #999999;
  --cht-error: #b91c1c;
  --cht-border: #e2e2e2;
  --cht-max: 1100px;
  --cht-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cht-font);
  color: var(--cht-text);
  background: var(--cht-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--cht-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.screen-reader-text,
.cht-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cht-skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--cht-primary);
  color: #fff;
  font-weight: 700;
}

.cht-container {
  width: 100%;
  max-width: var(--cht-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .cht-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .cht-container {
    padding: 0 2rem;
  }
}

.cht-narrow {
  max-width: 48rem;
}

/* Buttons */
.cht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 1.25rem;
  border: 3px solid var(--cht-primary);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.cht-btn-primary {
  background: var(--cht-primary);
  color: #fff !important;
}

.cht-btn-primary:hover {
  background: #fff;
  color: var(--cht-primary) !important;
}

.cht-btn-outline {
  background: #fff;
  color: var(--cht-primary) !important;
}

.cht-btn-outline:hover {
  background: var(--cht-primary);
  color: #fff !important;
}

.cht-btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--cht-primary) !important;
}

.cht-btn-white:hover {
  background: transparent;
  color: #fff !important;
}

.cht-btn-block {
  width: 100%;
}

.cht-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Header */
.cht-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--cht-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cht-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

@media (min-width: 1024px) {
  .cht-header-inner {
    min-height: 6rem;
  }
}

.cht-logo-wrap {
  display: flex;
  align-items: center;
}

.cht-logo-wrap .custom-logo-link {
  display: inline-flex;
  line-height: 0;
}

.cht-logo-wrap .custom-logo {
  max-height: 56px;
  width: auto;
}

.cht-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cht-primary) !important;
  text-decoration: none !important;
  letter-spacing: -0.02em;
}

.cht-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .cht-nav {
    display: flex;
  }
}

.cht-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cht-nav-list > li {
  position: relative;
}

.cht-nav-list a,
.cht-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cht-nav);
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none !important;
}

.cht-nav-list a:hover,
.cht-nav-btn:hover {
  color: var(--cht-primary);
}

.cht-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 220px;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  background: var(--cht-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 60;
}

.cht-has-dropdown:hover .cht-dropdown,
.cht-has-dropdown:focus-within .cht-dropdown {
  display: block;
}

.cht-dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  color: #fff !important;
  font-size: 0.75rem;
}

.cht-dropdown a:hover {
  background: var(--cht-primary-light);
}

.cht-header-phone {
  margin-left: 0.75rem;
}

.cht-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .cht-header-mobile {
    display: none;
  }
}

.cht-mobile-call {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cht-primary) !important;
  text-decoration: none !important;
  padding: 0.5rem;
}

.cht-menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.cht-burger,
.cht-burger::before,
.cht-burger::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--cht-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cht-burger {
  top: 50%;
  margin-top: -1px;
}

.cht-burger::before {
  content: "";
  top: -7px;
}

.cht-burger::after {
  content: "";
  top: 7px;
}

.cht-mobile-nav {
  border-top: 1px solid var(--cht-border);
  background: #fff;
  padding: 0.75rem 0 1.25rem;
}

.cht-mobile-nav[hidden] {
  display: none !important;
}

.cht-mobile-nav ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.cht-mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cht-border);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  color: var(--cht-nav);
  text-decoration: none !important;
}

/* Main padding for sticky CTA */
.cht-main {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .cht-main {
    padding-bottom: 0;
  }
}

/* Hero */
.cht-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cht-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cht-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 79, 97, 0.94) 0%,
    rgba(40, 101, 124, 0.9) 50%,
    rgba(30, 79, 97, 0.92) 100%
  );
}

.cht-hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .cht-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    align-items: start;
  }
}

.cht-hero-copy {
  text-align: center;
}

@media (min-width: 1024px) {
  .cht-hero-copy {
    text-align: left;
    padding-top: 0.5rem;
  }
}

.cht-eyebrow {
  display: inline-flex;
  margin: 0;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
}

.cht-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.cht-subline {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.95);
}

.cht-hero-sub {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1024px) {
  .cht-hero-sub {
    margin-left: 0;
  }
}

.cht-check-list {
  list-style: none;
  margin: 1.25rem auto 0;
  padding: 0;
  max-width: 36rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .cht-check-list {
    margin-left: 0;
  }
}

.cht-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.cht-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: #fff;
  color: var(--cht-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.cht-check-list-light .cht-check {
  background: transparent;
  color: #fff;
}

.cht-hero-area {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.cht-hero-disclaimer {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.cht-hero-call {
  margin: 1.5rem 0 0;
}

/* Form */
.cht-form-card {
  background: #fff;
  border: 1px solid var(--cht-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 1.25rem;
  color: var(--cht-text);
  scroll-margin-top: 6rem;
}

@media (min-width: 640px) {
  .cht-form-card {
    padding: 1.75rem;
  }
}

.cht-form-title {
  margin: 0;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cht-primary);
}

.cht-form-trust,
.cht-form-required-note {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--cht-muted);
}

.cht-form-required-note {
  font-size: 0.75rem;
}

.cht-form {
  margin-top: 1.25rem;
}

.cht-form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cht-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.cht-field {
  margin-bottom: 1rem;
}

.cht-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.cht-field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #999;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.cht-field input:focus {
  outline: 2px solid var(--cht-primary);
  outline-offset: 1px;
  border-color: var(--cht-primary);
}

.cht-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cht-form-error {
  background: #fef2f2;
  border: 1px solid rgba(185, 28, 28, 0.3);
  color: var(--cht-error);
  padding: 0.75rem;
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.cht-form-consent,
.cht-form-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--cht-muted);
  line-height: 1.5;
}

.cht-form-success {
  text-align: left;
}

.cht-form-success-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(40, 101, 124, 0.1);
  color: var(--cht-primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cht-form-success-title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--cht-primary);
}

/* Badges */
.cht-badges {
  border-bottom: 1px solid var(--cht-border);
  background: #fff;
  padding: 1.25rem 0;
}

.cht-badges-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .cht-badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cht-badges-grid li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid rgba(226, 226, 226, 0.9);
  background: rgba(249, 245, 238, 0.5);
  padding: 0.75rem;
}

.cht-badge-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cht-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.cht-badges-grid strong {
  display: block;
  font-size: 0.875rem;
  color: var(--cht-primary);
}

.cht-badges-grid small {
  display: block;
  font-size: 0.75rem;
  color: var(--cht-muted);
}

/* Sections */
.cht-section {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .cht-section {
    padding: 4rem 0;
  }
}

.cht-section-white {
  background: #fff;
}

.cht-section-cream {
  background: var(--cht-cream);
}

.cht-border-top {
  border-top: 1px solid var(--cht-border);
}

.cht-h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--cht-primary);
  line-height: 1.25;
}

.cht-center {
  text-align: center;
}

.cht-section-intro {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cht-muted {
  color: var(--cht-muted);
}

.cht-muted.small,
.small {
  font-size: 0.75rem;
}

/* Reasons */
.cht-reasons {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cht-reasons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cht-reasons h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.125rem;
  color: var(--cht-text);
}

.cht-reasons p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--cht-muted);
}

.cht-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--cht-primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Split layouts */
.cht-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cht-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.cht-split-media {
  overflow: hidden;
  border: 1px solid var(--cht-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cht-split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cht-split-copy p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

/* Service cards */
.cht-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cht-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cht-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cht-card {
  display: block;
  border: 1px solid var(--cht-border);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cht-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cht-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cht-cream);
}

.cht-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cht-card:hover .cht-card-img img {
  transform: scale(1.05);
}

.cht-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 79, 97, 0.8), transparent 60%);
}

.cht-card-label {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cht-card-body {
  padding: 1rem;
}

.cht-card-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--cht-muted);
}

.cht-card-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cht-primary);
}

/* Details */
.cht-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 3.5rem;
  scroll-margin-top: 6rem;
}

@media (min-width: 1024px) {
  .cht-detail {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .cht-detail-alt .cht-detail-img {
    order: 2;
  }

  .cht-detail-alt .cht-detail-copy {
    order: 1;
  }
}

.cht-detail-img {
  overflow: hidden;
  border: 1px solid var(--cht-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.cht-detail-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cht-detail-copy h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--cht-primary);
}

.cht-detail-copy p,
.cht-detail-copy ul {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.cht-detail-copy ul {
  padding-left: 1.25rem;
}

.cht-text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cht-primary) !important;
}

/* Benefits */
.cht-benefits {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cht-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.cht-benefits article {
  border: 1px solid var(--cht-border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cht-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 101, 124, 0.1);
  font-size: 1.25rem;
}

.cht-benefits h3 {
  margin: 1rem 0 0.5rem;
  color: var(--cht-primary);
  font-size: 1.125rem;
}

.cht-benefits p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--cht-muted);
}

/* Steps */
.cht-steps {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.cht-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cht-steps h3 {
  margin: 0;
  font-size: 1.125rem;
}

.cht-steps p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--cht-muted);
}

/* Proof */
.cht-proof {
  background: var(--cht-primary);
  color: #fff;
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .cht-proof {
    padding: 4rem 0;
  }
}

.cht-proof-img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cht-proof-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cht-proof-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(30, 79, 97, 0.92), transparent);
}

.cht-proof-caption span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.cht-proof-caption strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

.cht-proof-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: #fff;
}

.cht-proof-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.cht-proof-copy .cht-btn {
  margin-top: 2rem;
}

.cht-proof .cht-check-list {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

/* Gallery */
.cht-gallery {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cht-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cht-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cht-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cht-border);
  aspect-ratio: 4 / 3;
  background: var(--cht-cream);
}

.cht-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cht-gallery figure:hover img {
  transform: scale(1.05);
}

/* Areas */
.cht-areas {
  background: var(--cht-primary);
  color: #fff;
  padding: 3rem 0;
}

.cht-eyebrow-light {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

.cht-areas h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: #fff;
}

.cht-areas p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.cht-city-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cht-city-chips li {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Stats + testimonials */
.cht-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 0;
  border: 1px solid var(--cht-border);
  background: var(--cht-cream);
  padding: 1.25rem;
  text-align: center;
}

.cht-stats strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--cht-primary);
}

.cht-stats span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--cht-muted);
}

.cht-testimonials {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cht-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cht-testimonials figure {
  margin: 0;
  border: 1px solid var(--cht-border);
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cht-stars {
  color: var(--cht-primary);
  font-size: 0.875rem;
}

.cht-testimonials blockquote {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cht-testimonials figcaption {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cht-muted);
}

/* FAQ */
.cht-faq {
  margin-top: 2rem;
}

.cht-faq details {
  border: 1px solid var(--cht-border);
  background: #fff;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.cht-faq summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 600;
  list-style: none;
}

.cht-faq summary::-webkit-details-marker {
  display: none;
}

.cht-faq summary::after {
  content: "+";
  float: right;
  color: var(--cht-muted);
  font-size: 1.25rem;
  line-height: 1;
}

.cht-faq details[open] summary::after {
  content: "−";
}

.cht-faq details[open] summary {
  color: var(--cht-primary);
}

.cht-faq p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--cht-muted);
  line-height: 1.7;
}

/* Final CTA */
.cht-final-cta {
  background: linear-gradient(90deg, var(--cht-primary-dark), var(--cht-primary));
  color: #fff;
  padding: 3.5rem 0;
}

.cht-final-cta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: #fff;
}

.cht-final-cta p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
}

.cht-final-cta .cht-btn {
  margin-top: 2rem;
}

/* Footer */
.cht-footer {
  border-top: 4px solid var(--cht-primary);
  background: var(--cht-cream);
  padding: 3.5rem 0 2rem;
}

@media (max-width: 767px) {
  .cht-footer {
    padding-bottom: 5.5rem;
  }
}

.cht-footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .cht-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cht-footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.cht-footer-brand {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cht-primary);
}

.cht-footer-meta {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(40, 101, 124, 0.9);
}

.cht-footer-phone {
  margin: 1rem 0 0;
}

.cht-footer-phone a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cht-primary) !important;
}

.cht-footer-heading {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cht-primary);
}

.cht-footer-links {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.cht-footer-links li {
  margin-bottom: 0.5rem;
}

.cht-footer-links a {
  font-size: 0.875rem;
  color: rgba(40, 101, 124, 0.9) !important;
}

.cht-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(40, 101, 124, 0.2);
}

.cht-footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(40, 101, 124, 0.7);
}

/* Sticky mobile CTA */
.cht-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--cht-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cht-sticky-cta .cht-btn {
  flex: 1;
}

.cht-sticky-cta .cht-btn-primary {
  flex: 1.4;
}

@media (min-width: 768px) {
  .cht-sticky-cta {
    display: none;
  }
}

/* Inner pages */
.cht-page {
  padding-bottom: 3rem;
}

.cht-entry {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.cht-entry p {
  margin: 0 0 1.25em;
}

.cht-entry h2 {
  color: var(--cht-primary);
  margin: 2rem 0 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
