/*
Theme Name: Implant Guide Hub
Theme URI: https://implantguidehub.com/
Author: Aomark Website Studio
Description: A native Gutenberg block theme for the Implant Guide Hub editorial resource.
Version: 2.0.1
Requires at least: 6.7
Requires PHP: 8.1
Text Domain: implant-guide-hub
*/

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/nunito-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 1000;
  font-display: swap;
}

:root {
  --igh-ink: #10111a;
  --igh-muted: #656777;
  --igh-indigo: #292a8f;
  --igh-indigo-dark: #1d1e68;
  --igh-coral: #ef5b62;
  --igh-blush: #f9dfe1;
  --igh-blush-strong: #f6cdd1;
  --igh-powder: #dcecf8;
  --igh-line: #e7dfe4;
  --igh-white: #fff;
  --igh-display: "Nunito Sans", sans-serif;
  --igh-body: "Nunito Sans", sans-serif;
  --igh-max: 1320px;
  --igh-shadow: 0 28px 70px rgba(41, 42, 143, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--igh-ink);
  background: #fff;
  font-family: var(--igh-body);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.igh-main,
.igh-main > .wp-block-post-content,
.igh-main > .wp-block-post-content > * {
  margin-block-start: 0;
}

.igh-main + .wp-block-template-part {
  margin-block-start: 0;
}

.igh-article > .wp-block-post-featured-image {
  margin-block-start: 0;
}

.igh-404-stage {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 660px;
  padding: 90px 20px;
  text-align: center;
}

.igh-404-stage > * {
  max-width: 720px;
}

.igh-error-code {
  color: var(--igh-coral);
  font-family: var(--igh-display);
  font-size: clamp(82px, 14vw, 176px);
  font-weight: 800;
  line-height: .8;
  margin: 0;
}

.igh-404-stage h1 {
  font-family: var(--igh-display);
  font-size: clamp(38px, 5vw, 66px);
  margin-bottom: 14px;
}

.igh-404-stage .wp-block-buttons {
  margin-top: 28px;
}

.igh-404-stage .wp-block-button__link {
  border-radius: 9px;
  font-weight: 700;
  padding: 14px 22px;
}

body.admin-bar .igh-header {
  top: 32px;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

button, input, textarea, select {
  font: inherit;
}

button, .igh-button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--igh-coral);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.igh-shell {
  width: min(calc(100% - 80px), var(--igh-max));
  margin-inline: auto;
}

.igh-section {
  padding: 112px 0;
  position: relative;
}

.igh-section--tight {
  padding: 76px 0;
}

.igh-eyebrow {
  margin: 0 0 14px;
  color: var(--igh-coral);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.igh-eyebrow--center {
  text-align: center;
}

.igh-title {
  max-width: 880px;
  margin: 0;
  font-family: var(--igh-display);
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

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

.igh-lede {
  max-width: 690px;
  color: var(--igh-muted);
  font-size: 19px;
}

.igh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid var(--igh-indigo);
  border-radius: 10px;
  background: var(--igh-indigo);
  color: #fff;
  font-family: var(--igh-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.igh-button:hover {
  background: var(--igh-indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(41,42,143,.18);
}

.igh-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--igh-indigo);
}

.igh-arrow {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-left: auto;
  border-radius: 10px;
  background: var(--igh-powder);
  color: var(--igh-indigo);
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.igh-arrow__icon {
  width: 21px;
  height: 21px;
}

.igh-arrow:hover {
  transform: translate(3px,-3px);
  background: var(--igh-blush);
}

.igh-skip {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  background: #fff;
  color: var(--igh-indigo);
}

.igh-skip:focus {
  top: 16px;
}

.igh-topbar {
  min-height: 44px;
  background: var(--igh-blush);
  font-size: 13px;
}

.igh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

.igh-topbar a {
  color: var(--igh-indigo);
  font-weight: 700;
}

.igh-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16,17,26,.06);
  backdrop-filter: blur(16px);
}

.igh-nav {
  display: flex;
  align-items: center;
  min-height: 96px;
  gap: 30px;
}

.igh-logo {
  flex: 0 0 auto;
  display: block;
  width: 265px;
  text-decoration: none;
}

.igh-logo img {
  width: 100%;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.igh-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.igh-menu a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-family: var(--igh-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.igh-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--igh-coral);
  transition: right .2s ease;
}

.igh-menu a:hover::after, .igh-menu a[aria-current="page"]::after {
  right: 0;
}

.igh-menu a[aria-current="page"] {
  color: var(--igh-coral);
}

.igh-search-link {
  display: none;
  text-decoration: none;
}

.igh-header-search {
  display: flex;
  align-items: center;
  width: 176px;
  margin-left: 2px;
  border-bottom: 1px solid rgba(31, 37, 99, .28);
}

.igh-header-search input {
  width: 100%;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--igh-ink);
  font: inherit;
  font-size: 14px;
}

.igh-header-search input::placeholder {
  color: rgba(16, 17, 26, .48);
}

.igh-header-search:focus-within {
  border-color: var(--igh-indigo);
}

.igh-header-search button {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.igh-header-search img,
.igh-search-link img {
  width: 18px;
  height: 18px;
}

.igh-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--igh-indigo);
  color: #fff;
}

