/* HV Bathrooms — color tokens */
:root{
  /* Anthracite (brand primary — from new logo: white on anthracite grey) */
  --anthracite-950:#1B1F22;
  --anthracite-900:#22262A;
  --anthracite-800:#2B3036;
  --anthracite-700:#3A4048;
  --anthracite-600:#4B525B;
  --anthracite-500:#5F6770;

  /* Cool bright neutrals */
  --white:#FFFFFF;
  --stone-50:#FAFBFB;
  --stone-100:#F4F6F7;
  --stone-200:#E9EDEF;
  --stone-300:#D8DEE1;
  --stone-400:#B9C2C7;
  --stone-500:#939DA3;
  --stone-600:#727D85;
  --stone-700:#576068;

  /* Petrol blue accent — single accent colour on a white site */
  --accent-300:#9CC4D2;
  --accent-400:#4E93A9;
  --accent-500:#20708A;
  --accent-600:#175A70;

  /* Deprecated aliases (pre-rebrand brass tokens) — point at the accent */
  --brass-300:var(--accent-300);
  --brass-400:var(--accent-400);
  --brass-500:var(--accent-500);
  --brass-600:var(--accent-600);

  /* Semantic status */
  --green-success:#4F7A5B;
  --red-error:#A6473F;

  /* Semantic aliases */
  --surface-page:var(--white);
  --surface-card:var(--white);
  --surface-raised:var(--stone-100);
  --surface-inverse:var(--anthracite-800);
  --surface-inverse-deep:var(--anthracite-950);
  --text-heading:var(--anthracite-900);
  --text-body:#3E444B;
  --text-muted:var(--stone-600);
  --text-on-dark:#F2F4F5;
  --text-on-dark-muted:#B7BDC2;
  --accent:var(--accent-500);
  --accent-hover:var(--accent-600);
  --accent-on-dark:var(--accent-300);
  --border-subtle:#E4E9EB;
  --border-strong:#C6CED3;
  --focus-ring:rgba(32,112,138,.35);
  --border-on-dark:rgba(255,255,255,.16);
}
/* HV Bathrooms — typography tokens */
:root{
  --font-display:'Tinos', 'Times Ten', 'Times New Roman', Georgia, serif;
  --font-body:'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Scale */
  --text-hero:clamp(44px,5vw,64px);
  --text-h1:44px;
  --text-h2:34px;
  --text-h3:26px;
  --text-h4:20px;
  --text-lead:19px;
  --text-body-size:16px;
  --text-small:14px;
  --text-caption:12.5px;
  --text-eyebrow:13px;

  /* Weights (body face) */
  --weight-regular:400;
  --weight-medium:500;
  --weight-semibold:600;

  /* Line heights */
  --leading-display:1.12;
  --leading-heading:1.2;
  --leading-body:1.6;

  /* Letterspacing */
  --tracking-eyebrow:.18em;
  --tracking-button:.1em;
  --tracking-display:.01em;
}
/* HV Bathrooms — spacing, radius, elevation, motion */
:root{
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px;
  --space-5:24px; --space-6:32px; --space-7:48px; --space-8:64px;
  --space-9:96px; --space-10:128px;

  /* Squared, architectural corners */
  --radius-none:0;
  --radius-sm:2px;
  --radius-md:4px;
  --radius-pill:999px;

  --shadow-card:0 1px 2px rgba(34,38,42,.06),0 8px 24px rgba(34,38,42,.07);
  --shadow-raised:0 2px 4px rgba(34,38,42,.08),0 16px 40px rgba(34,38,42,.12);
  --shadow-inset-line:inset 0 0 0 1px var(--border-subtle);

  --container-max:1200px;
  --ease-standard:cubic-bezier(.4,0,.2,1); /* @kind other */
  --duration-fast:150ms; /* @kind other */
  --duration-base:250ms; /* @kind other */
}
/* HV Bathrooms — base element styles */
body{font-family:var(--font-body);color:var(--text-body);background:var(--surface-page);font-size:var(--text-body-size);line-height:var(--leading-body);margin:0;-webkit-font-smoothing:antialiased;}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:400;color:var(--text-heading);line-height:var(--leading-heading);letter-spacing:var(--tracking-display);margin:0;}
a{color:var(--accent-600);text-decoration:none;transition:color var(--duration-fast) var(--ease-standard);}
a:hover{color:var(--anthracite-800);}
::selection{background:var(--accent-300);color:var(--anthracite-950);}


