/* ==========================================================================
   Hosanna Healthcare - Design Tokens
   Colors and fonts live here as CSS custom properties so nothing in the
   theme is ever hardcoded. Defaults below are mirrored in the Customizer
   (Appearance > Customize > Theme Options) and overridden at runtime via
   inline CSS output in inc/customizer.php — editing them there requires
   no code changes.
   ========================================================================== */

:root {
  /* Brand colors */
  --color-primary: #0b59f2;
  --color-secondary: #ffffff;

  /* Derived neutrals (kept as variables, not hardcoded, so a future
     palette swap only ever happens in one place) */
  --color-text: #1a1a1a;
  --color-text-muted: #5f6368;
  --color-background: var(--color-secondary);
  --color-border: #e2e5ea;
  --color-primary-contrast: #ffffff;

  /* Dark neutral surface — top bar today, reusable for footer/other
     dark bands later. Not tied to Primary/Secondary since it's a
     structural neutral, not a brand color. */
  --color-dark: #0f1b2d;
  --color-dark-contrast: var(--color-secondary);

  /* Dark navy tint used over hero photos so text stays readable
     regardless of the uploaded image; matches --color-dark's hue. */
  --color-overlay: rgba(15, 27, 43, 0.72);

  /* Light neutral used for callout/stat cards that sit on top of a
     photo (distinct from the plain page background). */
  --color-surface-alt: #eef2f8;

  /* Semantic status colors (form feedback, etc.) — fixed conventional
     meanings (green=success, red=error), not part of the brand
     palette, but still tokenized rather than hardcoded per-use. */
  --color-success: #1a7f37;
  --color-error: #b3261e;

  /* Typography */
  --hh-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hh-font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Fluid, scalable type scale (clamp = responsive without breakpoints) */
  --font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --font-size-h1: clamp(2rem, 1.7rem + 1.5vw, 3.5rem);
  --font-size-h2: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
  --font-size-h3: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  --font-size-h4: clamp(1.1rem, 1.05rem + 0.25vw, 1.35rem);
  --font-size-small: 1rem;

  /* Spacing scale (60/30/10 rhythm applied via section utility classes
     added during the design pass) */
  --space-unit: 1rem;

  /* Header logo size — overridden by Customize > Header (px values) */
  --logo-width: 160px;
  --logo-height: 40px;

  /* Hero background photo — set inline per-page from the featured
     image; "none" here just keeps the property valid when unset. */
  --hero-bg-image: none;

  /* Homepage contact section background photo — same override
     pattern as the hero. */
  --contact-bg-image: none;
}

/* ==========================================================================
   Buttons (shared component — used across hero/CTA/service/location
   sections)
   ========================================================================== */

.hh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--hh-font-body);
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: 1;
  padding: 0.85rem 1.6rem;
  border-radius: 0;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.hh-btn .hh-icon {
  width: 0.7rem;
  height: 0.7rem;
}

.hh-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.hh-btn--primary:hover,
.hh-btn--primary:focus-visible {
  color: var(--color-primary-contrast);
  filter: brightness(0.92);
}

.hh-btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.hh-btn--secondary:hover,
.hh-btn--secondary:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
  border-color: var(--color-primary);
}

/* ==========================================================================
   Header > Top Bar
   ========================================================================== */

.hh-topbar {
  background-color: var(--color-dark);
  color: var(--color-dark-contrast);
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
}

.hh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.5rem 0;
}

.hh-topbar__social,
.hh-topbar__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 200;
}

.hh-topbar__social {
  gap: 0.5rem;
}

.hh-topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-dark-contrast);
  text-decoration: none;
  font-weight: 200;
}

.hh-topbar__social a:hover,
.hh-topbar__social a:focus-visible {
  background-color: var(--color-primary);
}

.hh-topbar__social .hh-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.hh-topbar__info {
  gap: 0.5rem 0;
}

.hh-topbar__info li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hh-topbar__info li:last-child {
  border-right: none;
  padding-right: 0;
}

.hh-topbar__info li:first-child {
  padding-left: 0;
}

.hh-topbar__info .hh-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.hh-topbar__emergency a {
  color: inherit;
  text-decoration: none;
}

.hh-topbar__emergency a:hover,
.hh-topbar__emergency a:focus-visible {
  text-decoration: underline;
}

/* Tablet & below: hidden entirely — the hours/emergency/social info
   isn't essential enough to spend mobile header space on. */
@media (max-width: 767.98px) {
  .hh-topbar {
    display: none;
  }
}

/* ==========================================================================
   Header > Main Nav (logo, menu, appointment CTA)
   ========================================================================== */

