/* ==========================================================================
   Hero Homes Mohali — Homepage-only design system
   Scoped with the "hh-" prefix so nothing here touches the shared
   amenities / gallery / highlights / location / contact page styles.
   ========================================================================== */

:root {
  --hh-red: #ED1C24;
  --hh-red-dark: #C81219;
  --hh-black: #101018;
  --hh-ink: #1f1f1f;
  --hh-gray-700: #4a4a4a;
  --hh-gray-500: #6e6e6e;
  --hh-gray-300: #d8d8db;
  --hh-gray-200: #e9e9ec;
  --hh-gray-100: #f4f4f6;
  --hh-white: #ffffff;
  --hh-radius-lg: 20px;
  --hh-radius-md: 14px;
  --hh-radius-sm: 10px;
  --hh-shadow-sm: 0 4px 14px rgba(16, 16, 24, 0.06);
  --hh-shadow-md: 0 14px 34px rgba(16, 16, 24, 0.10);
  --hh-shadow-lg: 0 24px 60px rgba(16, 16, 24, 0.16);
  --hh-container: 1300px;
}

.hh-section {
  padding: 96px 0;
}

.hh-section--tight {
  padding: 64px 0;
}

.hh-container {
  width: min(var(--hh-container), calc(100% - 48px));
  margin: 0 auto;
}

.hh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hh-red);
}

.hh-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--hh-red);
  display: inline-block;
}

.hh-heading {
  margin: 0 0 16px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--hh-black);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.2px;
}

.hh-heading--on-dark {
  color: var(--hh-white);
}

.hh-lede {
  margin: 0 0 8px;
  max-width: 700px;
  color: var(--hh-gray-700);
  font-size: 17px;
  line-height: 1.7;
}

.hh-lede--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hh-lede--on-dark {
  color: #cfd0d6;
}

.hh-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.hh-head-row .hh-heading,
.hh-head-row .hh-eyebrow {
  margin-bottom: 10px;
}

/* Buttons */
.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.hh-btn:hover {
  transform: translateY(-2px);
}

.hh-btn--primary {
  background: var(--hh-red);
  color: var(--hh-white);
  box-shadow: 0 10px 24px rgba(237, 28, 36, 0.30);
}

.hh-btn--primary:hover {
  background: var(--hh-red-dark);
  box-shadow: 0 14px 30px rgba(237, 28, 36, 0.38);
}

.hh-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--hh-white);
  backdrop-filter: blur(2px);
}

.hh-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--hh-white);
}

.hh-btn--outline-dark {
  background: transparent;
  border-color: var(--hh-black);
  color: var(--hh-black);
}

.hh-btn--outline-dark:hover {
  background: var(--hh-black);
  color: var(--hh-white);
}

.hh-btn--sm {
  padding: 11px 22px;
  font-size: 13.5px;
}

/* ---------- HERO ---------- */
.hh-hero {
  position: relative;
  width: 100%;
  height: min(88vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: var(--hh-black);
}

.hh-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hh-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.55) 32%, rgba(8, 8, 12, 0.15) 58%, rgba(8, 8, 12, 0.45) 100%);
}

.hh-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 0 44px;
}

.hh-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 16px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(16, 16, 24, 0.35);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hh-hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hh-red);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.25);
}

.hh-hero-title {
  margin: 0 0 14px;
  max-width: 780px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.hh-hero-title em {
  font-style: normal;
  color: var(--hh-red);
}

.hh-hero-sub {
  margin: 0 0 32px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.6;
}

.hh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hh-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--hh-radius-md);
  overflow: hidden;
  max-width: 760px;
  backdrop-filter: blur(6px);
}

.hh-hero-stat {
  padding: 16px 18px;
  background: rgba(16, 16, 24, 0.45);
}

.hh-hero-stat b {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hh-hero-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hh-scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hh-scroll-cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
}

/* ---------- INTRO / OVERVIEW ---------- */
.hh-intro {
  padding: 72px 0 0;
  background: var(--hh-white);
}

.hh-intro-wrap {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.hh-overview {
  background: var(--hh-white);
}

.hh-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hh-overview-media {
  position: relative;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
  box-shadow: var(--hh-shadow-lg);
}

.hh-overview-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.hh-overview-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 16px;
  background: rgba(16, 16, 24, 0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12.5px;
  font-style: italic;
  border-radius: 999px;
}

.hh-overview-badge {
  position: absolute;
  top: 24px;
  right: -18px;
  background: var(--hh-red);
  color: #fff;
  padding: 16px 26px 16px 22px;
  border-radius: 12px 0 0 12px;
  box-shadow: var(--hh-shadow-md);
  text-align: right;
}

.hh-overview-badge b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.hh-overview-badge span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.92;
}

