@charset "UTF-8";
.card {
  background-color: #FFFFFF;
  border: 2px solid #1A1A1A;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 #1A1A1A;
}

.btn-primary {
  display: inline-block;
  background-color: #E63946;
  color: #FFFFFF;
  border: 2px solid #1A1A1A;
  border-radius: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #FFBE0B;
  color: #1A1A1A;
  border-color: #1A1A1A;
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 #1A1A1A;
}

.btn-secondary {
  display: inline-block;
  background-color: #FFFFFF;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  border-radius: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #E63946;
  color: #FFFFFF;
  border-color: #1A1A1A;
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 #1A1A1A;
}

.badge-bauhaus {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
}
@media (max-width: 767px) {
  .badge-bauhaus {
    font-size: 0.75rem;
  }
}
.badge-bauhaus {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border: 1px solid #1A1A1A;
}
.badge-bauhaus--info {
  background-color: #3A86FF;
  color: #FFFFFF;
}
.badge-bauhaus--warning {
  background-color: #FFBE0B;
  color: #1A1A1A;
}
.badge-bauhaus--success {
  background-color: #E63946;
  color: #FFFFFF;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #FFFFFF;
  border: 2px solid #1A1A1A;
  padding: 1.1rem 1.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.guide-step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 #1A1A1A;
}

.guide-step--warning {
  border-color: #E63946;
}

.guide-step--success {
  border-color: #3A86FF;
}

.guide-step__marker {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1A1A1A;
  background-color: #FFBE0B;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1A1A1A;
}

.guide-step--warning .guide-step__marker {
  background-color: #E63946;
  color: #FFFFFF;
}

.guide-step--success .guide-step__marker {
  background-color: #3A86FF;
  color: #FFFFFF;
}

.guide-step__body {
  flex: 1;
  min-width: 0;
}

.guide-step__badge {
  margin-bottom: 0.4rem;
}

.guide-step__title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin: 0 0 0.35rem;
}
@media (max-width: 767px) {
  .guide-step__title {
    font-size: 1.125rem;
  }
}

.guide-step__description {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4A4A4A;
}
@media (max-width: 767px) {
  .guide-step__description {
    font-size: 1rem;
    line-height: 1.65;
  }
}
.guide-step__description p {
  margin: 0 0 0.5rem;
}
.guide-step__description a {
  color: #E63946;
  text-decoration: underline;
}

.guide-step__link {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
}

.guide-step--clickable {
  cursor: pointer;
}

.guide-step-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  visibility: hidden;
  pointer-events: none;
}

.guide-step-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.guide-step-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.55);
}

.guide-step-modal__panel {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  max-height: min(80vh, 42rem);
  overflow-y: auto;
  background-color: #FFFFFF;
  border: 3px solid #1A1A1A;
  padding: 2.25rem 1.5rem 1.5rem;
  box-shadow: 6px 6px 0 #1A1A1A;
}

.guide-step-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #FFFFFF;
  border: 2px solid #1A1A1A;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease;
}
.guide-step-modal__close:hover {
  background-color: #E63946;
  color: #FFFFFF;
}

.guide-step-modal__title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1A1A1A;
  margin: 0 0 0.75rem;
  padding-right: 2rem;
}

.guide-step-modal__body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1A1A1A;
}
.guide-step-modal__body p {
  margin: 0 0 1.1rem;
}
.guide-step-modal__body a {
  color: #E63946;
  text-decoration: underline;
}

.guide-step-modal__body .guide-detail__label,
.guide-step__detail .guide-detail__label {
  color: #3A86FF;
  font-weight: 700;
}
.guide-step-modal__body .guide-detail__danger,
.guide-step__detail .guide-detail__danger {
  color: #E63946;
  font-weight: 700;
}

.bauhaus-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #F9F5EF;
  border-bottom: 3px solid #1A1A1A;
}

.bauhaus-header__bar {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bauhaus-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  min-width: 0;
}

