.bdl {
  --bdl-text: #171717;
  --bdl-muted: #5e5a55;
  --bdl-gold: #ad7b43;
  --bdl-gold-soft: #eee2d3;
  --bdl-surface: #f5f2ee;
  --bdl-surface-2: #faf8f5;
  --bdl-line: #ded9d2;
  --bdl-white: #ffffff;
  --bdl-radius: 18px;
  --bdl-max-width: 1240px;
  color: var(--bdl-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.62;
}

.bdl *,
.bdl *::before,
.bdl *::after {
  box-sizing: border-box;
}

.bdl__container {
  width: min(calc(100% - 40px), var(--bdl-max-width));
  margin-inline: auto;
}

.bdl__block {
  width: 100%;
  padding: clamp(54px, 7vw, 92px) 0;
}

.bdl__band {
  background: var(--bdl-surface);
}

.bdl__split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.bdl__title {
  max-width: 680px;
  margin: 0 0 26px;
  color: var(--bdl-text);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.bdl__title--center {
  max-width: 860px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
  font-size: clamp(30px, 3.4vw, 44px);
}

.bdl__copy {
  max-width: 570px;
  color: var(--bdl-muted);
  font-size: clamp(16px, 1.35vw, 18px);
}

.bdl__copy p,
.bdl__standard-copy p,
.bdl__richtext p,
.bdl__faq-answer p {
  margin: 0 0 1.05em;
}

.bdl__copy p:last-child,
.bdl__standard-copy p:last-child,
.bdl__richtext p:last-child,
.bdl__faq-answer p:last-child {
  margin-bottom: 0;
}

.bdl__facts {
  overflow: hidden;
  padding: 18px 44px;
  border: 1px solid rgba(173, 123, 67, .12);
  border-radius: var(--bdl-radius);
  background: var(--bdl-surface-2);
  box-shadow: 0 18px 50px rgba(26, 20, 14, .055);
}

.bdl__fact {
  display: grid;
  grid-template-columns: minmax(145px, .72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--bdl-line);
}

.bdl__fact:last-child {
  border-bottom: 0;
}

.bdl__fact-label {
  font-weight: 700;
  line-height: 1.35;
}

.bdl__fact-value {
  color: var(--bdl-muted);
}

.bdl__grid {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.bdl__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bdl__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bdl__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.bdl__standard {
  text-align: center;
}

.bdl__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--bdl-text);
}

.bdl__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bdl__icon--round {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  padding: 16px;
  border: 1px solid var(--bdl-text);
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
}

.bdl__icon--small {
  width: 36px;
  height: 36px;
  color: var(--bdl-gold);
}

.bdl__standard h3,
.bdl__info-card h3,
.bdl__story-card h3 {
  margin: 0;
  color: var(--bdl-text);
  font-size: clamp(18px, 1.65vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.bdl__standard h3 {
  margin-bottom: 10px;
}

.bdl__standard-copy {
  max-width: 290px;
  margin-inline: auto;
  color: var(--bdl-muted);
}

.bdl__content-section {
  background: var(--bdl-white);
}

.bdl__info-grid {
  align-items: stretch;
}

.bdl__info-card {
  min-width: 0;
  padding: 30px 26px 32px;
  border-top: 3px solid var(--bdl-gold);
  border-radius: 0 0 var(--bdl-radius) var(--bdl-radius);
  background: var(--bdl-surface-2);
  box-shadow: 0 14px 40px rgba(24, 18, 12, .05);
}

.bdl__info-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 22px;
}

.bdl__richtext {
  color: var(--bdl-muted);
  font-size: 15px;
}

.bdl__richtext ul,
.bdl__richtext ol,
.bdl__faq-answer ul,
.bdl__faq-answer ol,
.bdl__copy ul,
.bdl__copy ol {
  margin: 0 0 1.1em 1.15em;
  padding: 0;
}

.bdl__richtext li,
.bdl__faq-answer li,
.bdl__copy li {
  margin-bottom: .8em;
}

.bdl__richtext strong {
  color: var(--bdl-text);
}

.bdl__richtext small {
  color: var(--bdl-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bdl__commitment-section {
  background: #161616;
  color: var(--bdl-white);
}

.bdl__commitment-section .bdl__title {
  color: var(--bdl-white);
}

.bdl__story-grid {
  align-items: stretch;
}

.bdl__story-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--bdl-radius);
  background: rgba(255, 255, 255, .05);
}

.bdl__story-card--has-image {
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
}

.bdl__story-image {
  min-height: 250px;
}

.bdl__story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdl__story-body {
  padding: clamp(28px, 4vw, 44px);
}

.bdl__story-card h3 {
  margin-bottom: 15px;
  color: var(--bdl-white);
}

.bdl__story-card .bdl__richtext {
  color: rgba(255, 255, 255, .76);
}

.bdl__split--faq {
  grid-template-columns: minmax(250px, .78fr) minmax(500px, 1.22fr);
}

.bdl__faq-list {
  overflow: hidden;
  padding: 14px 42px;
  border-radius: var(--bdl-radius);
  background: var(--bdl-surface-2);
}

.bdl__faq-item {
  border-bottom: 1px solid var(--bdl-line);
}

.bdl__faq-item:last-child {
  border-bottom: 0;
}

.bdl__faq-button {
  display: grid;
  width: 100%;
  min-height: 76px;
  padding: 20px 0;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--bdl-text);
  font: inherit;
  font-weight: 700;
  line-height: 1.38;
  text-align: left;
  cursor: pointer;
}

.bdl__faq-button:focus-visible {
  outline: 2px solid var(--bdl-gold);
  outline-offset: 4px;
}

.bdl__faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bdl-gold-soft);
}