.hh-checklist {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.hh-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--hh-ink);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
}

.hh-checklist li::before {
  content: "\2713";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 28, 36, 0.10);
  color: var(--hh-red);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

.hh-overview-links {
  margin: 0 0 34px;
  color: var(--hh-gray-700);
  font-size: 15px;
  line-height: 1.7;
}

.hh-overview-links a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(237, 28, 36, 0.35);
}

.hh-overview-links a:hover {
  border-color: var(--hh-red);
}

.hh-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hh-stat-card {
  padding: 20px 14px;
  background: var(--hh-black);
  border-radius: var(--hh-radius-md);
  text-align: center;
  transition: transform 0.2s ease;
}

.hh-stat-card:hover {
  transform: translateY(-4px);
}

.hh-stat-card b {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.hh-stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--hh-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ---------- WHY / HIGHLIGHTS STRIP ---------- */
.hh-why {
  background: var(--hh-gray-100);
}

.hh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hh-why-card {
  padding: 34px 28px;
  background: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hh-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hh-shadow-md);
}

.hh-why-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(237, 28, 36, 0.10);
  margin-bottom: 20px;
}

.hh-why-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(21%) sepia(84%) saturate(4941%) hue-rotate(346deg) brightness(94%) contrast(96%);
}

.hh-why-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--hh-black);
}

.hh-why-card p {
  margin: 0;
  color: var(--hh-gray-700);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- AMENITIES (light, homepage preview) ---------- */
.hh-amenities {
  position: relative;
  background: var(--hh-gray-100);
  color: var(--hh-ink);
  overflow: hidden;
}

.hh-amenities .hh-head-row {
  position: relative;
  z-index: 1;
}

.hh-amenities .hh-lede {
  max-width: 640px;
}

.hh-amenities .amenities-slider {
  position: relative;
  z-index: 1;
}

.hh-amenities .amenities-viewport {
  overflow: hidden;
}

.hh-amenities .amenity-item {
  padding: 6px;
}

.hh-amenities .amenity-item > * {
  padding: 30px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--hh-white);
  border: 1px solid var(--hh-gray-200);
  border-radius: var(--hh-radius-md);
  box-shadow: var(--hh-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hh-amenities .amenity-item:hover > * {
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow-md);
  border-color: rgba(237, 28, 36, 0.25);
}

.hh-amenities .amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(237, 28, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hh-amenities .amenity-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) saturate(100%) invert(21%) sepia(84%) saturate(4941%) hue-rotate(346deg) brightness(94%) contrast(96%);
}

.hh-amenities .amenity-item h4 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  color: var(--hh-ink);
}

.hh-amenities .amenities-controls {
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.hh-amenities .amenities-btn {
  background: var(--hh-white);
  color: var(--hh-black);
  border: 1px solid var(--hh-gray-300);
  box-shadow: var(--hh-shadow-sm);
}

.hh-amenities .amenities-btn:hover {
  background: var(--hh-red);
  border-color: var(--hh-red);
  color: #fff;
}

.hh-amenities-foot {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  text-align: center;
}

/* ---------- GALLERY (homepage preview) ---------- */
.hh-gallery {
  background: var(--hh-white);
}

.hh-gallery .gallery-slider {
  position: relative;
}

.hh-gallery .gallery-viewport {
  overflow: hidden;
  border-radius: var(--hh-radius-lg);
}

.hh-gallery .gallery-item {
  position: relative;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
}

.hh-gallery .gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hh-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.hh-gallery .gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 14px;
  background: rgba(16, 16, 24, 0.65);
  color: #fff;
  font-size: 12px;
  font-style: italic;
  border-radius: 999px;
}

.hh-gallery .gallery-controls {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hh-gallery .gallery-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--hh-gray-300);
  background: #fff;
  color: var(--hh-black);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hh-gallery .gallery-btn:hover {
  background: var(--hh-red);
  border-color: var(--hh-red);
  color: #fff;
}

.hh-gallery-foot {
  margin-top: 30px;
  text-align: center;
}

/* ---------- HIGHLIGHTS (homepage preview) ---------- */
.hh-highlights {
  background: var(--hh-gray-100);
}

.hh-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hh-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  background: #fff;
  border-radius: var(--hh-radius-md);
  box-shadow: var(--hh-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hh-highlights .highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hh-shadow-md);
}

.hh-highlights .highlight-item.is-empty {
  display: none;
}