.bauhaus-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bauhaus-brand__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bauhaus-brand__title {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1A1A1A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .bauhaus-brand__title {
    display: none;
  }
}

.bauhaus-brand:hover .bauhaus-brand__mark {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 #FFBE0B;
}

.bauhaus-nav {
  display: none;
}
@media (min-width: 1024px) {
  .bauhaus-nav {
    display: block;
  }
}

.bauhaus-nav__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bauhaus-nav__link {
  display: inline-block;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1A1A1A;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 2px solid transparent;
  transition: all 0.15s ease-in-out;
}
.bauhaus-nav__link:hover {
  color: #1A1A1A;
  background-color: #FFBE0B;
  border-color: #1A1A1A;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 #E63946;
}

.bauhaus-nav__item.is-active .bauhaus-nav__link {
  color: #FFFFFF;
  background-color: #E63946;
  border-color: #1A1A1A;
  box-shadow: 3px 3px 0 #FFBE0B;
}

.bauhaus-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.bauhaus-lang {
  position: relative;
}

.bauhaus-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: auto;
  height: 2.5rem;
  padding: 0 0.6rem;
  background-color: #FFFFFF;
  border: 2px solid #1A1A1A;
  color: #1A1A1A;
  cursor: pointer;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.bauhaus-lang__toggle:hover, .bauhaus-lang__toggle[aria-expanded=true] {
  background-color: #FFBE0B;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 #E63946;
}
.bauhaus-lang__toggle svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.bauhaus-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 9rem;
  background-color: #F9F5EF;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0 #E63946;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 60;
}
.bauhaus-lang__menu.is-open {
  display: flex;
}
.bauhaus-lang__menu li {
  margin: 0;
}
.bauhaus-lang__menu a {
  display: block;
  color: #1A1A1A;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  transition: background-color 0.15s ease;
}
.bauhaus-lang__menu a:hover {
  background-color: #FFBE0B;
}
.bauhaus-lang__menu li.is-active a {
  background-color: #E63946;
  color: #FFFFFF;
}

.bauhaus-burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #E63946;
  border: 2px solid #1A1A1A;
  cursor: pointer;
  padding: 0;
  transition: all 0.15s ease;
}
.bauhaus-burger:hover {
  background-color: #FFBE0B;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 #1A1A1A;
}

.bauhaus-burger__line {
  display: block;
  width: 1.15rem;
  height: 2px;
  background-color: #FFFFFF;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.bauhaus-burger[aria-expanded=true] {
  background-color: #1A1A1A;
}
.bauhaus-burger[aria-expanded=true] .bauhaus-burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.bauhaus-burger[aria-expanded=true] .bauhaus-burger__line:nth-child(2) {
  opacity: 0;
}
.bauhaus-burger[aria-expanded=true] .bauhaus-burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.bauhaus-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.3s;
}

.bauhaus-offcanvas__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bauhaus-offcanvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(85vw, 22rem);
  background-color: #F9F5EF;
  border-left: 4px solid #1A1A1A;
  overflow-y: auto;
  padding: 4.5rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bauhaus-offcanvas.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}
.bauhaus-offcanvas.is-open .bauhaus-offcanvas__overlay {
  opacity: 1;
}
.bauhaus-offcanvas.is-open .bauhaus-offcanvas__panel {
  transform: translateX(0);
}

.bauhaus-offcanvas__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  background-color: #FFFFFF;
  border: 2px solid #1A1A1A;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease;
}
.bauhaus-offcanvas__close:hover {
  background-color: #E63946;
  color: #FFFFFF;
}

.bauhaus-tree__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bauhaus-tree__list--lvl1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid #3A86FF;
  display: none;
}

.bauhaus-tree__item {
  margin-bottom: 0.6rem;
}

.bauhaus-tree__item.is-open > .bauhaus-tree__list--lvl1 {
  display: block;
}

.bauhaus-tree__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: #FFFFFF;
  border: 2px solid #1A1A1A;
  padding: 0.6rem 0.75rem;
  transition: all 0.15s ease-in-out;
}
.bauhaus-tree__row:hover {
  background-color: #FFBE0B;
}