.hh-site-header {
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.hh-site-header .navbar {
  padding: 1rem 0;
}

/* Logo — size comes from Customize > Header (--logo-width/--logo-height),
   never hardcoded here. */
.hh-site-logo,
.navbar-brand.hh-site-logo {
  margin-right: 2rem;
}
.custom-logo-link img {
  width: var(--logo-width);
  height: var(--logo-height);
  max-width: 60vw;
  object-fit: contain;
}

.hh-site-title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

/* Menu */
.navbar-nav {
  gap: 1.75rem; /* 28px minimum between items, on top of each link's own padding */
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 400;
  color: var(--color-text);
  /* Zeroes Bootstrap's own .nav-link padding: in the desktop row the
     spacing between items comes entirely from .navbar-nav's `gap`, and
     the underline below is drawn on the link box, so any side padding
     would stretch it wider than the label it belongs to. */
  padding: 0;
  transition: color 0.3s ease;
}

/* Underline grows left-to-right on hover/focus, at the same time the
   text color transitions (both 0.3s). */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.10rem;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.active,
.navbar-nav .current-menu-item > .nav-link {
  color: var(--color-primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .current-menu-item > .nav-link::after {
  transform: scaleX(1);
}

/* The toggle button is a single element carrying both .nav-link (font,
   padding, hover/underline treatment — shared with plain leaf items)
   and .hh-dropdown-toggle (button-reset + icon spacing) classes. */
.hh-dropdown-toggle {
  background: transparent;
  border: none;
  margin: 0;
  cursor: pointer;
  justify-content: space-between;
}

.navbar-nav .nav-item.dropdown .hh-icon--chevron-down {
  width: 0.65em;
  height: 0.65em;
  transition: transform 0.15s ease;
}

.navbar-nav .nav-item.dropdown.show .hh-icon--chevron-down {
  transform: rotate(180deg);
}

/* `.show` is the only thing that opens this menu — toggled by main.js
   on hover, keyboard focus, and click/tap alike. Deliberately not CSS
   :hover/:focus-within: those stay true for as long as the pointer or
   focus sits on the trigger, so a click meant to close an already-open
   menu would get immediately overruled by the browser re-asserting
   :hover, and the menu would never visibly collapse until the mouse
   moved away. */
.navbar-nav .nav-item.dropdown.show > .dropdown-menu {
  display: block;
}

.navbar .dropdown-menu {
  /* No Bootstrap Dropdown JS/Popper involved (see main.js) — this plain
     CSS position is the only thing placing the menu, relative to the
     whole .dropdown nav-item (its positioned ancestor). */
  /* top:100% with no margin — the menu sits flush against the trigger's
     bottom edge with zero dead space between them. A visual gap here
     (margin-top) would be a strip the mouse has to cross that belongs
     to neither box, breaking :hover the instant the cursor is over it
     and closing the menu before a click can land on anything inside.
     The same visual breathing room now comes from this rule's own
     padding, which IS part of the menu's hoverable box. */
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  border: none;
  border-radius: 0;
  padding: 0.5rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-item {
  font-family: var(--hh-font-body);
  border-radius: 0;
  padding: 0.5rem 0.75rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

/* Appointment CTA button */
.hh-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
  font-family: var(--hh-font-body);
  font-weight: 600;
  font-size: var(--font-size-small);
  padding: 0.65rem 1.35rem;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s ease;
}

.hh-nav-cta:hover,
.hh-nav-cta:focus-visible {
  color: var(--color-primary-contrast);
  filter: brightness(0.92);
}

.hh-nav-cta .hh-icon {
  width: 0.7rem;
  height: 0.7rem;
}

/* Mobile menu toggle — custom 3-bar icon that morphs into an X.
   Bootstrap adds/removes `.collapsed` on this button to track the
   collapse's open/closed state, so that's what drives the animation. */
.hh-toggler {
  border: none;
  padding: 0.25rem;
  background: transparent;
}

/* Drop Bootstrap's focus ring on pointer taps, but keep a real, visible
   indicator for keyboard users — this button is the only way into the
   menu on mobile, so it must never be focused-but-unmarked. */
.hh-toggler:focus {
  box-shadow: none;
  outline: none;
}

.hh-toggler:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hh-toggler-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 18px;
}

.hh-toggler-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hh-toggler-bar:nth-child(1) {
  top: 0;
}

.hh-toggler-bar:nth-child(2) {
  top: 8px;
}

.hh-toggler-bar:nth-child(3) {
  top: 16px;
}

/* Open state (menu shown): morph into a cross/X. */
.hh-toggler:not(.collapsed) .hh-toggler-bar:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hh-toggler:not(.collapsed) .hh-toggler-bar:nth-child(2) {
  opacity: 0;
}

.hh-toggler:not(.collapsed) .hh-toggler-bar:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Below the navbar-expand-xl breakpoint: menu + CTA stack vertically
   inside the collapsible panel instead of squeezing into one row. */
@media (max-width: 1199.98px) {
  .hh-site-header .navbar {
    padding: 0.75rem 0;
  }

  .navbar-nav {
    gap: 0.25rem;
  }

  /* Mobile menu: a background highlight instead of the desktop
     underline — reads better as a full-width tappable row. Pulled out
     to the container's edges (negative margin matching Bootstrap's
     default 0.75rem gutter) so the highlight spans edge-to-edge
     instead of stopping at the container's own padding. */
  .navbar-nav .nav-link {
    display: flex;
    width: calc(100% + 1.5rem);
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding: 0.75rem 1rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:focus-visible,
  .navbar-nav .nav-link.active,
  .navbar-nav .current-menu-item > .nav-link {
    background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
    color: var(--color-primary);
  }

  /* Hover highlight only where there's a real pointer to leave. Touch
     browsers keep :hover asserted on the last-tapped element until the
     next tap lands elsewhere, so on a phone this rule would otherwise
     strand a phantom "selected" row behind after the menu is used. */
  @media (hover: hover) {
    .navbar-nav .nav-link:hover {
      background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
      color: var(--color-primary);
    }
  }

  /* The dropdown toggle is a single button carrying .nav-link, so it
     already gets the same full-width breakout row as plain leaf items
     above — no extra width/flex rules needed for it here. Only the
     submenu list itself needs the static/stacked mobile treatment. */
  .navbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    padding-left: 0.75rem;
    margin-top: 0;
  }

  .hh-nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.75rem;
    margin-left: 0;
  }
}

@media (max-width: 380px) {
  .custom-logo-link img {
    width: calc(var(--logo-width) * 0.75);
    height: calc(var(--logo-height) * 0.75);
  }
}

/* ==========================================================================
   Home > Hero
   ========================================================================== */

.hh-home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 75vh;
  min-height: 75svh; /* accounts for mobile browser toolbars; ignored where unsupported */
  background-color: var(--color-dark); /* shows if no featured image is set */
  overflow: hidden;
}

.hh-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
}

