/**
 * plotPROPERTY — Avigo-inspired UI
 * Brand: Header/Links #0F3D66 · Buttons #2E7D32 · Hover #256628 · Accent #C89B3C · BG #FFFFFF
 * Layout reference: https://shtheme.com/demosd/avigo/
 */

:root {
  --jh-header: #0F3D66;
  --jh-ink: #0F3D66;
  --jh-ink-soft: #0a2d4d;
  --jh-btn: #2E7D32;
  --jh-btn-hover: #256628;
  --jh-sand: #C89B3C;
  --jh-sand-deep: #a87f2a;
  --jh-stone: #e8eef4;
  --jh-paper: #FFFFFF;
  --jh-paper-2: #f5f7fb;
  --jh-white: #FFFFFF;
  --jh-muted: #6b7c8a;
  --jh-line: rgba(15, 61, 102, 0.1);
  --jh-shadow: 0 10px 40px rgba(15, 61, 102, 0.08);
  --jh-shadow-lg: 0 20px 60px rgba(15, 61, 102, 0.12);
  --jh-radius: 16px;
  --jh-radius-sm: 10px;
  --jh-font-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --jh-font-body: "Inter", "Segoe UI", sans-serif;
  --jh-space: clamp(1rem, 2.5vw, 2rem);
  --jh-max: 75rem;
  --jh-header-h: 4.75rem;
  --jh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --jh-hero-image: linear-gradient(135deg, #0F3D66 0%, #14507f 42%, #1b6b3a 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--jh-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: #243b4a;
  background: var(--jh-paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--jh-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover { color: var(--jh-btn); }

h1, h2, h3, h4 {
  font-family: var(--jh-font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--jh-ink);
}

.screen-reader-text,
.jh-skip-link { position: absolute; left: -9999px; top: 0; }
.jh-skip-link:focus {
  left: 1rem; top: 1rem; z-index: 1000;
  background: #fff; padding: 0.5rem 1rem;
}

/* —— Top bar —— */
.jh-topbar {
  background: var(--jh-header);
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
}
.jh-topbar__inner {
  max-width: var(--jh-max);
  margin: 0 auto;
  padding: 0.55rem var(--jh-space);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.jh-topbar__note { margin: 0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.jh-topbar__badge {
  display: inline-block;
  background: var(--jh-sand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}
.jh-topbar__contact { margin: 0; display: flex; gap: 0.5rem; align-items: center; }
.jh-topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.jh-topbar a:hover { color: var(--jh-sand); }

/* —— Header —— */
.jh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--jh-line);
  box-shadow: 0 4px 24px rgba(15, 61, 102, 0.04);
}
.jh-header__inner {
  max-width: var(--jh-max);
  margin: 0 auto;
  padding: 0.7rem var(--jh-space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--jh-header-h);
}
.jh-brand__link { display: block; line-height: 0; text-decoration: none; }
.jh-brand__logo {
  height: clamp(48px, 7vw, 62px);
  width: auto;
  max-width: min(200px, 55vw);
  object-fit: contain;
}
.jh-brand .custom-logo { max-height: 56px; width: auto; }

.jh-nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--jh-line);
  background: #fff;
  border-radius: var(--jh-radius-sm);
  cursor: pointer;
}
.jh-nav-toggle__bars,
.jh-nav-toggle__bars::before,
.jh-nav-toggle__bars::after {
  display: block; width: 1.15rem; height: 2px;
  background: var(--jh-ink); position: relative;
  transition: transform 0.25s var(--jh-ease);
}
.jh-nav-toggle__bars::before,
.jh-nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.jh-nav-toggle__bars::before { top: -6px; }
.jh-nav-toggle__bars::after { top: 6px; }
.jh-nav-toggle[aria-expanded="true"] .jh-nav-toggle__bars { background: transparent; }
.jh-nav-toggle[aria-expanded="true"] .jh-nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.jh-nav-toggle[aria-expanded="true"] .jh-nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.jh-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--jh-line);
  padding: 1rem var(--jh-space) 1.25rem;
  flex-direction: column; gap: 1rem;
  box-shadow: var(--jh-shadow);
}
.jh-nav.is-open { display: flex; }
.jh-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.15rem;
  width: 100%;
}
.jh-nav__row {
  display: flex; align-items: center; gap: 0.25rem;
}
.jh-nav__list a.jh-nav__link,
.jh-nav__list a {
  display: block; flex: 1;
  padding: 0.65rem 0.25rem;
  text-decoration: none; font-weight: 600; color: #4a5d6a;
  transition: color 0.2s;
}
.jh-nav__list .current-menu-item > .jh-nav__row > a,
.jh-nav__list .current-menu-item > a,
.jh-nav__list a:hover { color: var(--jh-ink); }
.jh-nav__subtoggle {
  flex-shrink: 0;
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--jh-line);
  background: var(--jh-paper-2);
  border-radius: 8px;
  cursor: pointer; font-size: 0.85rem;
  color: var(--jh-ink);
}
.jh-nav__sub {
  list-style: none; margin: 0; padding: 0 0 0.5rem 0.85rem;
  display: none; flex-direction: column; gap: 0.1rem;
}
.menu-item-has-children.is-open > .jh-nav__sub {
  display: flex;
}
.jh-nav__sub a {
  font-size: 0.92rem; font-weight: 500; padding: 0.45rem 0.25rem;
}

