:root {
  --bc-bg: #f4f5f7;
  --bc-surface: #ffffff;
  --bc-text: #20242b;
  --bc-muted: #7a808a;
  --bc-muted-2: #777;
  --bc-accent: #EA3700;
  --bc-accent-red: #e94e42;
  --bc-radius: 28px;
  --bc-shadow: 0 10px 40px rgba(12, 18, 28, 0.06);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #f9f9f9;
  color: var(--bc-text);
  font-family: "Urbanist", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.bc-page {
  min-height: 100vh;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bc-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0px auto;
  padding-top: 20px;
  background: #f9f9f9;
  border-radius: var(--bc-radius);
  /* box-shadow: var(--bc-shadow); */
  padding: 10px 44px 34px;
}

.bc-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px 12px 6px;
  background: #fff;
  border-radius: 16px;
  width: 90%;
  margin: 0 auto;
}

.bc-header__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.bc-header__link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.bc-header__link:hover,
.bc-header__link:focus-visible {
  text-decoration: none;
  text-underline-offset: 3px;
}

.bc-header__right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bc-header__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px 0px;
  border-radius: 10px;
}

.bc-header__toggle:focus-visible {
  outline: 2px solid rgba(26, 26, 26, 0.35);
  outline-offset: 2px;
}

.bc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.bc-brand__mark {
  display: block;
}

.bc-brand__text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
}

.bc-btn--primary {
  color: #ffffff;
  background: linear-gradient(98.86deg, #F60000 7.26%, #C48702 94.63%);
  /* box-shadow: 0 10px 20px rgba(241, 90, 43, 0.22); */
}

/* Mobile menu (off-canvas) */
.bc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
}

.bc-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 22px;
}

.bc-menu-open .bc-mobile-menu {
  transform: translateX(0);
}

.bc-menu-open body {
  overflow: hidden;
}

.bc-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0 10px;
  border-bottom: 1px solid #eee;
}

.bc-mobile-menu__close {
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 10px;
}

.bc-mobile-menu__nav {
  display: grid;
  gap: 10px;
  padding: 14px 0;
}

.bc-mobile-menu__link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 8px;
  border-radius: 10px;
}

.bc-mobile-menu__link:hover,
.bc-mobile-menu__link:focus-visible {
  background: #f6f6f6;
}

.bc-mobile-menu__cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.bc-mobile-menu__ctaBtn {
  width: 100%;
  justify-content: center;
}
.grafterr-logo{
  width: 150px;
}
.bc-btn--secondary {
  color: #ffffff;
  background: linear-gradient(98.86deg, #F60000 7.26%, #C48702 94.63%);
  padding: 12px 18px;
}

.bc-main {
  padding: 60px 0 16px;
  margin: 0px 130px;
}

.bc-hero {
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: center;
  gap: 0px;
  margin: 0 auto 50px;
  width: min(920px, 100%);
}

.bc-hero__icon {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  /* background: #f1f2f4; */
  display: grid;
  place-items: center;
}

.bc-hero__meta {
  min-width: 0;
}

.bc-hero__name {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bc-hero__address {
  margin: 8px 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.bc-hero__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bc-muted-2);
  max-width: 85%;
}

.bc-apology {
  width: min(920px, 100%);
  margin: 50px auto 50px;
}

.bc-apology__title {
  margin: 0;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #777;
  font-size: 55px;
  line-height: 76px;
  text-align: center;
}

.bc-apology__sadface {
  font-weight: 200;
  color: #6e727a;
  transform: translateY(-2px);
}

.bc-apology__text {
  display: inline;
}

.bc-accent {
  color: var(--bc-accent);
  font-weight: 700;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bc-stripes {
  width: 100%;
  margin: 80px 0px 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.bc-stripes__bar {
  height: 5px;
  border-radius: 999px;
}

.bc-stripes__bar--brown {
  background: #662113;
}

.bc-stripes__bar--blue {
  background: #0356AF;
}

.bc-stripes__bar--red {
  background: #FF0300;
}

.bc-stripes__bar--yellow {
  background: #FDB83C;
}

.bc-stripes__bar--green {
  background: #008127;
}

.bc-promo {
  width: max-content;
  margin: 80px auto 22px;
  text-align: left;
  padding: 18px 12px 20px;
}

.bc-promo__title {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.5px;
  font-size: 60px;
  line-height: 1.30;
  color: #1a1a1a;
}

.bc-promo__desc {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--bc-muted);
  margin: 18px 0px 25px;
}

.bc-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 20px;
  padding-top: 50px;
  border-top: 1px dashed #ddd;
  border-width: 2px;
}
.bc-footer__right{
  text-align: right;
}
.bc-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.bc-footer__mark {
  display: block;
}

.bc-footer__text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.bc-footer__legal {
  margin: 0;
  color: var(--bc-muted-2);
  font-size: 11px;
  line-height: 1.65;
  max-width: 520px;
}

.bc-footer__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}