.bdl__faq-toggle::before,
.bdl__faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1.5px;
  border-radius: 3px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.bdl__faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bdl__faq-button[aria-expanded="true"] .bdl__faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.bdl__faq-panel {
  padding: 0 52px 24px 0;
}

.bdl__faq-answer {
  color: var(--bdl-muted);
}

@media (max-width: 1024px) {
  .bdl__split,
  .bdl__split--faq {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .bdl__grid--3,
  .bdl__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bdl__copy,
  .bdl__title {
    max-width: 820px;
  }
}

@media (max-width: 700px) {
  .bdl__container {
    width: min(calc(100% - 28px), var(--bdl-max-width));
  }

  .bdl__block {
    padding: 48px 0;
  }

  .bdl__grid--2,
  .bdl__grid--3,
  .bdl__grid--4 {
    grid-template-columns: 1fr;
  }

  .bdl__facts {
    padding: 10px 20px;
  }

  .bdl__fact {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .bdl__icon--round {
    width: 66px;
    height: 66px;
    padding: 14px;
  }

  .bdl__info-card {
    padding: 26px 22px 28px;
  }

  .bdl__story-card--has-image {
    grid-template-columns: 1fr;
  }

  .bdl__story-image {
    min-height: 220px;
    max-height: 310px;
  }

  .bdl__faq-list {
    padding: 8px 20px;
  }

  .bdl__faq-button {
    min-height: 68px;
    padding: 18px 0;
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .bdl__faq-panel {
    padding-right: 0;
  }
}

/* v0.4.0 */
.bdl__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bdl__commitment-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--bdl-commitment-bg, #161616);
  background-position: var(--bdl-commitment-bg-position, center center);
  background-size: var(--bdl-commitment-bg-size, cover);
  background-repeat: no-repeat;
  color: var(--bdl-commitment-text, #fff);
  font-family: var(--bdl-commitment-font, inherit);
  text-align: var(--bdl-commitment-align, left);
}

.bdl__commitment-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--bdl-commitment-overlay, #000);
  content: "";
  opacity: var(--bdl-commitment-overlay-opacity, 0);
  pointer-events: none;
}

.bdl__commitment-section > .bdl__container {
  position: relative;
  z-index: 1;
}

.bdl__commitment-section .bdl__title,
.bdl__commitment-section .bdl__story-card h3 {
  color: var(--bdl-commitment-text, #fff);
  font-weight: var(--bdl-commitment-heading-weight, 700);
  text-transform: var(--bdl-commitment-heading-transform, none);
}

.bdl__commitment-section .bdl__title--center {
  text-align: var(--bdl-commitment-align, center);
}

.bdl__commitment-section .bdl__story-card {
  background: var(--bdl-commitment-card-bg, #242424);
}

.bdl__commitment-section .bdl__story-card .bdl__richtext {
  color: var(--bdl-commitment-text, #fff);
  opacity: .82;
  text-align: inherit;
}

.bdl__commitment-section .bdl__story-body {
  text-align: inherit;
}
