/* Tema 19 - Blueprint Portfoy — Swiss / architect's-blueprint grid portfolio.
   Prefix: bp- */

:root {
  --bp-primary: #0b3d91;
  --bp-primary-ink: color-mix(in srgb, var(--bp-primary) 80%, black);
  --bp-accent: #f5c518;
  --bp-surface: #fafafa;
  --bp-white: #ffffff;
  --bp-ink: #1c1c1c;
  --bp-muted: #5b6472;
  --bp-line: #d0d5dd;
  --bp-radius: 2px;
  --bp-display: "Space Grotesk", system-ui, sans-serif;
  --bp-body: "IBM Plex Sans", system-ui, sans-serif;
  --bp-mono: "IBM Plex Mono", ui-monospace, monospace;
  --bp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bp-max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body.bp-body {
  margin: 0;
  font-family: var(--bp-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bp-ink);
  background:
    linear-gradient(rgba(11, 61, 145, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 145, 0.045) 1px, transparent 1px),
    var(--bp-surface);
  background-size:
    48px 48px,
    48px 48px,
    auto;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}

.bp-main {
  flex: 1 0 auto;
}

.bp-skip {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--bp-accent);
  color: var(--bp-ink);
  font-weight: 700;
}
.bp-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Crop-mark corners (motif) ---------- */
.bp-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.bp-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.4;
  transition:
    opacity 0.3s var(--bp-ease),
    transform 0.3s var(--bp-ease);
  color: var(--bp-ink);
}
.bp-corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translate(2px, 2px);
}
.bp-corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-2px, 2px);
}
.bp-corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translate(2px, -2px);
}
.bp-corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-2px, -2px);
}
.bp-hoverable {
  position: relative;
}
.bp-hoverable:hover .bp-corner {
  opacity: 1;
  color: var(--bp-accent);
  transform: translate(0, 0);
}
.bp-corners--light .bp-corner {
  color: var(--bp-white);
  opacity: 0.6;
}
.bp-hoverable:hover .bp-corners--light .bp-corner,
.bp-corners--light.bp-corner-static .bp-corner {
  color: var(--bp-accent);
  opacity: 1;
}

/* ---------- Header ---------- */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.92);
  border-bottom: 1px solid var(--bp-line);
  backdrop-filter: blur(10px);
}
.bp-header__shell {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.bp-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.bp-brand__name {
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--bp-ink);
}
.bp-brand__name span {
  color: var(--bp-primary);
}
.bp-brand__role {
  font-family: var(--bp-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-muted);
  margin-top: 0.15rem;
}
.bp-nav {
  margin-left: auto;
}
.bp-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem 1rem;
  align-items: center;
}
.bp-nav__list > .site-nav__item {
  position: relative;
}
.bp-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bp-muted);
  white-space: nowrap;
}
.bp-nav a:hover,
.bp-nav .is-active > a {
  color: var(--bp-primary);
}
.bp-nav .has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  vertical-align: middle;
  opacity: 0.7;
}
.bp-nav .site-nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.55rem 0 0.45rem;
  display: none;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  background: transparent;
  border: none;
  box-shadow: none;
}
.bp-nav .site-nav__sub::before {
  content: "";
  position: absolute;
  inset: 0.55rem 0 0;
  z-index: -1;
  background: var(--bp-white);
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-radius);
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.1);
}
.bp-nav .site-nav__sub a {
  display: block;
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
  font-size: 0.82rem;
  color: var(--bp-ink);
  position: relative;
}
.bp-nav .site-nav__sub a:hover,
.bp-nav .site-nav__sub .is-active > a {
  background: rgba(11, 61, 145, 0.06);
  color: var(--bp-primary);
}
.bp-nav .has-children:hover > .site-nav__sub,
.bp-nav .has-children:focus-within > .site-nav__sub,
.bp-nav .has-children.is-open > .site-nav__sub {
  display: flex;
}
.bp-header__cta {
  flex-shrink: 0;
  padding: 0.6rem 1.05rem;
  background: var(--bp-accent);
  color: var(--bp-ink);
  font-family: var(--bp-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--bp-radius);
}
.bp-available {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--bp-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
}
.bp-available i {
  width: 7px;
  height: 7px;
  background: var(--bp-primary);
  border-radius: 50%;
  display: inline-block;
  animation: bp-blink 1.6s step-end infinite;
}
@keyframes bp-blink {
  50% {
    opacity: 0.25;
  }
}

