/* ================ ================ VARIABLES ================ ================ */
:root {
  --brand-primary-bg: #d4af37;
  --brand-primary-text: #d4af37;
  --on-primary: #0a0a0a;

  --brand-secondary-bg: #121212;
  --brand-secondary-text: #e8e8e8;
  --on-secondary: #f5f5f5;

  --dark-text: rgba(255, 255, 255, 0.85);
  --light-text: #ffffff;

  --dark-bg: #161719;
  --light-bg: #121212;

  --radius: 8px;

  --btn-primary-bg: var(--brand-primary-bg);
  --btn-primary-text: var(--on-primary);
  --btn-primary-bg-hov: #e8c547;

  --btn-secondary-bg: var(--brand-secondary-bg);
  --btn-secondary-text: var(--on-secondary);
  --btn-secondary-bg-hov: #eaeaea;

  --btn-white-bg: transparent;
  --btn-white-text: #ffffff;
  --btn-white-border: #ffffff;
  --btn-white-bg-hov: #ffffff;
  --btn-white-text-hov: #111111;

  --btn-padding-y: 7px;
  --btn-padding-x: 35px;
  --btn-radius: var(--radius);

  --link-color: var(--brand-primary-text);
  --link-underline: var(--brand-primary-text);

  --field-bg: #ffffff;
  --field-text: #111111;
  --field-border: #e5e7eb;
  --field-radius: var(--radius);
  --field-padding-y: 10px;
  --field-padding-x: 16px;

  --panel-bg: #ffffff;
  --panel-border: #e5e7eb;
  --panel-radius: var(--radius);
  --panel-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);

  --content-max-width: 72ch;
  --p: 15px;
  --h1: 28px;
  --h2: 24px;
  --h3: 20px;
  --h4: 18px;
  --h5: 16px;
  --h6: 14px;
  --space-lg: 15px;
  --space-md: 12px;
  --space-sm: 8px;
  --space-xs: 6px;

  /* Motyw Malgrit — ciemna baza + akcent (spójne z layoutem) */
  --bg-page: #000000;
  --bg-elevated: #0d0d0d;
  --bg-card: #121212;
  --accent: var(--brand-primary-bg);
  --accent-muted: rgba(212, 175, 55, 0.55);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(212, 175, 55, 0.35);
  --radius-lg: 20px;
  --radius-xl: 24px;
  --font-display: "Exo", system-ui, sans-serif;

  --transition: 0.3s ease-in-out;
}

/* ================ ================ FONTS ================ ================ */
* {
  font-family: "Exo", sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
}

/* ================ ================ COLORS ================ ================ */
.text-dark {
  color: var(--dark-text);
}
.text-light {
  color: var(--light-text);
}

.text-primary {
  color: var(--brand-primary-text);
}
.text-secondary {
  color: var(--brand-secondary-text);
}

.bg-primary {
  background-color: var(--brand-primary-bg);
  color: var(--on-primary);
}
.bg-secondary {
  background-color: var(--brand-secondary-bg);
  color: var(--on-secondary);
}

.bg-muted {
  background-color: var(--dark-bg);
}

