:root {
  /* HSU logo: bright red, black, white */
  --brand: #e30613;
  --brand-hover: #c00510;
  --brand-light: #ff2433;
  --brand-dim: rgba(227, 6, 19, 0.12);
  --black: #111111;
  --black-soft: #1c1c1c;
  --cream: #ffffff;
  --white: #ffffff;
  --text: #111111;
  --muted: #4a4a4a;
  --border: rgba(17, 17, 17, 0.1);
  --shadow: 0 20px 50px rgba(17, 17, 17, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 116px;
  --preview-h: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--preview-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

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

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--black); }

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Preview banner */
.preview-banner {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  min-height: var(--preview-h);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: #fef3c7;
  color: #78350f;
  border-bottom: 1px solid #fcd34d;
}

.preview-banner a {
  color: #92400e;
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: 5.25rem;
  width: auto;
  max-width: min(420px, 78vw);
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 720px) {
  .brand__logo {
    height: 3.5rem;
    max-width: min(280px, 72vw);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.site-nav a:not(.btn):hover { color: var(--brand); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.85rem 1.6rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(17, 17, 17, 0.9) 0%,
    rgba(17, 17, 17, 0.62) 45%,
    rgba(17, 17, 17, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  padding: 4rem 0 3.5rem;
}

.hero h1 {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.hero__stats span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-light);
}

.hero .eyebrow { color: #ff8a92; }

/* Trust strip */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
}

.trust__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted);
}

.trust__item strong { color: var(--text); }

.trust__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  background: var(--brand-dim);
  color: var(--brand);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: #f7f7f7;
}

.section__head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__head h2,
.split__content h2,
.quote-intro h2,
.areas h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}

.section__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Service cards */
.cards--services {
  display: grid;
  gap: 1.5rem;
}

.card--service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card--service:nth-child(even) .card__img { order: 2; }

.card__img {
  min-height: 220px;
  background: var(--black-soft);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
}

.card__body > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card__body li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  background: var(--brand-dim);
  color: var(--brand);
  border-radius: 999px;
}

/* Split / why */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__content p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.checklist {
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--brand);
  border-radius: 2px;
}

.split__visual {
  position: relative;
}

.split__visual > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.quote-card {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  max-width: 280px;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand);
}

.quote-card p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
}

.quote-card cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps li {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

.steps h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--black);
}

.steps p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Reviews */
.reviews {
  display: grid;
  gap: 1.25rem;
}

.review {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.review--featured {
  grid-column: 1 / -1;
  padding: 2rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  border: none;
}

.review--featured p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.review--featured footer {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.review p {
  margin: 0 0 0.75rem;
  color: var(--text);
}

.review footer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.review footer span {
  font-weight: 400;
  color: var(--muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Areas */
.areas {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.areas p { color: var(--muted); margin: 0; }

.areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areas__tags li {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Quote / CTA */
.section--cta {
  background: var(--black);
  color: var(--white);
}

.section--cta .eyebrow { color: #ff8a92; }

.section--cta h2 { color: var(--white); }

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.quote-intro p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: block;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.contact-card__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.2rem;
}

.contact-card__value {
  font-weight: 600;
  font-size: 1rem;
}

.quote-form {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-dim);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.form-note.is-success {
  color: var(--brand);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand p { margin: 0; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer__nav a:hover { color: var(--white); }

/* Clients page */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  max-width: 48rem;
}

.page-hero h1 {
  margin: 0.35rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--black);
}

.page-hero__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero__lead:last-child {
  margin-bottom: 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

a.client-card:hover {
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.client-card img,
.client-card__svg {
  display: block;
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-card__svg {
  max-height: 52px;
}

.client-card img.client-logo--merz {
  max-width: min(112px, 42%);
  max-height: 80px;
  border-radius: 12px;
}

.clients-cta {
  margin: 2.5rem 0 0;
  text-align: center;
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .card--service,
  .card--service:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .card--service:nth-child(even) .card__img { order: 0; }

  .split,
  .quote-layout,
  .areas {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .steps { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: calc(var(--preview-h) + var(--header-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a:not(.btn) {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .reviews__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.25rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}