/*!
 * Hass Transport - main stylesheet
 * Mobile-first, minify-ready, no external frameworks.
 */

:root {
  --ht-blue: #0b4fa2;
  --ht-blue-dark: #083a78;
  --ht-blue-light: #1e88e5;
  --ht-dark: #1f2933;
  --ht-dark-2: #151d25;
  --ht-gray: #5b6673;
  --ht-line: #e3e9f0;
  --ht-light: #f4f7fb;
  --ht-white: #fff;
  --ht-radius: 14px;
  --ht-radius-pill: 999px;
  --ht-shadow: 0 10px 30px rgba(15, 35, 65, .08);
  --ht-shadow-lg: 0 22px 60px rgba(15, 35, 65, .16);
  --ht-container: 1180px;
  --ht-font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ht-font-head: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ht-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ht-dark);
  background: var(--ht-white);
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }

a { color: var(--ht-blue); text-decoration: none; }
a:hover, a:focus { color: var(--ht-blue-dark); text-decoration: underline; }

:focus-visible { outline: 3px solid var(--ht-blue-light); outline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ht-font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 .6em;
  color: var(--ht-dark);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1.1rem; }
ul, ol { padding-left: 1.2rem; }

.container { width: 100%; max-width: var(--ht-container); margin: 0 auto; padding: 0 20px; }

.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section--light { background: var(--ht-light); }

.section__head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__title { margin-bottom: .5rem; }
.section__text { color: var(--ht-gray); margin: 0; }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ht-blue); margin: 0 0 .6rem;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.6rem; border-radius: var(--ht-radius-pill); border: 2px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1.2; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
  text-decoration: none !important;
}
.btn:hover, .btn:focus { transform: translateY(-2px); }
.btn .icon { width: 18px; height: 18px; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--primary { background: var(--ht-blue); color: var(--ht-white); box-shadow: 0 10px 24px rgba(11, 79, 162, .28); }
.btn--primary:hover, .btn--primary:focus { background: var(--ht-blue-dark); color: var(--ht-white); }
.btn--ghost { background: var(--ht-light); color: var(--ht-dark); }
.btn--ghost:hover, .btn--ghost:focus { background: #e7eef8; color: var(--ht-blue-dark); }
.btn--outline { border-color: rgba(255, 255, 255, .8); color: var(--ht-white); background: rgba(255, 255, 255, .08); }
.btn--outline:hover, .btn--outline:focus { background: var(--ht-white); color: var(--ht-blue-dark); }
.btn--light { background: var(--ht-white); color: var(--ht-blue-dark); }
.btn--outline-light { border-color: rgba(255, 255, 255, .55); color: var(--ht-white); }
.btn--outline-light:hover, .btn--outline-light:focus { background: rgba(255, 255, 255, .14); color: var(--ht-white); }

/* ---------------- Top bar ---------------- */
.topbar { background: var(--ht-dark); color: rgba(255, 255, 255, .85); font-size: .85rem; }
.topbar__inner { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; justify-content: center; padding-block: .55rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; margin: 0; }
.topbar__item .icon { width: 16px; height: 16px; color: var(--ht-blue-light); }
.topbar a { color: inherit; }
.topbar a:hover { color: var(--ht-white); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 999; background: var(--ht-white);
  border-bottom: 1px solid var(--ht-line); transition: box-shadow .2s ease, padding .2s ease;
}
.site-header.is-stuck { box-shadow: var(--ht-shadow); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .85rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none !important; color: var(--ht-blue); }
.brand__mark { display: inline-flex; color: var(--ht-blue); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--ht-font-head); font-size: 1.45rem; font-weight: 700; letter-spacing: .02em; color: var(--ht-dark); text-transform: uppercase; }
.brand__tagline { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ht-gray); }
.custom-logo { max-height: 60px; width: auto; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 42px; padding: 0 10px; border: 1px solid var(--ht-line);
  border-radius: 10px; background: var(--ht-white); cursor: pointer;
}
.nav-toggle__bar { display: block; height: 2px; background: var(--ht-dark); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-navigation {
  position: absolute; left: 0; right: 0; top: 100%; display: none;
  background: var(--ht-white); border-bottom: 1px solid var(--ht-line);
  padding: 1rem 20px 1.4rem; box-shadow: var(--ht-shadow);
}
.main-navigation.is-open { display: block; }

.nav-menu, .nav-menu ul { list-style: none; margin: 0; padding: 0; }
.nav-menu > li > a, .nav-menu li a {
  display: block; padding: .6rem 0; font-weight: 600; font-size: .97rem;
  color: var(--ht-dark); text-decoration: none;
}
.nav-menu li a:hover, .nav-menu li a:focus, .nav-menu .current-menu-item > a { color: var(--ht-blue); }
.nav-menu .sub-menu { padding-left: .9rem; display: none; }
.nav-menu .menu-item-has-children.is-open > .sub-menu { display: block; }

.main-navigation__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

@media (min-width: 1025px) {
  .nav-toggle { display: none; }
  .main-navigation {
    position: static; display: flex !important; align-items: center; gap: 1.6rem;
    background: none; border: 0; box-shadow: none; padding: 0;
  }
  .nav-menu { display: flex; align-items: center; gap: 1.35rem; }
  .nav-menu > li { position: relative; }
  .nav-menu > li > a { padding: .4rem 0; }
  .nav-menu .sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 230px; display: block;
    background: var(--ht-white); border-radius: 12px; box-shadow: var(--ht-shadow-lg);
    padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease; z-index: 20;
  }
  .nav-menu li:hover > .sub-menu, .nav-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
  .nav-menu .sub-menu a { padding: .5rem .7rem; border-radius: 8px; }
  .nav-menu .sub-menu a:hover { background: var(--ht-light); }
  .main-navigation__actions { margin: 0; }
}