body{margin:0;background:var(--surface-page);} a{color:var(--accent-600);} a:hover{color:var(--anthracite-800);}


/* ========== Layout ========== */
.hv-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.hvb-full-width-content .inside-article,
.hvb-full-width-content .entry-content,
.hvb-loveable-page .entry-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hvb-loveable-page .entry-header,
.hvb-loveable-page .site-header,
.hvb-loveable-page .main-navigation {
  display: none !important;
}

/* ========== Buttons ========== */
.hv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.hv-btn--md { padding: 12px 22px; font-size: 13px; }
.hv-btn--lg { padding: 16px 28px; font-size: 14px; }
.hv-btn--accent {
  background: var(--accent-500);
  color: #fff !important;
  border-color: var(--accent-500);
}
.hv-btn--accent:hover { background: var(--accent-600); border-color: var(--accent-600); color: #fff !important; }
.hv-btn--secondary {
  background: transparent;
  color: var(--text-heading) !important;
  border-color: var(--border-strong);
}
.hv-btn--secondary:hover { border-color: var(--anthracite-800); color: var(--anthracite-800) !important; }
.hv-btn--ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,.35);
}
.hv-btn--ghost-light:hover { border-color: #fff; }

/* ========== Header ========== */
.hv-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(27, 31, 34, .04);
}
.hv-header__top {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-raised);
}
.hv-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 40px;
  padding: 4px 32px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
}
.hv-header__top-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}
.hv-header__top a { color: var(--accent-600); font-weight: 600; }
.hv-header__social { display: flex; gap: 12px; }
.hv-header__social a { color: var(--text-muted) !important; font-weight: 400; }
.hv-header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  min-height: 72px;
  padding: 10px 32px;
}
.hv-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.hv-wordmark__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--anthracite-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--anthracite-800);
  letter-spacing: .02em;
}
.hv-wordmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.hv-wordmark__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--text-heading);
  white-space: nowrap;
}
.hv-wordmark__tag {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
  white-space: nowrap;
}
.hv-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  flex-wrap: nowrap;
  margin-left: auto;
  min-width: 0;
}
.hv-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.hv-nav__list > li { position: relative; }
.hv-nav__list > li > a,
.hv-nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-heading) !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  display: inline-block;
}
.hv-nav .hv-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.hv-nav__list > li > a:hover,
.hv-nav__list > li.current-menu-item > a,
.hv-nav__list > li.current-menu-ancestor > a,
.hv-nav__list > li.current_page_item > a,
.hv-nav__link.is-active,
.hv-nav__link:hover {
  color: var(--accent-600) !important;
  border-bottom-color: var(--accent-600);
}
.hv-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  z-index: 60;
  min-width: 240px;
}
.hv-nav__list > li:hover > .sub-menu,
.hv-nav__list > li:focus-within > .sub-menu { display: block; }
.hv-nav__list .sub-menu li a {
  display: block;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-bottom: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text-body) !important;
  text-decoration: none !important;
  padding: 10px 20px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.hv-nav__list .sub-menu li:first-child a {
  border-radius: 2px 2px 0 0;
  box-shadow: var(--shadow-card);
}
.hv-nav__list .sub-menu li:last-child a {
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0 0 2px 2px;
}
.hv-nav__list .sub-menu li a:hover {
  background: var(--surface-page);
  color: var(--accent-600) !important;
}
.hv-menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text-heading);
  cursor: pointer;
  padding: 8px;
}
.hv-mobile-nav {
  display: none;
  border-top: 1px solid var(--border-subtle);
  padding: 16px 32px 24px;
  background: #fff;
}
.hv-mobile-nav.is-open { display: flex; flex-direction: column; gap: 14px; }
.hv-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hv-mobile-nav__list .sub-menu {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hv-mobile-nav a {
  color: var(--text-heading) !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.hv-mobile-nav__list .sub-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted) !important;
}