.hh-highlights .highlight-item img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(21%) sepia(84%) saturate(4941%) hue-rotate(346deg) brightness(94%) contrast(96%);
}

.hh-highlights .highlight-item p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--hh-ink);
  line-height: 1.35;
}

.hh-highlights-foot {
  margin-top: 34px;
  text-align: center;
}

/* ---------- LOCATION (homepage preview) ---------- */
.hh-location {
  background: var(--hh-white);
}

.hh-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.hh-location-media {
  position: relative;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
  box-shadow: var(--hh-shadow-lg);
}

.hh-location-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hh-location-pin {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(16, 16, 24, 0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
}

.hh-location-pin i {
  color: var(--hh-red);
}

.hh-location .hh-lede {
  max-width: 560px;
}

.hh-location-points {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.hh-location-points li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: var(--hh-gray-100);
  border-radius: var(--hh-radius-sm);
  font-size: 14px;
}

.hh-location-points li span:first-child {
  color: var(--hh-ink);
  font-weight: 500;
}

.hh-location-points li b {
  flex: 0 0 auto;
  color: var(--hh-red);
  font-weight: 700;
  font-size: 13px;
}

/* ---------- CTA BANNER ---------- */
.hh-cta {
  position: relative;
  background: var(--hh-black);
  overflow: hidden;
}

.hh-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 12% 20%, rgba(237, 28, 36, 0.28), transparent 60%),
    radial-gradient(600px 300px at 88% 90%, rgba(237, 28, 36, 0.18), transparent 60%);
}

.hh-cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.hh-cta-text h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

.hh-cta-text p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.hh-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- CONTACT (homepage, compact) ---------- */
.hh-contact {
  background: var(--hh-gray-100);
}

.hh-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.hh-contact-info {
  padding: 40px 34px;
  background: var(--hh-black);
  color: #fff;
  border-radius: var(--hh-radius-lg);
  height: 100%;
}

.hh-contact-info h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
}

.hh-contact-info p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.65;
}

.hh-contact .contact-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hh-contact .contact-point {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hh-contact .contact-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hh-contact .contact-point h3 {
  margin: 0 0 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hh-red);
}

.hh-contact .contact-point p {
  margin: 0;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
}

.hh-contact-form-card {
  padding: 36px 34px;
  background: #fff;
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow-md);
}

.hh-contact-form-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--hh-black);
}

.hh-contact-form-card > p {
  margin: 0 0 24px;
  color: var(--hh-gray-500);
  font-size: 14px;
}

.hh-contact .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hh-contact .form-field-full {
  grid-column: 1 / -1;
}

.hh-contact .form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hh-ink);
}

.hh-contact .form-field input,
.hh-contact .form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--hh-gray-200);
  border-radius: var(--hh-radius-sm);
  background: var(--hh-gray-100);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  color: var(--hh-ink);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.hh-contact .form-field input:focus,
.hh-contact .form-field textarea:focus {
  outline: 0;
  border-color: var(--hh-red);
  background: #fff;
}

.hh-contact .contact-submit {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: 999px;
  background: var(--hh-red);
  color: #fff;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.hh-contact .contact-submit:hover {
  background: var(--hh-red-dark);
  transform: translateY(-2px);
}

/* ---------- Trust note ---------- */
.hh-trust-note {
  margin-top: 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--hh-gray-200);
  border-left: 4px solid var(--hh-red);
  border-radius: var(--hh-radius-sm);
  color: var(--hh-gray-700);
  font-size: 13.5px;
  line-height: 1.6;
}

.hh-trust-note strong {
  color: var(--hh-ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hh-overview-grid,
  .hh-location-grid,
  .hh-contact-grid {
    grid-template-columns: 1fr;
  }

  .hh-overview-media img,
  .hh-location-media img {
    height: 380px;
  }

  .hh-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hh-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hh-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-overview-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    margin-bottom: 18px;
    padding: 10px 18px;
  }

  .hh-overview-badge b {
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  .hh-section {
    padding: 60px 0;
  }

  .hh-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hh-why-grid,
  .hh-highlights-grid,
  .hh-checklist,
  .hh-location-points,
  .hh-contact .form-grid {
    grid-template-columns: 1fr;
  }

  .hh-stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hh-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hh-hero {
    height: auto;
    min-height: 100vh;
  }

  .hh-hero-inner {
    padding: 120px 0 40px;
  }

  .hh-scroll-cue {
    display: none;
  }

  .hh-contact-info,
  .hh-contact-form-card {
    padding: 28px 22px;
  }
}