/* ---------------- Breadcrumbs ---------------- */
.breadcrumbs { background: var(--ht-light); border-bottom: 1px solid var(--ht-line); font-size: .87rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: .7rem 0; }
.breadcrumbs li + li::before { content: '/'; margin-right: .4rem; color: var(--ht-gray); }
.breadcrumbs [aria-current='page'] { color: var(--ht-gray); }

/* ---------------- Hero ---------------- */
.hero { position: relative; display: flex; align-items: center; min-height: clamp(520px, 78vh, 760px); overflow: hidden; color: var(--ht-white); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 34, 62, .93) 0%, rgba(11, 79, 162, .78) 45%, rgba(21, 29, 37, .55) 100%);
}
.hero__inner { position: relative; padding: clamp(3.5rem, 8vw, 6rem) 20px; max-width: 820px; }
.hero__eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #bcd8ff; border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--ht-radius-pill); padding: .35rem 1rem; margin-bottom: 1.1rem;
}
.hero__title { color: var(--ht-white); font-size: clamp(2.3rem, 6.2vw, 4.2rem); margin-bottom: .8rem; text-wrap: balance; }
.hero__subtitle { font-size: clamp(1.03rem, 2vw, 1.3rem); color: rgba(255, 255, 255, .92); max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1rem; }
.hero__phone { font-size: 1rem; color: rgba(255, 255, 255, .85); }
.hero__phone a { color: var(--ht-white); font-weight: 700; font-size: 1.15rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; list-style: none; margin: 1.6rem 0 0; padding: 0; }
.hero__badges li { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; color: rgba(255, 255, 255, .9); }
.hero__badges .icon { width: 20px; height: 20px; color: #8fc4ff; }

/* ---------------- Grids & cards ---------------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--ht-white); border: 1px solid var(--ht-line); border-radius: var(--ht-radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--ht-shadow-lg); border-color: rgba(11, 79, 162, .25); }
.card--service { padding: 1.6rem 1.4rem; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 14px; background: rgba(11, 79, 162, .1); color: var(--ht-blue); margin-bottom: 1rem;
}
.card__title { margin-bottom: .5rem; font-size: 1.28rem; }
.card__title a { color: inherit; }
.card__text { color: var(--ht-gray); font-size: .95rem; margin-bottom: 1rem; }
.card__link { margin-top: auto; font-weight: 700; font-size: .9rem; text-decoration: none !important; }
.card__media { display: block; overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }

.feature { display: flex; gap: 1rem; padding: 1.4rem; border-radius: var(--ht-radius); background: var(--ht-light); border: 1px solid var(--ht-line); }
.section--light .feature { background: var(--ht-white); }
.feature__icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--ht-blue); color: var(--ht-white);
}
.feature__title { margin-bottom: .35rem; font-size: 1.18rem; }
.feature__text { margin: 0; color: var(--ht-gray); font-size: .93rem; }

/* ---------------- Stats ---------------- */
.stats { background: var(--ht-dark); color: var(--ht-white); padding: clamp(2.6rem, 5vw, 3.8rem) 0; }
.stats__grid { text-align: center; }
.stat__num { font-family: var(--ht-font-head); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; color: #8fc4ff; margin: 0; line-height: 1; }
.stat__label { margin: .45rem 0 0; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .78); }

/* ---------------- Testimonials ---------------- */
.quote { margin: 0; padding: 1.7rem 1.5rem; border-radius: var(--ht-radius); background: var(--ht-light); border: 1px solid var(--ht-line); }
.quote__stars { display: flex; gap: .15rem; color: #f5a623; margin-bottom: .9rem; }
.quote__stars .icon { width: 18px; height: 18px; fill: currentColor; }
.quote__text { margin: 0 0 1rem; font-size: 1rem; color: var(--ht-dark); }
.quote__text p { margin: 0; }
.quote__cite { display: flex; flex-direction: column; font-style: normal; }
.quote__name { font-weight: 700; }
.quote__role { font-size: .87rem; color: var(--ht-gray); }

/* ---------------- CTA ---------------- */
.cta { background: linear-gradient(120deg, var(--ht-blue-dark), var(--ht-blue) 60%, var(--ht-blue-light)); color: var(--ht-white); padding: clamp(2.8rem, 6vw, 4.4rem) 0; }
.cta__inner { display: flex; flex-direction: column; gap: 1.6rem; align-items: flex-start; }
.cta__title { color: var(--ht-white); margin-bottom: .4rem; }
.cta__text { margin: 0; color: rgba(255, 255, 255, .9); max-width: 620px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (min-width: 900px) {
  .cta__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------- Contact ---------------- */
.contact__grid { display: grid; gap: 1.6rem; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1.15fr .85fr; } }

.panel { background: var(--ht-white); border: 1px solid var(--ht-line); border-radius: var(--ht-radius); padding: 1.8rem; box-shadow: var(--ht-shadow); }
.panel__title { font-size: 1.35rem; margin-bottom: .8rem; }
.notice { background: var(--ht-light); border-left: 4px solid var(--ht-blue); padding: 1rem; border-radius: 8px; font-size: .92rem; color: var(--ht-gray); }

.contact__list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 1rem; }
.contact__list li { display: flex; gap: .9rem; }
.contact__list strong { display: block; font-family: var(--ht-font-head); text-transform: uppercase; letter-spacing: .05em; font-size: .92rem; }
.contact__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: rgba(11, 79, 162, .1); color: var(--ht-blue); }
.contact__map { border-radius: var(--ht-radius); overflow: hidden; border: 1px solid var(--ht-line); }
.contact__map iframe { display: block; width: 100%; height: 320px; border: 0; }
.contact__map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  text-align: center; min-height: 240px; padding: 1.6rem; background: var(--ht-light); color: var(--ht-gray);
}
.contact__map-placeholder .icon { width: 42px; height: 42px; color: var(--ht-blue); }