/* ================ ================ BUTTONS ================ ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.65rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 9999px;
  border: 1px solid transparent;
  box-sizing: border-box;
  vertical-align: middle;
  appearance: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.28s ease,
    background-color 0.22s ease;
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(12, 12, 12, 0.42);
  background-image: linear-gradient(
    95deg,
    rgba(212, 175, 55, 0.24) 0%,
    rgba(212, 175, 55, 0.06) 36%,
    transparent 58%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    -14px 2px 36px -10px rgba(212, 175, 55, 0.42),
    0 6px 22px rgba(0, 0, 0, 0.38);
}

.btn-primary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background-color: rgba(18, 18, 18, 0.52);
  box-shadow:
    -18px 4px 42px -10px rgba(212, 175, 55, 0.52),
    0 10px 28px rgba(0, 0, 0, 0.42);
}

.btn-primary:active {
  box-shadow:
    -10px 2px 28px -10px rgba(212, 175, 55, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.36);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition-duration: 0.01ms;
  }
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--on-secondary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--btn-secondary-bg-hov);
}

.btn-white-outlined {
  background-color: var(--btn-white-bg);
  color: var(--btn-white-text);
  border: 2px solid var(--btn-white-border);
}
.btn-white-outlined:hover,
.btn-white-outlined:focus {
  background-color: var(--btn-white-bg-hov);
  color: var(--btn-white-text-hov);
  border-color: var(--btn-white-bg-hov);
}

.skip-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ----- Legacy hero (dark + gold) — klasy .hero-malgrit* ----- */
.hero-malgrit {
  position: relative;
  isolation: isolate;
  background-color: var(--bg-page);
}

.hero-malgrit__noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(ellipse 90% 60% at 50% 35%, rgba(212, 175, 55, 0.07), transparent 55%),
    radial-gradient(1px 1px at 12% 22%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 38% 61%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 71% 18%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 84% 74%, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(1px 1px at 55% 88%, rgba(255, 255, 255, 0.25), transparent);
  background-size:
    auto,
    280px 320px,
    280px 320px,
    280px 320px,
    280px 320px,
    280px 320px;
  background-position:
    center,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
}

.hero-malgrit__title {
  margin: 0;
  font-size: clamp(2.85rem, 7.5vw, 4.85rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero-malgrit__accent {
  color: var(--accent);
  font-weight: 800;
}

.hero-malgrit__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .hero-malgrit__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
  }
}

.hero-malgrit__stat {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem 1.35rem;
}

.hero-malgrit__stat-value {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.35rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.hero-malgrit__stat-copy {
  min-width: 0;
  padding-top: 0.2rem;
}

.hero-malgrit__stat-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
}

.hero-malgrit__stat-desc {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.42);
}

/* ================ ================ LINKS ================ ================ */
.link-primary {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition);
}
.link-primary:hover {
  opacity: 0.5;
}

.link-header {
  color: var(--link-color);
  text-decoration: none;
  background-image: linear-gradient(
    var(--link-underline),
    var(--link-underline)
  );
  background-size: 0% 0.1em;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  transition: background-size var(--transition), color var(--transition);
}
.link-header:hover,
.link-header:focus,
.link-header:active {
  background-size: 100% 0.1em;
  background-position-x: 0%;
}

.link-footer {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
  font-size: 15px;
}
.link-footer:hover {
  opacity: 0.5;
}

.link-footer-head {
  color: var(--brand-primary-text);
  font-size: 17px;
  font-weight: 600;
}

.link-footer-color {
  color: var(--brand-primary-text);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
}
.link-footer-color:hover {
  opacity: 0.5;
}

.link-footer-color-head {
  color: var(--brand-primary-text);
  font-size: 22px;
  font-weight: 600;
}

/* ================ ================ SHADOWS ================ ================ */
.shadow-soft {
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}

/* Tło pierwszej sekcji — subtelna siatka (bez Tailwind arbitrary) */
.hero-surface {
  background-color: #ffffff;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
}

/* Wyciszenie siatki u dołu pierwszej sekcji — zamknięcie białym gradientem */
.hero-surface--fade-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(220px, 48vh, 520px);
  background: linear-gradient(
    to top,
    #ffffff 0%,
    rgba(255, 255, 255, 0.96) 22%,
    rgba(255, 255, 255, 0.55) 52%,
    rgba(255, 255, 255, 0.12) 78%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Kółko CTA pod filmem */
.hero-cta-disc {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 148px;
  min-height: 148px;
  padding: 0.65rem 0.6rem 0.55rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: var(--on-primary);
  background-color: var(--brand-primary-bg);
  box-shadow: 0 8px 22px rgba(212, 145, 38, 0.32), 0 0 0 5px #ffffff;
  opacity: 1;
  transition: opacity 0.22s ease;
  z-index: 3;
}

.hero-cta-disc:hover {
  opacity: 0.88;
}

.hero-cta-disc:active {
  opacity: 0.78;
}

.hero-cta-disc__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02rem;
  font-size: clamp(11px, 2.1vw, 13px);
  line-height: 1.2;
}