/* Full-bleed tint over the entire hero (not just behind the text) so
   the photo reads consistently dark edge-to-edge. */
.hh-home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, var(--color-overlay) 0%, rgba(15, 27, 43, 0.55) 45%, rgba(15, 27, 43, 0.15) 100%);
}

.hh-home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* Room for the stats bar pinned to the bottom of the hero. */
  padding-bottom: clamp(7rem, 14vw, 10rem);
}

.hh-home-hero__content {
  max-width: 38rem;
  color: var(--color-secondary);
}

.hh-home-hero__eyebrow {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--color-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.hh-home-hero__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h1);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hh-home-hero__subtitle {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* Pinned to the bottom edge of the (now full-height) hero itself,
   rather than floating below it in normal document flow. */
.hh-home-hero__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.hh-home-hero__stats .row {
  background-color: var(--color-surface-alt);
  border-radius: 0;
  box-shadow: 0 -12px 30px rgba(15, 27, 43, 0.12);
}

.hh-home-hero__stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(15, 27, 43, 0.08);
}

.hh-home-hero__stat:last-child {
  border-right: none;
}

.hh-home-hero__stat .hh-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.hh-home-hero__stat-text h3 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}

.hh-home-hero__stat-text p {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 767.98px) {
  /* Stack instead of overlap: stats flows in normal document order
     right after the banner content, instead of pinning to its bottom
     edge — easier to read than floating over the photo on small
     screens. */
  .hh-home-hero {
    flex-direction: column;
  }

  .hh-home-hero__overlay {
    background-image: linear-gradient(180deg, var(--color-overlay) 0%, rgba(15, 27, 43, 0.6) 100%);
  }

  .hh-home-hero__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hh-home-hero__stats {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hh-home-hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(15, 27, 43, 0.08);
  }

  .hh-home-hero__stat:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   Home > Intro ("Who We Are")
   ========================================================================== */

.hh-home-intro {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hh-home-intro__image {
  display: block;
  width: 100%;
  max-height: 460px;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 0;
}

.hh-home-intro__content {
  max-width: 34rem;
}

.hh-home-intro__eyebrow {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.hh-home-intro__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hh-home-intro__title .hh-highlight {
  color: var(--color-primary);
}

.hh-home-intro__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .hh-home-intro__image {
    margin-bottom: 2.5rem;
  }
}

/* ==========================================================================
   Home > Special Service spotlight
   ========================================================================== */

.hh-home-special {
  padding: 0.5rem 0 clamp(2rem, 5vw, 3rem);
}

.hh-home-special__inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.hh-home-special__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hh-home-special__title .hh-highlight {
  color: var(--color-primary);
}

.hh-home-special__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hh-home-special__badge {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  padding: 0.4rem 0.9rem;
}

.hh-home-special__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Home > Services teaser
   ========================================================================== */

.hh-home-services {
  background-color: var(--color-surface-alt);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hh-home-services__header {
  margin-bottom: 3rem;
}

.hh-home-services__eyebrow {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: var(--color-background);
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.hh-home-services__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}

.hh-home-services__title .hh-highlight {
  color: var(--color-primary);
}

.hh-home-services__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: 0;
}

.hh-home-services__cta-col {
  display: flex;
  justify-content: flex-end;
}

/* CSS Grid (not Bootstrap's row/col) so a single `gap` guarantees the
   row gap and column gap are identical — no leftover-space math to
   throw them out of sync. */
.hh-home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 991.98px) {
  .hh-home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .hh-home-services__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hh-service-teaser {
  display: flex;
  flex-direction: column;
  background-color: var(--color-background);
  padding: 1.75rem;
  height: 100%;
}

.hh-service-teaser__image {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
}

.hh-service-teaser__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hh-service-teaser__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hh-service-teaser__title a {
  color: var(--color-text);
  text-decoration: none;
}

.hh-service-teaser__title a:hover,
.hh-service-teaser__title a:focus-visible {
  color: var(--color-primary);
}

.hh-service-teaser__excerpt {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.hh-service-teaser__bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex-grow: 1;
}

.hh-service-teaser__bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.hh-service-teaser__bullets .hh-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hh-service-teaser__link {
  align-self: flex-start;
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  color: var(--color-primary);
  border-color: transparent;
  padding: 0.6rem 1.1rem;
  font-size: var(--font-size-small);
}

.hh-service-teaser__link:hover,
.hh-service-teaser__link:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
  border-color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .hh-home-services__cta-col {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}

/* ==========================================================================
   Home > Insurance providers strip
   ========================================================================== */

.hh-home-insurance {
  background-color: var(--color-background);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.hh-home-insurance__heading {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3rem;
}

.hh-home-insurance__heading .hh-highlight {
  color: var(--color-primary);
}

.hh-home-insurance__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hh-home-insurance__track {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  width: max-content;
  animation: hh-insurance-marquee 70s linear infinite;
}

.hh-home-insurance__track-wrap:hover .hh-home-insurance__track {
  animation-play-state: paused;
}

@media (min-width: 992px) {
  .hh-home-insurance__track {
    gap: 5.5rem;
  }
}

.hh-home-insurance__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hh-home-insurance__logo img {
  display: block;
  height: 3.5rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
}

.hh-home-insurance__caption {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  white-space: nowrap;
}

@keyframes hh-insurance-marquee {
  from {
    transform: translateX(0);
  }
  to {
    /* Content is rendered twice, so -50% is exactly one full loop. */
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hh-home-insurance__track {
    animation: none;
  }
}

/* ==========================================================================
   Home > Blog / news teaser
   ========================================================================== */

.hh-home-blog {
  background-color: var(--color-background);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hh-home-blog__header {
  margin-bottom: 3rem;
}

.hh-home-blog__eyebrow {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  padding: 0.4rem 0.9rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
}

.hh-home-blog__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}

.hh-home-blog__title .hh-highlight {
  color: var(--color-primary);
}

.hh-home-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 991.98px) {
  .hh-home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .hh-home-blog__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hh-home-blog__gallery-item img {
    aspect-ratio: auto;
    height: auto;
    object-position: center;
    object-fit: cover !important;
  }
}

.hh-home-blog__gallery-item {
  display: block;
}

.hh-home-blog__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: left;
}

.hh-blog-teaser {
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface-alt);
  padding: 0;
  height: 100%;
}

.hh-blog-teaser__image {
  display: block;
}

.hh-blog-teaser__image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  max-height: 18rem !important;
}

