:root {
  --hh-blue: #2684ea;
  --hh-navy: #061638;
  --hh-sky: #dceaf8;
  --hh-ink: #344054;
  --hh-cream: #f4f5f7;
  --hh-border: #d5dbe5;
  --hh-green: #0c5b45;
  --hh-gold: #ffd45a;
  --hh-shadow: 0 18px 48px rgba(6, 22, 56, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--hh-ink);
  background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(6, 22, 56, 0.08);
}

.site-shell__inner,
.site-footer__inner,
.page-wrap {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-shell__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-shell__panel {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
}

.brandmark img {
  width: 164px;
  max-height: 42px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--hh-navy);
  margin-right: auto;
}

.site-shell__menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px 4px;
  margin-left: auto;
  cursor: pointer;
}

.site-shell__menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--hh-navy);
  transition: transform 140ms ease, opacity 140ms ease;
}

.site-shell__menu-button span + span {
  margin-top: 5px;
}

.site-shell__cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-shell__phone {
  font-weight: 700;
  color: var(--hh-navy);
}

.site-shell__cta,
.text-link {
  transition: transform 140ms ease, opacity 140ms ease;
}

.site-shell__cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.site-shell__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--hh-blue);
  color: #fff;
  font-weight: 800;
  min-width: max-content;
  white-space: nowrap;
}

.text-link {
  color: var(--hh-blue);
  font-weight: 700;
}

.page-wrap {
  padding: 40px 0 80px;
}

.hero-panel,
.cta-panel,
.profile-shell,
.content-card,
.pro-card,
.review-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 22, 56, 0.08);
  box-shadow: var(--hh-shadow);
}

.hero-panel {
  padding: 0;
  margin-bottom: 28px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(38, 132, 234, 0.18);
  color: var(--hh-navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h1,
.hero-panel h2,
.cta-panel h2,
.profile-shell h1,
.content-card h2,
.review-section h2 {
  margin: 16px 0 14px;
  color: var(--hh-blue);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.18;
}

.hero-panel p,
.cta-panel p,
.content-card p,
.pro-card__bio,
.profile-shell__intro p,
.review-card p {
  line-height: 1.8;
  font-size: 1rem;
}

.stack-grid {
  display: grid;
  gap: 28px;
}

.pro-card {
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 34px;
  border: 1px solid rgba(6, 22, 56, 0.04);
  box-shadow: 0 20px 42px rgba(6, 22, 56, 0.08);
}

.pro-card__hero {
  position: relative;
  padding: 32px 32px 0;
}

.pro-card__backdrop {
  height: 176px;
  border-radius: 24px;
  background: #dcecf9;
}

.pro-card__avatar-shell {
  margin-top: -128px;
  display: grid;
  justify-items: center;
}

.pro-card__avatar {
  width: min(234px, 48vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: #ff8a00;
  box-shadow: 0 20px 36px rgba(6, 22, 56, 0.12);
}

.pro-card__badge {
  margin-top: -14px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #024737;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pro-card__body {
  padding: 10px 28px 30px;
}

.pro-card__header,
.profile-shell__top,
.cta-panel {
  display: grid;
  gap: 24px;
}

.pro-card__header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.pro-card h2,
.profile-shell h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--hh-navy);
  line-height: 1.4;
}

.pro-card__role {
  color: var(--hh-blue);
  font-weight: 700;
  margin-top: 8px;
}

.pro-card__meta {
  text-align: right;
  display: grid;
  gap: 10px;
  align-content: start;
}

.pro-card__rating {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f7e8b4;
  color: #9f6f00;
  font-weight: 800;
}

.pro-card__county {
  font-size: 0.95rem;
  color: #6b7280;
}

.pro-card__experience {
  margin: 20px 0 0;
  color: var(--hh-green);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: center;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--hh-sky);
  color: #0d5ea6;
  font-size: 0.92rem;
  font-weight: 700;
}

.pro-card__support,
.profile-shell__proof,
.profile-shell__actions,
.profile-shell__qr-card {
  display: grid;
  gap: 20px;
}

.pro-card__support-copy p {
  margin: 0;
  max-width: 420px;
  color: #667085;
  font-size: 0.98rem;
  line-height: 1.6;
}

.pro-card__support {
  margin-top: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.review-card {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(6, 22, 56, 0.06);
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(6, 22, 56, 0.06);
}

.review-card__stars {
  color: var(--hh-gold);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.review-card p {
  margin: 0;
  color: var(--hh-ink);
  line-height: 1.75;
}

.review-card__quote {
  color: #013d40;
  font-size: 18pt;
  line-height: 1.28;
  font-weight: 800;
  text-align: center;
}

.review-card__author {
  color: var(--hh-navy);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
}

.pro-card__rating--empty {
  background: rgba(38, 132, 234, 0.1);
  color: var(--hh-blue);
}

.cta-panel {
  margin-top: 28px;
  padding: 28px 32px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.cta-panel__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.profile-shell {
  padding: 32px;
}

.profile-shell__top {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.profile-shell__proof {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 18px 0;
}

.profile-shell__proof span {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--hh-sky);
  color: var(--hh-navy);
  font-weight: 700;
}

.profile-shell__actions {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: start;
}

.profile-shell__photo {
  width: 100%;
  border-radius: 30px;
  display: block;
  background: #ff8a00;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.content-card {
  padding: 24px;
}

.content-card h2,
.review-section h2 {
  font-size: 1.6rem;
}

.link-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.review-section {
  margin-top: 28px;
}

.site-footer {
  background: var(--hh-navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 42px 0 56px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
  gap: 28px;
}

.site-footer__brand img {
  width: 120px;
  display: block;
  margin-bottom: 16px;
}

.site-footer__links,
.site-footer__apps {
  display: grid;
  gap: 10px;
}

@media (max-width: 960px) {
  .site-shell__inner,
  .site-footer__inner,
  .pro-card__support,
  .profile-shell__top,
  .content-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .site-shell__inner {
    padding: 18px 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .site-shell__menu-button {
    display: block;
  }

  .site-shell__panel {
    width: 100%;
    display: none;
    margin-left: 0;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(6, 22, 56, 0.08);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-shell.is-open .site-shell__panel {
    display: grid;
  }

  .site-shell.is-open .site-shell__menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-shell.is-open .site-shell__menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-shell.is-open .site-shell__menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav,
  .site-shell__cta-group {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-shell__cta-group {
    display: grid;
    gap: 12px;
    justify-items: start;
  }

  .pro-card__header {
    grid-template-columns: 1fr;
  }

  .pro-card__meta {
    text-align: left;
  }

  .cta-panel__actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .page-wrap {
    width: min(1180px, calc(100vw - 20px));
    padding-top: 24px;
  }

  .hero-panel,
  .pro-card__hero,
  .pro-card__body,
  .profile-shell,
  .content-card,
  .review-card,
  .cta-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-panel h1,
  .hero-panel h2,
  .cta-panel h2,
  .profile-shell h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .pro-card__avatar {
    width: min(220px, 68vw);
  }

  .site-shell__cta,
  .site-shell__phone {
    width: 100%;
    justify-content: center;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}