@media (min-width: 900px) {
  .jh-nav-toggle { display: none; }
  .jh-nav {
    display: flex; position: static;
    flex-direction: row; align-items: center;
    background: transparent; border: 0; padding: 0;
    box-shadow: none; gap: 0.35rem 0.85rem;
  }
  .jh-nav__list {
    flex-direction: row; align-items: center;
    gap: 0.1rem 0.35rem; width: auto;
  }
  .jh-nav__list > li {
    position: relative;
  }
  .jh-nav__list > li > .jh-nav__row > a {
    padding: 0.45rem 0.4rem; font-size: 0.92rem; white-space: nowrap;
  }
  .jh-nav__subtoggle { display: none; }
  .jh-nav__sub {
    display: none;
    position: absolute; left: 0; top: 100%;
    min-width: 15rem; max-height: 70vh; overflow: auto;
    margin: 0; padding: 0.5rem;
    background: #fff;
    border: 1px solid var(--jh-line);
    border-radius: var(--jh-radius-sm);
    box-shadow: var(--jh-shadow-lg);
    z-index: 120;
  }
  .jh-nav__list > li:hover > .jh-nav__sub,
  .jh-nav__list > li:focus-within > .jh-nav__sub {
    display: flex;
  }
  .jh-nav__sub .menu-item-has-children { position: relative; }
  .jh-nav__sub .jh-nav__sub {
    left: 100%; top: 0; margin-left: 0.25rem;
  }
  .jh-nav__sub .menu-item-has-children:hover > .jh-nav__sub,
  .jh-nav__sub .menu-item-has-children:focus-within > .jh-nav__sub {
    display: flex;
  }
}

.jh-corridor__children { margin-bottom: 2.5rem; }
.jh-corridor__children h2,
.jh-corridor__posts h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.jh-corridor__intro p { margin: 0 0 0.75rem; color: var(--jh-muted); }

/* —— Buttons —— */
.jh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--jh-font-body);
  font-size: 0.95rem; font-weight: 650; line-height: 1.2;
  border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s var(--jh-ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}
