:root {
  --hh-navy: #0d2f56;
  --hh-blue: #2487f2;
  --hh-orange: #ff8a00;
  --hh-ink: #0e2848;
  --hh-text: #31445e;
  --hh-soft: #edf6ff;
  --hh-line: rgba(13, 47, 86, 0.12);
  --hh-card: #ffffff;
  --hh-bg: #f6f8fc;
  --hh-radius-lg: 32px;
  --hh-radius-md: 22px;
  --hh-radius-sm: 16px;
  --hh-shadow: 0 18px 48px rgba(13, 47, 86, 0.12);
}

body.info-page {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--hh-text);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 40%);
}

.info-page * {
  box-sizing: border-box;
}

.info-page a {
  color: var(--hh-blue);
  text-decoration: none;
}

.info-page img {
  display: block;
  max-width: 100%;
}

.info-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.info-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(13, 47, 86, 0.08);
}

.info-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}

.info-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}

.info-brand img {
  width: auto;
  max-width: 180px;
  max-height: 42px;
  object-fit: contain;
}

.info-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hh-line);
  border-radius: 14px;
  background: #fff;
  color: var(--hh-navy);
}

.info-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.info-nav__links,
.info-nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-nav__links a,
.info-nav__dropdown summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hh-ink);
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-nav__dropdown {
  position: relative;
}

.info-nav__dropdown summary::-webkit-details-marker {
  display: none;
}

.info-nav__dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.info-nav__dropdown[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.info-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hh-line);
  box-shadow: var(--hh-shadow);
}

.info-nav__dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--hh-ink);
}

.info-nav__dropdown-menu a:hover,
.info-nav__dropdown-menu a[aria-current="page"] {
  background: var(--hh-soft);
  color: var(--hh-blue);
}

.info-phone {
  font-weight: 700;
  color: var(--hh-ink);
}

.info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--hh-navy);
  color: #fff !important;
  font-weight: 700;
  border: 1px solid rgba(13, 47, 86, 0.06);
  box-shadow: 0 14px 28px rgba(13, 47, 86, 0.18);
}

.info-subnav {
  border-bottom: 1px solid rgba(13, 47, 86, 0.08);
  background: #fff;
}

.info-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(36, 135, 242, 0.14);
  background: #f3f8ff;
  color: var(--hh-ink);
  font-weight: 600;
}

.info-pill[aria-current="page"],
.info-pill.is-active,
.info-pill:hover {
  background: #145b9d;
  color: #fff;
}

.info-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}

.info-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(13, 47, 86, 0.76), rgba(36, 135, 242, 0.78)),
    var(--hero-image, linear-gradient(135deg, #0d2f56 0%, #2487f2 100%));
  background-size: cover;
  background-position: center;
}

.info-hero .info-container {
  position: relative;
  z-index: 1;
}

.info-hero__wrap {
  width: min(760px, 100%);
  padding: 44px;
  border-radius: var(--hh-radius-lg);
  background: linear-gradient(180deg, rgba(10, 34, 68, 0.44), rgba(36, 135, 242, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(7, 27, 54, 0.22);
  backdrop-filter: blur(14px);
}

.info-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.92);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.info-hero h1 {
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.info-hero p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.75;
}

.info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-button,
.info-button--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.info-button {
  background: #0d2f56;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 38px rgba(13, 47, 86, 0.32);
}

.info-button:hover,
.info-button--secondary:hover,
.info-cta:hover {
  transform: translateY(-1px);
}

.info-button--dark {
  background: rgba(7, 24, 46, 0.96);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 38px rgba(7, 24, 46, 0.34);
}

.info-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #0d2f56 !important;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(7, 24, 46, 0.14);
}

.info-hero__actions .info-button,
.info-hero__actions .info-button--dark,
.info-hero__actions .info-button--secondary {
  min-width: 220px;
}

.info-button:hover,
.info-button--dark:hover {
  background: #15457a;
  color: #fff !important;
}

.info-button--secondary:hover {
  background: #f4f8ff;
  color: #0d2f56 !important;
  border-color: #ffffff;
}

.info-button:focus-visible,
.info-button--dark:focus-visible,
.info-button--secondary:focus-visible,
.info-cta:focus-visible,
.info-pill:focus-visible,
.info-menu-toggle:focus-visible {
  outline: 3px solid rgba(36, 135, 242, 0.45);
  outline-offset: 3px;
}

.info-main {
  padding: 28px 0 88px;
}

.info-section {
  padding: 34px 0;
}

.info-section h2 {
  margin: 0 0 14px;
  color: var(--hh-navy);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.info-section h3 {
  margin: 0 0 10px;
  color: var(--hh-navy);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  line-height: 1.16;
}

.info-section p,
.info-section li {
  font-size: 1.02rem;
  line-height: 1.78;
}

.info-grid {
  display: grid;
  gap: 22px;
}

.info-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 28px;
  border-radius: var(--hh-radius-md);
  background: var(--hh-card);
  border: 1px solid var(--hh-line);
  box-shadow: 0 10px 26px rgba(13, 47, 86, 0.06);
}

.info-card--soft {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--hh-navy);
}

.info-link::after {
  content: "->";
}

.info-checklist,
.info-list {
  margin: 0;
  padding-left: 18px;
}

.info-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-stat {
  padding: 24px;
  border-radius: var(--hh-radius-md);
  background: linear-gradient(135deg, #0d2f56 0%, #1b4e84 100%);
  color: #fff;
}

.info-stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.info-person {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
}

.info-avatar {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  object-fit: cover;
  background: #dbe9fb;
}

.gallery-toolbar {
  position: sticky;
  top: 92px;
  z-index: 10;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--hh-line);
  backdrop-filter: blur(16px);
}