/* Forms (also styles Contact Form 7 output) */
input[type='text'], input[type='email'], input[type='url'], input[type='tel'], input[type='number'],
input[type='search'], input[type='date'], select, textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; color: var(--ht-dark);
  background: var(--ht-white); border: 1px solid var(--ht-line); border-radius: 10px;
}
textarea { min-height: 140px; }
input:focus, select:focus, textarea:focus { border-color: var(--ht-blue); outline: none; box-shadow: 0 0 0 3px rgba(11, 79, 162, .14); }
label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .35rem; }
.wpcf7-form p { margin-bottom: 1rem; }
.wpcf7-submit, button, input[type='submit'] {
  font: inherit; font-weight: 600; cursor: pointer; border: 0; border-radius: var(--ht-radius-pill);
  padding: .8rem 1.7rem; background: var(--ht-blue); color: var(--ht-white);
}
.wpcf7-submit:hover, input[type='submit']:hover { background: var(--ht-blue-dark); }
.nav-toggle, .btn { }

/* ---------------- Newsletter ---------------- */
.newsletter { background: var(--ht-dark-2); color: var(--ht-white); padding: clamp(2.4rem, 5vw, 3.4rem) 0; }
.newsletter__inner { display: grid; gap: 1.4rem; align-items: center; }
@media (min-width: 900px) { .newsletter__inner { grid-template-columns: 1.1fr .9fr; } }
.newsletter__title { color: var(--ht-white); margin-bottom: .4rem; }
.newsletter__text { margin: 0; color: rgba(255, 255, 255, .78); }
.newsletter__form { display: flex; flex-wrap: wrap; gap: .7rem; }
.newsletter__form input { flex: 1 1 220px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ht-dark); color: rgba(255, 255, 255, .78); padding-top: clamp(2.6rem, 6vw, 4rem); }
.footer__grid { display: grid; gap: 2rem; padding-bottom: 2.4rem; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.site-footer .brand__name, .site-footer h2, .site-footer .footer__heading { color: var(--ht-white); }
.footer__heading { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.footer__text { font-size: .93rem; }
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: var(--ht-white); }
.footer__menu, .footer__contact, .footer__legal, .social { list-style: none; margin: 0; padding: 0; }
.footer__menu li, .footer__contact li { padding: .3rem 0; font-size: .93rem; }
.footer__contact li { display: flex; align-items: center; gap: .6rem; }
.footer__contact .icon { width: 18px; height: 18px; color: var(--ht-blue-light); flex: 0 0 auto; }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .1); color: var(--ht-white); }
.social a:hover { background: var(--ht-blue); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.1rem 0; font-size: .88rem; }
.site-footer__bottom-inner { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; justify-content: space-between; }
.site-footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------------- Page heads & layout ---------------- */
.page-hero { background: linear-gradient(120deg, var(--ht-blue-dark), var(--ht-blue)); color: var(--ht-white); padding: clamp(2.8rem, 6vw, 4.6rem) 0; }
.page-hero--compact { padding: clamp(2rem, 4vw, 3rem) 0; }
.page-hero__title { color: var(--ht-white); margin-bottom: .5rem; }
.page-hero__text { margin: 0; color: rgba(255, 255, 255, .88); max-width: 720px; }
.page-hero .eyebrow { color: #bcd8ff; }

.page-head { max-width: 760px; margin-bottom: 2.4rem; }
.page-title { margin-bottom: .5rem; }
.page-subtitle { color: var(--ht-gray); margin: 0; }
.page-head__search { margin-top: 1.2rem; }

.layout { display: grid; gap: 2.4rem; }
@media (min-width: 1000px) { .layout--sidebar { grid-template-columns: minmax(0, 1fr) 320px; } }

.entry-content > * + * { margin-top: 1.1rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content h3 { margin-top: 1.6rem; }
.entry-content blockquote {
  margin: 1.6rem 0; padding: 1.2rem 1.4rem; border-left: 4px solid var(--ht-blue);
  background: var(--ht-light); border-radius: 0 12px 12px 0;
}
.entry-content img, .entry-media img { border-radius: var(--ht-radius); }
.entry-media { margin: 0 0 1.8rem; }
.entry-header { margin-bottom: 1.4rem; }
.entry-title { margin-bottom: .5rem; }
.entry-meta { display: flex; flex-wrap: wrap; gap: .3rem 1rem; color: var(--ht-gray); font-size: .87rem; margin: 0 0 .8rem; }
.entry-meta a { color: inherit; }
.entry-footer { margin-top: 2rem; }
.entry-tags a { display: inline-block; background: var(--ht-light); padding: .25rem .8rem; border-radius: var(--ht-radius-pill); font-size: .82rem; margin: 0 .3rem .4rem 0; }
.entry--fullwidth { max-width: none; }
.legal { max-width: 820px; }
.about__grid { display: grid; gap: 2rem; }
@media (min-width: 980px) { .about__grid { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; } }
.about__panel { position: sticky; top: 110px; display: grid; gap: .8rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist .icon { color: var(--ht-blue); flex: 0 0 auto; width: 22px; height: 22px; }

/* Widgets */
.widget { background: var(--ht-light); border: 1px solid var(--ht-line); border-radius: var(--ht-radius); padding: 1.4rem; margin-bottom: 1.4rem; }
.widget-title { font-size: 1.2rem; margin-bottom: .8rem; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: .35rem 0; border-bottom: 1px solid var(--ht-line); font-size: .93rem; }
.widget li:last-child { border-bottom: 0; }
.widget--cta { background: var(--ht-blue); border-color: var(--ht-blue); color: var(--ht-white); }
.widget--cta .widget-title { color: var(--ht-white); }
.widget--cta .btn { margin-top: .6rem; }

.search-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.search-form__field { flex: 1 1 200px; }

/* Pagination & navigation */
.pagination, .post-navigation { margin-top: 2.4rem; }
.pagination .nav-links, .post-navigation .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
  padding: 0 .7rem; border-radius: 10px; background: var(--ht-light); font-weight: 600; text-decoration: none;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--ht-blue); color: var(--ht-white); }
.post-navigation .nav-links { justify-content: space-between; gap: 1rem; }
.post-navigation a { display: block; padding: 1rem 1.2rem; border: 1px solid var(--ht-line); border-radius: var(--ht-radius); font-weight: 600; }
.nav-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ht-gray); }

