/* ============================================================
   HOME PAGE - Luxury Conciergerie Redesign - home.min.css
   Color tokens: navy #0a1628, gold #d4af37, cream #faf8f5
   ============================================================ */

/* -- Design tokens ------------------------------------------- */
.hp {
  --hp-navy: var(--theme-brand-navy-deep);
  --hp-navy-2: var(--theme-brand-navy-strong);
  --hp-gold: var(--theme-brand-gold);
  --hp-gold-2: var(--theme-brand-gold-dark);
  --hp-cream: var(--theme-brand-cream);
  --hp-white: var(--bg-white);
  --hp-text: var(--text-dark);
  --hp-text-light: var(--text-primary);
  --hp-muted: var(--text-muted);
  --hp-muted-light: var(--text-light);
  --hp-border: var(--border-light);
  --hp-border-light: var(--border-medium);
  --hp-rad: 12px;
  --hp-rad-sm: 6px;
  --hp-rad-lg: 16px;
  --hp-shadow: var(--shadow-premium);
  --hp-shadow-lg: var(--shadow-xl);
  --hp-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --hp-font-head: "Playfair Display", Georgia, serif;
  --hp-font-body: "Outfit", system-ui, sans-serif;
  --hp-spacing-xs: 0.5rem;
  --hp-spacing-sm: 1rem;
  --hp-spacing-md: 1.5rem;
  --hp-spacing-lg: 2rem;
  --hp-spacing-xl: 3rem;
  --hp-spacing-2xl: 6rem;
  /* Fluid section padding – single knob for all sections */
  --hp-sec-pad: clamp(2.75rem, 7vw, 6rem);
}

/* Page-level guard – only loaded on homepage so safe to scope to body */
body.page-wrapper {
  overflow-x: hidden;
  max-width: 100vw;
}

/* -- Base ----------------------------------------------------- */
.hp {
  font-family: var(--hp-font-body);
  color: var(--hp-text);
  /* width:100% is REQUIRED because .main-content is a flex container;
     without it .hp sizes to content width and body scrolls */
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
.hp *,
.hp *::before,
.hp *::after {
  box-sizing: border-box;
}
.hp a {
  text-decoration: none;
}
.hp h1,
.hp h2,
.hp h3,
.hp h4 {
  font-family: var(--hp-font-head);
  line-height: 1.2;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hp p,
.hp li,
.hp blockquote,
.hp td,
.hp strong {
  overflow-wrap: break-word;
}
.hp img {
  max-width: 100%;
  display: block;
}
.hp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0; /* prevent flex/grid blowout */
  margin: 0;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
}

/* -- Admin bar ------------------------------------------------ */
.hp-admin-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: #fef9c3;
  border-bottom: 2px solid #fde047;
  padding: 0.625rem 1.25rem;
  font-size: 0.82rem;
  color: #713f12;
  box-sizing: border-box;
  max-width: 100%;
}
.hp-admin-bar__icon {
  font-size: 1rem;
}
.hp-admin-bar__link {
  margin-left: auto;
  background: #713f12;
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

.hp-team-story__closing {
  font-size: 0.95rem;
  color: var(--hp-muted-light);
  margin-top: var(--hp-spacing-lg);
  padding-top: var(--hp-spacing-md);
  border-top: 1px solid var(--hp-border-light);
}
.hp-admin-bar__link:hover {
  background: #431407;
  color: #fff;
}

/* -- Buttons -------------------------------------------------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--hp-rad-sm);
  font-family: var(--hp-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--hp-ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hp-btn--gold {
  background: var(--hp-gold);
  color: white;
  border-color: var(--hp-gold);
}
.hp-btn--gold:hover {
  background: var(--hp-gold-2);
  border-color: var(--hp-gold-2);
  color: var(--hp-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}
.hp-btn--outline {
  background: transparent;
  color: var(--hp-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.hp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--hp-white);
  transform: translateY(-2px);
  color: var(--hp-white);
}
.hp-btn--outline.hp-btn--gold {
  color: var(--hp-gold);
  border-color: var(--hp-gold);
  background: transparent;
}
.hp-btn--outline.hp-btn--gold:hover {
  background: rgba(201, 169, 110, 0.15);
  transform: translateY(-2px);
}
.hp-btn.w-100 {
  width: 100%;
  justify-content: center;
}

/* -- Typography helpers --------------------------------------- */
.hp-eyebrow {
  font-family: var(--hp-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-gold);
  margin: 0 0 0.5rem;
}
.hp-eyebrow--gold {
  color: var(--hp-gold);
}
.hp-divider {
  width: 48px;
  height: 3px;
  background: var(--hp-gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}
.hp-divider--gold {
  background: var(--hp-gold);
}

/* -- Section shell -------------------------------------------- */
.hp-section {
  padding: var(--hp-sec-pad) 0;
  position: relative;
}
.hp-credibility-section {
  padding: 0 0;
}
.hp-section--light {
  background: var(--hp-white);
}
.hp-section--cream {
  background: var(--hp-cream);
}
.hp-section--dark {
  background: var(--hp-navy);
  color: var(--hp-white);
}
.hp-section--dark h2,
.hp-section--dark h3 {
  color: var(--hp-white);
}
.hp-section--dark p {
  color: rgba(255, 255, 255, 0.8);
}
.hp-section-head {
  text-align: center;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  max-width: 980px;
}
.hp-section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 3.1rem);
  color: var(--hp-navy);
  margin-top: 0.35rem;
  letter-spacing: -0.015em;
  line-height: 1.12;
  text-wrap: balance;
}
.hp-section-head--light h2 {
  color: var(--hp-white);
}

