.hib-brand-story {
  --story-primary: #1E8A8A;
  --story-dark: #0C1E21;
  --story-light: #D8E5E5;
  padding: clamp(22px, 3vw, 38px) 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 116px);
  align-items: stretch;
  color: var(--story-dark);
}

.hib-brand-story__identity {
  position: relative;
  min-height: 530px;
  padding: clamp(32px, 4vw, 54px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(30, 138, 138, 0.5), transparent 36%),
    linear-gradient(145deg, #0C1E21, #15474a);
}

.hib-brand-story__identity::before,
.hib-brand-story__identity::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(216, 229, 229, 0.14);
  border-radius: 50%;
}

.hib-brand-story__identity::before { top: -100px; right: -120px; width: 310px; height: 310px; }
.hib-brand-story__identity::after { top: -30px; right: -50px; width: 170px; height: 170px; }

.hib-brand-story__identity img {
  position: relative;
  z-index: 2;
  width: min(230px, 74%);
  height: auto;
  margin-bottom: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hib-brand-story__identity p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.hib-brand-story__index {
  position: absolute;
  top: 36px;
  left: 42px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--hib-heading-font, "Inter", sans-serif);
  font-size: clamp(68px, 8vw, 116px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hib-brand-story__content {
  min-width: 0;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hib-brand-story__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--story-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hib-brand-story__content h2 {
  max-width: 34ch;
  margin: 0 0 32px;
  color: var(--story-dark);
  font-size: var(--hib-section-title-size, clamp(26px, 2vw, 32px));
  font-weight: 600 !important;
  line-height: var(--hib-section-title-line-height, 1.2);
  letter-spacing: -0.025em;
  text-transform: none;
}

.hib-brand-story__narrative {
  counter-reset: story-paragraph;
}

.hib-brand-story__narrative p {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 52px;
  border-top: 1px solid rgba(12, 30, 33, 0.13);
  color: rgba(12, 30, 33, 0.68);
  font-size: 15px;
  line-height: 1.75;
  counter-increment: story-paragraph;
}

.hib-brand-story__narrative p::before {
  content: "0" counter(story-paragraph);
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--story-primary);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

@media (min-width: 901px) {
  .hib-brand-story__narrative p::before {
    top: 12px;
    font-size: 26px;
  }
}

.hib-brand-story__button {
  min-height: 46px;
  margin-top: 26px;
  padding: 11px 15px;
  border: 1px solid rgba(12, 30, 33, 0.22);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--story-dark);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.hib-brand-story__button:hover { border-color: var(--story-primary); color: #ffffff; background: var(--story-primary); }

@media (max-width: 900px) {
  .hib-brand-story { grid-template-columns: 1fr; gap: 38px; }
  .hib-brand-story__identity { min-height: 420px; border-radius: 20px; }
  .hib-brand-story__content { padding: 0; }
}

@media (max-width: 549px) {
  .hib-brand-story__identity { min-height: 350px; padding: 28px 24px; border-radius: 18px; }
  .hib-brand-story__index { top: 26px; left: 24px; }
  .hib-brand-story__content h2 { text-transform: none; }
  .hib-brand-story__narrative p { padding-left: 40px; }
  .hib-brand-story__button { width: 100%; }
}