.igh-menu-toggle span, .igh-menu-toggle::before, .igh-menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.igh-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--igh-blush);
}

.igh-hero::before, .igh-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background: repeating-radial-gradient(ellipse at 10% 20%, transparent 0 16px, rgba(239,91,98,.28) 17px 18px, transparent 19px 34px);
  transform: scale(1.2);
  pointer-events: none;
}

.igh-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: stretch;
  min-height: 660px;
}

.igh-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 84px 32px 84px 0;
}

.igh-hero__kicker {
  margin: 0 0 18px;
  font-weight: 700;
}

.igh-hero h1 {
  max-width: 650px;
  margin: 0 0 26px;
  font-family: var(--igh-display);
  font-size: clamp(58px, 5.4vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}

.igh-hero h1 em {
  color: var(--igh-coral);
  font-style: normal;
}

.igh-hero__copy p:not(.igh-hero__kicker) {
  max-width: 560px;
  margin: 0 0 32px;
  color: #454652;
}

.igh-hero__media {
  position: relative;
  min-height: 660px;
}

.igh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.igh-hero__note {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  max-width: 250px;
  padding: 16px 18px;
  border-left: 4px solid var(--igh-coral);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--igh-shadow);
  color: #363742;
  font-size: 13px;
  line-height: 1.45;
}

.igh-hero__utility {
  position: relative;
  z-index: 4;
  background: rgba(255,255,255,.36);
  border-top: 1px solid rgba(41,42,143,.12);
}

.igh-hero__utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
  align-items: center;
  color: #3c3d49;
  font-size: 13px;
}

.igh-intro-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.igh-intro-row .igh-lede {
  margin: 0;
}

.igh-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.igh-guide-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 34px 34px 28px;
  border: 1px solid #dfe8ef;
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.igh-guide-card:nth-child(2n) {
  border-color: #f0dadd;
}

.igh-guide-card:hover {
  transform: translateY(-7px);
  border-color: var(--igh-coral);
  box-shadow: var(--igh-shadow);
}

.igh-icon {
  position: relative;
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
}

.igh-icon::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  right: 0;
  bottom: 1px;
  border-radius: 6px;
  background: var(--igh-blush);
}

.igh-guide-card:nth-child(2n) .igh-icon::before {
  background: var(--igh-powder);
}

.igh-icon img {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
}

.igh-guide-card h3 {
  margin: 0 0 12px;
  font-family: var(--igh-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.igh-guide-card p {
  margin: 0 0 24px;
  color: var(--igh-muted);
  font-size: 15px;
}

.igh-guide-card .igh-arrow {
  margin-top: auto;
}

.igh-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
}

.igh-collage {
  position: relative;
  min-height: 650px;
}

.igh-collage__main {
  width: 72%;
  height: 560px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--igh-shadow);
}

.igh-collage__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 330px;
  object-fit: cover;
  border: 14px solid #fff;
  border-radius: 30px;
  box-shadow: var(--igh-shadow);
}

.igh-collage__badge {
  position: absolute;
  z-index: 2;
  left: 55%;
  bottom: 30px;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 10px solid #fff;
  border-radius: 28px;
  background: var(--igh-coral);
  color: #fff;
  font-family: var(--igh-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: var(--igh-shadow);
}

.igh-prose h2 {
  margin: 0 0 24px;
  font-family: var(--igh-display);
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.igh-prose p {
  color: var(--igh-muted);
}

.igh-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 24px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.igh-checks li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.igh-checks__icon {
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  filter: invert(48%) sepia(88%) saturate(1301%) hue-rotate(319deg) brightness(101%) contrast(87%);
}

.igh-sidebox__arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  vertical-align: -.15em;
}

.igh-pathway {
  overflow: hidden;
  background: var(--igh-blush);
}

.igh-pathway__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}