/* ---------- Buttons ---------- */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border-radius: var(--bp-radius);
  transition:
    transform 0.25s var(--bp-ease),
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.bp-btn:hover {
  transform: translateY(-2px);
}
.bp-btn--primary {
  background: var(--bp-primary);
  color: var(--bp-white);
}
.bp-btn--primary:hover {
  background: var(--bp-primary-ink);
}
.bp-btn--accent {
  background: var(--bp-accent);
  color: var(--bp-ink);
}
.bp-btn--ghost {
  border: 1px solid var(--bp-ink);
  color: var(--bp-ink);
}
.bp-btn--ghost:hover {
  border-color: var(--bp-primary);
  color: var(--bp-primary);
}
.bp-btn--on-dark {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--bp-white);
}
.bp-btn--on-dark:hover {
  border-color: var(--bp-accent);
  color: var(--bp-accent);
}

/* ---------- Index / kicker pattern ---------- */
.bp-index {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
.bp-index__num {
  font-family: var(--bp-mono);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.85;
  color: rgba(11, 61, 145, 0.14);
}
.bp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bp-primary);
}
.bp-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--bp-accent);
  display: inline-block;
}
.bp-section__title {
  margin: 0.3rem 0 0;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.bp-section__text {
  margin: 0.5rem 0 0;
  color: var(--bp-muted);
  max-width: 46ch;
}
.bp-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.bp-section {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  border-top: 1px dashed var(--bp-line);
}
.bp-section--tight {
  padding-top: 2.5rem;
}

/* ---------- Hero ---------- */
.bp-hero {
  position: relative;
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: clamp(2.25rem, 6vw, 4.5rem) 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.bp-hero__eyebrow {
  margin: 0 0 1rem;
}
.bp-hero__title {
  margin: 0 0 1.1rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.4vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  animation: bp-fade-up 0.75s var(--bp-ease) both;
}
.bp-mark {
  background: var(--bp-accent);
  padding: 0.02em 0.2em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.bp-hero__text {
  margin: 0 0 1.6rem;
  color: var(--bp-muted);
  max-width: 42ch;
  font-size: 1.06rem;
  animation: bp-fade-up 0.75s var(--bp-ease) 0.12s both;
}
.bp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  animation: bp-fade-up 0.75s var(--bp-ease) 0.2s both;
}
.bp-hero__coords {
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--bp-muted);
  border-top: 1px dashed var(--bp-line);
  padding-top: 0.9rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.bp-hero__coords strong {
  color: var(--bp-ink);
}
.bp-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bp-white);
  border: 1px solid var(--bp-line);
}
.bp-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(rgba(11, 61, 145, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 145, 0.16) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: bp-grid-in 1s var(--bp-ease) 0.3s forwards;
}
@keyframes bp-grid-in {
  to {
    opacity: 1;
  }
}
.bp-hero__caption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 3;
  background: var(--bp-white);
  border: 1px solid var(--bp-ink);
  padding: 0.5rem 0.7rem;
  font-family: var(--bp-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}
@keyframes bp-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Stat strip ---------- */
.bp-stats-strip {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-top: 1px dashed var(--bp-line);
  border-bottom: 1px dashed var(--bp-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bp-stat {
  text-align: left;
}
.bp-stat strong {
  display: block;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--bp-primary);
  line-height: 1;
}
.bp-stat span {
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
}

/* ---------- About strip (home) ---------- */
.bp-about-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.bp-about-strip__photo {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
}
.bp-about-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-about__list {
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.bp-about__list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--bp-muted);
}
.bp-about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--bp-accent);
}
.bp-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1.5rem 0;
}
.bp-chip {
  border: 1px dashed var(--bp-line);
  padding: 0.9rem 1rem;
}
.bp-chip__title {
  display: block;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}
