@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-Regular.woff2') format('woff2'),
    url('../fonts/Metropolis-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-Light.woff2') format('woff2'),
    url('../fonts/Metropolis-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-SemiBold.woff2') format('woff2'),
    url('../fonts/Metropolis-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/Metropolis-Bold.woff2') format('woff2'),
    url('../fonts/Metropolis-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --ihf-red: #e3332a;
  --ihf-red-dark: #8a1a1e;
  --ihf-gray-bg: #eef0f1;
  --ihf-text-dark: #000000;
  --ihf-text-muted: #707070;
  --sidebar-w: 300px;
  --body-font-family: 'Metropolis', sans-serif;
  --color-primary: #e3332a;
  --color-secondary: #707070;
  --color-black: #000000;
  --color-heading: #000000;
  --color-white: #FFFFFF;
  --color-surface: #F7F7F7;
  --color-border: #E5E5E5;

  --container-max: 1280px;
  --section-padding-y: 100px;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  background-color: #fff;
}

body {
  font-family: var(--body-font-family);
}

header .container {
  width: 90%;
  max-width: 90%;
}

.page-wrapper {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  transition: left 0.32s ease, box-shadow 0.32s ease;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}

body.sidebar-open .page-wrapper {
  left: var(--sidebar-w);
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.18);
}