.igh-pathway__media {
  position: relative;
  margin: -112px 0;
  align-self: stretch;
  min-height: 760px;
}

.igh-pathway__media img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: 56% center;
  mix-blend-mode: multiply;
}

.igh-pathway__list {
  display: grid;
  gap: 18px;
}

.igh-pathway-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(239,91,98,.55);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
}

.igh-pathway-card .igh-icon {
  width: 62px;
  height: 62px;
  margin: 0;
}

.igh-pathway-card .igh-icon img {
  width: 48px;
  height: 48px;
}

.igh-pathway-card h3 {
  margin: 0 0 2px;
  font-family: var(--igh-display);
  font-size: 21px;
}

.igh-pathway-card p {
  margin: 0;
  color: var(--igh-muted);
  font-size: 14px;
}

.igh-lenses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}

.igh-lens {
  min-height: 360px;
  padding: 38px;
  border: 1px solid var(--igh-line);
  border-radius: 20px;
}

.igh-lens:nth-child(2) {
  border-color: #cddde9;
}

.igh-lens h3 {
  margin: 14px 0 16px;
  font-family: var(--igh-display);
  font-size: 28px;
  line-height: 1.14;
}

.igh-lens ul {
  margin: 0;
  padding-left: 20px;
  color: var(--igh-muted);
}

.igh-lens li {
  margin-bottom: 10px;
}

.igh-wide-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 26px;
  box-shadow: var(--igh-shadow);
}

.igh-wide-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.igh-wide-media__caption {
  position: absolute;
  left: 50px;
  bottom: 50px;
  max-width: 500px;
  padding: 28px 32px;
  border-left: 5px solid var(--igh-coral);
  background: rgba(255,255,255,.94);
  box-shadow: var(--igh-shadow);
}

.igh-wide-media__caption h2 {
  margin: 0 0 10px;
  font-family: var(--igh-display);
  font-size: 35px;
  line-height: 1.08;
}

.igh-wide-media__caption p {
  margin: 0;
  color: var(--igh-muted);
}

.igh-news-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  margin-top: 52px;
}

.igh-story {
  overflow: hidden;
  border: 1px solid var(--igh-line);
  border-radius: 20px;
  background: #fff;
}

.igh-story a {
  text-decoration: none;
}

.igh-story__media {
  display: block;
  overflow: hidden;
  background: var(--igh-powder);
}

.igh-story__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .4s ease;
}

.igh-story:hover .igh-story__media img {
  transform: scale(1.035);
}

.igh-story--lead .igh-story__media img {
  height: 560px;
}

.igh-story__body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 28px 30px 24px;
}

.igh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 14px;
  color: #8a8790;
  font-size: 13px;
}

.igh-meta span::before {
  color: var(--igh-coral);
  margin-right: 7px;
}

.igh-meta__date::before {
  content: "□";
}

.igh-meta__topic::before {
  content: "◇";
}

.igh-story h3 {
  margin: 0 0 18px;
  font-family: var(--igh-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.igh-story--lead h3 {
  font-size: 38px;
}

.igh-story__body .igh-arrow {
  margin-top: auto;
}

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

.igh-news-stack .igh-story {
  display: grid;
  grid-template-columns: 42% 58%;
}

.igh-news-stack .igh-story__media img {
  height: 100%;
  min-height: 270px;
}

.igh-news-stack .igh-story__body {
  min-height: 270px;
}

.igh-news-more {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
}

.igh-news-more:has(.igh-story:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.igh-breadcrumb {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 260px;
  place-items: center;
  background: var(--igh-blush);
  text-align: center;
}

.igh-breadcrumb h1, .igh-breadcrumb__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--igh-display);
  font-size: clamp(46px,5vw,64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--igh-ink);
}

.igh-breadcrumb p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #555663;
}

.igh-about-principles {
  text-align: center;
}

.igh-principles-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.igh-principles-stage > .igh-principles-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--igh-shadow);
}

.igh-principle-list {
  display: grid;
  gap: 38px;
  text-align: left;
}

.igh-principle {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
}

.igh-principle .igh-icon {
  width: 62px;
  height: 62px;
  margin: 0;
}