.bp-chip__text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--bp-muted);
}
.bp-why {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--bp-muted);
}

/* ---------- Numbered service rows ---------- */
.bp-svc-list {
  border-top: 1px dashed var(--bp-line);
}
.bp-svc-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1.25fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px dashed var(--bp-line);
  position: relative;
}
.bp-svc-row__num {
  font-family: var(--bp-mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(11, 61, 145, 0.35);
}
.bp-svc-row__media {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  flex-shrink: 0;
}
.bp-svc-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-svc-row__title {
  margin: 0;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.bp-svc-row__text {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.9rem;
}
.bp-svc-row__arrow {
  font-family: var(--bp-mono);
  color: var(--bp-primary);
  transition: transform 0.25s var(--bp-ease);
}
.bp-svc-row:hover .bp-svc-row__title {
  color: var(--bp-primary);
}
.bp-svc-row:hover .bp-svc-row__arrow {
  transform: translateX(4px);
}
.bp-svc-row:hover .bp-svc-row__num {
  color: var(--bp-primary);
}

/* ---------- Bento mosaic (portfolio) ---------- */
.bp-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.9rem;
}
.bp-mosaic__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
  grid-column: span 2;
  grid-row: span 1;
}
.bp-mosaic__item:nth-child(6n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}
.bp-mosaic__item:nth-child(6n + 4) {
  grid-column: span 2;
  grid-row: span 2;
}
.bp-mosaic__media {
  position: absolute;
  inset: 0;
}
.bp-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--bp-ease);
}
.bp-mosaic__item:hover .bp-mosaic__media img {
  transform: scale(1.06);
}
.bp-mosaic__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(11, 15, 26, 0.82));
  color: var(--bp-white);
  z-index: 1;
}
.bp-mosaic__meta {
  font-family: var(--bp-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-accent);
}
.bp-mosaic__title {
  margin: 0.2rem 0 0;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Skills ---------- */
.bp-skills {
  display: grid;
  gap: 1.15rem;
  max-width: 820px;
}
.bp-skill {
  display: grid;
  grid-template-columns: 9.5rem 1fr 3.2rem;
  align-items: center;
  gap: 1.1rem;
}
.bp-skill__name {
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 0.98rem;
}
.bp-skill__track {
  height: 8px;
  background: var(--bp-line);
  position: relative;
  overflow: hidden;
}
.bp-skill__fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--bp-primary);
  transition: width 1.1s var(--bp-ease);
}
.bp-skill.is-in .bp-skill__fill,
.bp-skill.is-inview .bp-skill__fill {
  width: var(--bp-pct);
}
.bp-skill__pct {
  font-family: var(--bp-mono);
  font-size: 0.85rem;
  color: var(--bp-primary);
  text-align: right;
}

/* ---------- Pricing table ---------- */
.bp-pricing-wrap {
  overflow-x: auto;
  border: 1px solid var(--bp-line);
}
table.bp-pricing {
  min-width: 640px;
}
.bp-pricing th,
.bp-pricing td {
  padding: 1rem 1.25rem;
  border-bottom: 1px dashed var(--bp-line);
  text-align: left;
  vertical-align: top;
}
.bp-pricing thead th {
  border-bottom: 1px solid var(--bp-ink);
  background: var(--bp-white);
}
.bp-pricing thead th:first-child {
  background: transparent;
  border-bottom: none;
}
.bp-pricing__plan-num {
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  color: var(--bp-primary);
  display: block;
  margin-bottom: 0.3rem;
}
.bp-pricing__plan-title {
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.bp-pricing__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  background: var(--bp-accent);
  color: var(--bp-ink);
  font-family: var(--bp-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
}
.bp-pricing tbody th {
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
  font-weight: 500;
  white-space: nowrap;
}
.bp-pricing td.is-price {
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bp-primary);
}
.bp-pricing__features ul {
  display: grid;
  gap: 0.4rem;
}
.bp-pricing__features li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--bp-ink);
}
.bp-pricing__features li::before {
  content: "＋";
  position: absolute;
  left: 0;
  color: var(--bp-primary);
  font-size: 0.8rem;
}
.bp-pricing__col--popular {
  background: rgba(245, 197, 24, 0.1);
}
.bp-pricing__cta td {
  border-bottom: none;
  padding-top: 1.3rem;
}

