.ho-location {
  --ho-orange: #FF8F00;
  --ho-orange-deep: #E07F00;
  --ho-charcoal: #222222;
  --ho-dark: #1A1A1A;
  --ho-body: #555555;
  --ho-offwhite: #F9F7F5;
  --ho-white: #FFFFFF;
  --ho-gray: #F5F5F5;
  --ho-border: #E6E6E6;
  --ho-font: 'Roboto', system-ui, sans-serif;
  --ho-h1: 700 clamp(28px, 5vw, 60px)/1.1 var(--ho-font);
  --ho-h2: 700 clamp(24px, 3.5vw, 40px)/1.15 var(--ho-font);
  --ho-h3: 600 22px/1.3 var(--ho-font);
  --ho-body-size: 16px;
  --ho-eyebrow: 700 12px/1 var(--ho-font);
  --ho-btn: 700 11px/1 var(--ho-font);

  font-family: var(--ho-font);
  font-size: var(--ho-body-size);
  color: var(--ho-body);
  line-height: 1.6;
  box-sizing: border-box;
}

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

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

/* Buttons */
.ho-location .ho-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 18px 35px;
  font: var(--ho-btn);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ho-location .ho-btn--primary {
  background: var(--ho-orange);
  color: var(--ho-white);
}

.ho-location .ho-btn--primary:hover,
.ho-location .ho-btn--primary:focus-visible {
  background: var(--ho-orange-deep);
  color: var(--ho-white);
}

.ho-location .ho-btn--outline {
  background: transparent;
  color: var(--ho-white);
  border: 2px solid var(--ho-white);
}

.ho-location .ho-btn--outline:hover,
.ho-location .ho-btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ho-white);
}

.ho-location .ho-btn--outline-dark {
  background: transparent;
  color: var(--ho-orange);
  border: 2px solid var(--ho-orange);
}

.ho-location .ho-btn--outline-dark:hover,
.ho-location .ho-btn--outline-dark:focus-visible {
  background: var(--ho-orange);
  color: var(--ho-white);
}

.ho-location a:focus-visible,
.ho-location button:focus-visible,
.ho-location summary:focus-visible {
  outline: 2px solid var(--ho-orange);
  outline-offset: 2px;
}

.ho-location .ho-eyebrow {
  font: var(--ho-eyebrow);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ho-orange);
  margin: 0 0 12px;
}

.ho-location .ho-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Breadcrumb */
.ho-location .breadcrumb {
  background: var(--ho-white);
  border-bottom: 1px solid var(--ho-border);
  padding: 12px 0;
}

.ho-location .breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ho-body);
}

.ho-location .breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ho-location .breadcrumb__list li:not(:last-child)::after {
  content: "›";
  color: var(--ho-body);
  opacity: 0.6;
}

.ho-location .breadcrumb__list a {
  color: var(--ho-orange);
  text-decoration: none;
  font-weight: 600;
}

.ho-location .breadcrumb__list a:hover {
  text-decoration: underline;
}

.ho-location .breadcrumb__list li[aria-current="page"] {
  color: var(--ho-charcoal);
  font-weight: 600;
}

.ho-location .page-meta {
  font-size: 13px;
  color: var(--ho-body);
  margin: 0;
  padding: 8px 0 0;
}

/* Hero */
.ho-location .hero {
  position: relative;
  background-color: var(--ho-dark);
  padding: 80px 0;
  border-left: 5px solid var(--ho-orange);
  overflow: hidden;
}

.ho-location .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ho-location .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ho-location .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.75) 60%, rgba(26, 26, 26, 0.5) 100%);
  pointer-events: none;
}

.ho-location .hero .ho-container {
  position: relative;
  z-index: 2;
}

.ho-location .hero__content {
  max-width: 60%;
}

.ho-location .hero__eyebrow {
  font: var(--ho-eyebrow);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ho-orange);
  margin: 0 0 16px;
}

.ho-location .hero__title {
  font: var(--ho-h1);
  color: var(--ho-white);
  margin: 0 0 20px;
}

.ho-location .hero__summary {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  line-height: 1.5;
}

.ho-location .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.ho-location .hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ho-location .hero__stars {
  display: flex;
  gap: 2px;
}

.ho-location .hero__stars .ti-star,
.ho-location .hero__stars .ti-star-filled {
  color: var(--ho-orange);
  font-size: 18px;
}

.ho-location .hero__reviews-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
}

.ho-location .hero__reviews-link:hover {
  color: var(--ho-white);
  text-decoration: underline;
}

/* Stat band */
.ho-location .stat-band {
  background: var(--ho-orange);
  color: var(--ho-white);
  padding: 32px 0;
}

.ho-location .stat-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ho-location .stat-band__item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  transition: transform 0.2s ease;
}

.ho-location .stat-band__item:hover {
  transform: scale(1.02);
}

.ho-location .stat-band__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  display: none;
}

