/* ==========================================================================
   Hard Knox Plumbing — main stylesheet
   Compiled from the Claude Design handoff token set (README.md).
   ========================================================================== */

:root {
  --hk-blue: #0171CE;
  --hk-blue-dark: #015CA8;
  --hk-coral: #EE5E56;
  --hk-coral-dark: #E04A42;
  --hk-ink: #12283C;
  --hk-ink-deep: #0C1D2C;
  --hk-text: #22313F;
  --hk-body: #44576A;
  --hk-muted: #5A6B7C;
  --hk-muted-2: #6B7C8C;
  --hk-muted-3: #7A8A99;
  --hk-pale: #E5F0F9;
  --hk-tint: #F4F9FD;
  --hk-line: #E2EAF2;
  --hk-line-blue: #D5E5F3;
  --hk-line-blue-2: #C9DDEE;
  --hk-gold: #F6A609;
  --hk-green: #2FA36B;
  --hk-green-soft: #8ED0A9;
  --hk-dark-body: #BFD6E9;
  --hk-dark-icon: #7FB8E8;
  --hk-footer-body: #9FB4C6;
  --hk-footer-label: #6E869C;
  --hk-footer-prose: #7E94A8;
  --hk-footer-divider: #1D3346;
  --hk-grad-blue: linear-gradient(135deg, #0171CE 0%, #015CA8 100%);
  --hk-grad-hero: linear-gradient(180deg, #E5F0F9 0%, #F4F9FD 70%, #FFFFFF 100%);
  --hk-font-head: 'Archivo', 'Segoe UI', sans-serif;
  --hk-font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --hk-shadow-card: 0 24px 60px rgba(18, 40, 60, 0.12);
  --hk-shadow-frame: 0 24px 60px rgba(18, 40, 60, 0.14);
  --hk-shadow-hover: 0 14px 34px rgba(18, 40, 60, 0.10);
  --hk-shadow-chip: 0 4px 14px rgba(18, 40, 60, 0.06);
  --hk-shadow-btn: 0 8px 20px rgba(1, 113, 206, 0.25);
  --hk-shadow-coral: 0 12px 30px rgba(238, 94, 86, 0.35);
  --hk-shadow-bar: 0 -8px 24px rgba(18, 40, 60, 0.12);
  --hk-section-pad: clamp(60px, 8vw, 104px) 24px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hk-font-body);
  color: var(--hk-text);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--hk-blue); text-decoration: none; }
a:hover { color: var(--hk-blue-dark); }
img { max-width: 100%; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--hk-blue); color: #FFFFFF; font-family: var(--hk-font-head);
  font-weight: 700; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #FFFFFF; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--hk-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

[data-show-mobile] { display: none !important; }
@media (max-width: 920px) {
  [data-hide-mobile] { display: none !important; }
  [data-show-mobile] { display: flex !important; }
  body { padding-bottom: 74px; }
}
details summary::-webkit-details-marker { display: none; }

#book { scroll-margin-top: 90px; }

/* --------------------------------------------------------------------------
   Primitives
   -------------------------------------------------------------------------- */
.container { max-width: 1240px; margin: 0 auto; }

.section { padding: var(--hk-section-pad); }
.section--tint { background: var(--hk-tint); }
.section--dark { background: var(--hk-ink); }

.eyebrow {
  font-family: var(--hk-font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hk-blue); margin: 0 0 12px 0;
}
.eyebrow--coral { color: var(--hk-coral); }

.h2 {
  font-family: var(--hk-font-head); font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1;
  letter-spacing: -0.015em; color: var(--hk-ink); margin: 0;
}

.sec-head { max-width: 660px; margin: 0 0 clamp(32px, 4vw, 52px) 0; }
.sec-head--center { margin: 0 auto clamp(32px, 4vw, 52px) auto; text-align: center; }
.sec-head .h2 { margin-bottom: 16px; }
.sec-head .h2:last-child { margin-bottom: 0; }
.sec-head__intro { font-size: 17px; line-height: 1.6; color: var(--hk-body); margin: 0; }

.lead { font-size: 17.5px; line-height: 1.6; color: var(--hk-body); margin: 0 0 16px 0; }