/* -- Responsive grid ------------------------------------------ */
.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* -- HERO ----------------------------------------------------- */
.hp-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 9s ease-out;
  will-change: transform;
}
.hp-hero:hover .hp-hero__img {
  transform: scale(1);
}
.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.55) 55%,
    rgba(10, 22, 40, 0.25) 100%
  );
}
.hp-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  min-width: 0;
}
.hp-hero__copy {
  max-width: min(680px, 100%);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hp-hero__copy .hp-eyebrow {
  font-size: 0.8125rem;
}
hp-hero__title {
  width: auto;
  max-width: min(18ch, 100%);
  margin: 0 auto 1.1rem;
  padding: 0;
  display: block;
  color: var(--hp-navy);
  font-family: var(--hp-hero-title-font)  !important;
  font-size: clamp(4.2rem, 8.2vw, 7.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 12px 30px rgba(4, 11, 22, 0.24);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.hp-hero__title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(212, 175, 55, 0.24) 0%,
    rgba(212, 175, 55, 0) 44%
  );
  pointer-events: none;
}
.hp-hero__title::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  bottom: 0.72rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0) 0%,
    rgba(212, 175, 55, 0.95) 48%,
    rgba(255, 255, 255, 0.28) 100%
  );
  pointer-events: none;
}
.hp-hero__lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.325rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.875rem;
  font-style: italic;
  font-family: var(--hp-font-head);
}

.hp-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hp-hero__badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.875rem;
}
.hp-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--hp-rad);
  padding: 1rem;
  text-align: center;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.hp-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--hp-gold);
}
.hp-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--hp-gold);
  font-family: var(--hp-font-head);
  font-weight: 700;
  line-height: 1.1;
}
.hp-badge span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Scroll indicator */
.hp-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hp-hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}
.hp-hero__scroll span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--hp-gold);
  transform: translateX(-50%);
  animation: hp-scrolldot 1.7s ease-in-out infinite;
}
@keyframes hp-scrolldot {
  0% {
    top: 7px;
    opacity: 1;
  }
  75% {
    top: 20px;
    opacity: 0;
  }
  100% {
    top: 7px;
    opacity: 0;
  }
}

/* -- Service cards -------------------------------------------- */
.hp-service-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-rad);
  padding: 2rem 1.75rem;
  transition:
    transform 0.3s var(--hp-ease),
    box-shadow 0.3s var(--hp-ease),
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.hp-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--hp-gold);
  transition: height 0.35s var(--hp-ease);
  border-radius: 0 0 3px 3px;
}
.hp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
  border-color: rgba(201, 169, 110, 0.4);
}
.hp-service-card:hover::before {
  height: 100%;
}
.hp-service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--hp-gold), var(--hp-gold-2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--hp-navy);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}
.hp-service-card h3 {
  font-size: 1.0625rem;
  color: var(--hp-navy);
  margin-bottom: 0.75rem;
}
.hp-service-card p {
  font-size: 0.9125rem;
  color: var(--hp-muted);
  line-height: 1.65;
  margin: 0;
}

/* -- Steps ---------------------------------------------------- */
.hp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.hp-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.hp-step__num {
  font-family: var(--hp-font-head);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--hp-gold);
  opacity: 0.9;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.hp-step h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--hp-white);
}
.hp-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}
.hp-step__arrow {
  flex: 0 0 40px;
  align-self: center;
  height: 2px;
  background: rgba(212, 175, 55, 0.3);
  position: relative;
  margin-bottom: 3.75rem;
}
.hp-step__arrow::after {
  content: "";
  position: absolute;
  right: -7px;
  top: -6px;
  border: 7px solid transparent;
  border-left-color: rgba(212, 175, 55, 0.55);
}

