:root {
  --yb-offwhite: #fdfbf7;
  --yb-lightgreen: #e8f0eb;
  --yb-pinegreen: #1a4d42;
  --yb-ochre: #d98a3c;
  --yb-radius: 16px;
  --yb-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.yb-header {
  background-color: var(--yb-offwhite);
  color: var(--yb-pinegreen);
  border-bottom: 1px solid var(--yb-lightgreen);
  position: sticky;
  top: 0;
  z-index: 40;
  font-family: var(--yb-font-sans);
}
.yb-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.yb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--yb-pinegreen);
  font-weight: 700;
  font-size: 1.25rem;
}
.yb-brand svg {
  width: 32px;
  height: 32px;
  fill: var(--yb-pinegreen);
}
.yb-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.yb-nav__link {
  text-decoration: none;
  color: var(--yb-pinegreen);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.yb-nav__link:hover {
  color: var(--yb-ochre);
}
.yb-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.yb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--yb-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--yb-font-sans);
  border: none;
  cursor: pointer;
}
.yb-btn--primary {
  background-color: var(--yb-pinegreen);
  color: var(--yb-offwhite);
}
.yb-btn--primary:hover {
  background-color: var(--yb-ochre);
  color: #fff;
}
.yb-btn--full {
  width: 100%;
}
.yb-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.yb-burger__line {
  width: 100%;
  height: 3px;
  background-color: var(--yb-pinegreen);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.yb-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  font-family: var(--yb-font-sans);
}
.yb-mobile-nav[hidden] {
  display: none;
}
.yb-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 66, 0.4);
  backdrop-filter: blur(4px);
}
.yb-mobile-nav__sheet {
  position: relative;
  width: 100%;
  max-width: 360px;
  background-color: var(--yb-offwhite);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.1);
  animation: slideIn 0.3s ease forwards;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.yb-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--yb-lightgreen);
}
.yb-brand__text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--yb-pinegreen);
}
.yb-mobile-nav__close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--yb-pinegreen);
  cursor: pointer;
  line-height: 1;
}
.yb-mobile-nav__links {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.yb-mobile-nav__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--yb-pinegreen);
  text-decoration: none;
  transition: color 0.2s ease;
}
.yb-mobile-nav__link:hover {
  color: var(--yb-ochre);
}
.yb-mobile-nav__footer {
  padding: 24px;
  border-top: 1px solid var(--yb-lightgreen);
}
.yb-footer {
  background-color: var(--yb-pinegreen);
  color: var(--yb-offwhite);
  font-family: var(--yb-font-sans);
  padding: 64px 24px 24px;
  margin-top: 64px;
}
.yb-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  gap: 48px;
}
.yb-footer__brand {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--yb-offwhite);
}
.yb-footer__tagline {
  color: var(--yb-lightgreen);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  max-width: 300px;
}
.yb-footer__contact-slab {
  background-color: rgba(232, 240, 235, 0.05);
  padding: 24px;
  border-radius: var(--yb-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.yb-footer__eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yb-ochre);
  font-weight: 700;
  margin-bottom: 16px;
}
.yb-footer__email {
  color: var(--yb-offwhite);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}
.yb-footer__email:hover {
  color: var(--yb-ochre);
}
.yb-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yb-footer__link {
  color: var(--yb-lightgreen);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.yb-footer__link:hover {
  color: var(--yb-ochre);
}
.yb-footer__bottom {
  max-width: 1200px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 240, 235, 0.1);
  text-align: center;
  color: var(--yb-lightgreen);
  font-size: 0.875rem;
  opacity: 0.8;
}
@media (max-width: 992px) {
  .yb-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .yb-nav--desktop {
    display: none;
  }
  .yb-header__actions .yb-btn {
    display: none;
  }
  .yb-burger {
    display: flex;
  }
  .yb-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .yb-footer__contact-slab {
    padding: 20px;
  }
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