.igh-principle h3 {
  margin: 0 0 4px;
  font-family: var(--igh-display);
  font-size: 19px;
}

.igh-principle p {
  margin: 0;
  color: var(--igh-muted);
  font-size: 14px;
}

.igh-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 70px;
  margin-top: 60px;
  text-align: center;
}

.igh-step {
  position: relative;
}

.igh-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 70%;
  width: 60%;
  border-top: 2px dotted #a7a9d3;
}

.igh-step .igh-icon {
  margin-inline: auto;
}

.igh-step strong {
  color: var(--igh-indigo);
}

.igh-step h3 {
  margin: 8px 0 12px;
  font-family: var(--igh-display);
  font-size: 23px;
}

.igh-archive-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.igh-archive-grid .igh-story__media img {
  height: 330px;
}

.igh-archive-grid .igh-story__body {
  min-height: 230px;
}

.igh-archive-grid .igh-story h2 {
  margin: 0 0 20px;
  font-family: var(--igh-display);
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.igh-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 64px;
}

.igh-article__lead {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 24px;
  background: var(--igh-powder);
}

.igh-article__lead img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.igh-article h1 {
  margin: 18px 0 24px;
  font-family: var(--igh-display);
  font-size: clamp(42px,4vw,58px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.igh-article__content {
  max-width: 850px;
}

.igh-article__content h2 {
  margin: 56px 0 16px;
  font-family: var(--igh-display);
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.igh-article__content h3 {
  margin: 36px 0 10px;
  font-family: var(--igh-display);
  font-size: 24px;
}

.igh-article__content p, .igh-article__content li {
  color: #4f505d;
}

.igh-article__content li {
  margin-bottom: 10px;
}

.igh-note {
  margin: 44px 0;
  padding: 26px 28px;
  border-left: 5px solid var(--igh-coral);
  background: var(--igh-blush);
}

.igh-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--igh-display);
}

.igh-sidebar {
  display: grid;
  gap: 26px;
  position: sticky;
  top: 136px;
}

.igh-sidebox {
  padding: 30px;
  border: 1px solid #edbec3;
  border-radius: 20px;
  background: #fff;
}

.igh-sidebox:nth-child(2) {
  border-color: #bdc6e4;
}

.igh-sidebox h2 {
  margin: 0 0 20px;
  font-family: var(--igh-display);
  font-size: 24px;
}

.igh-sidebox ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.igh-sidebox li + li {
  margin-top: 14px;
}

.igh-sidebox a {
  color: #454652;
  text-decoration: none;
}

.igh-sidebox a:hover {
  color: var(--igh-coral);
}

.igh-sidebox .igh-button,
.igh-sidebox .igh-button:hover {
  color: #fff;
}

.igh-sidebox p {
  color: var(--igh-muted);
  font-size: 14px;
}

.igh-contact-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.igh-contact-media {
  position: relative;
}

.igh-contact-media > .igh-contact-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--igh-shadow);
}

.igh-contact-medallion {
  position: absolute;
  right: -52px;
  bottom: 70px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--igh-shadow);
}

.igh-contact-medallion .igh-icon {
  margin: 0;
}

.igh-contact-details h2 {
  margin: 0 0 28px;
  font-family: var(--igh-display);
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.igh-contact-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  margin-top: 24px;
  align-items: center;
}

.igh-contact-item .igh-icon {
  width: 64px;
  height: 64px;
  margin: 0;
}

.igh-contact-item h3 {
  margin: 0 0 3px;
  font-family: var(--igh-display);
  font-size: 20px;
}

.igh-contact-item p {
  margin: 0;
  color: var(--igh-muted);
}

.igh-form-stage {
  background: var(--igh-powder);
}