.bauhaus-tree__list--lvl1 .bauhaus-tree__row {
  padding: 0.4rem 0.6rem;
  border-width: 1px;
}

.bauhaus-tree__link {
  flex: 1;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1A1A1A;
  text-decoration: none;
}

.bauhaus-tree__list--lvl1 .bauhaus-tree__link {
  font-size: 0.72rem;
}

.bauhaus-tree__toggle {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: #1A1A1A;
  transition: transform 0.2s ease-in-out;
}

.bauhaus-tree__item.is-open > .bauhaus-tree__row .bauhaus-tree__toggle {
  transform: rotate(180deg);
}

.bauhaus-tree__item.is-active > .bauhaus-tree__row {
  background-color: #E63946;
  border-color: #1A1A1A;
}
.bauhaus-tree__item.is-active > .bauhaus-tree__row .bauhaus-tree__link {
  color: #FFFFFF;
}
.bauhaus-tree__item.is-active > .bauhaus-tree__row .bauhaus-tree__toggle {
  color: #FFFFFF;
}

.bauhaus-footer {
  background-color: #1A1A1A;
  border-top: 4px solid #E63946;
  margin-top: auto;
}

.bauhaus-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bauhaus-footer__copyright {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F9F5EF;
  margin: 0;
}

.bauhaus-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.bauhaus-footer__link {
  display: inline-block;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F9F5EF;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.bauhaus-footer__link:hover, .bauhaus-footer__link:focus {
  color: #1A1A1A;
  background-color: #FFBE0B;
  border-color: #F9F5EF;
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 #E63946;
}

.bauhaus-footer__link--button {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bauhaus-legal {
  max-width: none;
  margin: 0 auto;
  padding: 3rem 0 4.5rem;
  color: #1A1A1A;
  line-height: 1.65;
}
.bauhaus-legal__kicker {
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E63946;
}
.bauhaus-legal h1 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
}
.bauhaus-legal h2 {
  margin: 2rem 0 0.75rem;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1A1A;
}
.bauhaus-legal h2::before {
  content: "▪ ";
  color: #E63946;
}
.bauhaus-legal p,
.bauhaus-legal ul {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: #1A1A1A;
}
.bauhaus-legal ul {
  padding-left: 1.25rem;
}
.bauhaus-legal li {
  margin-bottom: 0.35rem;
}
.bauhaus-legal a {
  color: #E63946;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bauhaus-legal a:hover {
  color: #1A1A1A;
}
.bauhaus-legal code {
  font-size: 0.85em;
  word-break: break-all;
}
.bauhaus-legal__note {
  margin: 1.25rem 0 1.75rem;
  padding: 0.9rem 1rem;
  border: 2px solid #1A1A1A;
  background: #FFFFFF;
  font-size: 0.9rem;
}
.bauhaus-legal__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}
.bauhaus-legal__meta {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #4A4A4A;
}

/* ── Banner container ──────────────────────────────────────────────────────── */
.cookie-consent-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 620px;
  background-color: #F9F5EF;
  border: 4px solid #1A1A1A;
  border-radius: 0;
  box-shadow: 8px 8px 0 #1A1A1A;
  z-index: 10000;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
}

.cookie-consent-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent-banner.hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

/* ── Content scroll wrapper ────────────────────────────────────────────────── */
.cookie-consent-content {
  padding: 24px;
  max-height: 85vh;
  overflow-y: auto;
}
.cookie-consent-content::-webkit-scrollbar {
  width: 8px;
}
.cookie-consent-content::-webkit-scrollbar-track {
  background: #F9F5EF;
}
.cookie-consent-content::-webkit-scrollbar-thumb {
  background: #1A1A1A;
  border: 1px solid #F9F5EF;
}
.cookie-consent-content::-webkit-scrollbar-thumb:hover {
  background: #E63946;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.cookie-consent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid #1A1A1A;
}
.cookie-consent-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-icon {
  width: 26px;
  height: 26px;
  color: #E63946;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.cookie-consent-close {
  background: #FFBE0B;
  border: 2px solid #1A1A1A;
  border-radius: 0;
  cursor: pointer;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  transition: all 0.15s ease-in-out;
}
.cookie-consent-close:hover {
  background-color: #E63946;
  color: #FFFFFF;
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 #1A1A1A;
}
.cookie-consent-close:focus {
  outline: 3px solid #FFBE0B;
  outline-offset: 2px;
}