.hh-blog-teaser__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.75rem;
}

.hh-blog-teaser__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.hh-blog-teaser__title a {
  color: var(--color-text);
  text-decoration: none;
}

.hh-blog-teaser__title a:hover,
.hh-blog-teaser__title a:focus-visible {
  color: var(--color-primary);
}

.hh-blog-teaser__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.hh-blog-teaser__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  color: var(--color-text);
}

.hh-blog-teaser__meta-item .hh-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--color-primary);
}

.hh-blog-teaser__excerpt {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.hh-blog-teaser__link {
  align-self: flex-start;
}

/* ==========================================================================
   Home > "Get in Touch" contact section
   ========================================================================== */

.hh-home-contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50vh;
  min-height: 50svh; /* accounts for mobile browser toolbars; ignored where unsupported */
  background-color: var(--color-dark); /* shows if no bg image is set */
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hh-home-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--contact-bg-image);
  background-size: cover;
  background-position: center;
}

.hh-home-contact__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(15, 27, 43, 0.85);
}

.hh-home-contact .container,
.hh-home-contact .row {
  position: relative;
  z-index: 2;
}

.hh-home-contact__info {
  color: var(--color-secondary);
  padding-top: 1rem;
  text-align: center;
}

.hh-home-contact__eyebrow {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background-color: rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
}