.top-bar {
  background-color: var(--ihf-red);
  color: #fff;
  font-size: 0.85rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-bar a:hover {
  color: #f3d9da;
}

.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar .contact-item svg {
  flex-shrink: 0;
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.top-bar .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s ease;
}

.top-bar .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.h-40 {
  height: 60px;
}

.main-nav {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.brand-logo-placeholder {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.brand-text .brand-title {
  color: var(--ihf-red);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}

.brand-text .brand-tagline {
  color: var(--ihf-text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--ihf-text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 0.9rem !important;
  padding-right: 0.9rem !important;
}

.navbar-nav .nav-link.active {
  color: var(--ihf-red) !important;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: var(--ihf-red);
}

/* Desktop "Our Stories" dropdown submenu */
.nav-item.dropdown .dropdown-toggle::after {
  vertical-align: 0.15em;
}

.dropdown-menu {
  border: none;
  border-top: 3px solid var(--ihf-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 0.4rem 0;
  margin-top: 0.4rem;
}

.dropdown-menu .dropdown-item {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  color: var(--ihf-text-dark);
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: var(--ihf-gray-bg);
  color: var(--ihf-red);
}


.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: calc(var(--sidebar-w) * -1);
  width: var(--sidebar-w);
  height: 100vh;
  background-color: #ffffff;
  z-index: 1050;
  transition: left 0.32s ease;
  overflow-y: auto;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

body.sidebar-open .mobile-sidebar {
  left: 0;
}

.mobile-sidebar-header {
  background-color: #ccc;
  color: #fff;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sidebar-header .brand-logo-placeholder {
  width: 40px;
  height: 40px;
}

.mobile-sidebar-header .brand-title-sm {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  color: var(--ihf-red);
}

.mobile-sidebar-close {
  background: rgba(0, 0, 0, 0.15);
  border: none;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-sidebar-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  color: var(--ihf-text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.mobile-nav .mobile-nav-link.active {
  color: var(--ihf-red);
  font-weight: 600;
}

.mobile-nav .mobile-nav-link .chevron {
  transition: transform 0.25s ease;
}

.mobile-nav .mobile-nav-link[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--ihf-gray-bg);
}

.mobile-submenu li a {
  display: block;
  padding: 0.65rem 1.2rem 0.65rem 2.4rem;
  color: var(--ihf-text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.mobile-submenu li a:hover {
  color: var(--ihf-red);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease;
  z-index: 1;
  backdrop-filter: blur(3px);
}

body.sidebar-open .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: #707070;
  transition: color 0.2s ease;
}

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

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

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

section {
  padding: var(--section-padding-y) 0;
}

.text-accent {
  color: var(--color-primary);
}

/* Section heading block, used across multiple sections */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-heading {
  font-size: 36px;
  line-height: 1.2;
  max-width: 760px;
}

.section-heading-block {
  margin-bottom: 30px;
}

/* Buttons */
.btn-primary-inga {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-secondary-inga {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary-inga:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-cta-inga {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.btn-cta-inga:hover {
  opacity: 0.85;
  color: var(--color-black);
}

.btn-nav-cta {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

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

/* Scroll reveal */
.reveal-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*=================================
Header
=================================*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
}

.topbar {
  background-color: var(--color-black);
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-contact {
  display: flex;
  gap: 24px;
}

.topbar-contact a {
  color: #C9C9C9;
  font-size: 13px;
  font-weight: 500;
}

.topbar-contact a:hover {
  color: var(--color-primary);
}

.topbar-contact i {
  color: var(--color-primary);
  margin-right: 6px;
  font-size: 12px;
}

.topbar-social {
  display: flex;
  gap: 16px;
}

.topbar-social a {
  color: #C9C9C9;
  font-size: 13px;
}

.topbar-social a:hover {
  color: var(--color-primary);
}

.main-navigation {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.main-navigation .container-inga {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-secondary);
}

.main-menu {
  display: flex;
  gap: 8px;
}

.main-menu .nav-link {
  color: var(--color-black);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  position: relative;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: var(--color-primary);
}

.main-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background-color: var(--color-primary);
}

.dropdown-menu {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 8px;
  margin-top: 4px;
}

.dropdown-item {
  color: var(--color-black);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 3px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--color-surface);
  color: var(--color-primary);
}

/*=================================
Hero Section
=================================*/
.hero-slider {
  padding: 185px 0 72px 0;
}

.hero-row {
  min-height: 420px;
}

.hero-image-frame {
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-col {
  padding-left: 24px;
}

.eyebrow-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.hero-heading {
  font-size: 36px;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.carousel-indicators,
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/*=================================
Statistics Section
=================================*/
.statistics-section {
  padding: 60px 0;
  background: #fff7f7;
  border-top: 1px solid #ffe6e5;
  border-bottom: 1px solid #ffe6e5;
}

.stat-block {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  border-left: 1px solid var(--color-border);
}

.stat-index {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-black);
  margin-left: 4px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-top: 12px;
}

/*=================================
What We Do
=================================*/
.what-we-do-block {
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
}

.what-we-do-block:last-child {
  border-bottom: 1px solid var(--color-border);
}

.block-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.block-heading {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 22px;
  max-width: 460px;
}

.block-list {
  margin-bottom: 26px;
}

.block-list>li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.block-list>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background-color: var(--color-primary);
}

.block-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.block-sublist {
  margin-top: 10px;
  margin-left: 4px;
}

.block-sublist li {
  font-size: 14px;
  color: var(--color-secondary);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.block-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.block-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 3px;
}

.block-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.what-we-do-graphic {
  border: 1px solid var(--color-border);
  overflow: hidden;
  line-height: 0;
}

/*=================================
Business Advantages / Inga Difference
=================================*/
.business-advantages-section {
  background-color: var(--color-surface);
}

.advantage-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 36px 32px;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.advantage-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.advantage-icon {
  font-size: 26px;
  color: var(--color-primary);
  margin-bottom: 18px;
  display: block;
}

.advantage-heading {
  font-size: 19px;
  margin-bottom: 12px;
}

.advantage-description {
  font-size: 14.5px;
  line-height: 1.65;
}

.industries-strip {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.industries-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-right: 12px;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industries-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 8px 16px;
  border-radius: 30px;
}

.industries-list i {
  color: var(--color-primary);
  font-size: 14px;
}

/*=================================
Advisory Approach
=================================*/
.approach-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.approach-step {
  flex: 1 1 0;
  min-width: 140px;
  padding-top: 24px;
  border-top: 2px solid var(--color-black);
  position: relative;
}

.approach-step:not(:last-child)::after {
  content: "\f138";
  font-family: "bootstrap-icons";
  position: absolute;
  right: -20px;
  top: 24px;
  color: var(--color-border);
  font-size: 18px;
  display: none;
}

.approach-number {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.approach-title {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-black);
}

/*=================================
Our Team (teaser)
=================================*/
.team-description {
  font-size: 16px;
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 560px;
}

.team-graphic {
  border: 1px solid var(--color-border);
  line-height: 0;
  overflow: hidden;
}

/*=================================
Our Commitment
=================================*/
.our-commitment-section {
  background-color: var(--color-black);
  text-align: center;
}

.commitment-block {
  max-width: 850px;
  margin: 0 auto;
}

.our-commitment-section .section-label {
  color: var(--color-primary);
}

.commitment-heading {
  color: var(--color-white);
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.commitment-description {
  color: #B9B9B9;
  font-size: 16.5px;
  line-height: 1.75;
}

/*=================================
Call To Action
=================================*/
.call-to-action-section {
  background-color: var(--color-primary);
}

.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-heading {
  color: var(--color-white);
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 30px;
}

/*=================================
Footer
=================================*/
.footer-area {
  background-color: var(--color-white);
  padding-top: 60px;
  color: #707070;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo {
  height: 80px;
}

.footer-brand-name {
  color: var(--color-black);
  font-weight: 800;
  font-size: 15px;
}

.footer-tagline {
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.75;
  max-width: 340px;
}

.footer-heading {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--color-primary);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-secondary);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.footer-social a i {
  height: 17px;
}

.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid #eee;
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/*=================================
Page Banner
=================================*/
.page-banner {
  background: var(--ihf-gray-bg);
  padding: 125px 0 0px 0;
  border-bottom: 1px solid var(--color-border);
}

.page-banner img {
  height: 350px;
}

.page-banner h1 {
  font-size: 50px;
  margin-bottom: 0px;
  color: var(--ihf-red);
}

.page-banner .breadcrumb-trail {
  font-size: 14px;
  color: var(--ihf-text-muted);
}

.page-banner .breadcrumb-trail a:hover {
  color: var(--ihf-red-dark);
}

.page-banner .breadcrumb-trail .current {
  color: var(--ihf-red-dark);
  font-weight: 600;
}

/*=================================
Team Section (team.html grid)
=================================*/
.team-section {
  padding: var(--section-padding-y) 0;
}

.team-section .section-intro {
  max-width: 720px;
  margin-bottom: 56px;
}

.team-section .section-intro h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.team-section .section-intro p {
  color: var(--ihf-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.team-card .team-card-photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--ihf-gray-bg);
}

.team-card .team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card .team-card-linkedin {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ihf-red);
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.team-card .team-card-linkedin:hover {
  background: var(--ihf-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.team-card .team-card-body {
  padding: 22px 22px 26px;
}

.team-card .team-card-body h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.team-card .team-card-role {
  color: var(--ihf-red);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.team-card .team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.team-card .team-tags span {
  background: var(--ihf-gray-bg);
  color: var(--ihf-text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.team-card .team-card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--ihf-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.team-card .team-card-link i {
  transition: transform .25s ease;
  color: var(--ihf-red);
}

.team-card .team-card-link:hover i {
  transform: translateX(4px);
}

/*=================================
Team Strength Quote Block
=================================*/
.call-to-action-section blockquote {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  text-align: center;
  border-left: 4px solid var(--ihf-red);
  font-style: italic;
  max-width: 700px;
  text-align: center;
  margin: 40px auto 0;
}

.call-to-action-section .commitment-description {
  color: #fff;
}

/*=================================
Profile Page
=================================*/
.profile-section {
  padding: var(--section-padding-y) 0;
}

.profile-grid {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

.profile-content h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.profile-content .profile-role {
  color: var(--ihf-red);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 26px;
}

.profile-content .profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.profile-content .profile-tags span {
  background: var(--ihf-gray-bg);
  color: var(--ihf-text-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}

.profile-content .profile-bio {
  color: var(--ihf-text-muted);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 34px;
  max-width: 640px;
}

.profile-content .profile-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.profile-photo-col {
  position: sticky;
  top: 110px;
}

.profile-content {
  width: calc(100% - 350px);
}

.profile-photo-frame {
  position: relative;
  width: 100%;
}

.profile-photo-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  background: var(--ihf-gray-bg);
  border: 2px solid var(--ihf-red);
  border-radius: 6px;
  z-index: 0;
}

.profile-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 400 / 480;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .14);
}

.profile-photo-caption {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ihf-text-muted);
}

/*=================================
Single-Page Team Profiles (team-profiles.html)
=================================*/
.profile-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-jump-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--ihf-text-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 16px;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.profile-jump-pill:hover {
  border-color: var(--ihf-red);
  color: var(--ihf-red);
  background: var(--ihf-gray-bg);
}

.profile-grid-reverse {
  grid-template-columns: var(--sidebar-w) 1fr;
}

.profile-grid-reverse .profile-photo-col {
  order: -1;
}

.profile-divider .container-inga hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}

/*=================================
Other Team Members Strip
=================================*/
.profile-more-section {
  background: var(--color-surface);
  padding: 70px 0;
  border-top: 1px solid var(--color-border);
}

.profile-more-section h4 {
  font-size: 22px;
  margin-bottom: 30px;
}

.mini-team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 14px;
  height: 100%;
  transition: border-color .25s ease, transform .25s ease;
}

.mini-team-card:hover {
  border-color: var(--ihf-red);
  transform: translateY(-3px);
}

.mini-team-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mini-team-card .mini-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.mini-team-card .mini-role {
  font-size: 12px;
  color: var(--ihf-text-muted);
}

.linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition:
    background .3s ease,
    transform .3s ease;
}

.linkedin-button:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.linkedin-button i {
  font-size: 18px;
}