@media (max-width: 1179px) {
  .hv-header__address { display: none; }
  .hv-nav { display: none; }
  .hv-menu-toggle { display: inline-flex; }
  .hv-wordmark__name { font-size: 18px; }
  .hv-wordmark__mark { width: 38px; height: 38px; font-size: 16px; }
}

/* ========== Footer ========== */
.hv-footer {
  background: var(--anthracite-950);
  color: var(--text-on-dark-muted);
  font-family: var(--font-body);
}
.hv-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 32px;
}
.hv-footer .hv-wordmark__mark {
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.hv-footer .hv-wordmark__name { color: #fff; }
.hv-footer__intro {
  font-size: 15px;
  line-height: 1.65;
  max-width: 340px;
  margin-top: 20px;
}
.hv-footer__dsi {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 16px;
  color: var(--text-on-dark);
}
.hv-footer__dsi span { color: var(--accent-on-dark); }
.hv-footer__col-title {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}
.hv-footer__col a {
  display: block;
  font-size: 14.5px;
  color: var(--text-on-dark-muted) !important;
  text-decoration: none !important;
  margin-bottom: 10px;
}
.hv-footer__col a:hover { color: #fff !important; }
.hv-footer__visit { font-size: 14.5px; line-height: 1.7; }
.hv-footer__visit a { display: inline; color: var(--accent-on-dark) !important; }
.hv-footer__social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  font-size: 14.5px;
}
.hv-footer__social a { color: var(--accent-on-dark) !important; margin: 0; }
.hv-footer__bottom {
  border-top: 1px solid var(--border-on-dark);
}
.hv-footer__bottom-inner {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 0 32px;
}
@media (max-width: 900px) {
  .hv-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hv-footer__grid { grid-template-columns: 1fr; }
  .hv-footer__bottom-inner { flex-direction: column; height: auto; gap: 8px; padding: 16px 32px; }
}

/* ========== Homepage sections ========== */
.hv-page { background: var(--surface-page); color: var(--text-body); }
.hv-section { padding: 96px 0; }
.hv-section--raised { background: var(--surface-raised); }
.hv-section--inverse { background: var(--surface-inverse); }
.hv-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-600);
}
.hv-section--inverse .hv-eyebrow { color: var(--accent-on-dark); }
.hv-heading {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-display);
  margin: 16px 0 0;
}
.hv-heading--xl { font-size: clamp(34px, 4vw, 44px); }
.hv-heading--lg { font-size: clamp(28px, 3.5vw, 34px); }
.hv-section--inverse .hv-heading { color: var(--text-on-dark); }
.hv-lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 620px;
  margin: 16px 0 0;
}
.hv-section-head { max-width: 720px; }
.hv-section-head--center { text-align: center; margin: 0 auto; }
.hv-section-head--center .hv-lead { margin-left: auto; margin-right: auto; }

/* Hero */
.hv-hero {
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  min-height: 560px;
}
.hv-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hv-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,.45) 58%, rgba(255,255,255,0) 78%);
}
.hv-hero__inner {
  position: relative;
  padding: 104px 32px 112px;
}
.hv-hero__copy { max-width: 600px; }
.hv-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.1;
  color: var(--text-heading);
  margin: 20px 0 0;
}
.hv-hero__lead {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 540px;
  margin: 24px 0 0;
}
.hv-hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hv-hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text-muted);
}
.hv-hero__rating-stars { color: var(--accent-500); font-size: 17px; letter-spacing: 2px; }
.hv-hero__badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  padding: 14px 22px;
  margin-top: 32px;
  font-family: var(--font-body);
}
.hv-hero__badge strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-heading);
  margin-right: 10px;
}
.hv-hero__badge span { font-size: 14px; color: var(--text-muted); }

/* Stats */
.hv-section--stats {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.hv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hv-stat {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}
.hv-stat + .hv-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--border-subtle);
}
.hv-stat__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hv-stat__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  margin-top: 8px;
  line-height: 1.35;
}