.hh-home-contact__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hh-home-contact__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.8);
  max-width: 30rem;
  margin: 0 auto 2rem;
}

/* Contact details panels (Get in touch / Address / Opening Hours) —
   shared by this section and the Contact page. Default styling below
   suits a light background; the dark/photo-overlay override for this
   section follows further down. */
.hh-contact-panels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hh-contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-surface-alt);
  padding: 1.5rem;
  flex: 1 1 16rem;
  max-width: 22rem;
}

.hh-contact-panel h3 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.hh-contact-panel p {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  white-space: pre-line;
  margin: 0 0 0.35rem;
  text-align: center;
}

.hh-contact-panel a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Dark/photo-overlay context (this section only). */
#hh-home-contact .hh-contact-panel {
  background-color: rgba(255, 255, 255, 0.1);
}

#hh-home-contact .hh-contact-panel h3 {
  color: var(--color-secondary);
}

#hh-home-contact .hh-contact-panel p {
  color: rgba(255, 255, 255, 0.8);
}

#hh-home-contact .hh-contact-panel a {
  color: inherit;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.hh-site-footer {
  background-color: var(--color-background);
  padding-top: clamp(2rem, 5vw, 3rem);
}

.hh-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.hh-footer-logo.hh-site-title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
}

.hh-footer-social {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  color: var(--color-primary);
  border-radius: 0;
}

.hh-footer-social a:hover,
.hh-footer-social a:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.hh-footer-social .hh-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.hh-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hh-footer-col__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hh-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-footer-links li {
  margin-bottom: 0.9rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
}

.hh-footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.hh-footer-links a:hover,
.hh-footer-links a:focus-visible {
  color: var(--color-primary);
}

.hh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}

.hh-footer-bottom__copyright {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin: 0;
}

.hh-footer-bottom__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
}

.hh-footer-bottom__legal a {
  color: var(--color-text);
  text-decoration: none;
}

.hh-footer-bottom__legal a:hover,
.hh-footer-bottom__legal a:focus-visible {
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .hh-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hh-footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .hh-footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   FAQs > Accordion
   ========================================================================== */

.hh-faqs-content {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 6rem);
}

.hh-faqs-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.hh-faqs-intro__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hh-faqs-intro__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: 0;
}

.hh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hh-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.hh-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-surface-alt);
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}

.hh-faq-item__question::-webkit-details-marker {
  display: none;
}

.hh-faq-item__question:hover,
.hh-faq-item__question:focus-visible {
  color: var(--color-primary);
}

.hh-faq-item__question .hh-icon {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  color: var(--color-text);
  transition: transform 0.3s ease;
}

.hh-faq-item[open] .hh-faq-item__question .hh-icon {
  transform: rotate(180deg);
}

.hh-faq-item__answer {
  padding: 1.5rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-text);
}

.hh-faq-item__answer > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .hh-faq-item__question {
    padding: 1rem 1.1rem;
    gap: 0.75rem;
  }

  .hh-faq-item__answer {
    padding: 1.1rem;
  }
}

/* ==========================================================================
   Breadcrumbs + Page Banner
   ========================================================================== */

/* Base component — used standalone on light-background pages
   (About/Contact/FAQs) as well as inside .hh-page-banner below. */
.hh-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
}

.hh-breadcrumbs li {
  display: flex;
  align-items: center;
}