/* -- Testimonials --------------------------------------------- */
.hp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hp-testimonial {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-rad);
  padding: 2rem 1.75rem;
  margin: 0;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--hp-ease),
    box-shadow 0.3s var(--hp-ease);
}
.hp-testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.625rem;
  left: 1.25rem;
  font-size: 5.5rem;
  font-family: var(--hp-font-head);
  color: var(--hp-gold);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.hp-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-testimonial__stars {
  color: var(--hp-gold);
  font-size: 1rem;
  margin-bottom: 0.875rem;
  letter-spacing: 0.1em;
}
.hp-testimonial p {
  font-size: 0.9375rem;
  color: var(--hp-text);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1rem;
}
.hp-testimonial cite {
  font-size: 0.84rem;
  color: var(--hp-muted);
  font-style: normal;
  font-weight: 600;
}

/* -- Commitment cards ----------------------------------------- */
.hp-commitment-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-rad);
  overflow: hidden;
  transition:
    transform 0.3s var(--hp-ease),
    box-shadow 0.3s var(--hp-ease);
}
.hp-commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-commitment-card__img {
  height: 160px;
  overflow: hidden;
}
.hp-commitment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--hp-ease);
}
.hp-commitment-card:hover .hp-commitment-card__img img {
  transform: scale(1.06);
}
.hp-commitment-card__body {
  padding: 1.75rem;
}
.hp-commitment-card__body h3 {
  font-size: 1.0625rem;
  color: var(--hp-navy);
  margin-bottom: 0.75rem;
}
.hp-commitment-card__body p {
  font-size: 0.9125rem;
  color: var(--hp-muted);
  line-height: 1.65;
  margin: 0;
}
/* Cards without image: icon + text inline */
.hp-commitment-card:not(:has(.hp-commitment-card__img)) {
  padding: 2.25rem 1.75rem;
  text-align: center;
}
.hp-commitment-card__icon {
  font-size: 2.5rem;
  color: var(--hp-gold);
  margin-bottom: 1rem;
}
.hp-commitment-card h3 {
  font-size: 1.0625rem;
  color: var(--hp-navy);
  margin-bottom: 0.75rem;
}
.hp-commitment-card p {
  font-size: 0.9125rem;
  color: var(--hp-muted);
  line-height: 1.65;
  margin: 0;
}

/* -- Blog / post cards ---------------------------------------- */
.hp-post-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-rad);
  overflow: hidden;
  transition:
    transform 0.3s var(--hp-ease),
    box-shadow 0.3s var(--hp-ease);
}
.hp-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-post-card__img {
  height: 200px;
  overflow: hidden;
}
.hp-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--hp-ease);
}
.hp-post-card:hover .hp-post-card__img img {
  transform: scale(1.06);
}
.hp-post-card__body {
  padding: 1.5rem;
}
.hp-post-card__date {
  font-size: 0.78rem;
  color: var(--hp-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hp-post-card h3 {
  font-size: 1rem;
  color: var(--hp-navy);
  margin-bottom: 0.5rem;
}
.hp-post-card p {
  font-size: 0.875rem;
  color: var(--hp-muted);
  line-height: 1.65;
  margin: 0;
}

/* -- Contact -------------------------------------------------- */
.hp-contact-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.hp-contact-copy {
  padding: 1.25rem clamp(1rem, 2vw, 2rem) 1.25rem clamp(0.5rem, 1.2vw, 1.25rem);
}
.hp-contact-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 1rem;
}
.hp-contact-copy p {
  font-size: 0.9375rem;
  line-height: 1.75;
  opacity: 0.85;
}
.hp-contact-perks {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.hp-contact-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.85;
}
.hp-contact-perks li i {
  color: var(--hp-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.hp-contact-copy .hp-btn {
  display: flex;
  width: fit-content;
  margin: 1.75rem auto 0;
  min-width: 220px;
  justify-content: center;
}
.hp-contact-form-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--hp-rad);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hp-contact-form-title {
  font-size: 1.25rem;
  color: var(--hp-white);
  margin-bottom: 1.5rem;
}
.hp-form-group {
  margin-bottom: 1.25rem;
}
.hp-form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.375rem;
  letter-spacing: 0.03em;
}
.hp-contact-form input,
.hp-contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--hp-rad-sm);
  color: var(--hp-white);
  padding: 0.75rem 1rem;
  font-family: var(--hp-font-body);
  font-size: 0.9375rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  resize: none;
}
.hp-contact-form input::placeholder,
.hp-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hp-contact-form input:focus,
.hp-contact-form textarea:focus {
  border-color: var(--hp-gold);
  background: rgba(255, 255, 255, 0.14);
}
.hp-contact-form textarea {
  min-height: 120px;
}
.hp-field-error {
  font-size: 0.8rem;
  color: #fca5a5;
  margin-top: 0.3rem;
}