.ho-location .stat-band__value {
  font-size: 22px;
  font-weight: 700;
  color: var(--ho-white);
  margin: 0 0 4px;
  line-height: 1.2;
}

.ho-location .stat-band__label {
  font-size: 13px;
  color: var(--ho-white);
  margin: 0;
  background: var(--ho-charcoal);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Main content */
.ho-location .main {
  background: var(--ho-white);
  padding: 64px 0;
}

.ho-location .main__grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.ho-location .main__content h2 {
  font: var(--ho-h2);
  color: var(--ho-charcoal);
  margin: 40px 0 16px;
}

.ho-location .main__content h2:first-child {
  margin-top: 0;
}

.ho-location .main__content p {
  margin: 0 0 16px;
}

.ho-location .main__content strong {
  color: var(--ho-orange);
  font-weight: 700;
}

.ho-location .main__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ho-location .main__content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.ho-location .main__content ul li::before {
  content: "\ea5e";
  font-family: 'tabler-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--ho-orange);
  font-size: 16px;
}

/* Quote card */
.ho-location .quote-card {
  border: 2px solid var(--ho-orange);
  padding: 32px;
  background: var(--ho-white);
}

.ho-location .quote-card__title {
  font: var(--ho-h3);
  color: var(--ho-charcoal);
  margin: 0 0 8px;
}

.ho-location .quote-card__subtitle {
  font-size: 14px;
  color: var(--ho-body);
  margin: 0 0 24px;
}

.ho-location .quote-card__field {
  margin-bottom: 16px;
}

.ho-location .quote-card__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ho-charcoal);
  margin-bottom: 6px;
}

.ho-location .quote-card__field input,
.ho-location .quote-card__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ho-border);
  font-family: var(--ho-font);
  font-size: 16px;
  color: var(--ho-charcoal);
  background: var(--ho-white);
}

.ho-location .quote-card__field input:focus,
.ho-location .quote-card__field select:focus {
  outline: 2px solid var(--ho-orange);
  outline-offset: 0;
  border-color: var(--ho-orange);
}

.ho-location .quote-card__submit {
  width: 100%;
  margin-top: 8px;
}

.ho-location .quote-card__turnstile {
  margin: 4px 0 12px;
  min-height: 65px;
}

.ho-location .quote-card__phone {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: var(--ho-body);
  text-decoration: none;
}

.ho-location .quote-card__phone strong {
  color: var(--ho-orange);
}

.ho-location .quote-card__phone:hover {
  color: var(--ho-charcoal);
}

.ho-location .quote-card__email {
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
}

.ho-location .quote-card__email a {
  color: var(--ho-body);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ho-location .quote-card__email a:hover {
  color: var(--ho-orange);
}

.ho-location .ho-form-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.ho-location .ho-form-notice--success {
  background: #e8f5e9;
  color: #1b5e20;
}

.ho-location .ho-form-notice--error {
  background: #fdecea;
  color: #b71c1c;
}

/* Map section */
.ho-location .map {
  background: var(--ho-gray);
}

.ho-location .map__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 400px;
}

.ho-location .map__embed {
  width: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

.ho-location .map__panel {
  background: var(--ho-white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ho-location .map__panel h3 {
  font: var(--ho-h3);
  color: var(--ho-charcoal);
  margin: 0 0 16px;
}

.ho-location .map__panel p {
  margin: 0 0 24px;
  color: var(--ho-body);
}

.ho-location .map__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ho-location .map__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ho-location .map__contact-row .ti {
  color: var(--ho-orange);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ho-location .map__contact-row a {
  color: var(--ho-body);
  text-decoration: none;
}

.ho-location .map__contact-row a:hover {
  color: var(--ho-orange);
}

/* Services grid */
.ho-location .services-grid {
  background: var(--ho-white);
  padding: 64px 0;
}

.ho-location .services-grid__title {
  font: var(--ho-h2);
  color: var(--ho-charcoal);
  margin: 0 0 32px;
}

.ho-location .services-grid__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ho-location .services-grid__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--ho-white);
  border: 1px solid var(--ho-border);
  border-left: 4px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ho-location .services-grid__card:hover {
  border-left-color: var(--ho-orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.ho-location .services-grid__card .ti {
  font-size: 28px;
  color: var(--ho-orange);
  flex-shrink: 0;
}

.ho-location .services-grid__card-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--ho-charcoal);
  margin: 0 0 6px;
}

.ho-location .services-grid__card-desc {
  font-size: 14px;
  color: var(--ho-body);
  margin: 0;
  line-height: 1.4;
}

/* Technician */
.ho-location .tech {
  background: var(--ho-dark);
  padding: 64px 0;
}

.ho-location .tech__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.ho-location .tech__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--ho-charcoal);
}

.ho-location .tech__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--ho-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
}

.ho-location .tech__title {
  font: var(--ho-h2);
  color: var(--ho-white);
  margin: 0 0 16px;
}

.ho-location .tech__bio {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  line-height: 1.6;
}