.hh-breadcrumbs li:not(:last-child)::after {
  content: "\203A";
  margin: 0 0.6rem;
  color: var(--color-text-muted);
}

.hh-breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.hh-breadcrumbs a:hover,
.hh-breadcrumbs a:focus-visible {
  color: var(--color-primary);
}

.hh-breadcrumbs li[aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

/* Dark page-header banner: title + breadcrumb, for simple interior
   pages/archives without their own designed hero. */
.hh-page-banner {
  background-color: var(--color-dark);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

/* Slim variant: breadcrumb only, no title — for pages (like Contact)
   that already show their own heading elsewhere on the page. */
.hh-page-banner--slim {
  padding: 1.1rem 0;
}

.hh-page-banner__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h1);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.hh-page-banner__intro {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.hh-page-banner .hh-breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}

.hh-page-banner .hh-breadcrumbs a:hover,
.hh-page-banner .hh-breadcrumbs a:focus-visible {
  color: var(--color-secondary);
}

.hh-page-banner .hh-breadcrumbs li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.4);
}

.hh-page-banner .hh-breadcrumbs li[aria-current="page"] {
  color: var(--color-secondary);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.hh-contact-page {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 6rem);
}

.hh-contact-page__content {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.hh-contact-page__eyebrow {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
}

.hh-contact-page__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h1);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hh-contact-page__title .hh-highlight {
  color: var(--color-primary);
}

.hh-contact-page__intro {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   Services Archive
   ========================================================================== */

.hh-services-archive {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .hh-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .hh-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hh-service-card {
    max-width: 22rem;
    margin: 0 auto;
  }
}

.hh-service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hh-service-card__image {
  display: block;
}

.hh-service-card__image img {
  display: block;
  width: 100%;
  max-height: 18rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
}

.hh-service-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--color-surface-alt);
  padding: 1.75rem;
}

.hh-service-card__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hh-service-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.hh-service-card__title a:hover,
.hh-service-card__title a:focus-visible {
  color: var(--color-primary);
}

.hh-service-card__excerpt {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.hh-service-card__link {
  align-self: flex-start;
}

/* ==========================================================================
   Single Service
   ========================================================================== */

.hh-service-single {
  padding: clamp(2.5rem, 6vw, 4rem) 1rem clamp(3rem, 8vw, 6rem);
}

.hh-service-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hh-service-single__category {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary) 10%, var(--color-background));
  padding: 0.3rem 0.8rem;
  text-decoration: none;
}