.hero-cta-disc__icon {
  display: block;
  font-size: 0.95rem;
  margin-top: 0.65rem;
  opacity: 0.98;
  animation: hero-cta-arrow-bounce 1.4s ease-in-out infinite;
}

.hero-cta-disc:hover .hero-cta-disc__icon {
  animation-duration: 1s;
}

@keyframes hero-cta-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-disc__icon {
    animation: none;
  }
}

.hero-cta-disc:focus-visible {
  outline: 2px solid var(--brand-secondary-text);
  outline-offset: 3px;
}

/* Etykiety dekoracyjne w hero — etykieta, nie przycisk */
.hero-badge {
  pointer-events: none;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: rgba(0, 48, 87, 0.82);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 145, 38, 0.18);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 247, 232, 0.88) 42%,
    rgba(212, 145, 38, 0.14) 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 1px 3px rgba(212, 145, 38, 0.08);
}

/* ================ ================ HEADER SCROLL ================ ================ */
#site-header {
  transform: translateY(0);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}

#site-header.header--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

#site-header.header--scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-color: rgba(0, 0, 0, 0.82);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  #site-header,
  #site-header.header--hidden {
    transition-duration: 0.01ms;
  }
}

/* ================ ================ NAV DRAWER + BURGER ================ ================ */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.nav-drawer.nav-drawer--open {
  pointer-events: auto;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.58s ease;
}

.nav-drawer--open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(75vw, 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  color: var(--text-primary);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(12, 12, 12, 0.42);
  background-image: linear-gradient(
    95deg,
    rgba(212, 175, 55, 0.24) 0%,
    rgba(212, 175, 55, 0.06) 36%,
    transparent 58%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    -14px 2px 36px -10px rgba(212, 175, 55, 0.42),
    0 6px 22px rgba(0, 0, 0, 0.38);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.58s cubic-bezier(0.25, 1, 0.35, 1);
  overflow: hidden;
}

.nav-drawer--open .nav-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.nav-drawer__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.nav-drawer__close:hover,
.nav-drawer__close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  outline: none;
}

.burger-btn {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.burger-btn:hover,
.burger-btn:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.burger-btn__bars,
.burger-btn__bars::before,
.burger-btn__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.burger-btn__bars {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.burger-btn__bars::before,
.burger-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger-btn__bars::before {
  transform: translateY(-7px);
}

.burger-btn__bars::after {
  transform: translateY(7px);
}

.burger-btn.burger-btn--open .burger-btn__bars {
  background: transparent;
}

.burger-btn.burger-btn--open .burger-btn__bars::before {
  transform: translateY(0) rotate(45deg);
}

.burger-btn.burger-btn--open .burger-btn__bars::after {
  transform: translateY(0) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-drawer__backdrop,
  .nav-drawer__panel {
    transition-duration: 0.01ms;
  }

  .burger-btn__bars,
  .burger-btn__bars::before,
  .burger-btn__bars::after {
    transition-duration: 0.01ms;
  }
}

html.nav-drawer-is-open,
html.nav-drawer-is-open body {
  overflow: hidden;
}

/* ================ ================ CONTENT ================ ================ */
.content-box p {
  font-size: var(--p);
  text-align: justify;
}
.content-box h1 {
  font-size: var(--h1);
  margin: 0 0 var(--space-lg);
}
.content-box h2 {
  font-size: var(--h2);
  margin: var(--space-lg) 0 var(--space-md);
}
.content-box h3 {
  font-size: var(--h3);
  margin: var(--space-lg) 0 var(--space-sm);
}
.content-box h4 {
  font-size: var(--h4);
  margin: 0 0 var(--space-sm);
}
.content-box h5 {
  font-size: var(--h5);
  margin: 0 0 var(--space-xs);
}
.content-box h6 {
  font-size: var(--h6);
  margin: 0 0 4px;
}
.content-box ol,
.content-box ul {
  margin-bottom: var(--space-lg);
}
.content-box ol {
  list-style-type: decimal;
}
.content-box ul {
  list-style-type: disc;
}
.content-box li {
  margin-left: 20px;
}
.content-box ul ul,
.content-box ol ol,
.content-box ul ol,
.content-box ol ul {
  margin-left: 20px;
}

/* ================ ================ QUOTE MODAL ================ ================ */
html.quote-modal-is-open,
html.quote-modal-is-open body {
  overflow: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.quote-modal.quote-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quote-modal__close {
  position: fixed;
  top: clamp(14px, 3vmin, 32px);
  right: clamp(14px, 3vmin, 32px);
  z-index: 102;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition),
    color var(--transition);
}

.quote-modal__close:hover,
.quote-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  outline: none;
}

.quote-modal__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
  max-height: min(92vh, 880px);
  min-height: 0;
  overflow-y: auto;
  padding-top: env(safe-area-inset-top);
  padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
}