.bc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.bc-footer__link {
  color: #777;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}

.bc-footer__link:hover,
.bc-footer__link:focus-visible {
  text-decoration: none;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .bc-page {
    padding: 18px;
  }

  .bc-header {
    width: 100%;
  }

  .bc-shell {
    width: 100%;
    padding: 22px 5px 26px;
  }

  .bc-hero {
    grid-template-columns: 88px 1fr;
    gap: 25px;
    align-items: flex-start;
  }

  /* .bc-hero__icon {
    width: 76px;
    height: 76px;
  } */

  .bc-footer {
    grid-template-columns: 1fr;
  }
  .Grafterr-logo{
    width: 150px;
  }
}

@media (max-width: 520px) {
  .bc-page {
    padding: 14px;
  }

  .bc-header {
    grid-template-columns: auto auto;
  }

  .bc-header__nav {
    display: none;
  }

  .bc-header__cta {
    display: none;
  }

  .bc-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bc-hero__desc {
    margin-right: auto;
  }

  .bc-apology__title {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .bc-stripes {
    gap: 10px;
  }
  .bc-header{
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .bc-main {
    margin: 0px 0px;
    padding-top: 10px;
  }
  .bc-apology__title{
    font-size: 30px;
    line-height: 44px;
  }
  .bc-apology{
    margin: 24px auto 30px;
  }
  .bc-stripes{
    margin: 18px 0px 20px;
  }
  .bc-footer{
    margin-top: 0px;
    padding-top: 30px;
  }
  .bc-promo{
    padding: 2px 0px 0px;
    width: auto;
    margin: 0 auto 18px;
  }
  .bc-footer{
    flex-direction: column;
  }
  .bc-footer__right{
    text-align: left;
  }
  .bc-hero {
    display:flex;
    flex-direction:column;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .bc-shell {
    width: 100%;
    padding: 22px 5px 26px;
}
.bc-promo__title{
  font-size: 30px;
}
.bc-header__right{
  justify-content: flex-end;
}
.bc-mobile-menu__cta{
  padding-top: 22px;
}
.bc-mobile-menu__cta{
  justify-content: center;
  display: flex;
}
.bc-mobile-menu__ctaBtn{
  width: 80%;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .bc-header {
    grid-template-columns: auto auto;
    gap: 8px;
  }

  .bc-header__nav {
    display: none;
  }

  .bc-header__cta {
    display: none;
  }

  .bc-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bc-header__right {
    justify-content: flex-end;
  }

  .bc-main {
    margin: 0px 80px;
  }
  .bc-footer{
    flex-direction:row;
  }
  .bc-apology__title{
    font-size: 40px;
    line-height: 60px;
  }
  .bc-promo__title{
    font-size: 40px;
  }
}
@media screen and (min-width:1700px) {
  .bc-stripes{
    margin: 65px 0px 40px;
  }
  .bc-main {
    padding: 80px 0 16px;
  }
  .bc-apology__title{
    font-size: 55px;
    line-height: 80px;
  }
}