/* -- Scroll-reveal animation ---------------------------------- */
.hp-animate {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--hp-ease),
    transform 0.65s var(--hp-ease);
}
.hp-animate:nth-child(2) {
  transition-delay: 0.08s;
}
.hp-animate:nth-child(3) {
  transition-delay: 0.16s;
}
.hp-animate:nth-child(4) {
  transition-delay: 0.12s;
}
.hp-animate:nth-child(5) {
  transition-delay: 0.2s;
}
.hp-animate:nth-child(6) {
  transition-delay: 0.28s;
}
.hp-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* -- Credibility Section -------------------------------------- */
.hp-credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}
.hp-credibility__item {
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--hp-border);
  transition: transform 0.3s var(--hp-ease);
}
.hp-credibility__item:last-child {
  border-right: none;
}
.hp-credibility__item:hover {
  transform: translateY(-2px);
}
.hp-credibility__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hp-gold);
  margin-bottom: var(--hp-spacing-xs);
  font-family: var(--hp-font-head);
}
.hp-credibility__label {
  color: var(--hp-text-light);
  line-height: 1.4;
}

/* -- Comparison Section ---------------------------------------- */
.hp-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--hp-spacing-lg);
  margin-top: var(--hp-spacing-xl);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.hp-comparison__col {
  padding: var(--hp-spacing-lg);
  border-radius: var(--hp-rad);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hp-comparison__col--highlight {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.07);
}
.hp-comparison h3 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--hp-spacing-md);
  font-size: 1.25rem;
}
.hp-comparison__col--highlight h3 {
  color: var(--hp-gold);
}
.hp-comparison ul {
  list-style: none;
  padding: 0;
}
.hp-comparison li {
  margin-bottom: var(--hp-spacing-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.hp-comparison__col--highlight li {
  color: rgba(255, 255, 255, 0.8);
}
.hp-comparison strong {
  color: var(--hp-white);
  display: block;
  margin-bottom: 0.25rem;
}
.hp-comparison__col--highlight strong {
  color: var(--hp-gold);
}

/* -- Team Story Section ---------------------------------------- */
.hp-team-story {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--hp-spacing-lg);
  background: var(--hp-cream);
  border-radius: var(--hp-rad-lg);
  border-left: 4px solid var(--hp-gold);
}
.hp-team-story p {
  font-size: 1.05rem;
  color: var(--hp-text-light);
  line-height: 1.8;
  margin-bottom: var(--hp-spacing-md);
}
.hp-team-story p:last-child {
  margin-bottom: 0;
}
.hp-team-story p.hp-team-story__highlight {
  font-weight: 600;
  color: var(--hp-gold);
  font-size: 1.1rem;
}
.hp-team-members {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--hp-spacing-lg);
  margin-top: var(--hp-spacing-lg);
  padding-top: var(--hp-spacing-lg);
  border-top: 1px solid var(--hp-border-light);
}
.hp-team-member {
  text-align: center;
}
.hp-team-member__avatar {
  width: 120px;
  height: 120px;
  background: var(--hp-border-light);
  border-radius: var(--hp-rad-sm);
  margin: 0 auto var(--hp-spacing-sm);
}
.hp-team-member h4 {
  margin: 0 0 0.3rem 0;
  color: var(--hp-text-light);
  font-size: 1rem;
}
.hp-team-member p {
  margin: 0;
  color: var(--hp-muted-light);
  font-size: 0.9rem;
}

/* -- FAQ Section ---------------------------------------------- */
.hp-faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.hp-faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid var(--hp-border-light);
  border-radius: var(--hp-rad-sm);
  overflow: hidden;
  background: var(--hp-white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.hp-faq-item:hover {
  border-color: var(--hp-gold);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.12);
}
.hp-faq-summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--hp-text-light);
  user-select: none;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}
.hp-faq-summary::-webkit-details-marker {
  display: none;
}
.hp-faq-summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--hp-gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s var(--hp-ease);
}
details[open] .hp-faq-summary::after {
  transform: rotate(45deg);
}
.hp-faq-summary:hover {
  color: var(--hp-gold);
}
.hp-faq-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--hp-muted);
  line-height: 1.65;
  font-size: 0.925rem;
  margin: 0;
}