.jh-btn:hover { transform: translateY(-2px) scale(1.02); text-decoration: none; }
.jh-btn--primary { background: var(--jh-btn); color: #fff; box-shadow: 0 8px 24px rgba(46, 125, 50, 0.28); }
.jh-btn--primary:hover { background: var(--jh-btn-hover); color: #fff; }
.jh-btn--whatsapp { background: var(--jh-btn); color: #fff; }
.jh-btn--whatsapp:hover { background: var(--jh-btn-hover); color: #fff; }
.jh-btn--call {
  background: var(--jh-ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 61, 102, 0.22);
}
.jh-btn--call:hover { background: var(--jh-ink-soft); color: #fff; }
.jh-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff; border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.jh-btn--ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.jh-btn--light { background: #fff; color: var(--jh-ink); }
.jh-btn--light:hover { background: var(--jh-paper-2); color: var(--jh-ink); }
.jh-btn--sm { padding: 0.6rem 1.15rem; font-size: 0.9rem; }
.jh-btn--block { width: 100%; }
.jh-text-link {
  font-weight: 650; text-decoration: none;
  color: var(--jh-btn); border-bottom: 1px solid transparent;
}
.jh-text-link:hover { border-bottom-color: currentColor; }

/* —— Hero —— */
.jh-hero {
  position: relative;
  min-height: min(92vh, 46rem);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.jh-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--jh-hero-image);
  background-size: cover; background-position: center;
}
.jh-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0; will-change: opacity;
}
.jh-hero__gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(15, 61, 102, 0.92) 0%,
    rgba(15, 61, 102, 0.72) 42%,
    rgba(15, 61, 102, 0.35) 100%
  );
}
.jh-hero__media {
  position: absolute; inset: 0;
  background: var(--jh-hero-image);
  background-size: cover;
}
.jh-hero__shell {
  position: relative; z-index: 10;
  width: 100%; max-width: var(--jh-max);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 7rem) var(--jh-space) clamp(2.5rem, 6vh, 4rem);
}
.jh-hero__copy { max-width: 40rem; }
.jh-hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
}
.jh-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--jh-sand);
}
.jh-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  color: #fff; max-width: 14ch; line-height: 1.08;
}
.jh-hero__lede {
  margin: 0; max-width: 38ch;
  color: rgba(255,255,255,0.88); font-size: 1.08rem;
}

/* Search card (Avigo-style) */
.jh-search-card {
  background: #fff;
  color: var(--jh-ink);
  border-radius: var(--jh-radius);
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: var(--jh-shadow-lg);
}
.jh-search-card__tabs {
  display: inline-flex; gap: 0.35rem;
  background: var(--jh-paper-2);
  padding: 0.3rem; border-radius: 999px; margin-bottom: 1rem;
}
.jh-search-card__tab {
  border: 0; background: transparent;
  padding: 0.55rem 1.15rem; border-radius: 999px;
  font: inherit; font-weight: 700; color: var(--jh-muted);
  cursor: pointer;
}
.jh-search-card__tab.is-active {
  background: var(--jh-ink); color: #fff;
}
.jh-search-card__form {
  display: grid; gap: 0.75rem;
}
@media (min-width: 640px) {
  .jh-search-card__form {
    grid-template-columns: 1fr 1fr;
  }
  .jh-search-card__submit { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
  .jh-search-card__form {
    grid-template-columns: 1.2fr 1fr 0.9fr auto;
    align-items: end;
  }
  .jh-search-card__submit { grid-column: auto; }
}
.jh-search-card__field { display: flex; flex-direction: column; gap: 0.3rem; }
.jh-search-card__field span {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--jh-muted);
}
.jh-search-card__field input,
.jh-search-card__field select {
  width: 100%; padding: 0.75rem 0.85rem;
  border: 1px solid var(--jh-line); border-radius: var(--jh-radius-sm);
  font: inherit; background: var(--jh-paper-2);
}
.jh-search-card__hints {
  margin: 0.9rem 0 0; display: flex; flex-wrap: wrap; gap: 0.45rem;
  align-items: center; font-size: 0.88rem; color: var(--jh-muted);
}
.jh-search-card__hints a {
  text-decoration: none; background: var(--jh-paper-2);
  padding: 0.25rem 0.65rem; border-radius: 999px; font-weight: 600;
  color: var(--jh-ink);
}
.jh-search-card__hints a:hover { background: var(--jh-stone); }

@keyframes jh-fade-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.jh-fade-rise { animation: jh-fade-rise 0.8s ease-out both; }
.jh-fade-rise--delay { animation-delay: 0.2s; }
.jh-fade-rise--delay-2 { animation-delay: 0.4s; }

/* —— Sections —— */
.jh-section {
  max-width: var(--jh-max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--jh-space);
}
.jh-section__head { max-width: 40rem; margin-bottom: 2rem; }
.jh-section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.jh-section__head p { margin: 0; color: var(--jh-muted); }
.jh-section__head--row {
  max-width: none;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-end; gap: 1rem;
}
.jh-section__more { margin: 1.75rem 0 0; }