@media (min-width: 768px) {
  .quote-modal__shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.5rem;
  }
}

.quote-modal__panel {
  width: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: 16px;
  background: var(--panel-bg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.quote-modal__panel--media {
  position: relative;
  min-height: 200px;
  align-self: stretch;
}

@media (min-width: 768px) {
  .quote-modal__panel--media {
    min-height: 260px;
  }
}

.quote-modal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-modal__panel--form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .quote-modal__panel--form {
    padding: 24px;
  }
}

.quote-modal__form.fluentform-modal-inner {
  flex: 1;
  min-height: 0;
}

.quote-modal__form.fluentform-modal-inner .frm-fluent-form {
  margin-bottom: 0;
}

/* ----- Oferta — poziome stripy + aktywny panel (wzór accordion) ----- */
[data-offer-strip][data-active="true"] {
  background-color: #d4af37;
  color: #141414;
}

[data-offer-strip][data-active="false"] {
  background-color: #141414;
  color: #fafafa;
}

[data-offer-strips-inner] {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (min-width: 1024px) {
  [data-offer-strips-inner] {
    flex-direction: row;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: min(62vh, 620px);
  }

  [data-offer-strip] {
    flex: 1 1 4.25rem;
    min-width: 4rem;
    max-width: 5.5rem;
    transition:
      flex-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      min-width 0.45s ease,
      max-width 0.45s ease,
      background-color 0.35s ease,
      color 0.25s ease;
    cursor: pointer;
  }

  [data-offer-strip][data-active="true"] {
    flex: 6 1 38%;
    min-width: min(42vw, 380px);
    max-width: none;
    cursor: default;
  }

  [data-offer-strip]:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.85);
    outline-offset: -2px;
    z-index: 2;
  }
}

.offer-strip__label-v {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.22em;
}

@media (max-width: 1023px) {
  [data-offer-strip][data-active="false"] .offer-strip__expanded {
    display: none;
  }

  [data-offer-strip][data-active="true"] .offer-strip__collapsed {
    display: none;
  }

  [data-offer-strip][data-active="false"] .offer-strip__collapsed {
    display: flex;
  }

  [data-offer-strip][data-active="true"] .offer-strip__expanded {
    display: flex;
  }
}

/* ================ ================ LIGHT MALGRIT REFRESH ================ ================ */
:root {
  --bg-page: #f5efe4;
  --bg-elevated: #f8f2e8;
  --bg-card: #fbf7f0;
  --accent: #c6a14a;
  --accent-muted: rgba(198, 161, 74, 0.4);
  --text-primary: #111111;
  --text-muted: rgba(17, 17, 17, 0.72);
  --text-dim: rgba(17, 17, 17, 0.52);
  --border-subtle: rgba(70, 53, 20, 0.14);
  --border-accent: rgba(198, 161, 74, 0.4);
  --dark-bg: #efe6d7;
  --brand-secondary-bg: #efe6d7;
  --brand-secondary-text: #111111;
  --on-secondary: #111111;
}