/* ---------- Blog grid ---------- */
.bp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.bp-post {
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
  transition:
    transform 0.3s var(--bp-ease),
    border-color 0.2s;
  position: relative;
}
.bp-post:hover {
  transform: translateY(-3px);
  border-color: var(--bp-primary);
}
.bp-post__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bp-line);
}
.bp-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-post__body {
  padding: 1.1rem;
}
.bp-post__num {
  font-family: var(--bp-mono);
  font-size: 0.7rem;
  color: var(--bp-primary);
}
.bp-post__title {
  margin: 0.35rem 0 0.4rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.bp-post__text {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.88rem;
}
.bp-post__more {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  color: var(--bp-primary);
}

/* ---------- FAQ ---------- */
.bp-faq {
  border-top: 1px dashed var(--bp-line);
}
.bp-faq__item {
  border-bottom: 1px dashed var(--bp-line);
}
.bp-faq__q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.bp-faq__num {
  font-family: var(--bp-mono);
  font-size: 0.78rem;
  color: var(--bp-primary);
  flex-shrink: 0;
}
.bp-faq__q-text {
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex: 1;
}
.bp-faq__icon {
  font-family: var(--bp-mono);
  color: var(--bp-primary);
  font-weight: 400;
}
.bp-faq__item.is-open .bp-faq__icon {
  color: var(--bp-accent);
}
.bp-faq__a {
  display: none;
  padding: 0 0 1.15rem 2.1rem;
  color: var(--bp-muted);
  font-size: 0.94rem;
  max-width: 60ch;
}
.bp-faq__item.is-open .bp-faq__a {
  display: block;
}

/* ---------- CTA banner ---------- */
.bp-cta {
  position: relative;
  max-width: var(--bp-max);
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}
.bp-cta__inner {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--bp-primary);
  color: var(--bp-white);
  border-top: 6px solid var(--bp-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.bp-cta__title {
  margin: 0 0 0.4rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.bp-cta__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 44ch;
}

/* ---------- Page head ---------- */
.bp-page-head {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.5rem;
  border-bottom: 1px dashed var(--bp-line);
}
.bp-breadcrumb {
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  color: var(--bp-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bp-page-head__title {
  margin: 0.4rem 0 0.6rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.03;
}
.bp-page-head__lead {
  margin: 0;
  color: var(--bp-muted);
  max-width: 52ch;
  font-size: 1.02rem;
}

/* ---------- Generic list grids ---------- */
.bp-list {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.bp-empty {
  color: var(--bp-muted);
  padding: 2rem 0;
  font-family: var(--bp-mono);
  font-size: 0.9rem;
}

/* ---------- Detail with sticky index nav ---------- */
.bp-detail-layout {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 3rem;
}
.bp-detail-nav {
  position: sticky;
  top: 6rem;
  align-self: start;
  border-left: 1px dashed var(--bp-line);
  padding-left: 1.1rem;
}
.bp-detail-nav a {
  display: block;
  font-family: var(--bp-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
  padding: 0.45rem 0;
  border-left: 2px solid transparent;
  margin-left: -1.12rem;
  padding-left: 1.1rem;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.bp-detail-nav a.is-active {
  color: var(--bp-primary);
  border-left-color: var(--bp-accent);
}
.bp-detail-main {
  min-width: 0;
}
.bp-detail-sec {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px dashed var(--bp-line);
}
.bp-detail-sec:last-child {
  border-bottom: none;
}
.bp-detail-sec__label {
  font-family: var(--bp-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bp-primary);
  margin: 0 0 0.9rem;
}
.bp-cover {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  margin-bottom: 0.5rem;
}
.bp-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
}
.bp-pill {
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--bp-line);
  font-family: var(--bp-mono);
  font-size: 0.72rem;
  color: var(--bp-primary);
}
.bp-prose {
  font-size: 1.02rem;
  color: var(--bp-ink);
}
.bp-prose p {
  margin: 0 0 1rem;
}
.bp-prose h2,
.bp-prose h3 {
  font-family: var(--bp-display);
  margin: 1.5rem 0 0.6rem;
}
.bp-prose ul,
.bp-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  list-style: disc;
}
.bp-prose a {
  color: var(--bp-primary);
  font-weight: 700;
}
.bp-quote {
  border-left: 3px solid var(--bp-accent);
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  font-family: var(--bp-display);
  font-size: 1.25rem;
  font-style: normal;
  color: var(--bp-ink);
}
.bp-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.bp-detail-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--bp-line);
}

/* ---------- Hub grids (Referans / Yorum / Galeri / Sertifika / Deneyim / Eğitim / Yetenek) ---------- */
.bp-refs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bp-ref-card {
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: center;
}
.bp-ref-card__logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
}
.bp-ref-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-ref-card__firm {
  font-family: var(--bp-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-primary);
}
.bp-ref-card__title {
  margin: 0.2rem 0 0.3rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.bp-ref-card__text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--bp-muted);
}