.hh-service-single__box {
  background-color: var(--color-surface-alt);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.hh-service-single__box h2 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hh-service-single__box p {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.hh-service-single__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-service-single__list li {
  margin-bottom: 0.85rem;
}

.hh-service-single__list li:last-child {
  margin-bottom: 0;
}

.hh-service-single__list a {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-decoration: none;
}

.hh-service-single__list a:hover,
.hh-service-single__list a:focus-visible,
.hh-service-single__list a.is-current {
  color: var(--color-primary);
}

.hh-service-single__call {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hh-service-single__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 2rem;
  max-height: 30rem !important;
}

.hh-service-single__content {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.hh-service-single__content h2 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hh-service-single__content p {
  margin-bottom: 1.25rem;
}

.hh-service-single__content > *:last-child {
  margin-bottom: 0;
}

.hh-service-single__highlights {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.hh-service-single__highlights h2 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hh-service-single__excerpt {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  max-width: 48rem;
  margin-bottom: 2rem;
}

.hh-service-single__highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.hh-service-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--color-surface-alt);
  padding: 1.25rem;
}

.hh-service-highlight__text h3 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.hh-service-highlight__text p {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin: 0;
}

.hh-service-highlight__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.hh-service-highlight__arrow .hh-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.hh-service-single__cta {
  margin-top: 3rem;
}

.hh-service-single__cta a {
  font-family: var(--hh-font-body);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.hh-service-single__cta a:hover,
.hh-service-single__cta a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  /* Content first, sidebar (services list + appointment box) second. */
  .hh-service-single__main {
    order: 1;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hh-service-single__sidebar {
    order: 2;
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hh-service-single__highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Location meta (city/distance/duration) — single page + archive card
   ========================================================================== */

.hh-location-single {
  padding: clamp(2.5rem, 6vw, 4rem) 1rem clamp(3rem, 8vw, 6rem);
}

.hh-location-single__box {
  background-color: var(--color-surface-alt);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.hh-location-single__box h2 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hh-location-single__box p {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.hh-location-single__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-location-single__list li {
  margin-bottom: 0.85rem;
}

.hh-location-single__list li:last-child {
  margin-bottom: 0;
}

.hh-location-single__list a {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-decoration: none;
}

.hh-location-single__list a:hover,
.hh-location-single__list a:focus-visible,
.hh-location-single__list a.is-current {
  color: var(--color-primary);
}

.hh-location-single__call {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hh-location-single__thumbnail img {
  display: block;
  border-radius: 0;
  margin-bottom: 2rem;
  max-width: 100%;
  object-fit: cover;
}

.hh-location-single__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hh-location-single__stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-surface-alt);
  padding: 1.5rem;
}

.hh-location-single__stat .hh-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hh-location-single__stat h3 {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.hh-location-single__stat p {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.hh-location-single__content {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  max-width: 48rem;
}

.hh-location-single__content > *:last-child {
  margin-bottom: 0;
}

.hh-locations-archive {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.hh-location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hh-location-card__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--color-surface-alt);
}

.hh-location-card__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
}

.hh-location-card__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h4);
  font-weight: 700;
  margin: 1.5rem 1.5rem 0.5rem;
}

.hh-location-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.hh-location-card__title a:hover,
.hh-location-card__title a:focus-visible {
  color: var(--color-primary);
}

.hh-location-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  list-style: none;
  margin: 0 1.5rem 1.5rem;
  padding: 0;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
}

.hh-location-card__link {
  display: block;
  margin: 0 1.5rem 1.5rem;
  font-family: var(--hh-font-body);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.hh-location-card__link:hover,
.hh-location-card__link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .hh-location-single__main {
    order: 1;
  }

  .hh-location-single__sidebar {
    order: 2;
    margin-top: 2.5rem;
    margin-bottom: 0;
  }

  .hh-location-single__thumbnail img{
    max-height: fit-content;
    object-fit: contain;
  }
  .hh-service-single__thumbnail img{
    max-height: 300px;
    object-fit: cover;
  }
}

@media (max-width: 575.98px) {
  .hh-location-single__stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   Single Blog Post
   ========================================================================== */

.hh-single {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 6rem);
}

.hh-single__inner {
  max-width: 46rem;
  margin: 0 auto;
}

.hh-single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hh-single-post__meta a {
  color: var(--color-text-muted);
}

.hh-single-post__meta a:hover,
.hh-single-post__meta a:focus-visible {
  color: var(--color-primary);
}

.hh-single-post__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 2rem;
}

.hh-single-post__content {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
}

.hh-single-post__content h2,
.hh-single-post__content h3 {
  font-family: var(--hh-font-heading);
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 1rem;
}

.hh-single-post__content h2 {
  font-size: var(--font-size-h2);
}

.hh-single-post__content h3 {
  font-size: var(--font-size-h3);
}

.hh-single-post__content p {
  margin-bottom: 1.25rem;
}

.hh-single-post__content a {
  color: var(--color-primary);
}

.hh-single-post__content > *:last-child {
  margin-bottom: 0;
}

.hh-single-post__tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
}

.hh-single-post__tags a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.hh-single-post__tags a:hover,
.hh-single-post__tags a:focus-visible {
  color: var(--color-primary);
}

/* ==========================================================================
   Blog Listing (archive/index)
   ========================================================================== */

.hh-blog-listing {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ==========================================================================
   Pagination + Comments (shared: single post, blog listing)
   ========================================================================== */

.hh-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.hh-pagination a,
.hh-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-surface-alt);
  text-decoration: none;
}

.hh-pagination a:hover,
.hh-pagination a:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.hh-pagination .current {
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
}