/* -- Services Include Section ---------------------------------- */
.hp-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-spacing-lg);
  margin-bottom: var(--hp-spacing-lg);
}
.hp-services-grid--single {
  grid-template-columns: 1fr;
}
.hp-services-box {
  padding: var(--hp-spacing-md);
  background: var(--hp-cream);
  border-radius: var(--hp-rad-sm);
}
.hp-services-box--value {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--hp-shadow);
}
.hp-services-box h3 {
  color: var(--hp-gold);
  margin-bottom: var(--hp-spacing-md);
  font-size: 1.45rem;
  text-align: center;
}
.hp-services-list {
  font-size: 0.95rem;
  line-height: 1.8;
}
.hp-services-list li {
  margin-bottom: var(--hp-spacing-sm);
}
.hp-services-list strong {
  color: var(--hp-text-light);
}
.hp-services-box--highlight {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--hp-gold);
}
.hp-services-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-spacing-md);
  font-size: 0.9rem;
}
.hp-services-subgrid .hp-subitem-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--hp-text-light);
}
.hp-services-subgrid ul {
  list-style: none;
  padding: 0;
  color: var(--hp-muted);
}
.hp-services-subgrid li {
  margin-bottom: 0.3rem;
}
.hp-services-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.hp-value-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: left;
  transition:
    transform 0.25s var(--hp-ease),
    box-shadow 0.25s var(--hp-ease),
    border-color 0.25s var(--hp-ease);
}
.hp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
  border-color: rgba(212, 175, 55, 0.45);
}
.hp-value-card__icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}
.hp-value-card h4 {
  margin: 0 0 0.6rem;
  color: var(--hp-text-light);
  font-family: var(--hp-font-head);
  font-size: 1.05rem;
}
.hp-value-card p {
  margin: 0;
  color: var(--hp-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* -- Results Box ------------------------------------------------ */
.hp-results-box {
  background: linear-gradient(135deg, var(--hp-gold) 0%, var(--hp-gold-2) 100%);
  padding: var(--hp-spacing-lg);
  border-radius: var(--hp-rad-sm);
  color: var(--hp-navy);
  margin-bottom: var(--hp-spacing-lg);
}
.hp-results-box h3 {
  margin-top: 0;
  margin-bottom: var(--hp-spacing-md);
  color: var(--hp-navy);
  font-size: 1.25rem;
}
.hp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hp-spacing-md);
  text-align: center;
}
.hp-results-stat {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--hp-navy);
}
.hp-results-label {
  font-size: 0.9rem;
  color: var(--hp-navy);
}
.hp-owners-cta-actions {
  text-align: center;
}
.hp-owners-cta-note {
  color: var(--hp-muted-light);
  font-size: 0.95rem;
  margin: 1rem 0 0;
}
.hp-btn--large {
  font-size: 1.1rem;
  padding: 1rem 3rem;
}

/* -- CTA Section ----------------------------------------------- */
.hp-cta-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hp-cta-heading {
  font-size: 2.5rem;
  margin-bottom: var(--hp-spacing-md);
  color: var(--hp-gold);
}
.hp-cta-subheading {
  font-size: 1.2rem;
  color: var(--hp-muted);
  margin-bottom: var(--hp-spacing-lg);
}

/* -- Final CTA Boxes ------------------------------------------------ */
.hp-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--hp-spacing-lg);
  margin: var(--hp-spacing-lg) 0 var(--hp-spacing-xl) 0;
}
.hp-final-cta__box {
  padding: var(--hp-spacing-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--hp-gold);
  border-radius: var(--hp-rad-sm);
  text-align: center;
  /* flex-col so all cards have equal height and buttons align at bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hp-final-cta__box .hp-btn {
  margin-top: auto; /* push button to card bottom regardless of text length */
}
.hp-final-cta__icon {
  font-size: 2rem;
  margin-bottom: var(--hp-spacing-sm);
}
.hp-final-cta h3 {
  margin-top: 0;
  color: var(--hp-white);
  font-size: 1.1rem;
}
.hp-final-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--hp-spacing-md);
  font-size: 0.95rem;
  flex: 1; /* grow to push button down */
}
.hp-btn--inline {
  display: inline-flex;
}
.hp-final-section {
  text-align: center;
  padding: 3rem 0;
}
.hp-final-section__inner {
  max-width: 980px;
  margin: 0 auto;
}
.hp-final-section__title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--hp-white);
}
.hp-final-section__lead {
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}
.hp-final-section__note {
  color: var(--hp-muted-light);
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 640px;
}