.bp-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bp-quote-card {
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.bp-quote-card__mark {
  font-family: var(--bp-display);
  font-size: 2.2rem;
  color: var(--bp-accent);
  line-height: 1;
}
.bp-quote-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--bp-ink);
  flex: 1;
}
.bp-quote-card__who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.bp-quote-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bp-primary);
  color: var(--bp-white);
  display: grid;
  place-items: center;
  font-family: var(--bp-display);
  font-weight: 700;
  flex-shrink: 0;
}
.bp-quote-card__name {
  font-weight: 700;
  font-size: 0.88rem;
  display: block;
}
.bp-quote-card__title {
  font-family: var(--bp-mono);
  font-size: 0.7rem;
  color: var(--bp-muted);
  display: block;
}

.bp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.bp-gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--bp-line);
}
.bp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--bp-ease);
}
.bp-gallery-item:hover img {
  transform: scale(1.06);
}
.bp-gallery-item__tag {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.25rem 0.55rem;
  background: var(--bp-white);
  font-family: var(--bp-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bp-cert-list {
  border-top: 1px dashed var(--bp-line);
}
.bp-cert-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--bp-line);
}
.bp-cert-row__badge {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  background: var(--bp-surface);
  display: grid;
  place-items: center;
}
.bp-cert-row__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-cert-row__badge svg {
  width: 24px;
  height: 24px;
  color: var(--bp-primary);
}
.bp-cert-row__title {
  margin: 0;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1rem;
}
.bp-cert-row__issuer {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--bp-muted);
}
.bp-cert-row__year {
  font-family: var(--bp-mono);
  font-size: 0.85rem;
  color: var(--bp-primary);
}

.bp-timeline {
  position: relative;
  border-left: 1px dashed var(--bp-line);
  padding-left: 1.75rem;
  display: grid;
  gap: 1.75rem;
}
.bp-timeline__item {
  position: relative;
}
.bp-timeline__item::before {
  content: "";
  position: absolute;
  left: -1.98rem;
  top: 0.3rem;
  width: 9px;
  height: 9px;
  background: var(--bp-primary);
}
.bp-timeline__year {
  font-family: var(--bp-mono);
  font-size: 0.75rem;
  color: var(--bp-primary);
  letter-spacing: 0.05em;
}
.bp-timeline__title {
  margin: 0.25rem 0 0.3rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.08rem;
}
.bp-timeline__text {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.92rem;
}

