/* ==========================================================================
   Orchards Lane — Unified stylesheet (Aug 2026 redesign)
   Single stylesheet for every page on the new design system.
   Consolidated from the former site-v2.css / homepage.css / services.css /
   service-detail.css / article-v2.css / location.css / legal.css / areas.css /
   contact.css page-scoped files.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');


:root {
  --forest: #1e2d1e;
  --lime: #c8f135;
  --cream: #f4f3ee;
}


body.hp { margin: 0; }
.hp {
background-color: var(--cream); font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.hp * { box-sizing: border-box; }
.hp img { display: block; max-width: 100%; }
.hp a { text-decoration: none; }
.hp button { font-family: inherit; }
html { scroll-behavior: smooth; background-color: var(--cream); }
.hp-container { max-width: 64rem; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.hp-section { padding-top: 5rem; padding-bottom: 5rem; }
.hp-h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); margin-top: 0; }
.hp-reveal { opacity: 0; transition: opacity 0.65s ease, transform 0.65s ease; }
.hp-reveal.fade-up { transform: translateY(28px); }
.hp-reveal.slide-right { transform: translateX(44px); }
.hp-reveal.fade-in { transform: none; }
.hp-reveal.in-view { opacity: 1; transform: none; }
.hp-nav { position: sticky; top: 0; z-index: 50; background-color: var(--forest); }
.hp-nav-desktop {
display: none;
  max-width: 64rem; margin: 0 auto; padding: 1.25rem 2rem;
  grid-template-columns: 1fr auto 1fr; align-items: center;
}
.hp-nav-logo { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1rem; color: #fff; }
.hp-nav-links { display: flex; align-items: center; gap: 1.75rem; }
.hp-nav-link { color: #fff; font-size: 0.8125rem; opacity: 0.75; transition: opacity 0.15s; }
.hp-nav-link:hover { opacity: 1; }
.hp-nav-cta-wrap { display: flex; justify-content: flex-end; }
.hp-nav-mobile { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; }
.hp-nav-toggle { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.hp-nav-toggle span { width: 22px; height: 2px; background-color: #fff; display: block; transition: transform 0.2s, opacity 0.2s; }
.hp-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hp-nav-toggle.open span:nth-child(2) { opacity: 0; }
.hp-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }
.hp-mobile-menu { display: none; padding: 0 1.5rem 1.5rem; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.hp-mobile-menu.open { display: flex; }
.hp-mobile-menu a { color: #fff; font-size: 0.9375rem; opacity: 0.85; }
.hp-mobile-menu .hp-btn-lime { color: var(--forest); margin-top: 0.5rem; }
.hp-btn-lime {
display: inline-block; background-color: var(--lime); color: var(--forest);
  font-size: 0.8125rem; font-weight: 500; padding: 0.5rem 1.25rem;
  border-radius: 9999px; transition: filter 0.15s; border: none; cursor: pointer;
}
.hp-btn-lime:hover { filter: brightness(1.1); }
.hp-btn-lime-lg {
display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--lime); color: var(--forest);
  font-size: 0.875rem; font-weight: 600; padding: 0.75rem 1.75rem;
  border-radius: 9999px; transition: filter 0.15s; border: none; cursor: pointer;
}
.hp-btn-lime-lg:hover { filter: brightness(1.1); }
.hp-btn-outline-light {
display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 0.875rem; font-weight: 500; padding: 0.75rem 1.5rem;
  border-radius: 9999px; transition: background-color 0.2s;
}
.hp-btn-outline-light:hover { background-color: rgba(255,255,255,0.13); }
.hp-btn-outline-light span { color: var(--lime); }
.hp-btn-dark {
display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--forest); color: #fff;
  font-size: 0.825rem; font-weight: 500; padding: 0.65rem 1.35rem;
  border-radius: 9999px; transition: opacity 0.15s;
}
.hp-btn-dark:hover { opacity: 0.85; }
.hp-btn-dark span { color: var(--lime); }
.hp-btn-ghost-dark {
display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: rgba(30,45,30,0.05); border: 1px solid rgba(30,45,30,0.1);
  color: var(--forest); font-size: 0.875rem; font-weight: 500; padding: 0.7rem 1.5rem;
  border-radius: 9999px; transition: background-color 0.15s;
}
.hp-btn-ghost-dark:hover { background-color: rgba(30,45,30,0.1); }
.hp-dark-bg {
position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.hp-dark-overlay { position: absolute; inset: 0; background-color: rgba(20, 38, 22, 0.91); z-index: 0; }
.hp-dark-bg > *:not(.hp-dark-overlay) { position: relative; z-index: 1; }
.hp-page-hero-inner { max-width: 64rem; margin: 0 auto; padding: 5rem 2rem 7rem; text-align: center; }
.hp-hero-eyebrow {
display: inline-block; color: rgba(255,255,255,0.45); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0; margin-bottom: 1.75rem;
}
a.hp-hero-eyebrow { transition: color 0.15s; }
a.hp-hero-eyebrow:hover { color: rgba(255,255,255,0.8); }
.hp-hero-title {
font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: #fff; line-height: 1.1; margin-top: 0; margin-bottom: 1.5rem; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hp-hero-sub { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; max-width: 360px; margin: 0 auto; }
.hp-cta-eyebrow { color: rgba(255,255,255,0.45); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hp-cta-heading { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.1; margin-top: 0; margin-bottom: 1.25rem; max-width: 520px; }
.hp-cta-body { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; max-width: 380px; margin-bottom: 2.5rem; }
.hp-cta-body a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.hp-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hp-footer { border-top: 1px solid rgba(30,45,30,0.12); margin-top: 1.5rem; }
.hp-footer-desktop { display: none; max-width: 64rem; margin: 0 auto; padding: 1.5rem 2rem; grid-template-columns: 1fr auto 1fr; align-items: center; }
.hp-footer-logo { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.1rem; color: var(--forest); }
.hp-footer-links { display: flex; align-items: center; gap: 2rem; }
.hp-footer-links a { color: var(--forest); font-size: 0.8125rem; opacity: 0.75; transition: opacity 0.15s; }
.hp-footer-links a:hover { opacity: 1; }
.hp-footer-cta-wrap { display: flex; justify-content: flex-end; }
.hp-footer-mobile { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; padding: 2rem 1.5rem; text-align: center; }
.hp-footer-mobile .hp-footer-links { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.hp-cookie-banner {
position: fixed; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 200;
  max-width: 40rem; margin: 0 auto;
  background-color: var(--forest); color: #fff;
  border-radius: 1rem; padding: 1.5rem 1.75rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  font-family: 'DM Sans', sans-serif;
}
.hp-cookie-banner p { font-size: 0.85rem; line-height: 1.6; margin: 0; flex: 1 1 16rem; color: rgba(255,255,255,0.75); }
.hp-cookie-banner a { color: #fff; text-decoration: underline; }
.hp-cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.hp-cookie-banner-actions button { font-family: inherit; font-size: 0.8125rem; font-weight: 500; padding: 0.55rem 1.15rem; border-radius: 9999px; cursor: pointer; transition: background-color 0.15s, filter 0.15s; }
.hp-cookie-decline { border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #fff; }
.hp-cookie-decline:hover { background-color: rgba(255,255,255,0.08); }
.hp-cookie-accept { border: none; background-color: var(--lime); color: var(--forest); }
.hp-cookie-accept:hover { filter: brightness(1.1); }
.hp-footer-legal-bar { background-color: var(--forest); }
.hp-footer-legal-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; padding: 0.85rem 2rem; }
.hp-footer-legal-inner a { color: rgba(255,255,255,0.5); font-size: 0.7rem; transition: color 0.15s; }
.hp-footer-legal-inner a:hover { color: #fff; }
.hp-hero-section { min-height: 100vh; display: flex; flex-direction: column; }
.hp-hero-inner { flex: 1; display: flex; flex-direction: column; justify-content: center; max-width: 64rem; margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.hp-ticker { background-color: rgba(255,255,255,0.05); overflow: hidden; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 2; }
.hp-ticker-track { display: flex; width: max-content; animation: hp-ticker 90s linear infinite; }
.hp-ticker-track:hover { animation-play-state: paused; }
@keyframes hp-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hp-ticker-item span:first-child { color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hp-ticker-item span:last-child { color: rgba(255,255,255,0.3); font-size: 0.5rem; }
.hp-discovery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; align-items: center; }
.hp-discovery-heading { color: var(--forest); line-height: 1.15; margin-bottom: 1.25rem; }
.hp-discovery-body { color: #3a4a3a; font-size: 0.9rem; line-height: 1.75; margin-bottom: 2rem; }
.hp-quote-box { background-color: var(--forest); border-radius: 1.5rem; padding: 2.25rem; }
.hp-quote-mark { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 4rem; color: var(--lime); line-height: 0.8; margin-bottom: 1.25rem; }
.hp-quote-text { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.1rem; color: #fff; line-height: 1.6; margin-bottom: 2rem; }
.hp-quote-attrib { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
.hp-quote-avatar { width: 36px; height: 36px; border-radius: 9999px; background-color: var(--lime); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'DM Serif Display', serif; font-size: 0.85rem; color: var(--forest); font-weight: 400; }
.hp-quote-name { color: #fff; font-size: 0.8rem; font-weight: 500; }
.hp-quote-role { color: rgba(255,255,255,0.45); font-size: 0.75rem; }
.hp-services-bg { background-color: var(--forest); }
.hp-services-heading { color: #fff; margin-bottom: 0.75rem; }
.hp-services-body { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; max-width: 420px; }
.hp-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2.5rem; margin-bottom: 3rem; }
.hp-service-pill { display: inline-block; background-color: var(--lime); color: var(--forest); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.85rem; border-radius: 9999px; margin-bottom: 0.9rem; }
.hp-service-desc { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.65; }
.hp-services-footer {
border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-top: 3rem; padding-top: 2rem; text-align: center;
}
.hp-services-footer-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; max-width: 340px; }
.hp-performance-heading { color: var(--forest); line-height: 1.1; margin-bottom: 1.25rem; max-width: 500px; }
.hp-performance-body { color: #3a4a3a; font-size: 0.9rem; line-height: 1.7; max-width: 380px; margin-bottom: 3rem; }
.hp-performance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.hp-case-card { border-radius: 1.25rem; overflow: hidden; position: relative; height: 460px; cursor: pointer; }
.hp-case-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.hp-case-card:hover .hp-case-photo { transform: scale(1.04); }
.hp-case-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(18,34,18,0.55) 0%, rgba(18,34,18,0.75) 100%); }
.hp-case-top { position: absolute; top: 1.25rem; left: 1.25rem; right: 1.25rem; display: flex; justify-content: space-between; }
.hp-case-top span { color: rgba(255,255,255,0.7); font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; }
.hp-case-bottom { position: absolute; bottom: 1.5rem; left: 1.25rem; right: 1.25rem; }
.hp-case-headline { color: rgba(255,255,255,0.7); font-size: 0.8rem; line-height: 1.4; margin-bottom: 0.75rem; font-style: italic; text-align: left; }
.hp-case-stat { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(3rem, 6vw, 5rem); color: var(--lime); line-height: 1; margin-bottom: 0.4rem; }
.hp-case-label { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
.hp-form-heading { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.1; margin-top: 0; margin-bottom: 2rem; max-width: 600px; }
.hp-form-progress span.done { background-color: var(--lime); }
.hp-form-grid { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
.hp-form-side { display: none; flex-direction: column; justify-content: space-between; min-height: 220px; }
.hp-form-step-label { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.hp-form-side-contact { margin-top: auto; padding-top: 2rem; }
.hp-form-main { padding-top: 2.5rem; }
.hp-form-step-label-mobile { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 1.25rem; }
.hp-form-contact-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-bottom: 0.25rem; }
.hp-form-contact-email { color: #fff; font-size: 0.875rem; }
.hp-form-mobile-contact { display: block; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.hp-form-step { display: flex; flex-direction: column; gap: 0.75rem; }
.hp-form-step[data-step="2"] { gap: 0.35rem; }
.hp-input {
width: 100%; background-color: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.6rem; padding: 0.75rem 1rem; color: #fff; font-size: 0.875rem;
  outline: none; font-family: 'DM Sans', sans-serif; box-sizing: border-box;
}
.hp-input::placeholder { color: rgba(255,255,255,0.4); }
.hp-form-actions { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.hp-form-step[data-step="2"] .hp-form-actions { margin-top: 0.75rem; }
.hp-btn-next.enabled { background-color: var(--lime); color: var(--forest); cursor: pointer; }
.hp-btn-back { background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 9999px; padding: 0.6rem 1.2rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; cursor: pointer; }
.hp-goal-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border-radius: 0.6rem; background-color: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: all 0.15s; }
.hp-goal-row.selected { background-color: rgba(200,241,53,0.1); border: 1px solid rgba(200,241,53,0.4); }
.hp-goal-row .sub { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.hp-goal-row.selected .arrow { color: var(--lime); }
.hp-form-success-heading { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 2rem; color: var(--lime); margin-bottom: 0.75rem; }
.hp-form-error { color: #ffb3b3; font-size: 0.8rem; margin-top: -0.25rem; }
.hp-service-band { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.hp-service-band--dark { background-color: var(--forest); }
.hp-service-band--light { background-color: var(--cream); }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hp-service-index { font-size: 0.68rem; font-variant-numeric: tabular-nums; display: block; margin-bottom: 1.25rem; }
.hp-service-band--dark .hp-service-index { color: rgba(255,255,255,0.5); }
.hp-service-band--light .hp-service-index { color: rgba(30,45,30,0.45); }
.hp-service-name { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(2rem, 3.5vw, 2.75rem); line-height: 1.1; margin-top: 0; margin-bottom: 0.6rem; }
.hp-service-band--dark .hp-service-name { color: #fff; }
.hp-service-band--light .hp-service-name { color: var(--forest); }
.hp-service-name a { color: inherit; transition: opacity 0.15s; }
.hp-service-name a:hover { opacity: 0.75; }
.hp-service-tagline { font-size: 0.82rem; font-style: italic; margin-bottom: 1.5rem; }
.hp-service-band--dark .hp-service-tagline { color: rgba(200,241,53,0.7); }
.hp-service-band--light .hp-service-tagline { color: rgba(30,45,30,0.45); }
.hp-service-description { font-size: 0.875rem; line-height: 1.8; }
.hp-service-band--dark .hp-service-description { color: rgba(255,255,255,0.7); }
.hp-service-band--light .hp-service-description { color: #3a4a3a; }
.service-right { padding-top: 3rem; display: flex; flex-direction: column; align-items: flex-start; }
.service-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.hp-service-outcome { font-size: 0.78rem; padding: 0.4rem 0.9rem; border-radius: 9999px; transition: background-color 0.15s, border-color 0.15s; }
.hp-service-band--dark .hp-service-outcome { background-color: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.hp-service-band--light .hp-service-outcome { background-color: rgba(30,45,30,0.07); border: 1px solid rgba(30,45,30,0.1); color: #3a4a3a; }
.hp-service-band--dark .hp-service-outcome:hover { border-color: rgba(200,241,53,0.5); background-color: rgba(255,255,255,0.12); }
.hp-service-band--light .hp-service-outcome:hover { border-color: rgba(30,45,30,0.3); background-color: rgba(30,45,30,0.12); }
.service-enquire { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; font-weight: 500; padding: 0.65rem 1.35rem; border-radius: 9999px; transition: opacity 0.15s; align-self: flex-start; }
.service-enquire:hover { opacity: 0.85; }
.hp-service-band--dark .service-enquire { background-color: var(--lime); color: var(--forest); }
.hp-service-band--light .service-enquire { background-color: var(--forest); color: #fff; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hp-testimonial-heading { color: var(--forest); font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.15; margin-bottom: 1.25rem; }
.hp-testimonial-body { color: #3a4a3a; font-size: 0.875rem; line-height: 1.8; margin-bottom: 2.5rem; }
.testimonial-quote { border-left: 1px solid rgba(30,45,30,0.12); padding-left: 4rem; }
.hp-testimonial-mark { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 3.5rem; color: rgba(30,45,30,0.15); line-height: 0.8; margin-bottom: 1.25rem; }
.hp-testimonial-text { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.05rem; color: var(--forest); line-height: 1.65; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.hp-testimonial-avatar { width: 34px; height: 34px; border-radius: 9999px; background-color: rgba(30,45,30,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; color: rgba(30,45,30,0.6); font-weight: 600; }
.hp-testimonial-name { color: var(--forest); font-size: 0.8rem; font-weight: 500; margin: 0; }
.hp-testimonial-role { color: rgba(30,45,30,0.4); font-size: 0.75rem; margin: 0; }
.hp-testimonial-dark { background-color: var(--forest); }
.hp-testimonial-dark .hp-testimonial-heading { color: #fff; }
.hp-testimonial-dark .hp-testimonial-body { color: rgba(255,255,255,0.6); }
.hp-testimonial-dark .testimonial-quote { border-left-color: rgba(255,255,255,0.15); }
.hp-testimonial-dark .hp-testimonial-mark { color: rgba(255,255,255,0.2); }
.hp-testimonial-dark .hp-testimonial-text { color: #fff; }
.hp-testimonial-dark .hp-testimonial-avatar { background-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.hp-testimonial-dark .hp-testimonial-name { color: #fff; }
.hp-testimonial-dark .hp-testimonial-role { color: rgba(255,255,255,0.45); }
.hp-faq-list { border-top: 1px solid rgba(30,45,30,0.1); }
.hp-faq-item { border-bottom: 1px solid rgba(30,45,30,0.1); }
.hp-faq-question {
width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem;
  font-family: 'DM Sans', sans-serif;
}
.hp-faq-question span:first-child { font-size: 0.875rem; font-weight: 500; color: var(--forest); line-height: 1.4; }
.hp-faq-icon { color: rgba(30,45,30,0.35); font-size: 1rem; flex-shrink: 0; transition: transform 0.2s; display: inline-block; }
.hp-faq-item.open .hp-faq-icon { transform: rotate(45deg); }
.hp-faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.hp-faq-item.open .hp-faq-answer { max-height: 200px; }
.hp-faq-answer p { color: #3a4a3a; font-size: 0.855rem; line-height: 1.75; padding-bottom: 1.5rem; margin: 0; }
.hp-ticker-item { display: flex; align-items: center; gap: 1.75rem; padding-right: 1.75rem; white-space: nowrap; }
.hp-section-kicker { display: block; color: rgba(30,45,30,0.45); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.hp-services-bg--light { background-color: var(--cream); }
.hp-services-bg--light .hp-services-heading { color: var(--forest); }
.hp-services-bg--light .hp-services-body { color: #3a4a3a; }
.hp-services-bg--light .hp-service-card { background-color: #fff; border-color: rgba(30,45,30,0.08); }
.hp-services-bg--light .hp-service-card:hover { background-color: rgba(30,45,30,0.03); border-color: rgba(30,45,30,0.18); }
.hp-services-bg--light .framework-index { color: rgba(30,45,30,0.4); }
.hp-services-bg--light .hp-service-card:hover .framework-index { color: var(--forest); }
.hp-services-bg--light .hp-service-card-title { color: var(--forest); }
.hp-services-bg--light .hp-service-desc { color: #3a4a3a; }
.hp-services-bg--light .framework-arrow { color: var(--forest); }
.framework-row { display: flex; flex-wrap: wrap; align-items: stretch; gap: 1.25rem; margin-top: 2.5rem; }
.framework-step { flex: 1 1 220px; min-width: 0; }
.framework-arrow { display: none; flex: 0 0 auto; align-items: center; justify-content: center; color: var(--lime); }
.framework-arrow svg { width: 22px; height: 22px; animation: framework-arrow-flow 1.6s ease-in-out infinite; }
.framework-arrow--2 svg { animation-delay: 0.2s; }
.framework-arrow--3 svg { animation-delay: 0.4s; }
@keyframes framework-arrow-flow {
0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(5px); opacity: 1; }
}
.hp-service-card {
background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 1.5rem; height: 100%;
  transition: background-color 0.2s, border-color 0.2s, transform 0.25s ease;
}
.hp-service-card:hover { background-color: rgba(255,255,255,0.09); border-color: rgba(200,241,53,0.35); transform: translateY(-6px); }
.framework-index { display: block; font-size: 0.68rem; font-variant-numeric: tabular-nums; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.9rem; transition: color 0.2s; }
.hp-service-card:hover .framework-index { color: var(--lime); }
.hp-service-card-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.15rem; color: #fff; line-height: 1.35; margin: 0 0 0.75rem; }
.hp-service-card-title a { color: inherit; transition: opacity 0.15s; }
.hp-service-card-title a:hover { opacity: 0.75; }
.service-band-content { max-width: 640px; }
.gap-intro-block { max-width: 420px; }
.hp-article-progress-track { position: fixed; top: 0; left: 0; z-index: 100; height: 3px; width: 100%; pointer-events: none; }
#hp-article-progress { height: 3px; width: 0%; background-color: var(--lime); }
.hp-article-meta { display: flex; align-items: center; gap: 1.25rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(30,45,30,0.1); }
.hp-article-meta-avatar { width: 34px; height: 34px; border-radius: 9999px; background-color: var(--forest); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hp-article-meta-avatar span { font-family: 'DM Serif Display', serif; font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 700; }
.hp-article-meta-details { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 1rem; }
.hp-article-meta-name { color: var(--forest); font-size: 0.825rem; font-weight: 500; }
.hp-article-meta-dot { color: rgba(30,45,30,0.25); font-size: 0.75rem; }
.hp-article-meta-item { color: rgba(30,45,30,0.5); font-size: 0.8rem; }
.article-grid { display: grid; grid-template-columns: 1fr 280px; gap: 5rem; align-items: start; }
.hp-article-main { max-width: 660px; }
.hp-article-sidebar { position: sticky; top: 96px; }
.hp-article-main p { color: #2a3a2a; font-size: 0.875rem; line-height: 1.85; margin-bottom: 1.5rem; margin-top: 0; }
.hp-article-main p a, .hp-article-main li a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.hp-article-main p a:hover, .hp-article-main li a:hover { color: var(--forest); }
.hp-article-main h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(1.4rem, 2.5vw, 1.75rem); color: var(--forest); line-height: 1.2; margin-bottom: 1rem; margin-top: 3rem; }
.hp-article-main h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.1rem; color: var(--forest); line-height: 1.3; margin-bottom: 0.75rem; margin-top: 2rem; }
.hp-article-main strong { font-weight: 600; }
.hp-article-main em { font-style: italic; }
.hp-article-main ul { padding: 0 0 0 1.25rem; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.hp-article-main li { color: #2a3a2a; font-size: 0.875rem; line-height: 1.7; display: flex; gap: 0.75rem; }
.hp-article-main li::before { content: "\2192"; color: rgba(30,45,30,0.4); flex-shrink: 0; margin-top: 0.1rem; }
.hp-article-main blockquote {
border-left: 3px solid rgba(30,45,30,0.2); margin: 2.5rem 0; padding: 1.25rem 1.75rem;
  background-color: rgba(30,45,30,0.03); border-radius: 0 0.75rem 0.75rem 0;
}
.hp-article-main blockquote p { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.2rem; color: var(--forest); line-height: 1.5; margin-bottom: 0.75rem; }
.hp-article-main blockquote cite { color: rgba(30,45,30,0.5); font-size: 0.8rem; font-style: normal; }
.hp-article-main details { border-top: 1px solid rgba(30,45,30,0.1); padding: 1.1rem 0; }
.hp-article-main details:last-of-type { border-bottom: 1px solid rgba(30,45,30,0.1); }
.hp-article-main details summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; list-style: none; }
.hp-article-main details summary::-webkit-details-marker { display: none; }
.hp-article-main details summary h3 { margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.9rem; color: var(--forest); }
.hp-article-main details[open] summary h3 { color: var(--forest); }
.hp-faq-toggle { color: rgba(30,45,30,0.35); font-size: 1rem; flex-shrink: 0; transition: transform 0.2s; }
.hp-article-main details[open] .hp-faq-toggle { transform: rotate(45deg); }
.hp-article-main details p { margin-top: 0.75rem; margin-bottom: 0; }
.hp-inline-cta { background-color: var(--cream); border: 1px solid rgba(30,45,30,0.1); border-left: 3px solid rgba(30,45,30,0.3); border-radius: 0.75rem; padding: 1.5rem 1.75rem; margin: 2.5rem 0; }
.hp-inline-cta p:first-child { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.05rem; color: var(--forest); margin-bottom: 0.4rem; }
.hp-inline-cta p { color: #3a4a3a; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.hp-article-cta-row { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(30,45,30,0.1); display: flex; flex-wrap: wrap; gap: 1rem; }
.hp-toc-label { color: rgba(30,45,30,0.45); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.hp-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.hp-toc-link {
display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0 0.5rem 0.75rem; margin-left: -0.75rem;
  color: rgba(30,45,30,0.5); font-size: 0.825rem; font-weight: 400;
  border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.hp-toc-link span { color: rgba(30,45,30,0.25); font-size: 0.65rem; font-variant-numeric: tabular-nums; }
.hp-toc-link.active { color: var(--forest); font-weight: 500; border-left-color: var(--lime); }
.hp-toc-link.active span { color: var(--lime); }
.hp-sidebar-cta { background-color: var(--forest); border-radius: 1.25rem; padding: 1.75rem; margin-top: 2.5rem; }
.hp-sidebar-cta-heading { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.05rem; color: #fff; line-height: 1.4; margin: 0 0 0.5rem; }
.hp-sidebar-cta-body { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.6; margin: 0 0 1.25rem; }
.hp-sidebar-cta-btn {
display: block; box-sizing: border-box; width: 100%; text-align: center; text-decoration: none;
  background-color: var(--lime); color: var(--forest); border: none; border-radius: 9999px;
  padding: 0.65rem; font-size: 0.825rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.hp-sidebar-cta-btn:hover { filter: brightness(1.05); }
.hp-share-strip { background-color: #fff; border: 1px solid rgba(30,45,30,0.08); border-radius: 1rem; padding: 1.25rem 1.75rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.hp-share-strip p { color: rgba(30,45,30,0.55); font-size: 0.825rem; margin: 0; }
.hp-share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hp-share-btn { background-color: rgba(30,45,30,0.05); border: 1px solid rgba(30,45,30,0.08); border-radius: 9999px; padding: 0.4rem 1rem; font-size: 0.775rem; color: var(--forest); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background-color 0.15s; }
.hp-share-btn:hover { background-color: rgba(30,45,30,0.1); }
.hp-related-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2rem; }
.hp-related-head h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--forest); margin: 0; }
.hp-related-head a { color: rgba(30,45,30,0.5); font-size: 0.8rem; }
.hp-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.hp-related-card { display: block; background-color: #fff; border: 1px solid rgba(30,45,30,0.08); border-radius: 1rem; padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.hp-related-card:hover { box-shadow: 0 4px 24px rgba(30,45,30,0.1); transform: translateY(-2px); }
.hp-related-tag { display: inline-block; background-color: rgba(200,241,53,0.25); color: var(--forest); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 0.9rem; }
.hp-related-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1rem; color: var(--forest); line-height: 1.45; margin-bottom: 1.25rem; }
.hp-related-meta { display: flex; gap: 1rem; color: rgba(30,45,30,0.4); font-size: 0.75rem; }
.location-intro { max-width: 640px; }
.location-lead { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 1.85rem); color: var(--forest); line-height: 1.4; margin: 0 0 1.5rem; }
.location-body { color: #3a4a3a; font-size: 0.9rem; line-height: 1.8; margin: 0 0 1.75rem; }
.location-body:last-of-type { margin-bottom: 0; }
.location-section-heading { color: var(--forest); margin-bottom: 1.25rem; }
.location-section-summary { color: #3a4a3a; font-size: 0.9rem; line-height: 1.7; max-width: 480px; margin: -0.5rem 0 2rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.feature-card { display: block; background-color: #fff; border: 1px solid rgba(30,45,30,0.08); border-radius: 1rem; padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.feature-card:hover { box-shadow: 0 4px 24px rgba(30,45,30,0.1); transform: translateY(-4px); }
.feature-card-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.1rem; color: var(--forest); line-height: 1.35; margin: 0 0 0.75rem; }
.feature-card-desc { color: #3a4a3a; font-size: 0.85rem; line-height: 1.65; margin: 0; }
.location-body a { color: var(--forest); text-decoration: underline; text-decoration-color: rgba(30,45,30,0.3); text-underline-offset: 2px; }
.location-body a:hover { text-decoration-color: var(--forest); }
.legal-content { max-width: 42rem; margin: 0 auto; }
.legal-updated { color: rgba(30,45,30,0.5); font-size: 0.8rem; margin: 0 0 3rem; }
.legal-content h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.4rem; color: var(--forest); margin: 2.5rem 0 0.9rem; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: #3a4a3a; font-size: 0.9rem; line-height: 1.8; margin: 0 0 1rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a { color: var(--forest); text-decoration: underline; text-decoration-color: rgba(30,45,30,0.3); text-underline-offset: 2px; }
.legal-content a:hover { text-decoration-color: var(--forest); }
.area-region-heading { color: var(--forest); margin-bottom: 2rem; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.area-card { display: block; background-color: #fff; border: 1px solid rgba(30,45,30,0.08); border-radius: 1rem; padding: 1.75rem 1.5rem; transition: box-shadow 0.2s, transform 0.2s; }
.area-card:hover { box-shadow: 0 4px 24px rgba(30,45,30,0.1); transform: translateY(-2px); }
.area-card-name { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.25rem; color: var(--forest); margin: 0 0 1.1rem; }
.area-card-links { display: flex; flex-direction: column; gap: 0.5rem; }
.area-card-links a {
display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; font-weight: 500; color: var(--forest);
  padding: 0.6rem 0.95rem; border-radius: 9999px;
  background-color: rgba(30,45,30,0.05); transition: background-color 0.15s;
}
.area-card-links a:hover { background-color: rgba(30,45,30,0.09); }
.area-card-links a span:last-child { color: rgba(30,45,30,0.4); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.hp-contact-form-card { background-color: var(--forest); border-radius: 1.5rem; padding: 2.5rem; }
.hp-contact-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2.5rem; }
.hp-contact-next-label { color: rgba(30,45,30,0.45); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hp-contact-next-list { display: flex; flex-direction: column; }
.hp-contact-next-item { display: flex; gap: 1rem; align-items: flex-start; padding-top: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(30,45,30,0.08); }
.hp-contact-next-item:first-child { padding-top: 0; }
.hp-contact-next-item:last-child { padding-bottom: 0; border-bottom: none; }
.hp-contact-next-num { color: rgba(30,45,30,0.25); font-size: 0.68rem; font-variant-numeric: tabular-nums; flex-shrink: 0; padding-top: 0.2rem; }
.hp-contact-next-text { color: #3a4a3a; font-size: 0.855rem; line-height: 1.7; margin: 0; }
.hp-contact-direct { padding-top: 2rem; border-top: 1px solid rgba(30,45,30,0.1); }
.hp-contact-direct-label { color: rgba(30,45,30,0.45); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.hp-contact-direct-email { color: var(--forest); font-size: 0.9rem; font-weight: 500; }
.hp-form-progress { display: flex; gap: 0.4rem; margin-bottom: 2rem; }
.hp-form-progress span { height: 3px; flex: 1; background-color: rgba(255,255,255,0.15); border-radius: 9999px; transition: background-color 0.3s; }
.hp-form-step-text { color: rgba(255,255,255,0.35); font-size: 0.73rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hp-btn-next { background-color: rgba(200,241,53,0.25); color: rgba(200,241,53,0.4); border: none; border-radius: 9999px; padding: 0.6rem 1.4rem; font-size: 0.875rem; font-weight: 600; cursor: not-allowed; transition: all 0.2s; }
.hp-goal-row .title { color: #fff; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.15rem; }
.hp-goal-row .arrow { color: rgba(255,255,255,0.2); font-size: 1rem; transition: color 0.15s; }
.hp-form-success { text-align: center; padding: 2.5rem 0; }
.hp-form-success-sub { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; }


@media (min-width: 768px) {
.hp-nav-desktop { display: grid; }
.hp-nav-mobile { display: none; }
.hp-mobile-menu { display: none !important; }
.hp-footer-desktop { display: grid; }
.hp-footer-mobile { display: none; }
.hp-services-footer { flex-direction: row; justify-content: space-between; align-items: center; margin-top: 0; padding-top: 1.75rem; text-align: left; }
.hp-form-side { display: flex; }
.hp-form-main { padding-top: 0; }
.hp-form-step-label-mobile { display: none; }
.hp-form-mobile-contact { display: none; }
}


@media (max-width: 767px) {
.hp h1, .hp h2, .hp h3, .hp p, .hp a, .hp span, .hp label { text-align: center; }
.hp h1, .hp h2, .hp h3, .hp p { margin-left: auto; margin-right: auto; }
.hp-mobile-center { justify-content: center; }
.hp-hero-section { min-height: 0; }
.hp-form-grid { grid-template-columns: 1fr; }
.hp-service-card, .hp-service-card p, .hp-service-card span { text-align: left; }
.hp-quote-box, .hp-quote-box p, .hp-quote-box span, .hp-quote-box a { text-align: left; }
.hp-case-card, .hp-case-card p, .hp-case-card span { text-align: left; }
.hp-service-card, .hp-service-card h3, .hp-service-card p, .hp-service-card span { text-align: left; }
.gap-intro-block { margin-left: auto; margin-right: auto; }
.hp-article-meta, .hp-article-meta-details { justify-content: center; }
.hp-share-strip { justify-content: center; text-align: center; }
.hp-share-buttons { justify-content: center; }
.feature-card, .feature-card h3, .feature-card p { text-align: left; }
}


@media (max-width: 640px) {
.hp-cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
.hp-cookie-banner-actions { justify-content: center; }
}


@media (max-width: 760px) {
.service-row, .testimonial-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.hp-service-band--dark .service-row, .hp-service-band--light .service-row { border-bottom: none; }
.service-right { padding-top: 0; align-items: center; }
.service-pills { justify-content: center; }
.service-enquire { align-self: center; width: 100%; justify-content: center; }
.testimonial-quote { border-left: none; padding-left: 0; border-top: 1px solid rgba(30,45,30,0.1); padding-top: 2rem; text-align: center; }
.hp-testimonial-dark .testimonial-quote { border-top-color: rgba(255,255,255,0.15); }
.testimonial-author { justify-content: center; }
.contact-grid { grid-template-columns: 1fr; gap: 3rem; }
.hp-contact-side { position: static; }
.hp-contact-direct { text-align: center; }
}


@media (prefers-reduced-motion: reduce) {
.framework-arrow svg { animation: none; }
}


@media (min-width: 1024px) {
.framework-row { flex-wrap: nowrap; }
.framework-arrow { display: flex; }
}


@media (max-width: 900px) {
.article-grid { grid-template-columns: 1fr; }
.hp-article-sidebar { display: none; }
.hp-article-main li { justify-content: center; }
.hp-article-main blockquote { text-align: center; border-left: none; border-top: 3px solid rgba(30,45,30,0.2); border-radius: 0.75rem; padding: 1.25rem; }
}


/* ==========================================================================
   Page-type overrides
   These preserve small per-template tuning that previously came from
   loading different combinations of page-scoped stylesheets.
   ========================================================================== */