/* -- Owners CTA Section ----------------------------------------- */
.hp-owners-intro {
  text-align: center;
  margin-bottom: var(--hp-spacing-xl);
}
.hp-owners-intro p:first-child {
  color: var(--hp-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: var(--hp-spacing-sm);
}
.hp-owners-intro h2 {
  font-size: 2.5rem;
  margin-bottom: var(--hp-spacing-md);
  color: var(--hp-text-light);
}
.hp-owners-intro p {
  font-size: 1.2rem;
  color: var(--hp-muted);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE  ①  WIDE LAPTOP  (≤ 1100px)
   Gentle tightening – desktop still dominates
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hp-hero__inner {
    gap: 2rem;
  }
  .hp-contact-layout {
    gap: 2.5rem;
  }
  .hp-services-value-grid {
    gap: 0.875rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE  ②  TABLET LANDSCAPE  (≤ 900px)
   Two-col where viable, collapse heavy multi-cols
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hp {
    --hp-sec-pad: clamp(2.5rem, 6vw, 4.5rem);
  }

  /* Hero */
  .hp-hero {
    min-height: 78vh;
  }
  .hp-hero__inner {
    padding-top: 4.5rem;
    padding-bottom: 3.5rem;
    gap: 2rem;
  }
  .hp-hero__sub {
    display: none; /* hide at 900px – too much vertical space on tablets */
  }
  .hp-hero__badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.625rem;
  }

  /* Credibility: 2×2 */
  .hp-credibility {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hp-credibility__item:nth-child(1),
  .hp-credibility__item:nth-child(2) {
    border-bottom: 1px solid var(--hp-border);
  }
  .hp-credibility__item:nth-child(2) {
    border-right: none;
  }
  .hp-credibility__item:nth-child(3) {
    border-right: 1px solid var(--hp-border);
  }
  .hp-credibility__item:nth-child(4) {
    border-right: none;
  }

  /* Comparison: stack */
  .hp-comparison {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
  }

  /* Services: 2-col value grid */
  .hp-services-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }
  .hp-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hp-services-subgrid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Steps: 2 per row */
  .hp-steps {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .hp-step {
    flex: 0 0 calc(50% - 1rem);
    min-width: 0;
    max-width: calc(50% - 1rem);
    padding: 0 1rem;
    overflow: hidden;
  }
  .hp-step p {
    max-width: 100%;
  }
  .hp-step__arrow {
    display: none;
  }

  /* Testimonials: 2-col */
  .hp-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Commitment / grid-3: 2-col */
  .hp-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Team */
  .hp-team-members {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  /* Contact: stack, form first (conversion priority) */
  .hp-contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .hp-contact-form-wrap {
    order: -1;
  }

  /* Final CTA */
  .hp-final-cta {
    gap: 1rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE  ③  LARGE PHONE / TABLET PORTRAIT  (≤ 768px)
   Single-column focus, compact vertical rhythm
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hp {
    --hp-sec-pad: 2.75rem;
  }
  .hp-section-head {
    margin-bottom: 2rem;
  }

  /* Hero: keep CTA visible above fold */
  .hp-hero {
    min-height: 88svh;
  }
  .hp-hero__inner {
    padding-top: 4.25rem;
    padding-bottom: 5.5rem;
    gap: 1.75rem;
  }
  .hp-hero__title {
    font-size: clamp(2rem, 7vw, 2.9rem);
    padding: 0.85rem 1rem 1.1rem;
  }
  .hp-hero__cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-hero__cta-row .hp-btn {
    justify-content: center;
    width: 100%;
    max-width: 100%; /* prevent any btn overflow on narrow screens */
    white-space: normal; /* allow label wrap on tiny screens */
  }
  /* Badges: 2×2 */
  .hp-hero__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }
  .hp-badge {
    padding: 0.875rem 0.75rem;
  }
  .hp-badge strong {
    font-size: 1.25rem;
  }
  .hp-badge span {
    font-size: 0.62rem;
  }

  /* Credibility compact */
  .hp-credibility__item {
    padding: 1.25rem 0.75rem;
  }
  .hp-credibility__value {
    font-size: 1.75rem;
  }
  .hp-credibility__label {
    font-size: 0.8rem;
  }

  /* Comparison compact */
  .hp-comparison__col {
    padding: 1.25rem;
  }
  .hp-comparison h3 {
    font-size: 1.05rem;
  }
  .hp-comparison li {
    font-size: 0.9rem;
  }

  /* Steps → vertical connected timeline */
  .hp-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
    max-width: 460px;
    margin: 0 auto;
    padding-left: 2.25rem;
    position: relative;
  }
  .hp-steps::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.5rem;
    bottom: 0;
    width: 2px;
    background: rgba(212, 175, 55, 0.35);
    border-radius: 1px;
  }
  .hp-step {
    flex: none;
    text-align: left;
    padding: 0 0 2.25rem 2rem;
    max-width: 100%;
    position: relative;
  }
  .hp-step:last-child {
    padding-bottom: 0;
  }
  .hp-step::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 1.15rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hp-gold);
    border: 2px solid var(--hp-navy);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
  }
  .hp-step__num {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  .hp-step h3 {
    text-align: left;
    font-size: 1rem;
  }
  .hp-step p {
    text-align: left;
    max-width: 100%;
    font-size: 0.875rem;
  }
  .hp-step__arrow {
    display: none;
  }

  /* Services value cards */
  .hp-value-card {
    padding: 1rem 0.875rem;
  }
  .hp-results-grid {
    gap: 0.5rem;
  }
  .hp-results-stat {
    font-size: 1.5rem;
  }
  .hp-results-label {
    font-size: 0.75rem;
  }

  /* Testimonials: single col */
  .hp-testimonials {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  .hp-testimonial {
    padding: 1.375rem 1.25rem;
  }

  /* Commitment cards compact */
  .hp-commitment-card:not(:has(.hp-commitment-card__img)) {
    padding: 1.375rem 1.125rem;
  }
  .hp-commitment-card__icon {
    font-size: 1.875rem;
    margin-bottom: 0.625rem;
  }
  .hp-commitment-card h3,
  .hp-commitment-card__body h3 {
    font-size: 0.9375rem;
  }
  .hp-commitment-card p,
  .hp-commitment-card__body p {
    font-size: 0.8375rem;
  }

  /* Blog */
  .hp-post-card__img {
    height: 150px;
  }

  /* Team story */
  .hp-team-story p {
    font-size: 0.9375rem;
  }
  .hp-team-member__avatar {
    width: 76px;
    height: 76px;
  }

  /* FAQ */
  .hp-faq-summary {
    font-size: 0.9375rem;
    padding: 1rem;
  }
  .hp-faq-content {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }

  /* Contact */
  .hp-contact-form-wrap {
    padding: 1.375rem;
  }
  .hp-contact-copy h2 {
    font-size: 1.5rem;
  }

  /* Final CTA: single col */
  .hp-final-cta {
    grid-template-columns: minmax(0, 1fr);
  }
  .hp-final-cta__box {
    padding: 1.375rem 1.25rem;
  }

  /* Owners intro */
  .hp-owners-intro h2 {
    font-size: 1.6rem;
  }

  /* All buttons must not overflow their container at this size */
  .hp-btn {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }

  /* Buttons */
  .hp-btn--large {
    font-size: 1rem;
    padding: 0.9rem 1.75rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE  ④  SMALL PHONE  (≤ 480px)
   Maximum compactness – every pixel counts
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hp {
    --hp-sec-pad: 2.25rem;
  }
  .hp-section-head {
    margin-bottom: 1.75rem;
  }
  .hp-section-head h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  /* Hero */
  .hp-hero {
    min-height: 92svh;
  }
  .hp-hero__inner {
    padding-top: 3.5rem;
    padding-bottom: 6.5rem;
    gap: 1.5rem;
  }
  .hp-hero__title {
    font-size: clamp(1.875rem, 8vw, 2.4rem);
    padding: 0.8rem 0.9rem 1rem;
    line-height: 1.08;
  }
  .hp-hero__lead {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .hp-hero__cta-row {
    gap: 0.625rem;
  }
  .hp-badge strong {
    font-size: 1.1rem;
  }
  .hp-badge span {
    font-size: 0.6rem;
  }

  /* Credibility */
  .hp-credibility__item {
    padding: 1rem 0.5rem;
  }
  .hp-credibility__value {
    font-size: 1.5rem;
  }

  /* Comparison */
  .hp-comparison__col {
    padding: 1rem 0.875rem;
  }
  .hp-comparison h3 {
    font-size: 1rem;
  }
  .hp-comparison li {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
  .hp-comparison strong {
    font-size: 0.85rem;
  }

  /* Steps */
  .hp-steps {
    padding-left: 1.75rem;
  }
  .hp-step__num {
    font-size: 2rem;
  }

  /* Value cards: single col */
  .hp-services-value-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hp-value-card {
    padding: 1rem;
  }
  .hp-value-card h4 {
    font-size: 0.9375rem;
  }

  /* Results */
  .hp-results-grid {
    gap: 0.375rem;
  }
  .hp-results-stat {
    font-size: 1.35rem;
  }

  /* Testimonials */
  .hp-testimonial {
    padding: 1.25rem 1rem;
  }

  /* Commitment + post grids → single col */
  .hp-grid-3 {
    grid-template-columns: 1fr;
  }
  .hp-commitment-card:not(:has(.hp-commitment-card__img)) {
    padding: 1.25rem 1rem;
  }
  .hp-post-card__body {
    padding: 1rem;
  }
  .hp-post-card__img {
    height: 140px;
  }

  /* Team */
  .hp-team-story {
    padding: 1rem;
  }
  .hp-team-members {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .hp-team-member__avatar {
    width: 64px;
    height: 64px;
  }

  /* FAQ */
  .hp-faq-summary {
    font-size: 0.9rem;
    padding: 0.875rem 1rem;
  }
  .hp-faq-content {
    padding: 0 1rem 1rem;
  }

  /* Contact */
  .hp-contact-form-wrap {
    padding: 1.125rem;
  }
  .hp-contact-copy h2 {
    font-size: 1.35rem;
  }

  /* Owners */
  .hp-owners-intro h2 {
    font-size: 1.4rem;
  }
  .hp-owners-intro p {
    font-size: 0.9375rem;
  }

  /* Final */
  .hp-final-section__title {
    font-size: 1.6rem;
  }
  .hp-final-cta__box {
    padding: 1.25rem 1rem;
  }

  /* Buttons */
  .hp-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
  .hp-btn--large {
    font-size: 0.9375rem;
    padding: 0.875rem 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE  ⑤  TINY PHONE  (≤ 360px)
   Floor values – nothing overflows or looks broken
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .hp {
    --hp-sec-pad: 2rem;
  }
  .hp-section-head h2 {
    font-size: 1.35rem;
  }

  .hp-hero__title {
    font-size: 1.75rem;
    padding: 0.75rem 0.85rem 0.95rem;
  }
  .hp-hero__lead {
    font-size: 0.9375rem;
  }
  .hp-badge {
    padding: 0.625rem 0.5rem;
  }
  .hp-badge strong {
    font-size: 1rem;
  }

  .hp-comparison__col {
    padding: 0.875rem;
  }

  .hp-steps {
    padding-left: 1.375rem;
  }
  .hp-step__num {
    font-size: 1.75rem;
  }
  .hp-step {
    padding: 0 0 1.75rem 1.5rem;
  }

  .hp-services-value-grid {
    grid-template-columns: 1fr;
  }
  .hp-results-grid {
    gap: 0.25rem;
  }
  .hp-results-stat {
    font-size: 1.25rem;
  }

  .hp-testimonial {
    padding: 1rem;
  }

  /* Team members stack on tiny screens */
  .hp-team-members {
    grid-template-columns: 1fr;
  }
  .hp-team-member__avatar {
    width: 80px;
    height: 80px;
  }

  .hp-btn {
    font-size: 0.8125rem;
    padding: 0.7rem 1.25rem;
  }
  .hp-btn--large {
    font-size: 0.875rem;
    padding: 0.8rem 1.25rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   TOUCH / POINTER OPTIMISATIONS
   Disable hover animations for native touch feel
   ════════════════════════════════════════════════════════════════════ */
@media (hover: none) {
  /* Kill Ken Burns pan on hero photo – saves GPU, avoids jank */
  .hp-hero__img {
    transform: scale(1) !important;
    transition: none !important;
  }
  /* No card lift on tap */
  .hp-service-card:hover,
  .hp-testimonial:hover,
  .hp-commitment-card:hover,
  .hp-post-card:hover,
  .hp-value-card:hover,
  .hp-final-cta__box:hover {
    transform: none;
    box-shadow: var(--hp-shadow);
  }
  .hp-btn--gold:hover,
  .hp-btn--outline:hover {
    transform: none;
  }
}

.hp {
  --hp-hero-display-font: "Bodoni Moda", "Times New Roman", serif;
  --hp-hero-title-font: "Allura", "Snell Roundhand", "Brush Script MT", cursive;
  --hp-hero-body-font: "Manrope", "Segoe UI", sans-serif;
}

.hp-hero__inner {
  align-items: center;
}

.hp-hero__copy {
  max-width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hp-hero__copy .hp-eyebrow {
  font-family: var(--hp-hero-body-font);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--hp-gold) 86%, white 14%);
  margin-inline: auto;
}

.hp-hero__title::before,
.hp-hero__title::after {
  content: none;
}

.hp-hero__lead {
  max-width: 28ch;
  margin: 0 auto 1rem;
  font-family: var(--hp-hero-display-font);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 10px 24px rgba(4, 11, 22, 0.22);
}

.hp-hero__sub {
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-family: var(--hp-hero-body-font);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.hp-hero__cta-row {
  justify-content: center;
}

.hp-hero__badges {
  width: min(860px, 100%);
  margin: 1.75rem auto 0;
  gap: 0.7rem;
}

.hp-hero__cta-row .hp-btn {
  font-family: var(--hp-hero-body-font);
  font-weight: 700;
}

.hp-badge {
  padding: 0.75rem 0.8rem;
  border-radius: 1.15rem;
}

.hp-badge strong {
  font-size: 1.12rem;
}

.hp-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .hp-hero__title {
    max-width: 100%;
    font-size: clamp(3rem, 12vw, 5.1rem);
    line-height: 1;
  }

  .hp-hero__lead {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    max-width: 24ch;
  }

  .hp-hero__sub {
    font-size: 0.98rem;
  }

  .hp-hero__badges {
    width: min(620px, 100%);
    margin-top: 1.25rem;
    gap: 0.6rem;
  }
}

@media (max-width: 576px) {
  .hp-hero__title {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hp-hero__copy .hp-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hp-hero__lead {
    font-size: 1rem;
  }

  .hp-hero__sub {
    font-size: 0.92rem;
  }

  .hp-hero__cta-row {
    gap: 0.75rem;
  }

  .hp-hero__cta-row .hp-btn {
    width: 100%;
    justify-content: center;
  }

  .hp-badge {
    padding: 0.78rem 0.72rem;
  }

  .hp-section {
    padding-block: 3.5rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════════════════════ */
@media print {
  .hp-hero {
    min-height: auto;
  }
  .hp-hero__bg,
  .hp-hero__scroll,
  .hp-admin-bar {
    display: none;
  }
  .hp-section--dark {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
  .hp-section--dark h2,
  .hp-section--dark h3,
  .hp-section--dark p {
    color: #000 !important;
  }
  .hp-btn {
    border: 1px solid #000 !important;
  }
}