.hh-comments {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.hh-comments__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hh-comment-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.hh-comment-list .comment-body {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hh-comment-list > li:first-child > .comment-body {
  padding-top: 0;
}

.hh-comment-list .comment-author img {
  border-radius: 0;
  margin-right: 0.75rem;
  vertical-align: middle;
}

.hh-comment-list .comment-author .fn {
  font-family: var(--hh-font-heading);
  font-weight: 700;
  font-style: normal;
  color: var(--color-text);
}

.hh-comment-list .comment-metadata {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.hh-comment-list .comment-content p {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.hh-comment-list .children {
  list-style: none;
  margin-left: 2rem;
  padding: 0;
}

.comment-reply-link {
  display: inline-block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.comment-reply-link:hover,
.comment-reply-link:focus-visible {
  text-decoration: underline;
}

.comment-form label {
  display: block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background-color: var(--color-surface-alt);
  border: none;
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.comment-form p {
  margin-bottom: 1.25rem;
}

.comment-form .form-submit {
  margin-bottom: 0;
}

.comment-form #submit {
  display: inline-flex;
  align-items: center;
  font-family: var(--hh-font-body);
  font-weight: 600;
  font-size: var(--font-size-base);
  padding: 0.85rem 1.6rem;
  background-color: var(--color-primary);
  color: var(--color-primary-contrast);
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.comment-form #submit:hover,
.comment-form #submit:focus-visible {
  filter: brightness(0.92);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.hh-about-intro {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
}

.hh-about-intro__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.hh-about-intro__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: 0;
}

.hh-about-feature-row {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.hh-about-feature-row__image {
  display: block;
  width: 100%;
  max-height: 460px;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border-radius: 0;
}

.hh-about-feature-row__content {
  max-width: 34rem;
}

.hh-about-feature-row__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hh-about-feature-row__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.hh-about-closing {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40vh;
  min-height: 40svh; /* accounts for mobile browser toolbars; ignored where unsupported */
  text-align: center;
  background-color: var(--color-dark); /* shows if no bg image is set */
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.hh-about-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--about-closing-bg-image);
  background-size: cover;
  background-position: center;
}

.hh-about-closing__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(15, 27, 43, 0.75);
}

.hh-about-closing .container {
  position: relative;
  z-index: 2;
}

.hh-about-closing__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hh-about-closing__desc {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.postid-187 .wp-block-post-excerpt__excerpt,
 .hh-service-single__highlights .hh-service-single__excerpt{
display: none;
}

.hh-service-single__highlights h2{
  margin-bottom: 2rem;
}

/* ==========================================================================
   Legal Page (Privacy Policy, Terms of Service, etc.)
   ========================================================================== */

.hh-legal {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 6rem);
}

.hh-legal__updated {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hh-legal__content {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.75;
}

.hh-legal__content > *:first-child {
  margin-top: 0;
}

.hh-legal__content h2,
.hh-legal__content h3,
.hh-legal__content h4 {
  font-family: var(--hh-font-heading);
  color: var(--color-text);
  font-weight: 700;
  margin: 2.25rem 0 1rem;
}

.hh-legal__content h2 {
  font-size: var(--font-size-h3);
}

.hh-legal__content h3 {
  font-size: var(--font-size-h4);
}

.hh-legal__content h4 {
  font-size: var(--font-size-base);
}

.hh-legal__content p,
.hh-legal__content ul,
.hh-legal__content ol,
.hh-legal__content table {
  margin-bottom: 1.25rem;
}

.hh-legal__content ul,
.hh-legal__content ol {
  padding-left: 1.5rem;
}

.hh-legal__content li {
  margin-bottom: 0.5rem;
}

.hh-legal__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hh-legal__content a:hover,
.hh-legal__content a:focus-visible {
  text-decoration: none;
}

.hh-legal__content table {
  width: 100%;
  border-collapse: collapse;
}

.hh-legal__content th,
.hh-legal__content td {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  text-align: left;
}

.hh-page-links {
  margin-top: 2rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
}

/* ==========================================================================
   Booking Page
   ========================================================================== */

.hh-booking {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 6rem);
}

.hh-booking__intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hh-booking__title {
  font-family: var(--hh-font-heading);
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.hh-booking__intro .hh-booking__title:last-child {
  margin-bottom: 0;
}

.hh-booking__subtitle {
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: 0;
}

.hh-booking__notice {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  background-color: #fff4e5;
  border: 1px solid #f0c36d;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  color: var(--color-text);
}

.hh-booking-form__field {
  margin-bottom: 1.25rem;
}

.hh-booking-form label {
  display: block;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.hh-booking-form input[type="text"],
.hh-booking-form input[type="tel"],
.hh-booking-form input[type="email"] {
  width: 100%;
  background-color: var(--color-surface-alt);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.hh-booking-form input:focus-visible {
  outline: none;
  border-color: var(--color-primary);
}

.hh-booking-form__status {
  min-height: 1.5em;
  margin: 0 0 1rem;
  font-family: var(--hh-font-body);
  font-size: var(--font-size-small);
  font-weight: 600;
}

.hh-booking-form__status--success {
  color: var(--color-success);
}

.hh-booking-form__status--error {
  color: var(--color-error);
}

.hh-booking-form button[type="submit"] {
  width: 100%;
  justify-content: center;
}

.hh-booking-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hh-booking-form__disclosure {
  margin: 1.25rem 0 0;
  font-family: var(--hh-font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.hh-booking-form__disclosure a {
  color: var(--color-text-muted);
}

/* Section-by-section styling is added here as we design each page.
   This file intentionally stays minimal until then. */