.gallery-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dbe9fb;
}

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

.gallery-compare {
  --split: 50%;
}

.gallery-compare__after,
.gallery-compare__before {
  position: absolute;
  inset: 0;
}

.gallery-compare__after {
  clip-path: inset(0 0 0 var(--split));
}

.gallery-compare__before::after {
  content: "Before";
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 47, 86, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-compare__after::after {
  content: "After";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-compare__divider {
  position: absolute;
  inset: 0 auto 0 var(--split);
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(13, 47, 86, 0.08);
}

.gallery-compare__divider::after {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  color: var(--hh-navy);
  font-size: 0.8rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
  box-shadow: var(--hh-shadow);
}

.gallery-compare input[type="range"] {
  position: absolute;
  inset: auto 16px 16px;
  width: calc(100% - 32px);
}

.gallery-card__body {
  padding: 24px;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.gallery-tag {
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--hh-blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.info-cta-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 24px 26px;
  border-radius: var(--hh-radius-lg);
  background: linear-gradient(135deg, #0d2f56 0%, #1d68c2 100%);
  color: #fff;
}

.info-cta-panel h2,
.info-cta-panel p {
  color: #fff;
}

.info-cta-panel .info-button {
  justify-self: end;
}

.info-footer {
  padding: 28px 0 22px;
  background: #081f3b;
  color: rgba(255, 255, 255, 0.72);
}

.info-footer__inner {
  display: grid;
  gap: 18px;
}

.info-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.info-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.info-footer__brand img {
  max-width: 142px;
}

.info-footer__links,
.info-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.info-footer__bottom {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}

.info-footer a {
  color: #fff;
}

.info-flow {
  display: grid;
  gap: 22px;
}

.info-flow-item {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(13, 47, 86, 0.1);
}

.info-flow-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-flow-item__label {
  color: var(--hh-navy);
}

.info-flow-item__label h3 {
  margin-bottom: 6px;
}

.info-flow-item__label p {
  margin: 0;
  color: #58708e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-flow-item__content p:first-child {
  margin-top: 0;
}

.info-flow-item__content p:last-child {
  margin-bottom: 0;
}

.info-intro-copy {
  max-width: 72ch;
}

.info-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

[hidden-card] {
  display: none !important;
}

@media (max-width: 959px) {
  .info-header__inner {
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
  }

  .info-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 4;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    font-size: 0;
    position: relative;
  }

  .info-menu-toggle::before,
  .info-menu-toggle::after,
  .info-menu-toggle span {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    height: 3px;
    border-radius: 999px;
    background: #111;
  }

  .info-menu-toggle::before {
    top: 11px;
  }

  .info-menu-toggle::after {
    bottom: 11px;
  }

  .info-menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
  }

  .info-header.is-open .info-menu-toggle::before {
    top: 19px;
    transform: rotate(45deg);
  }

  .info-header.is-open .info-menu-toggle::after {
    bottom: 20px;
    transform: rotate(-45deg);
  }

  .info-header.is-open .info-menu-toggle span {
    opacity: 0;
  }

  .info-nav {
    display: contents;
  }

  .info-nav__actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .info-phone {
    display: none;
  }

  .info-cta {
    min-height: 42px;
    padding: 0 16px;
    background: #0d2f56 !important;
    color: #fff !important;
    box-shadow: none;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .info-nav__links {
    display: none;
    grid-column: 1 / -1;
    margin-top: 10px;
    border-top: 1px solid rgba(13, 47, 86, 0.08);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .info-header.is-open .info-nav__links {
    display: flex;
  }

  .info-nav__links > a,
  .info-nav__links > .info-nav__dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(13, 47, 86, 0.08);
  }

  .info-nav__links > a[href="/see-our-work/"] {
    display: none;
  }

  .info-nav__links a,
  .info-nav__dropdown summary {
    justify-content: space-between;
    min-height: 72px;
    font-size: 1.28rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .info-nav__dropdown summary::after {
    width: auto;
    height: auto;
    margin-left: 14px;
    border: 0;
    transform: none;
    content: "+";
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
  }

  .info-nav__dropdown[open] summary::after {
    transform: none;
    content: "-";
  }

  .info-nav__dropdown-menu {
    position: static;
    margin-top: 0;
    padding: 0 0 12px 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .info-nav__dropdown-menu a {
    padding: 10px 0 10px 12px;
    border-radius: 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .info-hero__wrap,
  .info-card,
  .info-cta-panel {
    padding: 24px;
  }

  .info-hero__actions .info-button,
  .info-hero__actions .info-button--dark,
  .info-hero__actions .info-button--secondary {
    min-width: 0;
    width: 100%;
  }

  .info-flow-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-grid--two,
  .info-grid--three,
  .info-stat-grid,
  .info-cta-panel {
    grid-template-columns: 1fr;
  }

  .info-person {
    grid-template-columns: 1fr;
  }

  .gallery-toolbar {
    top: 82px;
    border-radius: 24px;
  }

  .info-cta-panel .info-button {
    justify-self: start;
  }

  .info-footer__top,
  .info-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .info-container {
    width: min(100% - 24px, 1180px);
  }

  .info-header__inner {
    min-height: 72px;
    gap: 8px;
    grid-template-columns: auto 1fr auto auto;
  }

  .info-brand img {
    max-width: 106px;
    max-height: 34px;
  }

  .info-nav__actions {
    gap: 0;
  }

  .info-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }

  .info-button,
  .info-button--secondary {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  .info-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .info-hero {
    padding-top: 54px;
  }

  .info-hero__wrap {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .info-section {
    padding: 26px 0;
  }

  .gallery-toolbar {
    padding: 12px;
  }
}