body {
  background: radial-gradient(circle at 12% 5%, rgba(198, 161, 74, 0.08), transparent 42%), var(--bg-page);
  color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111111;
}

.bg-muted {
  background-color: #efe6d7;
}

.text-primary {
  color: var(--accent);
}

.btn-primary {
  color: #111111;
  border-color: #c6a14a;
  background-color: #c6a14a;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.btn-primary:hover {
  color: #111111;
  border-color: #b8933f;
  background-color: #b8933f;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 2px solid rgba(198, 161, 74, 0.7);
}

#site-header.header--scrolled {
  background-color: rgba(245, 239, 228, 0.86);
  box-shadow: 0 8px 26px rgba(84, 63, 23, 0.09);
}

#site-header a {
  color: #111111;
}

#site-header a span:last-child {
  color: var(--accent);
}

.burger-btn {
  border-color: rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.burger-btn__bars,
.burger-btn__bars::before,
.burger-btn__bars::after {
  background: #111111;
}

.nav-drawer__backdrop {
  background: rgba(45, 35, 14, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav-drawer__panel {
  color: #111111;
  border-left: 1px solid rgba(77, 58, 20, 0.15);
  background-color: #f8f2e8;
  background-image: linear-gradient(135deg, rgba(198, 161, 74, 0.14), rgba(255, 255, 255, 0.5));
  box-shadow: -12px 0 30px rgba(94, 68, 18, 0.11);
}

.nav-drawer__close {
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.nav-drawer__close:hover,
.nav-drawer__close:focus-visible {
  background: rgba(198, 161, 74, 0.22);
  border-color: rgba(198, 161, 74, 0.62);
  color: #111111;
}

[data-offer-strip][data-active="false"] {
  background-color: #f8f2e8;
  color: #111111;
}

[data-offer-strip][data-active="true"] {
  background-color: #e4d0a2;
}

#hero video {
  filter: brightness(58%) saturate(0.85);
}

#hero .backdrop-blur-sm {
  background: radial-gradient(ellipse at center, rgba(245, 239, 228, 0) 30%, rgba(245, 239, 228, 0.5) 74%, rgba(245, 239, 228, 0.88) 100%) !important;
}

#hero p,
#hero h1,
#hero h2,
#hero h3 {
  color: #111111;
}

#kontakt {
  background: #eee4d4 !important;
  color: #111111 !important;
}

#kontakt .bg-\[\#0d0d0d\],
#kontakt .bg-black,
#kontakt .bg-black\/35 {
  background: #f8f1e6 !important;
}

#kontakt [class*="text-white"] {
  color: #111111 !important;
}

#kontakt [class*="text-\[\#d4af37\]"],
#kontakt [class*="hover\:text-\[\#d4af37\]"],
#kontakt [class*="focus-visible\:text-\[\#d4af37\]"] {
  color: #c6a14a !important;
}

#kontakt [class*="border-white"] {
  border-color: rgba(73, 56, 23, 0.16) !important;
}

section.bg-black {
  background: transparent !important;
}

details.group {
  border-color: rgba(73, 56, 23, 0.14) !important;
  background: transparent !important;
}

@media (min-width: 1024px) {
  [data-offer-strip][data-active="false"] .offer-strip__expanded {
    display: none;
  }

  [data-offer-strip][data-active="true"] .offer-strip__collapsed {
    display: none;
  }

  [data-offer-strip][data-active="false"] .offer-strip__collapsed {
    display: flex;
  }

  [data-offer-strip][data-active="true"] .offer-strip__expanded {
    display: flex;
  }
}