body[data-page="home"] .hp-btn-lime {
display: inline-block; background-color: var(--lime); color: var(--forest);
  font-size: 0.8125rem; font-weight: 500; padding: 0.5rem 1.25rem; text-align: center;
  border-radius: 9999px; transition: filter 0.15s; border: none; cursor: pointer;
}
body[data-page="home"] .hp-hero-eyebrow {
display: inline-block; color: rgba(255,255,255,0.45); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0; margin-bottom: 1.25rem;
}
body[data-page="home"] .hp-hero-title {
font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: #fff; line-height: 1.1; margin-top: 0; margin-bottom: 2rem; max-width: 750px; margin-left: auto; margin-right: auto;
}
body[data-page="home"] .hp-ticker-item { display: flex; align-items: center; gap: 1.5rem; padding-right: 3rem; white-space: nowrap; }
body[data-page="home"] .hp-service-card { display: block; background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 1rem; padding: 1.5rem; height: 100%; transition: background-color 0.2s, transform 0.2s; }
body[data-page="home"] .hp-service-card:hover { background-color: rgba(255,255,255,0.09); transform: translateY(-4px); }
body[data-page="home"] .hp-btn-outline-light {
display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 0.875rem; font-weight: 500; padding: 0.6rem 1.25rem;
  border-radius: 9999px; transition: background-color 0.2s;
}
body[data-page="home"] .hp-form-progress { display: flex; gap: 0.5rem; max-width: 220px; margin-bottom: 2.5rem; }
body[data-page="home"] .hp-form-progress span { height: 3px; flex: 1; background-color: rgba(255,255,255,0.2); border-radius: 9999px; transition: background-color 0.3s; }
body[data-page="home"] .hp-btn-next { background-color: rgba(200,241,53,0.3); color: rgba(30,45,30,0.5); border: none; border-radius: 9999px; padding: 0.6rem 1.4rem; font-size: 0.875rem; font-weight: 500; cursor: not-allowed; transition: all 0.2s; }
body[data-page="home"] .hp-goal-row .title { color: #fff; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.15rem; }
body[data-page="home"] .hp-goal-row .arrow { color: rgba(255,255,255,0.25); font-size: 1rem; transition: color 0.15s; }
body[data-page="home"] .hp-form-success { text-align: center; padding: 3rem 0; }
body[data-page="home"] .hp-form-success-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
body[data-page^="service-"] .hp-related-head h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* Sub-page template (topic-cluster child pages): keep every section heading at the
   same, more modest size rather than the larger one used on the topic-cluster
   pages themselves. */
body[data-page="service-agile-search-strategy"] .hp-services-heading,
body[data-page="service-competitor-gap-analysis"] .hp-services-heading,
body[data-page="service-organic-search-opportunity"] .hp-services-heading,
body[data-page="service-seo-roadmap"] .hp-services-heading,
body[data-page="service-technical-seo"] .hp-services-heading,
body[data-page="service-content-architecture"] .hp-services-heading,
body[data-page="service-core-web-vitals"] .hp-services-heading,
body[data-page="service-schema-structured-data"] .hp-services-heading,
body[data-page="service-topic-cluster-strategy"] .hp-services-heading,
body[data-page="service-pillar-content"] .hp-services-heading,
body[data-page="service-digital-pr"] .hp-services-heading,
body[data-page="service-content-optimisation"] .hp-services-heading,
body[data-page="service-ai-audit"] .hp-services-heading,
body[data-page="service-geo-content-strategy"] .hp-services-heading,
body[data-page="service-brand-authority"] .hp-services-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
body[data-page="service-agile-search-strategy"] .hp-related-head h2,
body[data-page="service-competitor-gap-analysis"] .hp-related-head h2,
body[data-page="service-organic-search-opportunity"] .hp-related-head h2,
body[data-page="service-seo-roadmap"] .hp-related-head h2,
body[data-page="service-technical-seo"] .hp-related-head h2,
body[data-page="service-content-architecture"] .hp-related-head h2,
body[data-page="service-core-web-vitals"] .hp-related-head h2,
body[data-page="service-schema-structured-data"] .hp-related-head h2,
body[data-page="service-topic-cluster-strategy"] .hp-related-head h2,
body[data-page="service-pillar-content"] .hp-related-head h2,
body[data-page="service-digital-pr"] .hp-related-head h2,
body[data-page="service-content-optimisation"] .hp-related-head h2,
body[data-page="service-ai-audit"] .hp-related-head h2,
body[data-page="service-geo-content-strategy"] .hp-related-head h2,
body[data-page="service-brand-authority"] .hp-related-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
body[data-page^="service-"] .hp-btn-lime-lg {
display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--lime); color: var(--forest);
  font-size: 0.9rem; font-weight: 600; padding: 0.85rem 1.75rem;
  border-radius: 9999px; transition: filter 0.15s;
}