/* Comments */
.comments-area { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--ht-line); }
.comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.comment-list ol.children { list-style: none; padding-left: 1.2rem; }
.comment-body { padding: 1.2rem 0; border-bottom: 1px solid var(--ht-line); }
.comment-author img { border-radius: 50%; }
.comment-meta { font-size: .87rem; color: var(--ht-gray); }
.comment-form { display: grid; gap: 1rem; }

/* 404 */
.error-404 { text-align: center; max-width: 660px; margin: 0 auto; }
.error-404__code { font-family: var(--ht-font-head); font-size: clamp(5rem, 18vw, 10rem); line-height: 1; color: rgba(11, 79, 162, .18); margin: 0; }
.error-404__search { max-width: 460px; margin: 1.6rem auto; }
.error-404__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.no-results { max-width: 640px; }
.no-results__contact { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

/* Back to top */
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 50%; background: var(--ht-blue); color: var(--ht-white); text-decoration: none !important;
  box-shadow: var(--ht-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* WooCommerce light touches */
.woocommerce ul.products li.product a img { border-radius: var(--ht-radius); }
.woocommerce span.onsale { background: var(--ht-blue); border-radius: var(--ht-radius-pill); }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  border-radius: var(--ht-radius-pill); background: var(--ht-blue); color: var(--ht-white); font-weight: 600;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--ht-blue-dark); color: var(--ht-white); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .site-header, .topbar, .site-footer, .newsletter, .back-to-top, .breadcrumbs, .hero__actions { display: none !important; }
  body { color: #000; }
}