.igh-form-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.igh-form {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.igh-form label {
  display: grid;
  gap: 7px;
  color: #4d4e5a;
  font-size: 14px;
  font-weight: 700;
}

.igh-form label.igh-field--wide {
  grid-column: 1 / -1;
}

.igh-form input, .igh-form textarea, .igh-form select {
  width: 100%;
  border: 1px solid #b9c2d0;
  border-radius: 10px;
  background: #fff;
  padding: 14px 15px;
  color: var(--igh-ink);
}

.igh-form textarea {
  min-height: 170px;
  resize: vertical;
}

.igh-form__consent {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: start;
  flex-direction: row;
  gap: 12px !important;
  font-weight: 400 !important;
}

.igh-form__consent input {
  width: 20px;
  margin-top: 5px;
}

.igh-form .igh-button {
  justify-self: start;
}

.igh-honeypot {
  position: absolute;
  left: -9999px;
}

.igh-alert {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-radius: 10px;
}

.igh-alert--success {
  background: #e7f6ec;
  color: #155b2e;
}

.igh-alert--error {
  background: #fff0f0;
  color: #8e2025;
}

.igh-legal {
  max-width: 880px;
  margin-inline: auto;
}

.igh-legal h2 {
  margin-top: 52px;
  font-family: var(--igh-display);
  font-size: 32px;
}

.igh-legal p, .igh-legal li {
  color: #4f505d;
}

.igh-search-form {
  display: flex;
  max-width: 720px;
  margin: 38px auto 0;
}

.igh-search-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid #b8bdd0;
  border-radius: 10px 0 0 10px;
  padding: 15px 18px;
}

.igh-search-form button {
  border-radius: 0 10px 10px 0;
}

.igh-empty {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 52px;
  border: 1px solid #edbec3;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.igh-empty h2 {
  font-family: var(--igh-display);
  font-size: 34px;
}