/* Cards / grids */
.hv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.hv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.hv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hv-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 32px;
  display: block;
  text-decoration: none !important;
  transition: box-shadow .2s ease;
}
.hv-card:hover { box-shadow: var(--shadow-card); }
.hv-card__title {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--text-heading);
}
.hv-card__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 12px 0 0;
}
.hv-card__more {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-top: 18px;
}
.hv-card--dark {
  background: transparent;
  border-color: var(--border-on-dark);
}
.hv-card--dark .hv-card__title { color: var(--text-on-dark); }
.hv-card--dark .hv-card__body { color: var(--text-on-dark-muted); }

/* Photo placeholder / media */
.hv-photo {
  aspect-ratio: 4 / 3.2;
  background: linear-gradient(160deg, #C3CCD1, #7E8A91);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  overflow: hidden;
}
.hv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hv-tour {
  aspect-ratio: 4 / 3.2;
  border-radius: 2px;
  overflow: hidden;
  background: var(--anthracite-900, #1a1c1e);
  border: 1px solid var(--border-subtle, #e6e6e6);
}
.hv-tour iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Before / after */
.hv-ba {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
  background: var(--stone-200);
}
.hv-ba__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hv-ba__img--after { position: absolute; inset: 0; }
.hv-ba__before {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
}
.hv-ba__img--before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.hv-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  transform: translateX(-50%);
  pointer-events: none;
}
.hv-ba__handle-line {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 12px rgba(0,0,0,.25);
}
.hv-ba__handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(27,31,34,.18);
  transform: translate(-50%, -50%);
}
.hv-ba__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.hv-ba__badge {
  position: absolute;
  top: .75rem;
  z-index: 5;
  padding: .3rem .65rem;
  border-radius: 9999px;
  background: rgba(27,31,34,.72);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
}
.hv-ba__badge--before { left: .75rem; }
.hv-ba__badge--after { right: .75rem; }
.hv-ba-caption {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Testimonials */
.hv-quote {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 28px;
}
.hv-quote__stars { color: var(--accent-500); letter-spacing: 2px; margin-bottom: 12px; }
.hv-quote__text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}
.hv-quote__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-heading);
  margin-top: 18px;
}
.hv-quote__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* FAQ accordion */
.hv-acc { border-top: 1px solid var(--border-subtle); }
.hv-acc__item { border-bottom: 1px solid var(--border-subtle); }
.hv-acc__btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hv-acc__panel {
  display: none;
  padding: 0 0 18px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}
.hv-acc__item.is-open .hv-acc__panel { display: block; }

/* Form */
.hv-form {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hv-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.hv-field input,
.hv-field textarea,
.hv-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  background: #fff;
  color: var(--text-body);
}
.hv-field input:focus,
.hv-field textarea:focus,
.hv-field select:focus {
  outline: 2px solid var(--focus-ring);
  border-color: var(--accent-400);
}
.hv-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-body);
}
.hv-form__success {
  text-align: center;
  padding: 48px 24px;
}
.hv-form__success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-heading);
}
.hv-form__success p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.hv-center { text-align: center; margin-top: 40px; }
.hv-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  font-family: var(--font-body);
}
.hv-meta-grid__label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-600);
}
.hv-meta-grid__value {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 8px;
}
.hv-product-link { text-decoration: none !important; }
.hv-product-link__title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-heading);
  margin-top: 14px;
}
.hv-product-link__more {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-top: 6px;
}