/* ── Intro text ────────────────────────────────────────────────────────────── */
.cookie-consent-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #1A1A1A;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ── Categories ────────────────────────────────────────────────────────────── */
.cookie-consent-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.cookie-category {
  border: 2px solid #1A1A1A;
  border-radius: 0;
  padding: 16px;
  background: #FFFFFF;
  transition: all 0.15s ease-in-out;
}
.cookie-category:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #FFBE0B;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.cookie-category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
}

.cookie-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #1A1A1A;
  border-radius: 0;
  flex-shrink: 0;
}
.cookie-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.cookie-checkbox:focus {
  outline: 3px solid #FFBE0B;
  outline-offset: 2px;
}

.cookie-category-title {
  font-weight: 800;
  font-size: 15px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cookie-required-badge {
  background: #FFBE0B;
  color: #1A1A1A;
  padding: 3px 10px;
  border: 1px solid #1A1A1A;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 8px;
}

.cookie-category-toggle {
  background: #F9F5EF;
  border: 2px solid #1A1A1A;
  border-radius: 0;
  cursor: pointer;
  padding: 4px 8px;
  color: #1A1A1A;
  transition: all 0.15s ease-in-out;
}
.cookie-category-toggle svg {
  transition: transform 0.25s ease-in-out;
}
.cookie-category-toggle:hover {
  background-color: #3A86FF;
  color: #FFFFFF;
}
.cookie-category-toggle:focus {
  outline: 3px solid #FFBE0B;
  outline-offset: 2px;
}

.cookie-category-description {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
}

.cookie-category-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dashed #1A1A1A;
}

.cookie-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cookie-list li {
  padding: 10px 14px;
  background: #F9F5EF;
  border-radius: 0;
  margin-bottom: 8px;
  font-size: 13px;
  border: 2px solid #1A1A1A;
}
.cookie-list li:last-child {
  margin-bottom: 0;
}
.cookie-list strong {
  color: #1A1A1A;
  font-weight: 700;
}

.cookie-purpose {
  color: #444;
  display: block;
  margin-top: 4px;
}

.cookie-duration {
  color: #555;
  font-size: 12px;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.cookie-no-data {
  font-size: 13px;
  color: #1A1A1A;
  font-style: italic;
  margin: 0;
}

/* ── Privacy policy link ───────────────────────────────────────────────────── */
.cookie-consent-info {
  font-size: 13px;
  color: #1A1A1A;
  padding-top: 14px;
  border-top: 2px solid #1A1A1A;
  font-weight: 600;
}
.cookie-consent-info a {
  color: #E63946;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
}
.cookie-consent-info a:hover {
  color: #1A1A1A;
  background-color: #FFBE0B;
  padding: 2px 4px;
  text-decoration: none;
}

/* ── Footer buttons ────────────────────────────────────────────────────────── */
.cookie-consent-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border: 2px solid #1A1A1A !important;
  border-radius: 0 !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}
.cookie-btn:focus {
  outline: 3px solid #FFBE0B !important;
  outline-offset: 2px;
}

.cookie-btn-primary {
  background: #3A86FF;
  color: #FFFFFF;
}
.cookie-btn-primary:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #1A1A1A;
}

.cookie-btn-secondary {
  background: #F9F5EF;
  color: #1A1A1A;
}
.cookie-btn-secondary:hover {
  background: #1A1A1A;
  color: #F9F5EF;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #3A86FF;
}