.igh-error-code {
  color: var(--igh-coral);
  font-family: var(--igh-display);
  font-size: clamp(100px,20vw,220px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.08em;
}

.igh-cta {
  overflow: hidden;
  background: var(--igh-indigo);
  color: #fff;
}

.igh-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.igh-cta h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--igh-display);
  font-size: clamp(38px,4vw,58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.igh-footer {
  background: var(--igh-powder);
  color: var(--igh-indigo-dark);
}

.igh-footer__top {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1.15fr;
  gap: 52px;
  padding: 78px 0 56px;
}

.igh-footer .igh-logo {
  width: 230px;
  margin-bottom: 22px;
}

.igh-footer p {
  color: #4e5670;
  font-size: 14px;
}

.igh-footer h2 {
  margin: 0 0 18px;
  font-family: var(--igh-display);
  font-size: 22px;
}

.igh-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.igh-footer li + li {
  margin-top: 9px;
}

.igh-footer a {
  text-decoration: none;
}

.igh-footer a:hover {
  color: var(--igh-coral);
}

.igh-footer__bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(41,42,143,.14);
  color: #59627a;
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.igh-hero__media img {
  animation: igh-float 7s ease-in-out infinite alternate;
}

@keyframes igh-float {
  to {
    transform: translateY(-8px) scale(1.01);
  }

}

@media (max-width: 1100px) {
  .igh-shell {
    width: min(calc(100% - 48px), var(--igh-max));
  }

  .igh-menu {
    gap: 20px;
  }

  .igh-nav > .igh-button {
    display: none;
  }

  .igh-guide-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .igh-pathway__grid, .igh-split {
    gap: 42px;
  }

  .igh-principles-stage {
    grid-template-columns: 1fr 1fr;
  }

  .igh-principles-stage > .igh-principles-image {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 420px;
  }

  .igh-archive-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .igh-footer__top {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 820px) {
  body.admin-bar .igh-header {
    top: 46px;
  }

  .igh-shell {
    width: min(calc(100% - 40px), var(--igh-max));
  }

  .igh-topbar {
    display: none;
  }

  .igh-nav {
    min-height: 82px;
    gap: 10px;
  }

  .igh-logo {
    width: 205px;
  }

  .igh-menu-toggle {
    display: block;
    margin-left: 0;
  }

  .igh-search-link {
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    place-items: center;
    border-radius: 10px;
    background: var(--igh-indigo);
    color: #fff;
  }

  .igh-search-link img {
    filter: brightness(0) invert(1);
  }

  .igh-header-search {
    display: none;
  }

  .igh-menu {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px 24px 24px;
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: var(--igh-shadow);
  }

  .igh-menu.is-open {
    display: grid;
  }

  .igh-hero, .igh-hero__inner {
    min-height: auto;
  }

  .igh-hero__inner {
    grid-template-columns: 1fr;
  }

  .igh-hero__copy {
    padding: 72px 0 22px;
    text-align: center;
  }

  .igh-hero h1 {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(48px,13vw,68px);
  }

  .igh-hero__copy p:not(.igh-hero__kicker) {
    margin-inline: auto;
  }

  .igh-hero__media {
    min-height: 430px;
  }

  .igh-hero__note {
    right: 18px;
    bottom: 18px;
  }

  .igh-hero__utility-inner {
    justify-content: center;
    text-align: center;
  }

  .igh-hero__utility-inner span:last-child {
    display: none;
  }

  .igh-intro-row {
    display: block;
  }

  .igh-intro-row .igh-lede {
    margin-top: 24px;
  }

  .igh-split, .igh-pathway__grid, .igh-contact-intro, .igh-form-grid, .igh-news-grid, .igh-article-layout {
    grid-template-columns: 1fr;
  }

  .igh-collage {
    min-height: 590px;
  }

  .igh-pathway__media {
    order: initial;
    margin: 0;
    min-height: 500px;
  }

  .igh-pathway__media img {
    min-height: 500px;
  }

  .igh-lenses, .igh-news-more, .igh-steps {
    grid-template-columns: 1fr;
  }

  .igh-news-stack .igh-story {
    grid-template-columns: 1fr;
  }

  .igh-news-stack .igh-story__media img {
    height: 260px;
  }

  .igh-step:not(:last-child)::after {
    display: none;
  }

  .igh-sidebar {
    position: static;
  }

  .igh-contact-medallion {
    right: 24px;
    bottom: -48px;
  }

  .igh-contact-details {
    padding-top: 36px;
  }

  .igh-cta__inner {
    display: grid;
  }

}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .igh-shell {
    width: min(calc(100% - 32px), var(--igh-max));
  }

  .igh-section {
    padding: 78px 0;
  }

  .igh-section--tight {
    padding: 58px 0;
  }

  .igh-section + .igh-about-principles {
    padding-top: 0;
  }

  .igh-nav {
    min-height: 76px;
  }

  .igh-logo {
    width: 166px;
  }

  .igh-menu {
    top: 76px;
  }

  .igh-hero__copy {
    padding-top: 58px;
  }

  .igh-hero h1 {
    font-size: 47px;
    line-height: 1.01;
  }

  .igh-hero__media {
    min-height: 360px;
  }

  .igh-hero__note {
    max-width: 220px;
    font-size: 12px;
  }

  .igh-guide-grid, .igh-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .igh-guide-card {
    min-height: 250px;
    padding: 28px;
  }

  .igh-title {
    font-size: 40px;
  }

  .igh-prose h2 {
    font-size: 40px;
  }

  .igh-collage {
    min-height: 520px;
  }

  .igh-collage__main {
    width: 88%;
    height: 430px;
  }

  .igh-collage__small {
    width: 68%;
    height: 260px;
    border-width: 9px;
  }

  .igh-collage__badge {
    left: 45%;
    width: 100px;
    height: 100px;
    border-width: 7px;
    font-size: 14px;
  }

  .igh-checks {
    grid-template-columns: 1fr;
  }

  .igh-pathway__media, .igh-pathway__media img {
    min-height: 390px;
  }

  .igh-pathway-card {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .igh-lens {
    min-height: 0;
    padding: 30px;
  }

  .igh-wide-media, .igh-wide-media img {
    min-height: 480px;
    height: 480px;
  }

  .igh-wide-media__caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 22px;
  }

  .igh-wide-media__caption h2 {
    font-size: 29px;
  }

  .igh-story--lead .igh-story__media img, .igh-story__media img, .igh-archive-grid .igh-story__media img {
    height: 285px;
  }

  .igh-story__body {
    padding: 24px;
  }

  .igh-story--lead h3 {
    font-size: 29px;
  }

  .igh-breadcrumb {
    min-height: 230px;
  }

  .igh-breadcrumb h1, .igh-breadcrumb__title {
    font-size: 44px;
  }

  .igh-principles-stage {
    grid-template-columns: 1fr;
  }

  .igh-principles-stage > .igh-principles-image {
    grid-column: auto;
    height: 340px;
  }

  .igh-principle-list {
    gap: 24px;
  }

  .igh-article__lead img {
    height: 320px;
  }

  .igh-article h1 {
    font-size: 41px;
  }

  .igh-article__content h2 {
    font-size: 30px;
  }

  .igh-contact-media > .igh-contact-image {
    height: 360px;
  }

  .igh-contact-details h2 {
    font-size: 39px;
  }

  .igh-form {
    grid-template-columns: 1fr;
  }

  .igh-form label.igh-field--wide, .igh-form__consent, .igh-alert {
    grid-column: auto;
  }

  .igh-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .igh-empty {
    padding: 32px 22px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

}