/* Cities */
.jh-cities__grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .jh-cities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .jh-cities__grid { grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 12rem; }
  .jh-city-card--wide { grid-row: span 2; min-height: 25rem; }
}
.jh-city-card {
  position: relative; overflow: hidden;
  border-radius: var(--jh-radius);
  min-height: 12rem;
  text-decoration: none; color: #fff;
  box-shadow: var(--jh-shadow);
  display: block;
}
.jh-city-card__media {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #1a4f7a, #2E7D32);
}
.jh-city-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--jh-ease);
}
.jh-city-card:hover .jh-city-card__media img { transform: scale(1.06); }
.jh-city-card__body {
  position: absolute; inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(10, 45, 77, 0.88));
  display: flex; flex-direction: column; gap: 0.2rem;
}
.jh-city-card__title {
  font-family: var(--jh-font-display);
  font-size: 1.25rem; font-weight: 700;
}
.jh-city-card__meta { font-size: 0.9rem; opacity: 0.9; }

/* Listing cards (blog as featured) */
.jh-listing-grid {
  display: grid; gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .jh-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .jh-listing-grid { grid-template-columns: repeat(3, 1fr); }
}
.jh-listing-card,
.jh-card-post {
  margin: 0;
  background: #fff;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  overflow: hidden;
  box-shadow: var(--jh-shadow);
  transition: transform 0.25s var(--jh-ease), box-shadow 0.25s;
}
.jh-listing-card:hover,
.jh-card-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--jh-shadow-lg);
}
.jh-listing-card__link,
.jh-card-post__link {
  display: block; text-decoration: none; color: inherit; height: 100%;
}
.jh-listing-card__media,
.jh-card-post__media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, #1a4f7a, #2E7D32);
  overflow: hidden;
}
.jh-listing-card__media img,
.jh-card-post__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--jh-ease);
}
.jh-listing-card:hover .jh-listing-card__media img,
.jh-card-post:hover .jh-card-post__media img { transform: scale(1.05); }
.jh-listing-card__badge {
  position: absolute; left: 0.85rem; top: 0.85rem;
  background: #fff; color: var(--jh-ink);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.jh-listing-card__body,
.jh-card-post__body { padding: 1.15rem 1.2rem 1.35rem; }
.jh-listing-card__title,
.jh-card-post__title {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}
.jh-listing-card__excerpt,
.jh-card-post__excerpt {
  margin: 0 0 0.75rem;
  color: var(--jh-muted); font-size: 0.94rem;
}
.jh-listing-card__meta,
.jh-card-post__cat {
  margin: 0; font-size: 0.85rem; color: var(--jh-sand-deep); font-weight: 650;
}
.jh-card-post__media--placeholder {
  background: linear-gradient(145deg, var(--jh-header), #1a6b3a);
}

/* How it works */
.jh-how { background: var(--jh-paper-2); max-width: none; }
.jh-how .jh-section__head,
.jh-how__list {
  max-width: var(--jh-max);
  margin-left: auto; margin-right: auto;
  padding-left: var(--jh-space); padding-right: var(--jh-space);
}
.jh-how .jh-section__head { padding-left: 0; padding-right: 0; }
.jh-how__list {
  list-style: none; margin: 0; padding-top: 0; padding-bottom: 0;
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) {
  .jh-how__list { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.jh-how__item {
  background: #fff;
  border-radius: var(--jh-radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--jh-shadow);
  border: 1px solid var(--jh-line);
}
.jh-how__num {
  display: block;
  font-family: var(--jh-font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--jh-sand); margin-bottom: 0.65rem;
}
.jh-how__item h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.jh-how__item p { margin: 0; color: var(--jh-muted); }

/* Property types */
.jh-types__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .jh-types__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .jh-types__grid { grid-template-columns: repeat(4, 1fr); }
}
.jh-type-card {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.35rem 1.15rem;
  background: #fff;
  border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius);
  text-decoration: none; color: inherit;
  box-shadow: var(--jh-shadow);
  transition: transform 0.2s, border-color 0.2s;
  height: 100%;
}
.jh-type-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--jh-btn) 40%, var(--jh-line));
  color: inherit;
}
.jh-type-card__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 12px;
  background: color-mix(in srgb, var(--jh-btn) 12%, #fff);
  margin-bottom: 0.5rem;
  position: relative;
}
.jh-type-card__icon::after {
  content: "";
  position: absolute; inset: 0.65rem;
  background: var(--jh-btn);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 3 10v10h6v-6h6v6h6V10z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 3 10v10h6v-6h6v6h6V10z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.jh-type-card__title {
  font-family: var(--jh-font-display);
  font-weight: 700; font-size: 1.1rem; color: var(--jh-ink);
}
.jh-type-card__meta { font-size: 0.9rem; color: var(--jh-muted); }

/* Mid band */
.jh-band {
  background: linear-gradient(120deg, var(--jh-header), #1a5a3a);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4rem) var(--jh-space);
}
.jh-band__inner {
  max-width: var(--jh-max); margin: 0 auto;
  display: grid; gap: 2rem;
}
@media (min-width: 900px) {
  .jh-band__inner { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.jh-band__copy h2 {
  margin: 0 0 0.75rem; color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.jh-band__copy p { margin: 0 0 1.25rem; color: rgba(255,255,255,0.88); max-width: 40ch; }
.jh-band__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.jh-band__stats strong {
  display: block;
  font-family: var(--jh-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1; margin-bottom: 0.35rem;
}
.jh-band__stats span { font-size: 0.88rem; opacity: 0.85; }

/* Why / stats (inner pages / legacy) */
.jh-why { background: var(--jh-paper-2); max-width: none; padding-left: 0; padding-right: 0; }
.jh-why .jh-section__head,
.jh-why .jh-why__stats,
.jh-why .jh-section__more {
  max-width: var(--jh-max); margin-left: auto; margin-right: auto;
  padding-left: var(--jh-space); padding-right: var(--jh-space);
}
.jh-why__stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
}
@media (min-width: 700px) {
  .jh-why__stats { grid-template-columns: repeat(3, 1fr); }
}
.jh-why__num {
  display: block;
  font-family: var(--jh-font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--jh-ink); line-height: 1;
}
.jh-why__label { color: var(--jh-muted); }

/* Carousel */
.jh-testimonials { background: var(--jh-paper-2); max-width: none; }
.jh-testimonials .jh-section__head,
.jh-testimonials .jh-carousel,
.jh-testimonials .jh-section__more {
  max-width: var(--jh-max); margin-left: auto; margin-right: auto;
  padding-left: var(--jh-space); padding-right: var(--jh-space);
}
.jh-carousel { position: relative; max-width: 42rem; }
.jh-carousel__track { position: relative; min-height: 12rem; }
.jh-carousel__slide {
  margin: 0; opacity: 0; pointer-events: none;
  position: absolute; inset: 0;
  transition: opacity 0.45s var(--jh-ease);
  background: #fff; border-radius: var(--jh-radius);
  padding: 1.5rem; border: 1px solid var(--jh-line);
  box-shadow: var(--jh-shadow);
}
.jh-carousel__slide.is-active {
  opacity: 1; pointer-events: auto; position: relative;
}
.jh-carousel__stars { color: var(--jh-sand); letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.jh-carousel__quote {
  margin: 0 0 1.1rem;
  font-family: var(--jh-font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500; line-height: 1.45;
}
.jh-carousel__quote p { margin: 0; }
.jh-carousel__name { display: block; font-weight: 700; color: var(--jh-ink); }
.jh-carousel__meta { display: block; color: var(--jh-muted); font-size: 0.92rem; }
.jh-carousel__btn {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--jh-line); background: #fff;
  border-radius: 50%; font-size: 1.35rem; cursor: pointer; z-index: 2;
}
.jh-carousel__btn--prev { left: -0.25rem; }
.jh-carousel__btn--next { right: -0.25rem; }
@media (min-width: 800px) {
  .jh-carousel__btn--prev { left: -3rem; }
  .jh-carousel__btn--next { right: -3rem; }
}
.jh-carousel__dots { display: flex; gap: 0.4rem; margin-top: 1.15rem; }
.jh-carousel__dots button {
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  border: 0; background: var(--jh-line); padding: 0; cursor: pointer;
}
.jh-carousel__dots button.is-active { background: var(--jh-ink); }

/* CTA band */
.jh-cta-band {
  background: var(--jh-header);
  color: var(--jh-stone);
  padding: clamp(2.5rem, 6vw, 4rem) var(--jh-space);
}
.jh-cta-band__inner {
  max-width: var(--jh-max); margin: 0 auto;
  display: grid; gap: 2rem;
}
@media (min-width: 860px) {
  .jh-cta-band__inner {
    grid-template-columns: 1fr 1fr; align-items: start; gap: 3rem;
  }
}
.jh-cta-band h2 { color: #fff; margin: 0 0 0.65rem; font-size: clamp(1.55rem, 3vw, 2rem); }
.jh-cta-band p { margin: 0 0 1.25rem; color: rgba(232, 238, 244, 0.88); }
.jh-cta-band--compact { margin-top: 3rem; }
.jh-cta-band .jh-contact-actions {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem; border-radius: var(--jh-radius);
}
.jh-cta-band .jh-contact-actions__title,
.jh-cta-band .jh-contact-actions__lede { color: var(--jh-stone); }

/* Contact actions (WhatsApp + Call) */
.jh-contact-actions__title { margin: 0 0 0.4rem; font-size: 1.15rem; }
.jh-contact-actions__lede {
  margin: 0 0 1rem; font-size: 0.92rem; color: var(--jh-muted);
}
.jh-contact-actions__btns {
  display: flex; flex-direction: column; gap: 0.65rem;
}
.jh-contact-actions--sidebar,
.jh-footer .jh-contact-actions,
.jh-post-cta .jh-contact-actions {
  background: #fff; border: 1px solid var(--jh-line);
  padding: 1.15rem; border-radius: var(--jh-radius);
}

/* Float WA */
.jh-float-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 200;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--jh-btn); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(15, 61, 102, 0.28);
  transition: transform 0.2s, background 0.2s;
  animation: jh-float-in 0.6s 0.4s var(--jh-ease) both;
}
.jh-float-wa:hover { transform: scale(1.06); background: var(--jh-btn-hover); color: #fff; }

.jh-float-call {
  position: fixed; right: 1rem; bottom: 5rem; z-index: 200;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--jh-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(15, 61, 102, 0.28);
  transition: transform 0.2s, background 0.2s;
  animation: jh-float-in 0.6s 0.25s var(--jh-ease) both;
}
.jh-float-call:hover { transform: scale(1.06); background: var(--jh-ink-soft); color: #fff; }

@keyframes jh-float-in {
  from { opacity: 0; transform: translateY(1rem) scale(0.9); }
  to { opacity: 1; transform: none; }
}

/* Footer */
.jh-footer {
  background: #0a2a45;
  color: var(--jh-stone);
  padding-top: 3.25rem;
}
.jh-footer a { color: var(--jh-stone); }
.jh-footer a:hover { color: var(--jh-sand); }
.jh-footer__grid {
  max-width: var(--jh-max); margin: 0 auto;
  padding: 0 var(--jh-space) 2.5rem;
  display: grid; gap: 2rem;
}
@media (min-width: 900px) {
  .jh-footer__grid { grid-template-columns: 1.2fr 0.7fr 0.7fr 1.2fr; gap: 2rem; }
}
.jh-footer__logo {
  height: 52px; width: auto;
  background: #fff; border-radius: 8px; padding: 0.3rem 0.5rem;
}
.jh-footer__logo-link { display: inline-block; line-height: 0; margin-bottom: 0.85rem; text-decoration: none; }
.jh-footer__tagline,
.jh-footer__contact { margin: 0 0 0.75rem; color: rgba(232,238,244,0.85); }
.jh-footer__heading { font-weight: 700; margin: 0 0 0.75rem; color: #fff; }
.jh-footer__list { list-style: none; margin: 0; padding: 0; }
.jh-footer__list a {
  display: block; padding: 0.35rem 0; text-decoration: none; font-weight: 500;
}
.jh-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem var(--jh-space); text-align: center;
  font-size: 0.9rem; color: rgba(232,238,244,0.6);
}
.jh-footer__bar p { margin: 0; }

/* Pages / blog */
.jh-page-hero {
  max-width: var(--jh-max); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--jh-space) 1.5rem;
}
.jh-page-hero h1 { margin: 0 0 0.75rem; font-size: clamp(2rem, 4.5vw, 3rem); }
.jh-page-hero__lede { margin: 0; max-width: 40rem; color: var(--jh-muted); font-size: 1.1rem; }
.jh-eyebrow {
  font-family: var(--jh-font-display);
  font-size: 1rem; font-weight: 700; color: var(--jh-sand); margin: 0 0 0.5rem;
}
.jh-page__content {
  max-width: var(--jh-max); margin: 0 auto;
  padding: 0 var(--jh-space) 3.5rem;
}
.jh-prose { max-width: 42rem; }
.jh-prose > *:first-child { margin-top: 0; }
.jh-prose h2 { margin-top: 2.25rem; font-size: 1.5rem; }
.jh-prose h3 { margin-top: 1.75rem; font-size: 1.2rem; }

.jh-trust-list { list-style: none; margin: 0; padding: 0; }
.jh-trust-list li {
  padding: 0.9rem 0 0.9rem 1.4rem;
  border-bottom: 1px solid var(--jh-line); position: relative;
}
.jh-trust-list li::before {
  content: ""; position: absolute; left: 0; top: 1.25rem;
  width: 0.55rem; height: 0.55rem; background: var(--jh-sand); border-radius: 50%;
}

.jh-service-blocks {
  list-style: none; margin: 0 0 2rem; padding: 0;
  display: grid; gap: 1.25rem;
}
@media (min-width: 760px) {
  .jh-service-blocks { grid-template-columns: repeat(2, 1fr); }
}
.jh-service-block {
  padding: 1.35rem; background: #fff;
  border: 1px solid var(--jh-line); border-radius: var(--jh-radius);
  box-shadow: var(--jh-shadow);
}
.jh-service-block h2 { margin: 0 0 0.5rem; font-size: 1.3rem; }
.jh-service-block p { margin: 0; color: var(--jh-muted); }

.jh-testimonial-grid {
  list-style: none; margin: 0 0 2.5rem; padding: 0;
  display: grid; gap: 1.25rem;
}
@media (min-width: 760px) {
  .jh-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
.jh-testimonial-card {
  background: #fff; border: 1px solid var(--jh-line);
  padding: 1.35rem; border-radius: var(--jh-radius); box-shadow: var(--jh-shadow);
}
.jh-testimonial-card blockquote {
  margin: 0 0 1rem; font-family: var(--jh-font-display); font-size: 1.1rem;
}
.jh-testimonial-card blockquote p { margin: 0; }

.jh-contact-layout {
  max-width: var(--jh-max); margin: 0 auto;
  padding: 0 var(--jh-space) 3.5rem;
  display: grid; gap: 2rem;
}
@media (min-width: 860px) {
  .jh-contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
.jh-map {
  margin-top: 1.5rem; border-radius: var(--jh-radius); overflow: hidden;
  border: 1px solid var(--jh-line); aspect-ratio: 4 / 3; background: var(--jh-paper-2);
}
.jh-map iframe { width: 100%; height: 100%; border: 0; }

.jh-blog-layout {
  max-width: var(--jh-max); margin: 0 auto;
  padding: 0 var(--jh-space) 3.5rem;
  display: grid; gap: 2.5rem;
}
@media (min-width: 960px) {
  .jh-blog-layout {
    grid-template-columns: minmax(0, 1fr) 18rem;
    align-items: start; gap: 3rem;
  }
}
.jh-page-hero--archive { padding-left: 0; padding-right: 0; }
.jh-cat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.jh-cat-pill {
  display: inline-block; padding: 0.4rem 0.9rem;
  border: 1px solid var(--jh-line); border-radius: 999px;
  text-decoration: none; font-size: 0.9rem; font-weight: 650;
  color: var(--jh-ink); background: #fff;
}
.jh-cat-pill.is-active,
.jh-cat-pill:hover {
  border-color: var(--jh-btn); background: var(--jh-btn); color: #fff;
}
.jh-sidebar { position: sticky; top: calc(var(--jh-header-h) + 1rem); }
.jh-sidebar__widgets { margin-top: 1.25rem; }
.jh-widget { margin-bottom: 1.25rem; }
.jh-widget__title { margin: 0 0 0.65rem; font-size: 1.05rem; }
.jh-cat-list { list-style: none; margin: 0; padding: 0; }
.jh-cat-list li { margin-bottom: 0.35rem; }

.jh-post-grid {
  display: grid; gap: 1.35rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .jh-post-grid { grid-template-columns: repeat(2, 1fr); }
}

.jh-single__header { margin-bottom: 1.5rem; }
.jh-single__cat { margin: 0 0 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.jh-single__cat a { color: var(--jh-sand); text-decoration: none; }
.jh-single__title { margin: 0 0 0.75rem; font-size: clamp(1.85rem, 4vw, 2.6rem); }
.jh-single__intro { margin: 0 0 0.75rem; font-size: 1.12rem; color: var(--jh-muted); max-width: 40rem; }
.jh-single__meta { margin: 0; font-size: 0.92rem; color: var(--jh-muted); }
.jh-single__thumb { margin: 0 0 1.75rem; border-radius: var(--jh-radius); overflow: hidden; }
.jh-single__thumb img { width: 100%; }

.jh-toc {
  background: var(--jh-paper-2); border: 1px solid var(--jh-line);
  border-radius: var(--jh-radius); padding: 1.15rem 1.25rem;
  margin-bottom: 2rem; max-width: 42rem;
}
.jh-toc__label { margin: 0 0 0.65rem; font-weight: 700; font-size: 0.9rem; }
.jh-toc__list { margin: 0; padding-left: 1.15rem; }
.jh-toc__item { margin-bottom: 0.35rem; }
.jh-toc__item--h3 { margin-left: 0.75rem; list-style-type: circle; }
.jh-toc a { text-decoration: none; font-weight: 500; }

.jh-faq { max-width: 42rem; margin: 2.75rem 0; }
.jh-faq h2 { margin: 0 0 1rem; }
.jh-faq__item { border-bottom: 1px solid var(--jh-line); padding: 0.85rem 0; }
.jh-faq__item summary {
  cursor: pointer; font-weight: 650;
  font-family: var(--jh-font-display); font-size: 1.05rem;
}
.jh-faq__answer { padding-top: 0.65rem; color: var(--jh-muted); }

.jh-post-cta {
  max-width: 42rem; margin: 2.5rem 0 0; padding: 1.5rem;
  background: var(--jh-paper-2); border-radius: var(--jh-radius);
  border: 1px solid var(--jh-line);
}
.jh-post-cta h2 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.jh-post-cta > p { margin: 0 0 1rem; color: var(--jh-muted); }

.jh-empty { color: var(--jh-muted); grid-column: 1 / -1; }
.jh-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.page-numbers {
  display: inline-block; padding: 0.4rem 0.8rem;
  border: 1px solid var(--jh-line); text-decoration: none;
  border-radius: 999px; font-weight: 650;
}
.page-numbers.current {
  background: var(--jh-btn); color: #fff; border-color: var(--jh-btn);
}

/* Legacy services strip (unused on new home but safe) */
.jh-services-strip { background: var(--jh-header); color: var(--jh-stone); padding: 1.35rem var(--jh-space); }
.jh-services-strip__list {
  list-style: none; margin: 0 auto; padding: 0; max-width: var(--jh-max);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 720px) {
  .jh-services-strip__list { grid-template-columns: repeat(4, 1fr); }
}
.jh-services-strip__list li { display: flex; align-items: center; gap: 0.65rem; font-weight: 600; }
.jh-services-strip__icon { color: var(--jh-sand); }
.jh-localities__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--jh-line); }
.jh-localities__list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 0; border-bottom: 1px solid var(--jh-line);
  text-decoration: none; font-family: var(--jh-font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--jh-ink);
}
.jh-localities__arrow { color: var(--jh-sand); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .jh-fade-rise, .jh-fade-rise--delay, .jh-fade-rise--delay-2 {
    animation: none; opacity: 1; transform: none;
  }
  .jh-hero__video { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