/* Buttons */
.btn {
  font-family: var(--hk-font-head); font-weight: 700; font-size: 17px;
  padding: 16px 30px; border-radius: 10px; display: inline-flex;
  align-items: center; gap: 10px; border: none; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn--primary { background: var(--hk-blue); color: #FFFFFF; box-shadow: var(--hk-shadow-btn); }
.btn--primary:hover { background: var(--hk-blue-dark); color: #FFFFFF; }
.btn--outline { background: #FFFFFF; color: var(--hk-ink); border: 2px solid var(--hk-line-blue-2); padding: 14px 26px; }
.btn--outline:hover { border-color: var(--hk-blue); color: var(--hk-blue); }
.btn--glass { background: rgba(255,255,255,0.08); color: #FFFFFF; border: 2px solid rgba(255,255,255,0.45); padding: 14px 26px; }
.btn--glass:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.18); color: #FFFFFF; }
.btn--white { background: #FFFFFF; color: var(--hk-blue); font-size: 16px; padding: 14px 26px; }
.btn--white:hover { background: var(--hk-pale); color: var(--hk-blue-dark); }
.btn--ghost-white { background: transparent; color: #FFFFFF; border: 2px solid rgba(255,255,255,0.4); font-size: 16px; padding: 12px 22px; }
.btn--ghost-white:hover { border-color: #FFFFFF; color: #FFFFFF; }
.btn--coral { background: var(--hk-coral); color: #FFFFFF; }
.btn--coral:hover { background: var(--hk-coral-dark); color: #FFFFFF; }

/* Rating pill */
.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFFFFF; border: 1px solid var(--hk-line-blue);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 20px;
}
.rating-pill__stars { color: var(--hk-gold); font-size: 16px; letter-spacing: 2px; }
.rating-pill__score { font-weight: 700; font-size: 15px; color: var(--hk-text); }
.rating-pill__note { color: var(--hk-muted-2); font-size: 15px; }
.rating-pill--glass { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.rating-pill--glass .rating-pill__score { color: #FFFFFF; }
.rating-pill--glass .rating-pill__note { color: #C6DAEA; }

/* Status dots */
.status-dots { display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--hk-body); font-size: 15px; font-weight: 600; }
.status-dots--dark { color: #C6DAEA; }
.status-dots span { display: inline-flex; align-items: center; gap: 7px; }
.status-dots .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--green { background: var(--hk-green); }
.dot--blue { background: var(--hk-blue); }
.dot--blue-light { background: var(--hk-dark-icon); }
.dot--coral { background: var(--hk-coral); }

/* Icon tiles */
.icon-tile { border-radius: 12px; background: var(--hk-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-tile--44 { width: 44px; height: 44px; border-radius: 11px; }
.icon-tile--48 { width: 48px; height: 48px; border-radius: 12px; }
.icon-tile--52 { width: 52px; height: 52px; }
.icon-tile--60 { width: 60px; height: 60px; border-radius: 14px; }
.icon-tile--72 { width: 72px; height: 72px; border-radius: 14px; }
.icon-tile--pale { background: var(--hk-pale); }
.icon-tile--coral { background: var(--hk-coral); }

/* Chips */
.chip {
  background: var(--hk-pale); color: var(--hk-blue);
  font-family: var(--hk-font-head); font-weight: 700; font-size: 14.5px;
  padding: 9px 16px; border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hk-line);
}
.site-header__inner { max-width: 1240px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; gap: 28px; }
.site-header__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-header__logo img { height: 54px; width: auto; display: block; }
.nav-desktop {
  display: flex; align-items: center; gap: 26px; margin-left: auto;
  font-family: var(--hk-font-head); font-size: 15px; font-weight: 600;
}
.nav-desktop a { color: var(--hk-text); }
.nav-desktop a:hover { color: var(--hk-blue); }
.nav-desktop a[aria-current="page"] { color: var(--hk-blue); }
/* Services dropdown (hover, focus, and tap) */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item__toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-item__toggle svg { width: 12px; height: 12px; transition: transform .18s ease; }
.nav-item.is-open .nav-item__toggle svg, .nav-item:hover .nav-item__toggle svg, .nav-item:focus-within .nav-item__toggle svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: -14px; min-width: 280px; margin: 0; padding: 10px; list-style: none;
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 12px; box-shadow: 0 18px 44px rgba(18,40,60,0.14);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s; z-index: 60;
}
.nav-dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.nav-dropdown li { margin: 0; }
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--hk-text); white-space: nowrap; }
.nav-dropdown a:hover, .nav-dropdown a:focus { background: var(--hk-pale); color: var(--hk-blue); }
.nav-dropdown a.nav-dropdown__all { margin-top: 6px; border-top: 1px solid var(--hk-line); border-radius: 0 0 8px 8px; padding-top: 12px; color: var(--hk-blue); }
.nav-dropdown a.nav-dropdown__emergency { color: #D0463E; }
.nav-mobile__sub { padding-left: 18px; font-size: 15.5px; font-weight: 600; color: var(--hk-muted); }
.site-header__actions { display: flex; align-items: center; gap: 16px; }
.site-header__phone { display: flex; align-items: center; gap: 8px; font-family: var(--hk-font-head); font-weight: 700; font-size: 17px; color: var(--hk-blue); }
.site-header__cta {
  background: var(--hk-blue); color: #FFFFFF; font-family: var(--hk-font-head);
  font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 8px; display: inline-block;
}
.site-header__cta:hover { background: var(--hk-blue-dark); color: #FFFFFF; }
.site-header__mobile { display: none; align-items: center; gap: 10px; margin-left: auto; }
.site-header__mobile-call { width: 44px; height: 44px; border-radius: 8px; background: var(--hk-pale); display: flex; align-items: center; justify-content: center; }
.site-header__hamburger { width: 44px; height: 44px; border-radius: 8px; background: var(--hk-blue); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.nav-mobile {
  background: #FFFFFF; border-top: 1px solid var(--hk-line);
  padding: 8px 24px 20px 24px; display: none; flex-direction: column; gap: 2px;
  font-family: var(--hk-font-head); font-weight: 600; font-size: 17px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 12px 4px; color: var(--hk-text); border-bottom: 1px solid #EEF3F8; }
.nav-mobile a[aria-current="page"] { color: var(--hk-blue); }
.nav-mobile__cta { margin-top: 14px; background: var(--hk-blue); color: #FFFFFF !important; text-align: center; padding: 14px !important; border-radius: 8px; font-weight: 700; border-bottom: none !important; }

/* --------------------------------------------------------------------------
   Heroes
   -------------------------------------------------------------------------- */
.hero-light { background: var(--hk-grad-hero); }
.hero-light__inner {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 24px clamp(36px, 5vw, 64px) 24px;
  display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: flex-start;
}
.hero-light__copy { flex: 1 1 480px; min-width: 320px; }
.hero-light h1, .hero-photo h1 {
  font-family: var(--hk-font-head); font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px); line-height: 1.07; letter-spacing: -0.02em;
  color: var(--hk-ink); margin: 0 0 18px 0;
}
.hero-light .hero-lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.65; color: var(--hk-body); margin: 0 0 14px 0; max-width: 58ch; }
.hero-light .hero-lead-2 { font-size: 16.5px; line-height: 1.65; color: var(--hk-body); margin: 0 0 26px 0; max-width: 58ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-photo { position: relative; background-color: var(--hk-ink); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-photo__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,26,40,0.92) 0%, rgba(9,26,40,0.82) 28%, rgba(9,26,40,0.48) 42%, rgba(9,26,40,0.16) 52%, rgba(9,26,40,0.02) 62%, rgba(9,26,40,0) 72%),
    linear-gradient(180deg, rgba(9,26,40,0.28) 0%, rgba(9,26,40,0) 45%);
}
.hero-photo__inner {
  position: relative; max-width: 1240px; margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) 24px clamp(56px, 8vw, 116px) 24px;
}
.hero-photo__copy { max-width: 660px; }
.hero-photo h1 { color: #FFFFFF; font-size: clamp(40px, 5.4vw, 68px); line-height: 1.03; margin-bottom: 20px; }
.hero-photo--interior h1 { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.07; }
.hero-photo .hero-lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: #D6E5F1; margin: 0 0 32px 0; max-width: 52ch; }
.hero-photo .hero-kicker {
  font-family: var(--hk-font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--hk-coral); margin-bottom: 14px;
}
.hero-photo--split .hero-photo__inner { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: flex-start; }
.hero-photo--split .hero-photo__copy { flex: 1 1 480px; min-width: 320px; max-width: none; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14.5px; font-weight: 600; color: var(--hk-muted-2);
  margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.breadcrumbs a { color: var(--hk-muted-2); }
.breadcrumbs a:hover { color: var(--hk-blue); }
.breadcrumbs .current { color: var(--hk-ink); }
.breadcrumbs--dark, .breadcrumbs--dark a { color: #A9C2D8; }
.breadcrumbs--dark .current { color: #FFFFFF; }

/* --------------------------------------------------------------------------
   Booking card
   -------------------------------------------------------------------------- */
.book-card-wrap { flex: 1 1 420px; min-width: 300px; }
.book-card {
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 20px;
  box-shadow: var(--hk-shadow-card); overflow: hidden;
}
.book-card__bar { background: var(--hk-blue); padding: 16px 24px; display: flex; align-items: center; gap: 10px; }
.book-card__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hk-green-soft); display: inline-block; }
.book-card__label { font-family: var(--hk-font-head); font-weight: 700; font-size: 15.5px; color: #FFFFFF; }
.book-card iframe { width: 100%; height: 560px; border: none; display: block; }
.book-card iframe.book-card__iframe--tall { height: 1000px; }
/* The Housecall Pro form (with the address block) puts its submit button at ~850px on desktop
   width and ~920px on phones; leave room for the Powered-by line and validation messages. */
.book-card__iframe { min-height: 1000px; }
@media (max-width: 520px) { .book-card__iframe { height: 1080px !important; } }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip { background: var(--hk-ink); }
.trust-strip__inner {
  max-width: 1240px; margin: 0 auto; padding: 18px 24px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px;
  color: var(--hk-dark-body); font-family: var(--hk-font-head); font-weight: 600; font-size: 15px;
}
.trust-strip__inner span { display: inline-flex; align-items: center; gap: 9px; }

/* --------------------------------------------------------------------------
   Prose + image
   -------------------------------------------------------------------------- */
.prose-image { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(36px, 5vw, 72px); }
.prose-image--reverse { flex-direction: row-reverse; }
.prose-image__copy { flex: 1 1 480px; min-width: 320px; }
.prose-image__copy .h2 { margin-bottom: 18px; }
.prose-image__copy p { font-size: 17px; line-height: 1.65; color: var(--hk-body); margin: 0 0 16px 0; }
.prose-image__copy p:last-child { margin-bottom: 0; }
.prose-image__media { flex: 1 1 400px; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.img-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--hk-shadow-frame); }
.img-frame img { width: 100%; height: auto; display: block; }
.checklist { margin: 22px 0 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; line-height: 1.55; color: var(--hk-body); }
.checklist li svg { flex-shrink: 0; margin-top: 2px; }
.note-card {
  background: var(--hk-tint); border: 1px solid var(--hk-line-blue); border-radius: 14px;
  padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start;
}
.note-card--on-tint { background: #FFFFFF; }
.note-card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--hk-body); }

/* --------------------------------------------------------------------------
   Card grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--290 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--190 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.card {
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 16px;
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.card h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 19px; color: var(--hk-ink); margin: 0; }
.card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--hk-muted); }

.card-link {
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 16px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
  color: var(--hk-text); transition: box-shadow .2s, transform .2s;
}
.card-link:hover { box-shadow: var(--hk-shadow-hover); transform: translateY(-3px); color: var(--hk-text); }
.card-link h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 20px; color: var(--hk-ink); margin: 0; }
.card-link p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--hk-muted); }
.card-link__more { margin-top: auto; font-family: var(--hk-font-head); font-weight: 700; font-size: 15px; color: var(--hk-blue); }

.card__num {
  font-family: var(--hk-font-head); font-weight: 800; font-size: 15px; color: #FFFFFF;
  background: var(--hk-blue); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.card--numbered h3 { font-size: 18px; }

.sec-head--split {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(32px, 4vw, 48px); max-width: none;
}
.sec-head--split > div { max-width: 620px; }
.sec-head__link { font-family: var(--hk-font-head); font-weight: 700; font-size: 16px; color: var(--hk-blue); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Stat band
   -------------------------------------------------------------------------- */
.stat-band { padding: clamp(44px, 5vw, 64px) 24px; }
.stat-band__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; }
.stat { text-align: center; }
.stat__value { font-family: var(--hk-font-head); font-weight: 800; font-size: clamp(34px, 4vw, 48px); line-height: 1; color: var(--hk-blue); margin: 0 0 8px 0; }
.stat__label { margin: 0; font-size: 15.5px; font-weight: 600; color: var(--hk-muted); }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.google-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 999px;
  padding: 9px 18px; margin-bottom: 18px; box-shadow: var(--hk-shadow-chip);
}
.google-pill__score { font-family: var(--hk-font-head); font-weight: 700; font-size: 15px; color: var(--hk-ink); }
.google-pill__stars { color: var(--hk-gold); font-size: 15px; letter-spacing: 2px; }
.google-pill__label { font-size: 14.5px; color: var(--hk-muted-2); }
.review-card { background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 16px; padding: 28px; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.review-card__stars { color: var(--hk-gold); font-size: 17px; letter-spacing: 3px; }
.review-card blockquote { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--hk-body); }
.review-card figcaption { margin-top: auto; font-size: 14.5px; font-weight: 600; color: var(--hk-muted-3); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 14px; padding: 0 24px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0;
  font-family: var(--hk-font-head); font-weight: 700; font-size: 18px; color: var(--hk-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary .faq-marker { color: var(--hk-blue); font-size: 22px; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary .faq-marker { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 0 22px 0; font-size: 16px; line-height: 1.65; color: var(--hk-body); }

/* --------------------------------------------------------------------------
   Financing band
   -------------------------------------------------------------------------- */
.financing-band {
  margin-top: 32px; background: var(--hk-grad-blue); border-radius: 18px;
  padding: clamp(26px, 3.5vw, 40px); display: flex; flex-wrap: wrap;
  align-items: center; gap: 20px 32px;
}
.financing-band__copy { flex: 1 1 380px; }
.financing-band h3 { font-family: var(--hk-font-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); color: #FFFFFF; margin: 0 0 8px 0; }
.financing-band p { margin: 0; font-size: 16.5px; line-height: 1.6; color: #D8EAF9; }
.financing-band__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   Local trust
   -------------------------------------------------------------------------- */
.local-trust { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(36px, 5vw, 72px); }
.local-trust__copy { flex: 1 1 460px; min-width: 320px; }
.local-trust__copy .h2 { margin-bottom: 16px; }
.local-trust__copy p { font-size: 17px; line-height: 1.65; color: var(--hk-body); margin: 0 0 14px 0; }
.local-trust__copy p:last-of-type { margin-bottom: 26px; }
.local-trust__copy p a { font-weight: 700; }
.local-trust__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.local-trust__media { flex: 1 1 400px; min-width: 300px; }
.local-trust__card { background: #FFFFFF; border-radius: 20px; padding: 28px; box-shadow: var(--hk-shadow-card); position: relative; }
.local-trust__card img { width: 100%; height: auto; display: block; border-radius: 12px; }
.local-trust__badge {
  position: absolute; top: 18px; left: 18px; background: var(--hk-coral); color: #FFFFFF;
  font-family: var(--hk-font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px;
}

/* --------------------------------------------------------------------------
   Emergency CTA
   -------------------------------------------------------------------------- */
.emergency-cta { background: var(--hk-ink); padding: clamp(56px, 7vw, 88px) 24px; }
.emergency-cta--blue { background: var(--hk-blue); }
.emergency-cta__inner {
  max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap;
  align-items: center; gap: 32px; justify-content: space-between;
}
.emergency-cta__copy { flex: 1 1 460px; min-width: 300px; }
.emergency-cta h2 {
  font-family: var(--hk-font-head); font-weight: 800; font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1; letter-spacing: -0.015em; color: #FFFFFF; margin: 0 0 14px 0;
}
.emergency-cta__body { font-size: 17.5px; line-height: 1.6; color: var(--hk-dark-body); margin: 0; max-width: 54ch; }
.emergency-cta--blue .emergency-cta__body { color: #D8EAF9; }
.emergency-cta--blue .eyebrow--coral { color: #FFD9D6; }
.emergency-cta__actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.emergency-cta__phone {
  background: var(--hk-coral); color: #FFFFFF; font-family: var(--hk-font-head);
  font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); padding: 20px 38px;
  border-radius: 12px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--hk-shadow-coral);
}
.emergency-cta__phone:hover { background: var(--hk-coral-dark); color: #FFFFFF; }
.emergency-cta__alt { text-align: center; color: var(--hk-dark-body); font-family: var(--hk-font-head); font-weight: 600; font-size: 15.5px; }
.emergency-cta__alt:hover { color: #FFFFFF; }
.emergency-cta--blue .emergency-cta__alt { color: #D8EAF9; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--hk-ink-deep); color: var(--hk-footer-body); padding: clamp(48px, 6vw, 72px) 24px 0 24px; }
.site-footer__inner { max-width: 1240px; margin: 0 auto; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--hk-footer-divider); }
.site-footer__col { flex: 1 1 200px; min-width: 180px; }
.site-footer__col--contact { flex: 1 1 220px; min-width: 200px; }
.site-footer__logo { height: 64px; width: auto; display: block; margin-bottom: 18px; background: #FFFFFF; border-radius: 10px; padding: 8px; }
.site-footer address { font-style: normal; font-size: 15.5px; line-height: 1.65; margin: 0 0 12px 0; }
.site-footer__phone { font-family: var(--hk-font-head); font-weight: 700; font-size: 19px; color: #FFFFFF; }
.site-footer__phone:hover { color: var(--hk-dark-icon); }
.site-footer__tag { font-size: 14.5px; margin: 12px 0 0 0; }
.site-footer h3 {
  font-family: var(--hk-font-head); font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #FFFFFF; margin: 0 0 16px 0;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; }
.site-footer ul a { color: var(--hk-footer-body); }
.site-footer ul a:hover { color: #FFFFFF; }
.site-footer__seo { padding: 28px 0 0 0; }
.site-footer__seo h3 { font-size: 13px; color: var(--hk-footer-label); margin-bottom: 10px; }
.site-footer__seo p { font-size: 14px; line-height: 1.7; margin: 0; color: var(--hk-footer-prose); max-width: 110ch; }
.site-footer__legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding: 22px 0; font-size: 14px;
}
.site-footer__legal p { margin: 0; }
.site-footer__legal-links { display: flex; gap: 22px; }
.site-footer__legal a { color: var(--hk-footer-body); }
.site-footer__legal a:hover { color: #FFFFFF; }

/* --------------------------------------------------------------------------
   Sticky mobile CTA bar
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: #FFFFFF; border-top: 1px solid var(--hk-line);
  box-shadow: var(--hk-shadow-bar); padding: 12px 14px; gap: 12px;
}
.mobile-cta-bar a {
  flex: 1; color: #FFFFFF; font-family: var(--hk-font-head); font-weight: 700;
  font-size: 16px; padding: 14px; border-radius: 10px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-cta-bar a:hover { color: #FFFFFF; }
.mobile-cta-bar__call { background: var(--hk-coral); }
.mobile-cta-bar__book { background: var(--hk-blue); }

/* --------------------------------------------------------------------------
   Homepage-specific
   -------------------------------------------------------------------------- */
.emergency-banner {
  grid-column: 1 / -1; background: var(--hk-coral); border-radius: 16px;
  padding: 28px 30px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 18px 28px; color: #FFFFFF; transition: box-shadow .2s;
}
.emergency-banner:hover { color: #FFFFFF; box-shadow: 0 14px 34px rgba(18, 40, 60, 0.3); }
.emergency-banner__icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.emergency-banner__copy { flex: 1 1 300px; }
.emergency-banner h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 22px; margin: 0 0 4px 0; color: #FFFFFF; }
.emergency-banner p { margin: 0; font-size: 15.5px; color: rgba(255,255,255,0.9); }
.emergency-banner__btn {
  background: var(--hk-ink); font-family: var(--hk-font-head); font-weight: 700;
  font-size: 17px; padding: 14px 26px; border-radius: 10px; white-space: nowrap;
}

.membership-promo { padding: 0 24px; }
.membership-promo__inner {
  max-width: 1240px; margin: 0 auto; background: var(--hk-grad-blue); border-radius: 24px;
  padding: clamp(36px, 5vw, 64px); display: flex; flex-wrap: wrap; align-items: center;
  gap: 36px; position: relative; overflow: hidden;
}
.membership-promo__circle { position: absolute; border-radius: 50%; }
.membership-promo__circle--1 { right: -80px; top: -80px; width: 320px; height: 320px; background: rgba(255,255,255,0.06); }
.membership-promo__circle--2 { right: 60px; bottom: -120px; width: 260px; height: 260px; background: rgba(255,255,255,0.05); }
.membership-promo__copy { flex: 1 1 460px; min-width: 300px; position: relative; }
.membership-promo__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--hk-coral);
  color: #FFFFFF; font-family: var(--hk-font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 14px;
  border-radius: 999px; margin-bottom: 18px;
}
.membership-promo h2 {
  font-family: var(--hk-font-head); font-weight: 800; font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1; letter-spacing: -0.015em; color: #FFFFFF; margin: 0 0 14px 0;
}
.membership-promo__body { font-size: 17.5px; line-height: 1.6; color: #D8EAF9; margin: 0 0 24px 0; max-width: 54ch; }
.membership-promo__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.membership-promo__list { flex: 1 1 320px; min-width: 280px; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; position: relative; }
.membership-promo__list li {
  display: flex; align-items: center; gap: 12px; padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.22); color: #FFFFFF; font-weight: 600; font-size: 16px;
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.feature { display: flex; gap: 13px; align-items: flex-start; }
.feature h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 17px; color: var(--hk-ink); margin: 0 0 4px 0; }
.feature p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--hk-muted); }

.team-card { background: #FFFFFF; border-radius: 16px; overflow: hidden; border: 1px solid var(--hk-line); }
.team-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 22%; display: block; background: var(--hk-pale); }
.team-card__meta { padding: 18px 20px; }
.team-card h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 19px; color: var(--hk-ink); margin: 0 0 3px 0; }
.team-card p { margin: 0; font-size: 15px; font-weight: 600; color: var(--hk-blue); }
.team-card--counter { background: var(--hk-blue); border-radius: 16px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 28px; gap: 10px; border: none; }
.team-card--counter .team-card__big { font-family: var(--hk-font-head); font-weight: 800; font-size: 42px; color: #FFFFFF; margin: 0; line-height: 1; }
.team-card--counter p { margin: 0; font-size: 16.5px; line-height: 1.5; color: #D8EAF9; font-weight: 600; }
.team-card--counter a {
  margin-top: 8px; font-family: var(--hk-font-head); font-weight: 700; font-size: 15.5px;
  color: #FFFFFF; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 2px;
}
.team-card--counter a:hover { color: #FFFFFF; border-color: #FFFFFF; }

.area-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.area-chip {
  background: #FFFFFF; border: 1px solid var(--hk-line-blue); border-radius: 10px;
  padding: 13px 16px; font-family: var(--hk-font-head); font-weight: 600; font-size: 15.5px;
  color: var(--hk-ink); display: flex; align-items: center; gap: 9px;
}
.area-chip:hover { border-color: var(--hk-blue); color: var(--hk-blue); }

.map-placeholder {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--hk-line-blue);
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #EDF2F7, #EDF2F7 14px, #E4EBF2 14px, #E4EBF2 28px);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px;
}
.map-placeholder span {
  font-size: 14px; font-weight: 600; color: var(--hk-muted-3);
  letter-spacing: 0.04em; text-transform: uppercase; max-width: 32ch; line-height: 1.6;
}

.map-embed {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--hk-line-blue);
  aspect-ratio: 4 / 3; background: var(--hk-tint);
}
.map-embed--wide { aspect-ratio: 21 / 9; margin-top: 32px; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 700px) {
  .map-embed--wide { aspect-ratio: 4 / 3; }
}

.booking-section { display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 72px); align-items: flex-start; }
.booking-section__copy { flex: 1 1 420px; min-width: 300px; position: sticky; top: 100px; }
.booking-section__copy .h2 { margin-bottom: 16px; }
.booking-section__note { font-size: 16px; font-weight: 600; color: var(--hk-green); margin: 0 0 28px 0; display: flex; align-items: center; gap: 8px; }
.booking-section__phone-card {
  background: var(--hk-tint); border: 1px solid var(--hk-line-blue); border-radius: 14px;
  padding: 20px 22px; display: flex; align-items: center; gap: 16px;
}
.booking-section__phone-card .label { margin: 0 0 2px 0; font-size: 14.5px; font-weight: 600; color: var(--hk-muted-3); }
.booking-section__phone-card .number { font-family: var(--hk-font-head); font-weight: 800; font-size: 22px; color: var(--hk-ink); }
.booking-section__phone-card .number:hover { color: var(--hk-blue); }
.booking-section__form { flex: 1 1 480px; min-width: 320px; }

.post-card {
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column; color: var(--hk-text);
  transition: box-shadow .2s;
}
.post-card:hover { box-shadow: var(--hk-shadow-hover); color: var(--hk-text); }
.post-card img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
/* Optimizer/lazy-load plugins inject width+height attributes; keep the CSS crop in charge. */
.post-card img[height], .post-card--grid img[height], .team-card img[height] { height: auto; }
.post-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 19px; line-height: 1.3; color: var(--hk-ink); margin: 0; }
.post-card__meta { margin: auto 0 0 0; font-size: 14.5px; font-weight: 600; color: var(--hk-muted-3); }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-hero { background: linear-gradient(180deg, #E5F0F9 0%, #FFFFFF 100%); border-bottom: 1px solid var(--hk-line); }
.blog-hero__inner { max-width: 1240px; margin: 0 auto; padding: clamp(32px, 4vw, 48px) 24px clamp(36px, 4vw, 52px) 24px; }
.blog-hero h1 {
  font-family: var(--hk-font-head); font-weight: 800; font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--hk-ink); margin: 0 0 12px 0;
}
.blog-hero p { font-size: 17px; line-height: 1.6; color: var(--hk-body); margin: 0; max-width: 64ch; }
.blog-hero p a { font-weight: 700; }

.post-chip {
  background: var(--hk-pale); color: var(--hk-blue); font-family: var(--hk-font-head);
  font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; align-self: flex-start;
}

.post-card--featured {
  background: #FFFFFF; border: 1px solid var(--hk-line); border-radius: 20px; overflow: hidden;
  display: flex; flex-wrap: wrap; color: var(--hk-text); margin-bottom: 24px; transition: box-shadow .2s;
}
.post-card--featured:hover { box-shadow: 0 18px 40px rgba(18,40,60,0.12); color: var(--hk-text); }
.post-card--featured .featured-media { flex: 1 1 420px; min-width: 300px; aspect-ratio: 16 / 11; background: var(--hk-pale); overflow: hidden; }
.post-card--featured .featured-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card--featured .featured-body { flex: 1 1 380px; min-width: 300px; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.post-card--featured h3 { font-family: var(--hk-font-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.24; color: var(--hk-ink); margin: 0; }
.post-card--featured .featured-excerpt { margin: 0; font-size: 16px; line-height: 1.6; color: var(--hk-muted); }
.post-card--featured .featured-meta { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--hk-muted-3); }

.post-card--grid { border-radius: 18px; }
.post-card--grid:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(18,40,60,0.12); }
.post-card--grid img { aspect-ratio: 16 / 10; background: var(--hk-pale); }
.post-card--grid h3 { font-size: 18.5px; }
.post-card--grid .post-card__body { padding: 24px; }
.post-card--grid .post-card__excerpt { margin: 0; font-size: 15px; line-height: 1.55; color: var(--hk-muted); }
.post-card--grid .post-card__meta { margin-top: 8px; font-size: 13px; }

.qa-card { background: #1B3145; border: 1px solid #274257; border-radius: 16px; padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.qa-card h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 18px; line-height: 1.35; color: #FFFFFF; margin: 0; }
.qa-card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: #A9C2D6; }

.single-post-content { max-width: 800px; margin: 0 auto; }
.single-post-content h2 { font-family: var(--hk-font-head); font-weight: 800; font-size: 28px; color: var(--hk-ink); margin: 40px 0 14px 0; }
.single-post-content h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 21px; color: var(--hk-ink); margin: 28px 0 10px 0; }
.single-post-content p, .single-post-content li { font-size: 17px; line-height: 1.7; color: var(--hk-body); }
.single-post-content img { border-radius: 16px; max-width: 100%; height: auto; }
.single-post-content figure,
.single-post-content .wp-caption { max-width: 100% !important; width: auto !important; margin: 28px 0; }
.single-post-content .wp-caption img,
.single-post-content figure img { display: block; max-width: 100%; height: auto; margin: 0 auto; }
.single-post-content .wp-caption-text,
.single-post-content figcaption { font-size: 14.5px; line-height: 1.5; color: var(--hk-muted); text-align: center; margin: 10px 0 0; }
.single-post-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.single-post-content .alignleft { float: left; margin: 6px 28px 18px 0; max-width: 50% !important; }
.single-post-content .alignright { float: right; margin: 6px 0 18px 28px; max-width: 50% !important; }
.single-post-content::after { content: ''; display: table; clear: both; }
@media (max-width: 640px) { .single-post-content .alignleft, .single-post-content .alignright { float: none; max-width: 100% !important; margin: 24px 0; } }

/* --------------------------------------------------------------------------
   Legal pages / prose content
   -------------------------------------------------------------------------- */
.legal-prose { max-width: 800px; margin: 0 auto; }
.legal-prose h2 { font-family: var(--hk-font-head); font-weight: 800; font-size: 26px; color: var(--hk-ink); margin: 40px 0 14px 0; }
.legal-prose h3 { font-family: var(--hk-font-head); font-weight: 700; font-size: 20px; color: var(--hk-ink); margin: 28px 0 10px 0; }
.legal-prose p, .legal-prose li { font-size: 16.5px; line-height: 1.7; color: var(--hk-body); }


/* --------------------------------------------------------------------------
   Post footer: service CTA, author box, related posts; author page; footer social
   -------------------------------------------------------------------------- */
.post-service-cta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; margin: 44px 0 8px; padding: 26px 28px; background: var(--hk-pale); border: 1px solid var(--hk-line); border-radius: 16px; }
.post-service-cta h2 { margin: 4px 0 6px; }
.post-service-cta p { margin: 0; color: var(--hk-muted); }
.post-service-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.post-service-cta .btn { padding: 12px 20px; border-radius: 8px; font-size: 15px; }
.post-service-cta .btn--ghost { background: transparent; border: 1.5px solid var(--hk-blue); color: var(--hk-blue); }
.post-service-cta .btn--ghost:hover { background: var(--hk-blue); color: #FFFFFF; }
.author-box { display: flex; gap: 20px; align-items: flex-start; margin: 36px 0 0; padding: 24px 0 0; border-top: 1px solid var(--hk-line); }
.author-box img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; flex-shrink: 0; }
.author-box__eyebrow { margin: 0; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--hk-muted-3); }
.author-box__name { margin: 2px 0 0; font-size: 20px; }
.author-box__name a { color: var(--hk-ink); }
.author-box__role { margin: 0 0 8px; font-size: 14.5px; font-weight: 600; color: var(--hk-blue); }
.author-box__bio { margin: 0 0 8px; color: var(--hk-muted); line-height: 1.6; }
.author-box__links { margin: 0; font-weight: 600; font-size: 15px; }
.related-posts { margin-top: 44px; }
.author-hero__grid { display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: start; }
.author-hero__grid img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; border: 4px solid rgba(255,255,255,0.15); }
.author-hero__role { font-weight: 700; margin-top: 0; }
.author-hero__links { font-weight: 600; }
@media (max-width: 640px) { .author-hero__grid { grid-template-columns: 1fr; } .author-hero__grid img { width: 120px; height: 120px; } .author-box { flex-direction: column; } }
.site-footer__social { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 14px; font-weight: 600; }
.site-footer__social a { color: var(--hk-blue); }