.cookie-btn-tertiary {
  background: #FFBE0B;
  color: #1A1A1A;
}
.cookie-btn-tertiary:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #1A1A1A;
}

/* ── Minimized floating icon ───────────────────────────────────────────────── */
.cookie-consent-icon {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  background: #1A1A1A;
  border: 3px solid #1A1A1A;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 #FFBE0B;
  z-index: 9999;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: scale(0);
}
.cookie-consent-icon svg {
  color: #FFFFFF;
  width: 26px;
  height: 26px;
}
.cookie-consent-icon.visible {
  opacity: 1;
  transform: scale(1);
}
.cookie-consent-icon.hidden {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}
.cookie-consent-icon:hover {
  background: #E63946;
  box-shadow: 6px 6px 0 #3A86FF;
  transform: translate(-2px, -2px);
}
.cookie-consent-icon:focus {
  outline: 3px solid #FFBE0B !important;
  outline-offset: 3px;
}

.cookie-icon-tooltip {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #1A1A1A;
  color: #F9F5EF;
  border: 2px solid #1A1A1A;
  border-radius: 0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  box-shadow: 3px 3px 0 #FFBE0B;
}
.cookie-icon-tooltip::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #1A1A1A;
}

.cookie-consent-icon:hover .cookie-icon-tooltip {
  opacity: 1;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    box-shadow: 5px 5px 0 #1A1A1A;
  }
  .cookie-consent-content {
    padding: 16px;
  }
  .cookie-consent-header h3 {
    font-size: 16px;
  }
  .cookie-consent-footer {
    flex-direction: column;
  }
  .cookie-btn {
    min-width: 100%;
  }
  .cookie-consent-icon {
    width: 46px;
    height: 46px;
    bottom: 15px;
    left: 15px;
  }
  .cookie-consent-icon svg {
    width: 22px;
    height: 22px;
  }
  .cookie-icon-tooltip {
    display: none;
  }
}
*, ::before, ::after {
  box-sizing: border-box;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

.container{
  width: 100%;
}

@media (min-width: 320px){
  .container{
    max-width: 320px;
  }
}

@media (min-width: 480px){
  .container{
    max-width: 480px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

@media (min-width: 1440px){
  .container{
    max-width: 1440px;
  }
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.-left-\[9999px\]{
  left: -9999px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-4{
  bottom: 1rem;
}
.left-1\/2{
  left: 50%;
}
.left-4{
  left: 1rem;
}
.right-4{
  right: 1rem;
}
.top-1\/2{
  top: 50%;
}
.top-4{
  top: 1rem;
}
.z-10{
  z-index: 10;
}
.z-50{
  z-index: 50;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mb-lg{
  margin-bottom: 1.5rem;
}
.mb-md{
  margin-bottom: 1rem;
}
.mb-sm{
  margin-bottom: 0.5rem;
}
.mb-xl{
  margin-bottom: 2rem;
}
.mb-xs{
  margin-bottom: 0.25rem;
}
.mt-md{
  margin-top: 1rem;
}
.mt-sm{
  margin-top: 0.5rem;
}
.block{
  display: block;
}
.flex{
  display: flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.h-24{
  height: 6rem;
}
.h-5{
  height: 1.25rem;
}
.h-full{
  height: 100%;
}
.max-h-\[85vh\]{
  max-height: 85vh;
}
.min-h-screen{
  min-height: 100vh;
}
.w-24{
  width: 6rem;
}
.w-5{
  width: 1.25rem;
}
.w-full{
  width: 100%;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-\[90vw\]{
  max-width: 90vw;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink{
  flex-shrink: 1;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-center{
  align-items: center;
}
.items-stretch{
  align-items: stretch;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-lg{
  gap: 1.5rem;
}
.gap-md{
  gap: 1rem;
}
.gap-sm{
  gap: 0.5rem;
}
.space-y-md > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-sm > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-md{
  border-radius: 0px;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-t{
  border-top-width: 1px;
}
.border-border{
  --tw-border-opacity: 1;
  border-color: rgb(26 26 26 / var(--tw-border-opacity, 1));
}
.border-primary{
  --tw-border-opacity: 1;
  border-color: rgb(26 26 26 / var(--tw-border-opacity, 1));
}
.bg-background{
  --tw-bg-opacity: 1;
  background-color: rgb(249 245 239 / var(--tw-bg-opacity, 1));
}
.bg-black\/0{
  background-color: rgb(0 0 0 / 0);
}
.bg-black\/60{
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/90{
  background-color: rgb(0 0 0 / 0.9);
}
.bg-cta{
  --tw-bg-opacity: 1;
  background-color: rgb(230 57 70 / var(--tw-bg-opacity, 1));
}
.bg-error{
  --tw-bg-opacity: 1;
  background-color: rgb(230 57 70 / var(--tw-bg-opacity, 1));
}
.bg-primary\/60{
  background-color: rgb(26 26 26 / 0.6);
}
.bg-surface{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-lg{
  padding: 1.5rem;
}
.p-md{
  padding: 1rem;
}
.px-lg{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-md{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-xl{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-3xl{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-md{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-sm{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-xl{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-xs{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.pb-md{
  padding-bottom: 1rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.font-body{
  font-family: Space Grotesk, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}
.font-heading{
  font-family: Space Grotesk, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.text-cta{
  --tw-text-opacity: 1;
  color: rgb(230 57 70 / var(--tw-text-opacity, 1));
}
.text-error{
  --tw-text-opacity: 1;
  color: rgb(230 57 70 / var(--tw-text-opacity, 1));
}
.text-primary{
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity, 1));
}
.text-secondary{
  --tw-text-opacity: 1;
  color: rgb(26 26 26 / var(--tw-text-opacity, 1));
}
.text-success{
  --tw-text-opacity: 1;
  color: rgb(58 134 255 / var(--tw-text-opacity, 1));
}
.text-surface{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-text-muted{
  --tw-text-opacity: 1;
  color: rgb(74 74 74 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.placeholder-text-muted::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(74 74 74 / var(--tw-placeholder-opacity, 1));
}
.placeholder-text-muted::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(74 74 74 / var(--tw-placeholder-opacity, 1));
}
.opacity-50{
  opacity: 0.5;
}
.opacity-90{
  opacity: 0.9;
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300{
  transition-duration: 300ms;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-400-vietnamese.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-500-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-500-vietnamese.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-600-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-600-vietnamese.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../Fonts/SpaceGrotesk/SpaceGrotesk-700-vietnamese.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F9F5EF;
}

.page-shell {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
}

h2 {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

h4 {
  font-size: 1.05rem;
}

h1, h2 {
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
    line-height: 1.65;
  }
  h1 {
    font-size: 1.6875rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.1875rem;
  }
  h4 {
    font-size: 1rem;
  }
}
h2::before {
  content: "▪ ";
  color: #E63946;
}

a {
  color: #E63946;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: rgb(82.1735689792%, 10.3754506287%, 15.7706849556%);
}

.bauhaus-offset {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bauhaus-offset:hover {
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 #1A1A1A;
}
.hover\:bg-background:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 245 239 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:text-cta:hover{
  --tw-text-opacity: 1;
  color: rgb(230 57 70 / var(--tw-text-opacity, 1));
}
.hover\:no-underline:hover{
  text-decoration-line: none;
}
.focus\:border-cta:focus{
  --tw-border-opacity: 1;
  border-color: rgb(230 57 70 / var(--tw-border-opacity, 1));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-border:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(26 26 26 / var(--tw-ring-opacity, 1));
}
.focus\:ring-cta:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(230 57 70 / var(--tw-ring-opacity, 1));
}
.focus\:ring-error:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(230 57 70 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
.group:hover .group-hover\:scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-black\/20{
  background-color: rgb(0 0 0 / 0.2);
}
@media (min-width: 480px){
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:items-center{
    align-items: center;
  }
}
@media (min-width: 768px){
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1024px){
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