.ho-location .tech__points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.ho-location .tech__points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.ho-location .tech__points li::before {
  content: "\ea5e";
  font-family: 'tabler-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--ho-orange);
  font-size: 16px;
}

/* Testimonials */
.ho-location .testimonials {
  background: var(--ho-gray);
  padding: 64px 0;
}

.ho-location .testimonials__title {
  font: var(--ho-h2);
  color: var(--ho-charcoal);
  margin: 0 0 32px;
}

.ho-location .testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.ho-location .testimonials__card {
  background: var(--ho-white);
  padding: 28px;
  border: 1px solid var(--ho-border);
}

.ho-location .testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.ho-location .testimonials__stars .ti-star,
.ho-location .testimonials__stars .ti-star-filled {
  color: var(--ho-orange);
  font-size: 18px;
}

.ho-location .testimonials__text {
  color: var(--ho-body);
  margin: 0 0 16px;
  line-height: 1.6;
  font-style: italic;
}

.ho-location .testimonials__author {
  font-weight: 600;
  color: var(--ho-charcoal);
  margin: 0;
  font-size: 14px;
}

.ho-location .testimonials__verified {
  font-size: 12px;
  color: var(--ho-body);
  margin: 4px 0 0;
}

.ho-location .testimonials__link {
  display: inline-block;
  color: var(--ho-orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.ho-location .testimonials__link:hover {
  text-decoration: underline;
}

/* FAQ */
.ho-location .faq {
  background: var(--ho-white);
  padding: 64px 0;
}

.ho-location .faq__title {
  font: var(--ho-h2);
  color: var(--ho-charcoal);
  margin: 0 0 32px;
}

.ho-location .faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ho-location .faq__item {
  background: var(--ho-gray);
  border: 1px solid var(--ho-border);
}

.ho-location .faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ho-charcoal);
  cursor: pointer;
  list-style: none;
}

.ho-location .faq__item summary::-webkit-details-marker {
  display: none;
}

.ho-location .faq__item summary::after {
  content: "\ea5f";
  font-family: 'tabler-icons';
  color: var(--ho-orange);
  font-size: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.ho-location .faq__item[open] summary::after {
  transform: rotate(180deg);
}

.ho-location .faq__item[open] summary {
  color: var(--ho-orange);
}

.ho-location .faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.ho-location .faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
}

.ho-location .faq__answer-inner {
  overflow: hidden;
  padding: 0 24px 20px;
  color: var(--ho-body);
  line-height: 1.6;
}

/* Areas */
.ho-location .areas {
  background: var(--ho-gray);
  padding: 64px 0;
}

.ho-location .areas__title {
  font: var(--ho-h3);
  color: var(--ho-charcoal);
  margin: 0 0 24px;
}

.ho-location .areas__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ho-location .areas__pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--ho-white);
  color: var(--ho-orange);
  border: 2px solid var(--ho-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ho-location .areas__pill:hover,
.ho-location .areas__pill:focus-visible {
  background: var(--ho-orange);
  color: var(--ho-white);
}

/* CTA banner */
.ho-location .cta-banner {
  background: var(--ho-dark);
  padding: 64px 0;
  text-align: center;
}

.ho-location .cta-banner__title {
  font: var(--ho-h2);
  color: var(--ho-white);
  margin: 0 0 12px;
}

.ho-location .cta-banner__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ho-location .cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Interactions */
.ho-location #quote-form {
  scroll-margin-top: 100px;
}

.ho-location .quote-card:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 143, 0, 0.25);
  transition: box-shadow 0.2s ease;
}

.ho-location .ho-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ho-location .ho-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (min-width: 768px) {
  .ho-location .hero {
    padding: 100px 0;
  }

  .ho-location .stat-band__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ho-location .stat-band__item:not(:last-child)::after {
    display: block;
  }

  .ho-location .stat-band__item:nth-child(2)::after {
    display: block;
  }

  .ho-location .main__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .ho-location .main__content {
    flex: 0 0 60%;
  }

  .ho-location .main__sidebar {
    flex: 0 0 calc(40% - 48px);
    position: sticky;
    top: 24px;
  }

  .ho-location .map__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ho-location .map__embed {
    min-height: 400px;
  }

  .ho-location .services-grid__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ho-location .tech__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ho-location .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ho-location .services-grid__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ho-location .hero__content {
    max-width: 100%;
  }

  .ho-location .stat-band__item:nth-child(odd)::after {
    display: none;
  }

  .ho-location .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .ho-location .testimonials__card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ho-location .ho-btn,
  .ho-location .services-grid__card,
  .ho-location .areas__pill,
  .ho-location .faq__item summary::after,
  .ho-location .faq__answer,
  .ho-location .stat-band__item,
  .ho-location .ho-reveal {
    transition: none;
  }

  .ho-location .ho-reveal {
    opacity: 1;
    transform: none;
  }

  .ho-location .stat-band__item:hover {
    transform: none;
  }

  .ho-location .services-grid__card:hover {
    transform: none;
  }
}