/* ---------- About page ---------- */
.bp-about-hero {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.bp-about-hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
}
.bp-about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-mission {
  font-family: var(--bp-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  border-left: 3px solid var(--bp-accent);
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}
.bp-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.bp-value-card {
  border: 1px solid var(--bp-line);
  background: var(--bp-white);
  padding: 1.3rem;
}
.bp-value-card__num {
  font-family: var(--bp-mono);
  font-size: 0.75rem;
  color: var(--bp-primary);
}
.bp-value-card__title {
  margin: 0.4rem 0 0.4rem;
  font-family: var(--bp-display);
  font-weight: 700;
  font-size: 1.08rem;
}
.bp-value-card__text {
  margin: 0;
  color: var(--bp-muted);
  font-size: 0.9rem;
}

/* ---------- Contact ---------- */
.bp-contact {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.1rem;
}
.bp-contact__panel {
  background: var(--bp-white);
  border: 1px solid var(--bp-line);
  padding: 1.6rem;
}
.bp-contact__panel h2 {
  margin: 0 0 1rem;
  font-family: var(--bp-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.bp-contact__list {
  display: grid;
  gap: 0.85rem;
  color: var(--bp-muted);
}
.bp-contact__list a {
  color: var(--bp-primary);
  font-weight: 700;
}
.bp-form {
  display: grid;
  gap: 0.9rem;
}
.bp-field label {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--bp-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-muted);
}
.bp-field input,
.bp-field textarea,
.bp-field select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: var(--bp-surface);
  border: 1px solid var(--bp-line);
  color: var(--bp-ink);
  font-family: var(--bp-body);
  border-radius: var(--bp-radius);
}
.bp-field input:focus,
.bp-field textarea:focus {
  outline: 2px solid var(--bp-primary);
  outline-offset: 1px;
}
.bp-alert {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.bp-alert--ok {
  background: rgba(11, 61, 145, 0.08);
  color: var(--bp-primary-ink);
}
.bp-alert--error {
  background: rgba(226, 61, 40, 0.1);
  color: #a9321f;
}

.bp-quick-contact {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  background: var(--bp-ink);
  color: var(--bp-white);
  display: grid;
  place-items: center;
  border: 2px solid var(--bp-accent);
}
.bp-quick-contact svg {
  width: 20px;
  height: 20px;
}

/* ---------- Footer ---------- */
.bp-footer {
  border-top: 1px solid var(--bp-line);
  background: var(--bp-white);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}
.bp-footer__inner {
  max-width: var(--bp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.6fr 0.6fr 0.6fr;
  gap: 1.75rem;
}
.bp-footer__brand {
  font-family: var(--bp-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.bp-footer__tag {
  margin: 0.6rem 0 0;
  color: var(--bp-muted);
  font-size: 0.88rem;
  max-width: 30ch;
}
.bp-footer h4 {
  margin: 0 0 0.75rem;
  font-family: var(--bp-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bp-primary);
}
.bp-footer a {
  color: var(--bp-muted);
}
.bp-footer a:hover {
  color: var(--bp-primary);
}
.bp-footer ul {
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
}
.bp-footer__copy {
  max-width: var(--bp-max);
  margin: 2rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--bp-line);
  font-family: var(--bp-mono);
  font-size: 0.7rem;
  color: var(--bp-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Motion / reveal ---------- */
.bp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--bp-ease),
    transform 0.65s var(--bp-ease);
}
.bp-reveal.is-in,
.bp-reveal.is-inview,
html.bp-motion-off .bp-reveal,
html:not(.bp-js) .bp-reveal {
  opacity: 1;
  transform: none;
}
html[data-motion="low"] .bp-reveal,
html[data-motion="low"] .bp-hero__title,
html[data-motion="low"] .bp-hero__text,
html[data-motion="low"] .bp-hero__actions,
html[data-motion="low"] .bp-hero__grid,
html[data-motion="low"] .bp-available i {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
html[data-motion="low"] .bp-skill__fill {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  html,
  .bp-reveal,
  .bp-hero__title,
  .bp-hero__text,
  .bp-hero__actions,
  .bp-hero__grid,
  .bp-available i,
  .bp-skill__fill {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .bp-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .bp-mosaic__item,
  .bp-mosaic__item:nth-child(6n + 1),
  .bp-mosaic__item:nth-child(6n + 4) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bp-post-grid,
  .bp-quotes-grid,
  .bp-refs-grid,
  .bp-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bp-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .bp-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .bp-hero,
  .bp-about-strip,
  .bp-contact,
  .bp-about-hero,
  .bp-values-grid {
    grid-template-columns: 1fr;
  }
  .bp-detail-layout {
    grid-template-columns: 1fr;
  }
  .bp-detail-nav {
    position: static;
    border-left: none;
    border-top: 1px dashed var(--bp-line);
    padding: 1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }
  .bp-detail-nav a {
    margin-left: 0;
    border-left: none;
    padding: 0.2rem 0;
  }
  .bp-detail-nav a.is-active {
    border-left: none;
    text-decoration: underline;
    text-decoration-color: var(--bp-accent);
  }
}
@media (max-width: 720px) {
  .bp-header__cta {
    display: none;
  }
  .bp-svc-row {
    grid-template-columns: 1fr auto;
  }
  .bp-svc-row__media {
    display: none;
  }
  .bp-svc-row__text {
    grid-column: 1 / -1;
  }
  .bp-post-grid,
  .bp-quotes-grid,
  .bp-refs-grid,
  .bp-gallery-grid {
    grid-template-columns: 1fr;
  }
  .bp-stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .bp-skill {
    grid-template-columns: 6.5rem 1fr 2.6rem;
  }
  .bp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Zar Yazılım credit logo (footer) */
.bp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.bp-footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.bp-footer__cms {
  display: inline-flex;
  align-items: center;
  opacity: 0.88;
  transition: opacity 0.2s ease;
  line-height: 0;
}
.bp-footer__cms:hover {
  opacity: 1;
}
.bp-footer__cms img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Integration: mono-bracket lang, drawer, slider, nl, captcha */
.bp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.bp-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.bp-brand__logo {
  height: 2rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
}
.bp-brand__text {
  font-family:
    Space Grotesk,
    sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bp-ink);
}
.bp-lang--bracket {
  display: inline-flex;
  gap: 0.35rem;
  font-family:
    IBM Plex Mono,
    monospace;
}
.bp-lang--header a {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  min-height: 2rem;
  padding: 0 0.45rem;
  border: 1px solid var(--bp-line);
  background: #fff;
  color: var(--bp-ink);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
}
.bp-lang--header a.is-active {
  background: var(--bp-primary);
  color: #fff;
  border-color: var(--bp-primary);
}
.bp-lang__l,
.bp-lang__r {
  opacity: 0.55;
}
.bp-lang--drawer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
}
.bp-nav__foot .bp-btn.bp-nav__cta {
  color: white;
}
.bp-lang--drawer a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 3.2rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--bp-line);
  background: #fff;
  color: var(--bp-ink);
  text-decoration: none;
}
.bp-lang--drawer a.is-active {
  border-color: var(--bp-accent);
  box-shadow: inset 0 -2px 0 var(--bp-accent);
}
.bp-nav--desktop {
  margin-left: auto;
}
.bp-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--bp-line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}
.bp-nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 18px;
  flex-shrink: 0;
}
.bp-nav-toggle__bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bp-ink);
  transition:
    transform 0.25s,
    opacity 0.2s;
}
.bp-nav-toggle__label {
  font-size: 0.75rem;
  font-weight: 800;
}
.bp-nav-toggle[aria-expanded="true"] .bp-nav-toggle__bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.bp-nav-toggle[aria-expanded="true"] .bp-nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.bp-nav-toggle[aria-expanded="true"] .bp-nav-toggle__bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 900px) {
  .bp-nav--desktop,
  .bp-header__cta,
  .bp-lang--header,
  .bp-available {
    display: none !important;
  }
  .bp-nav-toggle {
    display: inline-flex !important;
  }
  .bp-header__shell {
    justify-content: space-between;
  }
}
.bp-nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(12, 20, 40, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.bp-nav-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}
.bp-nav--mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: min(22rem, 92vw);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.bp-nav--mobile.is-open {
  transform: none;
  pointer-events: auto;
}
.bp-nav__panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bp-surface);
  padding: 1.1rem 1.15rem 1.35rem;
  box-shadow: -16px 0 40px rgba(11, 61, 145, 0.18);
}
.bp-nav__mast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.bp-nav__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #667;
}
.bp-nav__close {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--bp-line);
  background: #fff;
  cursor: pointer;
  position: relative;
}
.bp-nav__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--bp-ink);
  transform: translate(-50%, -50%) rotate(45deg);
}
.bp-nav__close span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  transform: rotate(90deg);
}
.bp-nav--mobile .bp-nav__list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow: auto;
  counter-reset: bpnav;
}
.bp-nav--mobile .bp-nav__list > li {
  border-bottom: 1px solid var(--bp-line);
  counter-increment: bpnav;
}
.bp-nav--mobile .bp-nav__list > li > a {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 0.1rem;
  color: var(--bp-ink);
  text-decoration: none;
  font-weight: 700;
}
.bp-nav--mobile .bp-nav__list > li > a::before {
  content: counter(bpnav, decimal-leading-zero);
  font-family:
    IBM Plex Mono,
    monospace;
  font-size: 0.72rem;
  color: var(--bp-primary);
}
.bp-nav__foot {
  display: grid;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
}
.bp-nav__meta {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}
.bp-nav__meta a {
  color: #667;
  text-decoration: none;
}
body.bp-nav-open {
  overflow: hidden;
}
.bp-hero__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}
.bp-hero__nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--bp-line);
  background: #fff;
  cursor: pointer;
}
.bp-hero__dots {
  display: inline-flex;
  gap: 0.35rem;
}
.bp-hero__dot {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 0;
  background: var(--bp-line);
  cursor: pointer;
  padding: 0;
}
.bp-hero__dot.is-active {
  background: var(--bp-accent);
}
.bp-footer__nl {
  max-width: var(--bp-max);
  margin: 0 auto 2.5rem;
  display: grid;
  gap: 1rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--bp-line);
}
@media (min-width: 800px) {
  .bp-footer__nl {
    grid-template-columns: 1fr 1.2fr;
    align-items: end;
    gap: 1.5rem 2.5rem;
  }
}
.bp-footer__nl-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bp-footer__nl-title {
  margin: 0;
  font-family:
    Space Grotesk,
    sans-serif;
  font-size: 1.35rem;
}
.bp-footer__nl-tabs {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}
.bp-footer__nl-tab {
  border: 1px solid var(--bp-line);
  background: transparent;
  padding: 0.3rem 0.7rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.bp-footer__nl-tab.is-active {
  background: var(--bp-primary);
  color: #fff;
  border-color: var(--bp-primary);
}
.bp-footer__nl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bp-footer__nl-input {
  flex: 1 1 12rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--bp-line);
  background: #fff;
}
.bp-footer__nl-msg {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
}
.bp-footer__nl-msg.is-ok {
  color: #2f6b3a;
}
.bp-footer__nl-msg.is-err {
  color: #a33;
}
.bp-footer__legal-bar {
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bp-line);
}
.bp-footer__legal-bar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}
.bp-footer__legal-bar a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
}
.bp-captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.bp-captcha img {
  border: 1px solid var(--bp-line);
  background: #fff;
}
.bp-captcha__refresh {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--bp-line);
  background: #fff;
  cursor: pointer;
}
.bp-captcha input {
  flex: 1 1 8rem;
  min-height: 2.5rem;
}
.bp-map {
  margin: 0 clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  border: 1px solid var(--bp-line);
  overflow: hidden;
}
.bp-map__frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}