/* ========== Service page ========== */
.hv-service-hero {
  background: var(--surface-raised);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.hv-service-hero .hv-eyebrow,
.hv-eyebrow--on-dark {
  color: var(--accent-600) !important;
}
.hv-service-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  color: var(--text-heading);
  margin: 12px 0 0;
  max-width: 760px;
}
.hv-service-hero__lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 640px;
  margin: 14px 0 0;
}
.hv-service-hero__ctas { margin-top: 24px; }
.hv-points { display: flex; flex-direction: column; gap: 18px; }
.hv-point {
  background: #fff;
  border: 1px solid var(--border-subtle, #e6e6e6);
  border-radius: 2px;
  padding: 22px 26px;
}
.hv-point__title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--text-heading);
}
.hv-point__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 8px 0 0;
}
.hv-section--cta {
  background: var(--anthracite-800, #2B3036);
  padding: 64px 0;
  text-align: center;
}

/* ========== Shop category slide-out ========== */
.hv-cat-trigger {
  position: fixed;
  left: 0;
  top: 42%;
  z-index: 80;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--anthracite-950, #1a1c1e);
  color: #fff;
  border: 0;
  border-radius: 0 2px 2px 0;
  padding: 16px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 2px 0 12px rgba(0,0,0,.18);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
}
.hv-cat-trigger:hover { background: var(--accent-600, #2f6f7e); }
.hv-cat-trigger svg { transform: rotate(90deg); margin-bottom: 4px; }

/* ========== Shop collection chips ========== */
.hv-shop-chips {
  margin: 0 0 28px;
  padding: 20px 22px;
  background: var(--surface-raised, #f4f4f2);
  border: 1px solid rgba(26,28,30,.08);
}
.hv-shop-chips__intro {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text-body, #4a4d50);
  max-width: 52rem;
}
.hv-shop-chips__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hv-shop-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(26,28,30,.18);
  background: #fff;
  color: var(--text-heading, #1a1c1e) !important;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.hv-shop-chip:hover {
  border-color: var(--accent-600, #2f6f7e);
  color: var(--accent-700, #255864) !important;
}
.hv-shop-chip.is-active {
  background: var(--anthracite-950, #1a1c1e);
  border-color: var(--anthracite-950, #1a1c1e);
  color: #fff !important;
}
.hv-cat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26,28,30,.45);
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s ease;
}
.hv-cat-backdrop.is-open { opacity: 1; }
.hv-cat-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  width: min(360px, 92vw);
  height: 100%;
  background: #fff;
  box-shadow: 8px 0 32px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform .28s ease;
}
.hv-cat-drawer.is-open { transform: translateX(0); }
.hv-cat-drawer__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border-subtle, #e6e6e6);
}
.hv-cat-drawer__search { flex: 1; }
.hv-cat-drawer__search input {
  width: 100%;
  border: 1px solid var(--border-subtle, #e6e6e6);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body, #333);
  background: var(--surface-page, #f7f7f7);
}
.hv-cat-drawer__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--text-body, #333);
  cursor: pointer;
}
.hv-cat-drawer__body {
  overflow: auto;
  padding: 8px 0 32px;
  -webkit-overflow-scrolling: touch;
}
.hv-cat-drawer__title {
  margin: 12px 20px 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted, #8a8a8a);
}
.hv-cat-drawer__tree,
.hv-cat-drawer__children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hv-cat-drawer__item {
  border-bottom: 1px solid var(--border-subtle, #eee);
}
.hv-cat-drawer__children .hv-cat-drawer__item {
  border-bottom: 0;
}
.hv-cat-drawer__row {
  display: flex;
  align-items: stretch;
  min-height: 48px;
}
.hv-cat-drawer__link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 8px 12px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading, #222) !important;
  text-decoration: none !important;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  min-width: 0;
}
button.hv-cat-drawer__link--expand {
  width: auto;
  flex: 1 1 auto;
}
.hv-cat-drawer__item.is-current > .hv-cat-drawer__row > .hv-cat-drawer__link {
  color: var(--accent-600, #2f6f7e) !important;
}
.hv-cat-drawer__toggle {
  width: 48px;
  border: 0;
  background: transparent;
  color: var(--text-muted, #888);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-cat-drawer__toggle svg {
  transition: transform .2s ease;
}
.hv-cat-drawer__item.is-open > .hv-cat-drawer__row > .hv-cat-drawer__toggle svg {
  transform: rotate(180deg);
}
.hv-cat-drawer__children {
  display: none;
  background: var(--surface-page, #fafafa);
  padding: 4px 0 10px;
}
.hv-cat-drawer__item.is-open > .hv-cat-drawer__children { display: block; }
.hv-cat-drawer__children .hv-cat-drawer__link {
  font-weight: 500;
  font-size: 14.5px;
  padding-left: 36px;
  color: var(--text-body, #444) !important;
}
.hv-cat-drawer__children .hv-cat-drawer__children .hv-cat-drawer__link {
  padding-left: 52px;
  font-size: 14px;
}
.hv-cat-drawer__item--view-all {
  border-bottom: 1px solid var(--border-subtle, #eee) !important;
  margin-bottom: 2px;
}
.hv-cat-drawer__link--view-all {
  font-weight: 700 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px !important;
  color: var(--accent-600, #2f6f7e) !important;
}
.hv-cat-drawer__item.is-filtered-out { display: none; }
body.hv-cat-drawer-open { overflow: hidden; }

/* ========== Single product summary ========== */
.single-product .hv-product-summary-desc {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle, #e6e6e6);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-body, #444);
}
.single-product .hv-product-summary-desc p {
  margin: 0 0 0.85em;
}
.single-product .hv-product-summary-desc p:last-child {
  margin-bottom: 0;
}
.single-product .woocommerce-tabs,
.single-product .wc-tabs-wrapper {
  display: none !important;
}
.single-product div.product .product_meta {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hv-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }
  .hv-stat + .hv-stat::before { display: none; }
  .hv-section--stats { padding: 40px 0; }
  .hv-grid-3,
  .hv-grid-4,
  .hv-grid-2,
  .hv-form__row,
  .hv-meta-grid {
    grid-template-columns: 1fr;
  }
  .hv-grid-3, .hv-grid-4 { gap: 16px; }
  .hv-section { padding: 64px 0; }
  .hv-hero__inner { padding: 72px 24px 80px; }
  .hv-hero__scrim {
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.55) 100%);
  }
  .hv-container, .hv-header__top-inner, .hv-header__main, .hv-footer__grid, .hv-footer__bottom-inner, .hv-hero__inner, .hv-mobile-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hv-header__main { padding-left: 20px; padding-right: 20px; }
}

/* ========== Project galleries (on-site) ========== */
.hv-gallery-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--border-subtle);
  background: #fff;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.hv-gallery-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.hv-gallery-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-page);
}
.hv-gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hv-gallery-card__meta { padding: 16px 18px 18px; }
.hv-gallery-card__title {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
}
.hv-gallery-card__count {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted, #6b7280);
}
.hv-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hv-gallery-modal[hidden] { display: none !important; }
.hv-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 22, .55);
  cursor: pointer;
}
.hv-gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(10, 16, 22, .28);
  padding: 28px 28px 32px;
}
.hv-gallery-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-page, #f5f5f4);
  color: var(--text-body);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.hv-gallery-modal__close:hover { background: #ebeae8; }
.hv-gallery-carousel__back {
  background: none;
  border: 0;
  color: var(--accent-600);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
}
.hv-gallery-carousel__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
  padding-right: 40px;
  color: var(--text-body);
}
.hv-gallery-carousel__sub {
  margin: 6px 0 20px;
  color: var(--text-muted, #6b7280);
  font-size: 14px;
}
.hv-gallery-carousel__stage {
  position: relative;
  margin: 0 auto;
  max-width: min(480px, 100%);
}
.hv-gallery-carousel__figure {
  margin: 0;
  background: var(--surface-page, #f5f5f4);
  aspect-ratio: 4 / 5;
  max-height: min(62vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hv-gallery-carousel__figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hv-gallery-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 16, 22, .72);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 16, 22, .25);
  transition: background .2s ease, transform .2s ease;
}
.hv-gallery-carousel__nav:hover {
  background: rgba(10, 16, 22, .9);
}
.hv-gallery-carousel__nav:active {
  transform: translateY(-50%) scale(.96);
}
.hv-gallery-carousel__nav--prev { left: 12px; }
.hv-gallery-carousel__nav--next { right: 12px; }
.hv-gallery-carousel__count {
  margin: 16px 0 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
}
@media (max-width: 900px) {
  .hv-gallery-modal { padding: 12px; }
  .hv-gallery-modal__dialog { padding: 22px 18px 24px; }
  .hv-gallery-carousel__figure { max-height: 58vh; }
  .hv-gallery-carousel__nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
  .hv-gallery-carousel__nav--prev { left: 8px; }
  .hv-gallery-carousel__nav--next { right: 8px; }
}
@media (max-width: 560px) {
  .hv-gallery-carousel__stage { max-width: 100%; }
}

