.app{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app > main{
  flex: 1 0 auto;
}

.c-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.74));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 8px 24px rgba(16,24,40,.08);
}

[data-theme="dark"] .c-header{
  background: linear-gradient(180deg, rgba(11,18,32,.9), rgba(11,18,32,.78));
  border-bottom-color: rgba(255,255,255,.12);
}

.c-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 10px 18px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}

.c-brand__name{
  font-weight: 900;
  letter-spacing: .2px;
}

.c-brand{
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 56px;
}

.c-brand__logo{
  height: 100%;
  width: auto;
  max-height: 56px;
  max-width: min(420px, 42vw);
  object-fit: contain;
}

.c-nav{
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 999px;
  padding: 5px;
}
[data-theme="dark"] .c-nav{
  background: rgba(11,18,32,.5);
  border-color: rgba(255,255,255,.14);
}

.c-nav__link{
  font-weight: 700;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  transition: background-color .18s ease, color .18s ease;
  display: inline-flex;
  align-items: center;
}
.c-nav__link:hover{
  color: var(--text);
  background: rgba(255,255,255,.82);
}
.c-nav__link--home{
  color: var(--brand);
  background: rgba(224,97,1,.13);
}
.c-nav__link--active{
  color: var(--text);
  background: rgba(255,255,255,.82);
}
.c-nav__item{
  position: relative;
}
.c-nav__toggle{
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.c-nav__toggle::after{
  content: "▾";
  font-size: .72rem;
  margin-left: 6px;
  opacity: .75;
}
.c-nav__item--dropdown.is-open .c-nav__toggle{
  color: var(--text);
  background: rgba(255,255,255,.82);
}
.c-nav__item--dropdown.is-current .c-nav__toggle{
  color: var(--text);
  background: rgba(255,255,255,.82);
}
.c-nav__dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  border-radius: 14px;
  border: 1px solid rgba(16,24,40,.1);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16,24,40,.15);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
[data-theme="dark"] .c-nav__dropdown{
  background: #121b2d;
  border-color: rgba(255,255,255,.14);
}
.c-nav__item--dropdown.is-open .c-nav__dropdown,
.c-nav__item--dropdown:hover .c-nav__dropdown,
.c-nav__item--dropdown:focus-within .c-nav__dropdown{
  display: flex;
}
.c-nav__link--submenu{
  border-radius: 10px;
  white-space: nowrap;
}

.c-header__actions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.c-header__menuBtn{
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background-color .18s ease, box-shadow .18s ease;
}
[data-theme="dark"] .c-header__menuBtn{
  background: rgba(11,18,32,.72);
}
.c-header__menuBtn:hover{
  background: rgba(255,255,255,.92);
}
[data-theme="dark"] .c-header__menuBtn:hover{
  background: rgba(18,28,48,.88);
}
.c-header__menuBtn:focus-visible{
  outline: none;
  box-shadow: var(--focusRing);
}
.c-header__menuBars,
.c-header__menuBars::before,
.c-header__menuBars::after{
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  position: relative;
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}
.c-header__menuBars::before,
.c-header__menuBars::after{
  content: "";
  position: absolute;
  left: 0;
}
.c-header__menuBars::before{
  top: -6px;
}
.c-header__menuBars::after{
  top: 6px;
}
.c-header.is-menu-open .c-header__menuBars{
  background: transparent;
}
.c-header.is-menu-open .c-header__menuBars::before{
  top: 0;
  transform: rotate(45deg);
}
.c-header.is-menu-open .c-header__menuBars::after{
  top: 0;
  transform: rotate(-45deg);
}

.c-header__navBackdrop{
  display: none;
}

.c-socialIcon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #1877f2;
  box-shadow: 0 4px 14px rgba(16,24,40,.12);
}
.c-socialIcon:hover{
  transform: translateY(-1px);
}

.c-themeSwitch{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}
.c-themeSwitch:focus-visible{
  outline: none;
  box-shadow: var(--focusRing);
  border-radius: 999px;
}
.c-themeSwitch__track{
  width: 64px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  box-shadow: inset 0 1px 3px rgba(16,24,40,.12);
}
.c-themeSwitch__sun,
.c-themeSwitch__moon{
  font-size: 13px;
  color: var(--muted);
}
.c-themeSwitch__thumb{
  position: absolute;
  left: 3px;
  top: 3px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f4f4f4);
  border: 1px solid rgba(16,24,40,.14);
  box-shadow: 0 2px 8px rgba(16,24,40,.2);
  transition: transform .2s ease;
}
.c-themeSwitch[aria-checked="true"] .c-themeSwitch__thumb{
  transform: translateX(30px);
}
[data-theme="dark"] .c-themeSwitch__track{
  background: rgba(11,18,32,.76);
}
[data-theme="dark"] .c-themeSwitch__sun,
[data-theme="dark"] .c-themeSwitch__moon{
  color: rgba(255,255,255,.78);
}
[data-theme="dark"] .c-themeSwitch__thumb{
  background: linear-gradient(180deg, #2f3b52, #1f2a3f);
  border-color: rgba(255,255,255,.2);
}

@media (max-width: 900px){
  .c-header{
    z-index: 60;
  }
  .c-header__inner{
    min-height: 52px;
    padding: 8px 12px;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .c-brand{
    height: auto;
    max-height: 44px;
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
  }
  .c-brand__logo{
    max-height: 38px;
    max-width: min(210px, 50vw);
  }
  .c-header__menuBtn{
    display: inline-flex;
  }
  .c-header__navBackdrop{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(0,0,0,.45);
    border: 0;
    cursor: pointer;
    transition: opacity .22s ease, visibility .22s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .c-header__navBackdrop:not([hidden]){
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .c-nav{
    position: fixed;
    z-index: 55;
    left: 12px;
    right: 12px;
    top: calc(env(safe-area-inset-top, 0px) + 58px);
    max-height: min(74vh, 540px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(16,24,40,.2);
    border: 1px solid rgba(16,24,40,.1);
    white-space: normal;
    justify-content: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .26s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
  }
  [data-theme="dark"] .c-nav{
    background: #121b2d;
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 26px 60px rgba(0,0,0,.5);
  }
  .c-header.is-menu-open .c-nav{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .c-nav__link{
    text-align: center;
    padding: 12px 14px;
    font-size: .94rem;
    border-radius: 12px;
    justify-content: center;
  }
  .c-nav__item{
    width: 100%;
  }
  .c-nav__toggle{
    width: 100%;
    justify-content: center;
  }
  .c-nav__dropdown{
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 2px 0 0 0;
    margin-bottom: 2px;
    display: none;
  }
  .c-nav__item--dropdown.is-open .c-nav__dropdown,
  .c-nav__item--dropdown:hover .c-nav__dropdown,
  .c-nav__item--dropdown:focus-within .c-nav__dropdown{
    display: flex;
  }
  .c-nav__link--submenu{
    width: 100%;
  }
  .c-themeSwitch__track{
    width: 54px;
    height: 30px;
    padding: 0 7px;
  }
  .c-themeSwitch__thumb{
    width: 22px;
    height: 22px;
    top: 3px;
    left: 3px;
  }
  .c-themeSwitch[aria-checked="true"] .c-themeSwitch__thumb{
    transform: translateX(24px);
  }
  .c-socialIcon{
    width: 32px;
    height: 32px;
  }
}

.c-loading{
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.25);
  display: none;
  align-items: center;
  justify-content: center;
}

.c-loading.is-visible{
  display: flex;
}

.c-loading__card{
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-loading__logo{
  width: 32px;
  height: 32px;
  display: block;
}

/* Keep page visible during intro; overlay controls reveal effect. */

.has-intro-loading .c-loading.is-intro{
  display: flex;
  background: transparent;
  backdrop-filter: none;
  --intro-overlay: rgba(243, 246, 253, .96);
  --intro-line-start: rgba(62, 64, 149, .10);
  --intro-line-mid: rgba(62, 64, 149, .55);
  --intro-line-glow: rgba(62, 64, 149, .25);
}

[data-theme="dark"] .has-intro-loading .c-loading.is-intro{
  --intro-overlay: rgba(5, 8, 17, 1);
  --intro-line-start: rgba(255,255,255,.08);
  --intro-line-mid: rgba(255,255,255,.5);
  --intro-line-glow: rgba(255,255,255,.18);
}

.has-intro-loading .c-loading.is-intro::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--intro-overlay);
  animation: intro-curtain 2.43s ease-in-out forwards;
  z-index: 0;
}

.has-intro-loading .c-loading.is-intro::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  top: 0;
  background: linear-gradient(90deg, var(--intro-line-start), var(--intro-line-mid), var(--intro-line-start));
  box-shadow: 0 0 22px var(--intro-line-glow);
  animation: intro-band-line 2.43s ease-in-out forwards;
  z-index: 0;
}

.c-loading.is-intro .c-loading__card{
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  gap: 16px;
  min-width: 0;
  justify-content: center;
  position: relative;
  z-index: 1;
  transform: translateY(-200px);
}

.c-loading.is-intro .c-loading__logo{
  width: 132px;
  height: 132px;
  flex: 0 0 auto;
}

.c-loading__intro{
  display: none;
}

.c-loading__introFallback{
  display: none;
}

.c-loading.is-intro .c-loading__intro{
  display: block;
  height: 132px;
  width: auto;
  max-width: min(92vw, 1180px);
  flex: 0 0 auto;
  opacity: 1;
  transform: none;
  border: 0;
  background: transparent;
}

.c-loading.is-intro .c-loading__introFallback{
  display: block;
  height: 132px;
  width: auto;
  max-width: min(92vw, 1180px);
  flex: 0 0 auto;
}

@media (max-width: 640px){
  .c-loading.is-intro .c-loading__card{
    gap: 10px;
    transform: translateY(calc(-1 * min(120px, 18vw)));
  }
  .c-loading.is-intro .c-loading__logo{
    width: 76px;
    height: 76px;
  }
  .c-loading.is-intro .c-loading__intro{
    height: 56px;
    max-width: min(88vw, 520px);
  }
  .c-loading.is-intro .c-loading__introFallback{
    height: 56px;
    max-width: min(88vw, 520px);
  }
}

@media (max-width: 400px){
  .c-loading.is-intro .c-loading__card{
    transform: translateY(-96px);
  }
  .c-loading.is-intro .c-loading__logo{
    width: 64px;
    height: 64px;
  }
  .c-loading.is-intro .c-loading__intro{
    height: 48px;
  }
  .c-loading.is-intro .c-loading__introFallback{
    height: 48px;
  }
}

.c-loading.is-intro .c-loading__text{
  display: none;
}

.c-loading--fade-out{
  opacity: 0;
  transition: opacity .45s ease;
}

@keyframes intro-curtain{
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}

@keyframes intro-band-line{
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}


.c-spinner{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(224,97,1,.25);
  border-top-color: var(--brand);
  animation: spin .8s linear infinite;
}

@keyframes spin{ to{ transform: rotate(360deg);} }

.c-hero{
  padding: 44px 18px 18px 18px;
}

.c-hero__inner{
  width: 100%;
  margin: 0;
}
.c-hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.c-hero--home{
  padding-top: 48px;
  background:
    radial-gradient(1000px 350px at 10% -10%, rgba(224,97,1,.18), transparent 60%),
    radial-gradient(900px 300px at 100% 0%, rgba(16,24,40,.08), transparent 60%);
}
.c-hero__eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--brand);
}

.c-hero__title{
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.c-hero__subtitle{
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px 0;
  font-size: 1.05rem;
}

.c-hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.c-heroCard{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.c-heroCard__image{
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.c-heroCard__body{
  padding: 16px;
}
.c-heroCard__title{
  margin: 0 0 8px 0;
}
.c-heroCard__text{
  margin: 0 0 14px 0;
  color: var(--muted);
  line-height: 1.6;
}

.c-stats{
  padding: 24px 18px 64px 18px;
}
.c-stats .c-sectionTitle{
  text-align: center;
  margin-bottom: 14px;
}

.c-stats__grid{
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.c-statCard{
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16,24,40,.05);
  padding: 18px 16px;
}
.c-statCard__value{
  font-weight: 1000;
  font-size: 2rem;
  margin-bottom: 6px;
  color: var(--brand);
}
.c-statCard__label{
  color: var(--muted);
  font-weight: 700;
}

.c-pageHeader{
  padding: 28px 18px 14px 18px;
  border-bottom: 1px solid var(--border);
}

.c-pageHeader__inner{
  width: 100%;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.c-pageHeader__title{
  margin: 0 0 6px 0;
  font-size: 2rem;
}
.c-pageHeader__subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Kontak & Meer oor ons: full-viewport fixed background (venture_03 + gears in /media/Sakekamer/) */
.c-page--contact,
.c-page--about{
  position: relative;
  isolation: isolate;
}
.c-page--newsletter{
  position: relative;
  isolation: isolate;
}
.c-page--contact__fullbg,
.c-page--about__fullbg{
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  /* Light, warm-leaning blue (less muddy than flat grey) */
  background-color: #d6dde8;
}
.c-page--newsletter__fullbg{
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  background-color: #d6dde8;
}
[data-theme="dark"] .c-page--contact__fullbg,
[data-theme="dark"] .c-page--about__fullbg{
  background-color: #0b1220;
}
[data-theme="dark"] .c-page--newsletter__fullbg{
  background-color: #0b1220;
}
/* Massive faint brand watermark between photo and tint */
.c-page--contact__fullbg::before,
.c-page--about__fullbg::before{
  content: "";
  position: absolute;
  inset: -5%;
  background-image: url("/media/Sakekamer/gears-orania-sakekamer-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(220vmin, 3200px);
  opacity: 0.12;
  pointer-events: none;
}
.c-page--newsletter__fullbg::before{
  content: "";
  position: absolute;
  inset: -5%;
  background-image: url("/media/Sakekamer/gears-orania-sakekamer-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(220vmin, 3200px);
  opacity: 0.12;
  pointer-events: none;
}
[data-theme="dark"] .c-page--contact__fullbg::before,
[data-theme="dark"] .c-page--about__fullbg::before{
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
[data-theme="dark"] .c-page--newsletter__fullbg::before{
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
/* Light mode: no white stops — those read as glare; cool scrim, kept light so page isn’t dull */
.c-page--contact__fullbg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      rgba(18,28,44,.17) 0%,
      rgba(16,24,40,.1) 52%,
      rgba(12,18,30,.06) 100%
    );
}
[data-theme="dark"] .c-page--contact__fullbg::after{
  background:
    linear-gradient(165deg, rgba(11,18,32,.42) 0%, rgba(11,18,32,.28) 45%, rgba(11,18,32,.55) 100%);
}
/* Meer oor ons: warm accent, still no white bloom */
.c-page--about__fullbg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      155deg,
      rgba(120,55,12,.1) 0%,
      rgba(16,24,40,.08) 48%,
      rgba(14,20,32,.06) 100%
    );
}
.c-page--newsletter__fullbg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      rgba(18,28,44,.17) 0%,
      rgba(16,24,40,.1) 52%,
      rgba(12,18,30,.06) 100%
    );
}
[data-theme="dark"] .c-page--about__fullbg::after{
  background:
    linear-gradient(155deg, rgba(224,97,1,.1) 0%, rgba(11,18,32,.32) 48%, rgba(11,18,32,.52) 100%);
}
[data-theme="dark"] .c-page--newsletter__fullbg::after{
  background:
    linear-gradient(165deg, rgba(11,18,32,.42) 0%, rgba(11,18,32,.28) 45%, rgba(11,18,32,.55) 100%);
}
.c-page--contact > *:not(.c-page--contact__fullbg),
.c-page--about > *:not(.c-page--about__fullbg){
  position: relative;
  z-index: 1;
}
.c-page--newsletter > *:not(.c-page--newsletter__fullbg){
  position: relative;
  z-index: 1;
}
.c-page--contact .c-pageHero--contact,
.c-page--about .c-pageHero--about{
  min-height: min(100vh, 850px);
  align-items: center;
  justify-content: center;
  padding-top: clamp(48px, 10vh, 100px);
  padding-bottom: clamp(36px, 7vh, 72px);
  overflow: visible;
}
.c-page--newsletter .c-pageHero--newsletter{
  min-height: min(70vh, 700px);
  align-items: center;
  justify-content: center;
  padding-top: clamp(48px, 10vh, 100px);
  padding-bottom: clamp(30px, 6vh, 60px);
  overflow: visible;
}

/* --- Inner pages: homepage-adjacent heroes (Meer oor ons, Kontak) --- */
.c-pageHero{
  position: relative;
  min-height: min(52vh, 420px);
  display: flex;
  align-items: flex-end;
  padding: 0 18px 38px 18px;
  overflow: hidden;
}
.c-pageHero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}
.c-pageHero__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(9,16,30,.58) 0%, rgba(10,18,34,.38) 45%, rgba(255,255,255,.12) 100%);
}
[data-theme="dark"] .c-pageHero__bg::after{
  background:
    linear-gradient(165deg, rgba(6,10,20,.78) 0%, rgba(11,18,32,.55) 48%, rgba(11,18,32,.82) 100%);
}
.c-pageHero__inner{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding-top: clamp(72px, 14vw, 120px);
  text-align: center;
}
.c-pageHero__kicker{
  margin: 0 0 10px 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  text-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.c-pageHero__kicker--contact{
  letter-spacing: .12em;
  color: rgba(200,220,255,.95);
}
.c-pageHero__title{
  margin: 0 0 12px 0;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.08;
  font-weight: 1000;
  color: #fff;
  text-shadow: 0 14px 32px rgba(16,24,40,.45);
}
.c-pageHero__subtitle{
  margin: 0 auto 18px auto;
  max-width: 52ch;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.c-pageHero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.c-pageHero__btnGhost{
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(8px);
}
.c-pageHero__btnGhost:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
}

.c-aboutStrip{
  padding: 22px 18px 8px 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.c-aboutStrip__inner{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.c-aboutPillar{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 16px 16px 18px 16px;
  position: relative;
  overflow: hidden;
}
.c-aboutPillar::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  opacity: .85;
}
[data-theme="dark"] .c-aboutPillar{
  background: rgba(11,18,32,.86);
}
.c-aboutPillar__icon{
  display: inline-block;
  font-weight: 1000;
  font-size: .85rem;
  color: var(--brand);
  margin-bottom: 8px;
}
.c-aboutPillar__title{
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  line-height: 1.2;
}
.c-aboutPillar__text{
  margin: 0;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Meer oor ons: full-width story bands */
.c-aboutBand{
  width: 100%;
  margin: 0;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
  box-sizing: border-box;
}
.c-aboutBand__inner{
  max-width: 920px;
  margin: 0 auto;
}
.c-aboutBand__inner--wide{
  max-width: min(1400px, 100%);
}
.c-aboutBand__title{
  margin: 0 0 16px 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 1000;
  line-height: 1.15;
  color: var(--text);
}
.c-aboutBand__lead,
.c-aboutBand__text{
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.7;
  color: var(--text);
}
.c-aboutBand__text--onDark{
  color: rgba(248,250,252,.9);
}

/* Waar het ons begin — “gegraveerde” 2004 */
.c-aboutBand--begin{
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface2) 96%, var(--brand) 4%) 0%, var(--surface2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .c-aboutBand--begin{
  background: linear-gradient(180deg, rgba(18,26,42,.95) 0%, rgba(11,18,32,.88) 100%);
}
.c-aboutBegin__layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 360px);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.c-aboutBegin__copy .c-aboutBand__lead{
  color: color-mix(in srgb, var(--text) 92%, var(--muted));
}
.c-aboutEngrave{
  display: flex;
  justify-content: center;
}
.c-aboutEngrave__plate{
  text-align: center;
  padding: clamp(22px, 4vw, 40px) clamp(28px, 5vw, 52px);
  border-radius: 14px;
  background: linear-gradient(165deg, #d1d9e4 0%, #9ca6b5 42%, #b8c0cd 100%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,.55),
    inset 0 -4px 12px rgba(16,24,40,.28),
    0 14px 36px rgba(16,24,40,.12);
  border: 1px solid rgba(255,255,255,.45);
}
[data-theme="dark"] .c-aboutEngrave__plate{
  background: linear-gradient(165deg, #4a5568 0%, #374151 45%, #3f4c5c 100%);
  border-color: rgba(255,255,255,.12);
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,.08),
    inset 0 -4px 14px rgba(0,0,0,.45),
    0 16px 40px rgba(0,0,0,.35);
}
.c-aboutEngrave__year{
  display: block;
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
  color: #7a8494;
  text-shadow:
    0 1px 0 rgba(255,255,255,.55),
    0 -1px 1px rgba(0,0,0,.4),
    1px 1px 0 rgba(255,255,255,.2),
    -1px -1px 0 rgba(0,0,0,.15);
}
[data-theme="dark"] .c-aboutEngrave__year{
  color: #9ca3b0;
  text-shadow:
    0 1px 0 rgba(255,255,255,.12),
    0 -2px 2px rgba(0,0,0,.6),
    1px 1px 0 rgba(0,0,0,.35);
}
.c-aboutEngrave__caption{
  display: block;
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--muted) 85%, var(--text));
  opacity: .85;
}

/* Ons projekte — Ora / banknote beeld */
.c-aboutBand--projects{
  background: linear-gradient(185deg, #1e2a3d 0%, #121a28 48%, #0f1724 100%);
  border-top: 1px solid rgba(224,97,1,.28);
  border-bottom: 1px solid rgba(0,0,0,.35);
}
[data-theme="dark"] .c-aboutBand--projects{
  background: linear-gradient(185deg, #141c2e 0%, #0c121f 55%, #0a0f1a 100%);
}
.c-aboutBand__title--onDark{
  color: #f1f5f9;
}
.c-aboutProjects__layout{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.c-aboutProjects__figure{
  margin: 0;
  position: relative;
}
.c-aboutProjects__figure::after{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(224,97,1,.35), transparent 55%);
  opacity: .45;
  z-index: 0;
  pointer-events: none;
}
.c-aboutProjects__img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 24px 56px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.08);
}

/* Ons strewe — Orania-simbool */
.c-aboutBand--strive{
  background: linear-gradient(180deg, var(--surface2) 0%, color-mix(in srgb, var(--surface2) 88%, var(--brand) 12%) 100%);
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(56px, 9vw, 100px);
}
[data-theme="dark"] .c-aboutBand--strive{
  background: linear-gradient(180deg, rgba(11,18,32,.92) 0%, rgba(18,28,48,.88) 100%);
}
.c-aboutStrive__layout{
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.c-aboutStrive__symbolWrap{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-aboutStrive__symbol{
  width: min(100%, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(224,97,1,.2));
  opacity: .98;
}
[data-theme="dark"] .c-aboutStrive__symbol{
  filter: drop-shadow(0 10px 24px rgba(255,255,255,.12));
  opacity: .92;
}
.c-aboutStrive__copy .c-aboutBand__lead{
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
}

@media (max-width: 960px){
  .c-aboutBegin__layout{
    grid-template-columns: 1fr;
  }
  .c-aboutProjects__layout{
    grid-template-columns: 1fr;
  }
  .c-aboutStrive__layout{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .c-aboutStrive__symbolWrap{
    order: -1;
  }
  .c-aboutStrive__symbol{
    width: min(180px, 55vw);
  }
}

.c-contactShell{
  padding: 22px 18px 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.c-newsletterShell{
  padding: 8px 18px 40px 18px;
  max-width: 1300px;
  margin: 0 auto;
}
.c-newsletterShell__grid{
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(440px, 1.25fr);
  gap: 18px;
  align-items: stretch;
}
.c-newsletterIntro{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 22px 20px 24px 20px;
}
[data-theme="dark"] .c-newsletterIntro{
  background: rgba(11,18,32,.86);
}
.c-newsletterIntro__title{
  margin: 0 0 10px 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 1000;
  line-height: 1.15;
}
.c-newsletterIntro__lead,
.c-newsletterIntro__text{
  margin: 0 0 14px 0;
  color: var(--text);
  line-height: 1.62;
}
.c-newsletterIntro__download{
  margin-top: 4px;
}
.c-newsletterViewer{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface2);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 70vh;
}
[data-theme="dark"] .c-newsletterViewer{
  background: rgba(11,18,32,.86);
}
.c-newsletterViewer__frame{
  width: 100%;
  height: 100%;
  min-height: 70vh;
  border: 0;
  display: block;
}
.c-contactShell__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.c-contactMap{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
[data-theme="dark"] .c-contactMap{
  background: rgba(11,18,32,.86);
}
.c-contactMap iframe{
  width: 100%;
  min-height: 340px;
  height: clamp(280px, 38vw, 440px);
  border: 0;
  display: block;
}
.c-contactMap__link{
  display: block;
  padding: 10px 14px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--brand);
  background: color-mix(in srgb, var(--surface2) 92%, var(--brand) 8%);
  border-top: 1px solid var(--border);
  text-align: center;
  transition: background .15s ease;
}
.c-contactMap__link:hover{
  background: color-mix(in srgb, var(--surface2) 85%, var(--brand) 15%);
}
[data-theme="dark"] .c-contactMap__link{
  background: rgba(224,97,1,.12);
}
.c-contactAside{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-contactCard,
.c-contactHours{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 18px 18px 20px 18px;
}
[data-theme="dark"] .c-contactCard,
[data-theme="dark"] .c-contactHours{
  background: rgba(11,18,32,.86);
}
.c-contactCard__title{
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  font-weight: 1000;
}
.c-contactCard__lead{
  margin: 0 0 14px 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
}
.c-contactCard__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.c-contactCard__item{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .92rem;
}
.c-contactCard__item--block{
  grid-template-columns: 88px 1fr;
}
.c-contactCard__label{
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-contactCard__value{
  color: var(--text);
  font-weight: 650;
  word-break: break-word;
}
.c-contactCard__value--multiline{
  line-height: 1.45;
  font-weight: 600;
}
.c-contactCard a.c-contactCard__value{
  color: var(--brand);
}

.c-contactHours__head{
  margin-bottom: 12px;
}
.c-contactHours__title{
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 1000;
}
.c-contactHours__hint{
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
}
.c-contactHours__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.c-contactHours__row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 12px 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.c-contactHours__row::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  opacity: .9;
}
.c-contactHours__row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.c-contactHours__day{
  font-weight: 750;
  font-size: .9rem;
}
.c-contactHours__time{
  font-weight: 800;
  font-size: .9rem;
  color: var(--brand);
  white-space: nowrap;
}
.c-contactHours__row--muted .c-contactHours__time{
  color: var(--muted);
  font-weight: 700;
}

.c-pageBody{
  padding: 18px 18px 0 18px;
  max-width: 920px;
  margin: 0 auto;
  scroll-margin-top: 88px;
}
.c-pageBody--wideShell{
  max-width: none;
}
.c-pageBody--wideShell .c-pageBody__card--wide{
  margin-left: auto;
  margin-right: auto;
}
.c-pageBody__card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 8px 8px 10px 8px;
}
.c-pageBody__card--wide{
  max-width: 1200px;
  margin: 0 auto;
}
[data-theme="dark"] .c-pageBody__card{
  background: rgba(11,18,32,.82);
}
.c-prose--inCard{
  padding: 10px 14px 18px 14px;
}
.c-prose--inCard a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 960px){
  .c-aboutStrip__inner{
    grid-template-columns: 1fr;
  }
  .c-contactShell__grid{
    grid-template-columns: 1fr;
  }
  .c-newsletterShell__grid{
    grid-template-columns: 1fr;
  }
  .c-newsletterViewer{
    min-height: 68vh;
  }
  .c-newsletterViewer__frame{
    min-height: 68vh;
  }
}

.c-page{
  padding-bottom: 40px;
}

.c-prose{
  width: 100%;
  margin: 0;
  padding: 0 18px;
  line-height: 1.75;
  color: var(--text);
}
.c-prose img{
  border-radius: var(--radius);
  margin: 14px 0;
}
.c-importedImage{
  margin: 0;
}
.c-importedImage img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.c-prose--gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.c-prose--gallery > *:not(.c-importedImage){
  grid-column: 1 / -1;
}

/* Beeldegalery (/galerie/) — vol wydte; strook vas aan regter skermrand */
.c-page--galerie{
  padding-bottom: 32px;
  max-width: none;
  width: 100%;
}
.c-pageHeader--galerie{
  padding-left: clamp(12px, 3vw, 28px);
  padding-right: clamp(12px, 3vw, 28px);
}
.c-pageHeader__inner--galerie{
  max-width: none;
}
.c-galerieSection{
  padding: 8px 18px 40px 18px;
  width: 100%;
  box-sizing: border-box;
}
.c-page--terme .c-galerieSection__inner{
  max-width: 980px;
  margin: 0 auto;
}
.c-termeCard{
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(16,24,40,.12);
  padding: clamp(18px, 2.6vw, 30px);
}
.c-termeCard__header{
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.c-termeCard__eyebrow{
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--brand);
}
.c-termeList{
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: terme;
  display: grid;
  gap: 10px;
}
.c-termeList__item{
  counter-increment: terme;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px 12px 44px;
  line-height: 1.6;
  position: relative;
}
.c-termeList__item::before{
  content: counter(terme);
  position: absolute;
  left: 12px;
  top: 11px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  color: #fff;
  background: var(--brand);
}
.c-termeCard__note{
  margin: 14px 0 0 0;
  font-size: .84rem;
  color: var(--muted);
}
.c-galerieSection--fullBleed{
  position: relative;
  padding: 8px 0 48px 0;
  max-width: none;
  width: 100%;
}
.c-galerieSection__shell{
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding-left: clamp(10px, 2.5vw, 22px);
  padding-right: 78px;
}
.c-galerieMain{
  min-width: 0;
  width: 100%;
}
.c-galerieGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  grid-auto-rows: 1px;
  grid-auto-flow: row;
  gap: clamp(12px, 1.8vw, 18px);
  align-items: stretch;
}
.c-galerieMonthHead{
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 18px 0 12px 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  scroll-margin-top: 96px;
  line-height: 1.2;
  border-top: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 92%, transparent) 0%,
    transparent 100%
  );
}
.c-galerieMonthHead:first-child{
  padding-top: 4px;
  border-top: none;
  background: none;
}
[data-theme="dark"] .c-galerieMonthHead{
  border-top-color: color-mix(in srgb, var(--border) 70%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface2) 55%, transparent) 0%,
    transparent 100%
  );
}
[data-theme="dark"] .c-galerieMonthHead:first-child{
  background: none;
}
.c-galerieTocShell{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  max-height: min(70vh, 560px);
  width: 56px;
  pointer-events: none;
}
.c-galerieTocShell .c-galerieToc{
  pointer-events: auto;
}
.c-galerieToc{
  max-height: min(70vh, 560px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 6px 10px 10px;
  margin-right: 0;
  border-radius: 10px 0 0 10px;
  border: 1px solid var(--border);
  border-right: none;
  background: rgba(255,255,255,.94);
  box-shadow: -6px 4px 28px rgba(16,24,40,.14), -1px 0 0 rgba(16,24,40,.06);
  -webkit-overflow-scrolling: touch;
  font-size: .65rem;
  line-height: 1.25;
}
[data-theme="dark"] .c-galerieToc{
  background: rgba(18,26,42,.92);
  box-shadow: -8px 4px 32px rgba(0,0,0,.35), -1px 0 0 rgba(255,255,255,.08);
}
.c-galerieToc__year{
  font-weight: 800;
  font-size: .62rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin: 10px 0 3px 0;
  text-align: center;
}
.c-galerieToc__year:first-child{
  margin-top: 0;
}
.c-galerieToc__link{
  display: block;
  width: 100%;
  margin: 0;
  padding: 3px 2px;
  border: none;
  border-radius: 4px;
  background: transparent;
  font: inherit;
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.c-galerieToc__link:hover,
.c-galerieToc__link:focus-visible{
  color: var(--brand);
  background: rgba(224,97,1,.12);
  outline: none;
}
[data-theme="dark"] .c-galerieToc__link:hover,
[data-theme="dark"] .c-galerieToc__link:focus-visible{
  background: rgba(224,97,1,.18);
}
.c-galerieTile{
  display: block;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 0;
  align-self: stretch;
}
.c-galerieTile:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16,24,40,.12);
}
[data-theme="dark"] .c-galerieTile{
  background: rgba(11,18,32,.75);
}
.c-galerieTile__img{
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.c-galerieSentinel{
  min-height: 48px;
  width: 100%;
  pointer-events: none;
}
.c-galerieStatus{
  margin: 16px 0 0 0;
  min-height: 1.25em;
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 720px){
  .c-galerieSection__shell{
    padding-right: 54px;
  }
  .c-galerieTocShell{
    width: 48px;
    top: auto;
    bottom: max(88px, calc(env(safe-area-inset-bottom, 0px) + 72px));
    transform: none;
    max-height: min(42vh, 340px);
  }
  .c-galerieToc{
    max-height: min(42vh, 340px);
  }
}
@media (max-width: 560px){
  .c-galerieGrid{
    grid-template-columns: repeat(auto-fill, minmax(min(152px, 100%), 1fr));
    gap: 10px;
  }
  .c-galerieTile{
    border-radius: 12px;
  }
  .c-galerieMonthHead{
    font-size: 1.05rem;
    scroll-margin-top: 88px;
  }
}

.c-page--veiling{
  position: relative;
  isolation: isolate;
}
.c-page--veiling__fullbg{
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  background-color: #d6dde8;
}
[data-theme="dark"] .c-page--veiling__fullbg{
  background-color: #0b1220;
}
.c-page--veiling__fullbg::before{
  content: "";
  position: absolute;
  inset: -5%;
  background-image: url("/media/Sakekamer/gears-orania-sakekamer-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(220vmin, 3200px);
  opacity: 0.12;
  pointer-events: none;
}
[data-theme="dark"] .c-page--veiling__fullbg::before{
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
.c-page--veiling__fullbg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(120,55,12,.09) 0%,
      rgba(16,24,40,.08) 48%,
      rgba(14,20,32,.06) 100%
    );
}
[data-theme="dark"] .c-page--veiling__fullbg::after{
  background:
    linear-gradient(160deg, rgba(224,97,1,.1) 0%, rgba(11,18,32,.32) 48%, rgba(11,18,32,.52) 100%);
}
.c-page--veiling > *:not(.c-page--veiling__fullbg){
  position: relative;
  z-index: 1;
}
.c-page--veiling .c-galerieSection__inner{
  max-width: min(1780px, 100%);
  margin: 0 auto;
}
.c-veilingAuth{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.c-veilingProfileCard{
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--surface2) 94%, transparent), color-mix(in srgb, var(--surface) 96%, transparent));
  box-shadow: var(--shadow);
  padding: 16px;
}
.c-veilingProfileCard__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.c-veilingProfileCard__head .c-sectionTitle{
  margin: 0;
}
.c-veilingProfileCard__badge{
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(21,128,61,.35);
  color: #166534;
  background: rgba(21,128,61,.12);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
[data-theme="dark"] .c-veilingProfileCard__badge{
  color: #86efac;
  background: rgba(22,101,52,.4);
  border-color: rgba(134,239,172,.3);
}
.c-veilingProfileCard__list{
  margin: 0;
}
.c-veilingProfileCard__row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding: 10px 0;
}
.c-veilingProfileCard__row:first-child{
  border-top: 0;
  padding-top: 2px;
}
.c-veilingProfileCard__row dt{
  color: var(--muted);
  font-size: .88rem;
}
.c-veilingProfileCard__row dd{
  margin: 0;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}
.c-veilingProfileCard__actions{
  margin-top: 12px;
}
.c-veilingGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.c-veilingCard{
  display: flex;
  flex-direction: column;
}
.c-veilingCard__imgBtn{
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0 0 10px 0;
  background: transparent;
  cursor: zoom-in;
}
.c-veilingCard__title{
  margin: 0 0 6px 0;
}
.c-veilingCard__galleryBtn{
  align-self: flex-start;
  margin-bottom: 8px;
}
.c-veilingCard__desc{
  margin: 0 0 10px 0;
}
.c-veilingCard__img{
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background: color-mix(in srgb, var(--surface2) 90%, transparent);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}
.c-veilingCard__meta{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
  font-size: .93rem;
}
.c-veilingCard__stats{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.c-veilingCard__priceTile{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--surface2) 88%, transparent);
}
.c-veilingCard__k{
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.c-veilingCard__v{
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  color: var(--text);
}
.c-veilingCard__metaItem{
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 8px;
  background: var(--surface2);
}
.c-veilingCard__metaItem span{
  display: block;
  color: var(--muted);
  font-size: .75rem;
  margin-bottom: 2px;
}
.c-veilingCard__status.is-open{ color: #15803d; }
.c-veilingCard__status.is-upcoming{ color: #1d4ed8; }
.c-veilingCard__status.is-closed{ color: #b45309; }
.c-veilingCard__status.is-sold{ color: var(--brand); }
.c-veilingCard__historyTitle{
  margin: 12px 0 6px 0;
}
.c-veilingCard__history{
  margin: 0 0 12px 0;
  max-height: 102px;
  overflow: auto;
}
.c-veilingCard__form{
  margin-top: auto;
}
.c-veilingCard__loginHint{
  margin-top: auto;
}
@media (max-width: 760px){
  .c-veilingCard__meta{
    grid-template-columns: 1fr;
  }
}
.c-modal__panel--veilingGallery{
  width: min(1100px, calc(100% - 28px));
  max-height: min(94vh, 980px);
}
.c-veilingGallery{
  display: grid;
  gap: 12px;
}
.c-veilingGallery__stageWrap{
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface2) 92%, transparent);
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.c-veilingGallery__stage{
  width: 100%;
  max-height: min(72vh, 700px);
  object-fit: contain;
}
.c-veilingGallery__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.c-veilingGallery__nav--prev{ left: 10px; }
.c-veilingGallery__nav--next{ right: 10px; }
.c-veilingGallery__thumbs{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}
.c-veilingGallery__thumbBtn{
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}
.c-veilingGallery__thumbBtn img{
  width: 100%;
  height: 84px;
  object-fit: contain;
  display: block;
  background: color-mix(in srgb, var(--surface2) 92%, transparent);
}
.c-veilingGallery__thumbBtn.is-active{
  border-color: var(--brand);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 25%, transparent);
}
.c-modal__panel--auctionAuth{
  width: min(540px, calc(100% - 28px));
  max-height: min(94vh, 900px);
  overflow: visible;
  background: #ffffff;
}
[data-theme="dark"] .c-modal__panel--auctionAuth{
  background: #121b2d;
}
.c-modal--auctionAuth .c-modal__backdrop{
  background: rgba(0,0,0,.62);
}
.c-auctionFlip{
  perspective: 1200px;
}
.c-auctionFlip__inner{
  position: relative;
  min-height: 640px;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.75,.2,1);
}
.c-auctionFlip.is-register .c-auctionFlip__inner{
  transform: rotateY(180deg);
}
.c-auctionFlip__face{
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.c-auctionFlip__face--back{
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}
.c-auctionFlip .c-form{
  margin: 0;
}
.c-auctionAuth__logo{
  display: block;
  width: min(260px, 85%);
  height: auto;
  margin: 0 auto 14px auto;
  object-fit: contain;
}
.c-auctionAuth__logo--front{
  width: min(300px, 92%);
}

.c-prose h1, .c-prose h2, .c-prose h3{
  line-height: 1.2;
  margin-top: 22px;
  margin-bottom: 10px;
}
.c-prose p{
  margin: 0 0 14px 0;
}

.c-lede{
  padding: 18px 18px 0 18px;
}

.c-lede__grid{
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 1280px){
  .c-lede__grid{
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

.c-ledeFlipCard{
  height: 100%;
  min-height: 0;
  perspective: 1100px;
  border-radius: 18px;
}
.c-ledeFlipCard__inner{
  position: relative;
  height: 100%;
  min-height: 0;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.2,.75,.2,1);
  border-radius: 18px;
}
@media (hover: hover) and (pointer: fine){
  .c-ledeFlipCard:hover .c-ledeFlipCard__inner,
  .c-ledeFlipCard:focus-within .c-ledeFlipCard__inner{
    transform: rotateY(180deg);
  }
}
.c-ledeFlipCard.is-flipped .c-ledeFlipCard__inner{
  transform: rotateY(180deg);
}
@media (prefers-reduced-motion: reduce){
  .c-ledeFlipCard__inner{
    transition-duration: 0.01ms;
  }
}
.c-ledeFlipCard__face{
  border-radius: 18px;
  border: 1px solid rgba(16,24,40,.1);
  box-shadow: 0 12px 26px rgba(16,24,40,.1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
[data-theme="dark"] .c-ledeFlipCard__face{
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.c-ledeFlipCard__face--front{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,255,.92));
}
[data-theme="dark"] .c-ledeFlipCard__face--front{
  background: linear-gradient(180deg, rgba(22,32,52,.96), rgba(15,24,40,.92));
}
.c-ledeFlipCard__face--back{
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 14px 14px 16px 14px;
  background: #ffffff;
  text-align: left;
  overflow: auto;
}
.c-ledeFlipCard__face--back a{
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine){
  .c-ledeFlipCard:hover .c-ledeFlipCard__face--back a,
  .c-ledeFlipCard:focus-within .c-ledeFlipCard__face--back a{
    pointer-events: auto;
  }
}
.c-ledeFlipCard.is-flipped .c-ledeFlipCard__face--back a{
  pointer-events: auto;
}
.c-ledeFlipCard.is-flipped .c-ledeFlipCard__face--front{
  pointer-events: none;
}
[data-theme="dark"] .c-ledeFlipCard__face--back{
  background: #121b2d;
}
.c-ledeFlipCard__media{
  position: relative;
  width: 100%;
  /* Keep the card compact: cap the image block height so it can't expand rows */
  height: clamp(120px, 22vw, 280px);
  max-height: 280px;
  background: var(--surface);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
[data-theme="dark"] .c-ledeFlipCard__media{
  border-bottom-color: rgba(255,255,255,.1);
}
.c-ledeFlipCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.c-ledeFlipCard__media--placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .04em;
}
.c-ledeFlipCard__body{
  padding: 10px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
}
.c-ledeFlipCard__title{
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 1000;
  line-height: 1.2;
  color: var(--text);
}
.c-ledeFlipCard__text{
  margin: 0;
  font-size: .82rem;
  line-height: 1.35;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-ledeFlipCard__hint{
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}
.c-ledeFlipCard__backTitle{
  margin: 0 0 8px 0;
  font-size: .95rem;
  font-weight: 1000;
  color: var(--text);
}
.c-ledeFlipCard__hours{
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: grid;
  gap: 5px;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--muted);
  max-height: 42%;
  overflow-y: auto;
}
.c-ledeFlipCard__contact{
  margin-top: 0;
  display: grid;
  gap: 8px;
  font-size: .84rem;
}
.c-ledeFlipCard__contact a{
  color: var(--brand);
  font-weight: 700;
  word-break: break-word;
}
.c-ledeFlipCard__contactRow{
  margin: 0;
  color: var(--text);
}
.c-ledeFlipCard__contactRow span{
  color: var(--muted);
  font-weight: 700;
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}

.c-section{
  padding: 26px 18px;
}
.c-section__inner{
  width: 100%;
  margin: 0;
}

.c-emptyState{
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--muted);
}

/* Modal */
.c-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-modal[hidden]{ display: none; }
.c-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.c-modal__panel{
  position: relative;
  max-height: min(84vh, 720px);
  overflow: hidden;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.c-modal--member .c-modal__panel{
  background: #ffffff;
  width: min(980px, calc(100% - 28px));
  max-height: min(94vh, 900px);
  overflow: visible;
}
[data-theme="dark"] .c-modal--member .c-modal__panel{
  background: #121b2d;
}
.c-modal--member .c-modal__backdrop{
  background: rgba(0,0,0,.55);
}
.c-modal--member .c-modal__body{
  max-height: min(80vh, 760px);
  overflow: auto;
  padding-top: 130px;
  padding-right: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(224,97,1,.75) rgba(16,24,40,.08);
}
.c-modal--newsletter .c-modal__panel{
  /* Opaque surfaces (dark theme --surface2 is otherwise translucent) */
  background: #ffffff;
  width: min(620px, calc(100% - 28px));
  max-height: min(88vh, 660px);
}
[data-theme="dark"] .c-modal--newsletter .c-modal__panel{
  background: #121b2d;
}
.c-modal--newsletter .c-modal__backdrop{
  background: rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .c-modal--newsletter .c-modal__backdrop{
  background: rgba(0, 0, 0, 0.62);
}
.c-modal--benefits .c-modal__panel{
  background: #ffffff;
}
[data-theme="dark"] .c-modal--benefits .c-modal__panel{
  background: #121b2d;
}
.c-modal--benefits .c-modal__backdrop{
  background: rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .c-modal--benefits .c-modal__backdrop{
  background: rgba(0, 0, 0, 0.62);
}

.c-modal__panel--wide{
  width: min(1100px, calc(100% - 28px));
}
.c-modal__header{
  padding: 16px 16px 10px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.c-modal__title{
  margin: 0 0 4px 0;
  font-size: 1.35rem;
}
.c-modal__subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.c-modal__body{
  padding: 16px;
  max-height: calc(min(84vh, 720px) - 86px);
  overflow: auto;
}
.c-modal__actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* Newsletter modal specific */
#newsletterPopup .c-modal__actions{
  flex-wrap: wrap;
}
.c-modal--newsletter .c-modal__actions{
  padding-top: 6px;
}
.c-form__status{
  margin-top: 10px;
  min-height: 20px;
  color: var(--muted);
}

.c-memberGrid{
  display: grid;
  gap: 10px;
}
.c-memberGrid--3{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.c-memberMap{
  margin-top: 10px;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #f4f6fa;
}
.c-memberMap .leaflet-container{
  width: 100%;
  height: 100%;
}
.c-choiceGroup{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-choiceChip{
  position: relative;
  cursor: pointer;
}
.c-choiceChip input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-choiceChip span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  font-weight: 700;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.c-choiceChip:hover span{
  border-color: rgba(224,97,1,.46);
  background: rgba(224,97,1,.08);
  box-shadow: 0 6px 14px rgba(224,97,1,.12);
  transform: translateY(-1px);
}
.c-choiceChip input:checked + span{
  border-color: rgba(224,97,1,.6);
  background: rgba(224,97,1,.14);
  color: var(--brand);
  box-shadow: 0 0 0 2px rgba(224,97,1,.15);
}
.c-choiceChip input:focus-visible + span{
  box-shadow: var(--focusRing);
}

.c-logoMini{
  position: absolute;
  right: 16px;
  top: 12px;
  width: min(320px, calc(100% - 40px));
  transform: none;
  z-index: 3;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 22px 46px rgba(16,24,40,.26);
  padding: 12px;
}
.c-logoMini__header{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

/* Slim branded scrollbar */
*{
  scrollbar-width: thin;
  scrollbar-color: rgba(224,97,1,.72) rgba(16,24,40,.10);
}
*::-webkit-scrollbar{
  width: 9px;
  height: 9px;
}
*::-webkit-scrollbar-track{
  background: rgba(16,24,40,.10);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(224,97,1,.82), rgba(224,97,1,.58));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(224,97,1,.95), rgba(224,97,1,.75));
  background-clip: content-box;
}

/* Admin */
.c-admin{
  padding: 26px clamp(12px, 2vw, 26px);
  width: 100%;
  max-width: none;
}
.c-admin--login{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}
.c-admin__card{
  max-width: 760px;
  margin: 0 auto;
}
.c-admin__card--login{
  width: min(520px, 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 22px;
}
.c-admin__loginLogo{
  height: 52px;
  width: auto;
  margin-bottom: 10px;
}
.c-admin__title{
  margin: 0 0 14px 0;
}
.c-admin__hint{
  margin-top: 12px;
  color: var(--muted);
}
.c-admin__top{
  width: 100%;
  max-width: none;
  margin: 0 0 14px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.c-admin__titleRow{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-admin__section{
  width: 100%;
  max-width: none;
  margin: 0 0 14px 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(12px, 1.6vw, 18px);
}
.u-hidden{
  display: none !important;
}

.u-srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-adminTabs{
  width: 100%;
  max-width: none;
  margin: 0 0 12px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.c-adminTabs__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  font-weight: 800;
}
.c-adminTabs__link.is-active{
  border-color: rgba(224,97,1,.45);
  background: rgba(224,97,1,.14);
  color: var(--brand);
}
.c-adminImagePicker{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.c-adminImagePicker__tile{
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.c-adminImagePicker__tile:hover{
  transform: translateY(-1px);
}
.c-adminImagePicker__tile input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-adminImagePicker__preview{
  display: block;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
.c-adminImagePicker__preview img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-adminImagePicker__preview--none{
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}
.c-adminImagePicker__label{
  display: block;
  padding: 7px 8px;
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-adminImagePicker__tile input:checked ~ .c-adminImagePicker__label{
  color: var(--brand);
  font-weight: 800;
}
.c-adminImagePicker__tile input:checked ~ .c-adminImagePicker__preview{
  box-shadow: inset 0 0 0 2px rgba(224,97,1,.5);
}
.c-admin__miniCard{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(16,24,40,.05);
}
.c-adminImageField{
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.c-adminImageField__preview{
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface2);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .82rem;
}
.c-adminImageField__preview img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-adminImageField__meta{
  display: grid;
  gap: 8px;
}
.c-adminImageField__name{
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
  word-break: break-word;
}
.c-modal__panel--adminImage{
  width: min(1100px, calc(100% - 28px));
  max-height: min(90vh, 860px);
  background: #ffffff;
}
[data-theme="dark"] .c-modal__panel--adminImage{
  background: #121b2d;
}
.c-adminImageModal__searchRow{
  margin-bottom: 12px;
}
.c-adminImageModal__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  max-height: min(62vh, 560px);
  overflow: auto;
}
.c-adminImageModal__tile{
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.c-adminImageModal__tile.is-active{
  border-color: rgba(224,97,1,.55);
  box-shadow: inset 0 0 0 1px rgba(224,97,1,.45);
}
.c-adminImageModal__thumb{
  display: block;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
.c-adminImageModal__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-adminImageModal__label{
  display: block;
  padding: 8px;
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-adminDropzone{
  border: 1.5px dashed color-mix(in srgb, var(--border) 60%, var(--brand));
  border-radius: 12px;
  padding: 12px;
  background: color-mix(in srgb, var(--surface2) 80%, transparent);
}
.c-adminDropzone.is-over{
  border-color: var(--brand);
  background: color-mix(in srgb, rgba(224,97,1,.18) 65%, var(--surface2));
}
.c-adminDropzone__input{
  border-style: dashed;
  background: transparent;
}
.c-adminDropzone__hint{
  margin-top: 8px;
  color: var(--muted);
  font-size: .85rem;
}
.c-adminAuctionGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 12px;
}
.c-adminAuctionCard{
  height: 100%;
}
.c-adminTable{
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  font-size: .88rem;
}
.c-adminTable th,
.c-adminTable td{
  border-bottom: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.c-adminTable th{
  font-weight: 800;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface2) 88%, transparent);
}
.c-adminToastStack{
  position: fixed;
  right: 16px;
  top: 92px;
  z-index: 1200;
  width: min(420px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
}
.c-adminToast{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 10px 12px;
  transition: opacity .2s ease, transform .2s ease;
}
.c-adminToast.is-ok{
  border-color: rgba(16,185,129,.4);
}
.c-adminToast.is-error{
  border-color: rgba(239,68,68,.42);
}
.c-adminToast__msg{
  font-size: .9rem;
  line-height: 1.45;
}
.c-adminToast__close{
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.c-adminToast.is-hide{
  opacity: 0;
  transform: translateY(-6px);
}
.c-modal--auctionCreate .c-modal__panel--adminImage{
  width: min(760px, calc(100% - 28px));
}
.c-modal--auctionCreate .c-modal__body{
  max-height: calc(min(90vh, 860px) - 86px);
  overflow: auto;
}
@media (max-width: 760px){
  .c-adminImageField{
    grid-template-columns: 1fr;
  }
  .c-adminImageField__preview{
    max-width: 260px;
  }
}

.c-homePromo{
  padding: 8px 18px 20px 18px;
}
.c-homePromo__inner{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(135deg, rgba(224,97,1,.1), rgba(255,255,255,.75));
}
.c-center{
  text-align: center;
}
[data-theme="dark"] .c-homePromo__inner{
  background: linear-gradient(135deg, rgba(224,97,1,.2), rgba(11,18,32,.75));
}
.c-homePromo__badge{
  display: inline-block;
  margin-bottom: 8px;
  background: rgba(224,97,1,.16);
  color: var(--brand);
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 10px;
}
.c-homePromo__title{
  margin: 0 0 8px 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.c-homePromo__text{
  margin: 0 0 14px 0;
  color: var(--muted);
  line-height: 1.6;
}

.c-socialSection{
  padding: 0 18px 30px 18px;
}
.c-socialSection__inner{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  padding: 18px;
}
.c-socialSection__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.c-sectionHeading{
  padding: 0 18px;
  margin-bottom: 14px;
}
.c-vision{
  padding: 10px 18px 24px 18px;
  position: relative;
  overflow: hidden;
}
.c-vision__bgBand{
  position: absolute;
  inset: 40px 0 auto 0;
  height: 220px;
  background-image:
    linear-gradient(120deg, rgba(16,24,40,.65), rgba(16,24,40,.35)),
    url('/media/wp-content/uploads/2023/03/309063888_469343895235794_5758437078038484961_n.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: translateY(0);
}
.c-vision .c-sectionHeading,
.c-vision .c-vision__grid{
  position: relative;
  z-index: 1;
}
.c-vision__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.c-visionCard{
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(16,24,40,.05);
}

.c-layeredShowcase{
  position: relative;
  padding: 20px 18px 28px 18px;
  overflow: hidden;
}
.c-layeredShowcase__bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(224,97,1,.12), rgba(255,255,255,0)),
    url('/media/wp-content/uploads/2023/03/309388108_469506861886164_1885833718055312896_n.jpg');
  background-size: cover;
  background-position: center;
  opacity: .24;
  transform: scale(1.05);
}
[data-theme="dark"] .c-layeredShowcase__bg{
  opacity: .32;
}
.c-layeredShowcase__inner{
  position: relative;
  min-height: 320px;
}
.c-layerCard{
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}
.c-layerCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-layerCard--front{
  width: min(56vw, 720px);
  height: min(36vw, 420px);
  left: 4%;
  top: 20px;
  z-index: 2;
}
.c-layerCard--back{
  width: min(44vw, 560px);
  height: min(30vw, 340px);
  right: 4%;
  top: 92px;
  z-index: 1;
}
.c-visionCard__number{
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 8px;
}
.c-visionCard__title{
  margin: 0 0 8px 0;
}
.c-visionCard__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.c-benefitsTeaser{
  padding: 4px 18px 24px 18px;
}
.c-benefitsTeaser__inner{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 18px;
}
.c-benefitsList{
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.c-benefitsList li{
  line-height: 1.6;
}

.c-socialFeed{
  padding: 6px 18px 24px 18px;
}
.c-socialFeed__frameWrap{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  padding: 10px;
}
.c-socialFeed__frame{
  width: 100%;
  min-height: 700px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}
.c-socialFeed__fallback{
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.c-bottomCta{
  padding: 4px 18px 30px 18px;
}
.c-bottomCta__inner{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface2);
  padding: 20px;
  box-shadow: var(--shadow);
}
.c-bottomCta__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.c-contactBadge{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.c-footer{
  margin-top: 10px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}
.c-footer__bar{
  border-top: 1px solid var(--border);
  padding: 10px 18px 14px 18px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .92rem;
}
.c-footer__bar--compact{
  border-top: 0;
  padding: 12px 18px;
  align-items: center;
}
.c-footer__brand{
  font-weight: 700;
}
.c-footer__miniLinks{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.c-footer__miniLinks a{
  color: var(--muted);
  font-weight: 700;
}
.c-footer__miniLinks a:hover{
  color: var(--text);
}

.js-reveal{
  opacity: 1; /* Avoid “see-through panels” during scroll; we animate using transform only. */
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}
.js-reveal[data-reveal="slide-left"]{
  transform: translateX(20px);
}
.js-reveal[data-reveal="zoom-in"]{
  transform: scale(.97);
}
.js-reveal.is-visible{
  opacity: 1;
  transform: none;
}

@media (max-width: 900px){
  .c-hero__grid{
    grid-template-columns: 1fr;
  }
  .c-stats__grid{
    grid-template-columns: 1fr;
  }
  .c-vision__grid{
    grid-template-columns: 1fr;
  }
  .c-vision__bgBand{
    height: 160px;
  }
  .c-layeredShowcase__inner{
    min-height: 460px;
  }
  .c-layerCard{
    position: relative;
    width: 100%;
    height: 220px;
    left: auto;
    right: auto;
    top: auto;
  }
  .c-layerCard + .c-layerCard{
    margin-top: 12px;
  }
  .c-socialFeed__frame{
    min-height: 520px;
  }
}

@media (max-width: 640px){
  .c-hero__title{
    font-size: 1.9rem;
  }
  .c-contactBadge{
    right: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: .92rem;
  }
  .c-socialFeed__frame{
    min-height: 460px;
  }
}

/* Homepage v2 redesign */
.c-home2ScrollHint{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 18px 20px;
  margin-top: -12px;
  pointer-events: none;
}

.c-home2ScrollHint__inner{
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center center;
  will-change: transform, opacity;
}

.c-home2ScrollHint__arrowWrap{
  display: flex;
  color: var(--brand);
  filter: drop-shadow(0 6px 14px rgba(9,16,30,.22));
  animation: c-home2ScrollHint-bounce 1.65s ease-in-out infinite;
}

[data-theme="dark"] .c-home2ScrollHint__arrowWrap{
  color: rgba(255,255,255,.82);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.45));
}

@media (prefers-reduced-motion: reduce){
  .c-home2ScrollHint__arrowWrap{
    animation: none;
  }
}

.c-home2ScrollHint__arrow{
  width: 28px;
  height: auto;
  display: block;
}

@keyframes c-home2ScrollHint-bounce{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(9px); }
}

.c-home2Hero,
.c-home2Promo,
.c-home2Stats,
.c-home2Mission,
.c-home2Benefits,
.c-home2Facebook,
.c-home2Cta{
  padding: 24px 18px;
}

.c-home2Hero{
  padding-top: 0px;
  padding-bottom: 34px;
  min-height: 1050px;
  position: relative;
  overflow: hidden;
  background: transparent;
  display: flex;
  flex-direction: column;
}
.c-home2Hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  position: relative;
  z-index: 1;
  flex: 1;
}
.c-home2Hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 72%;
  opacity: .94;
  z-index: 0;
  pointer-events: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  will-change: transform;
}
.c-home2Hero__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(9,16,30,.46) 0%, rgba(10,18,34,.22) 42%, rgba(255,255,255,.08) 100%);
}
[data-theme="dark"] .c-home2Hero__bg::after{
  background:
    linear-gradient(145deg, rgba(11,18,32,.56) 0%, rgba(11,18,32,.34) 46%, rgba(11,18,32,.62) 100%);
}
.c-home2Hero__title{
  margin: 0 0 12px 0;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 16px 28px rgba(16,24,40,.42);
}
.c-home2Hero__subtitle{
  margin: 0 0 16px 0;
  color: rgba(255,255,255,.92);
  line-height: 1.35;
  text-shadow: 0 10px 24px rgba(16,24,40,.28);
}
.c-home2Hero__subtitle--tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .02em;
}
.c-home2Hero__subtitle--tag::before,
.c-home2Hero__subtitle--tag::after{
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,.6);
}
.c-home2Hero__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.c-home2Hero__joinBtn{
  padding: 12px 24px;
  font-size: 1rem;
}
.c-home2Hero__content{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.c-home2Hero__lede{
  align-self: flex-end;
  justify-self: start;
  text-align: left;
  position: relative;
  z-index: 1;
  margin-left: clamp(12px, 4vw, 56px);
  user-select: none;
}
.c-home2Hero__ledeValue{
  display: block;
  font-weight: 1000;
  font-size: clamp(3.6rem, 9.4vw, 8rem);
  letter-spacing: .02em;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.72);
  text-shadow: 0 18px 42px rgba(16,24,40,.42);
}
.c-home2Hero__ledeLabel{
  display: block;
  margin-top: -8px;
  color: rgba(255,255,255,.8);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(.72rem, .95vw, .88rem);
}
.c-home2Hero__year{
  align-self: flex-end;
  justify-self: end;
  text-align: right;
  padding: 8px 0 0 0;
  position: relative;
  z-index: 1;
  margin-right: clamp(12px, 4vw, 56px);
}
.c-home2Hero__yearLabel{
  display: block;
  color: rgba(255,255,255,.78);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: clamp(.72rem, .9vw, .86rem);
  margin-bottom: -10px;
}
.c-home2Hero__yearValue{
  display: block;
  font-weight: 1000;
  font-size: clamp(4rem, 10vw, 8.8rem);
  letter-spacing: .03em;
  line-height: .95;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255,255,255,.72);
  text-shadow: 0 18px 42px rgba(16,24,40,.42);
  user-select: none;
}

[data-theme="dark"] .c-home2Hero__content{
  background: transparent;
}
[data-theme="dark"] .c-home2Hero__title,
[data-theme="dark"] .c-home2Hero__subtitle{
  text-shadow: 0 10px 28px rgba(0,0,0,.6);
}
.c-home2Hero__media{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.c-home2MediaCard{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow);
}
.c-home2MediaCard img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c-home2Promo__inner,
.c-home2Benefits__inner,
.c-home2Cta__inner{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 18px;
}

[data-theme="dark"] .c-home2Promo__inner,
[data-theme="dark"] .c-home2Benefits__inner,
[data-theme="dark"] .c-home2Cta__inner{
  background: rgba(11,18,32,.82);
}

/* Premium promo background overlay */
.c-home2Promo{
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin: 8px auto 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.c-home2Promo::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background:
    radial-gradient(110% 100% at 6% 0%, rgba(224,97,1,.12), transparent 50%),
    radial-gradient(140% 100% at 100% 100%, rgba(62,64,149,.10), transparent 52%),
    linear-gradient(150deg, rgba(255,255,255,.92), rgba(248,250,255,.86));
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 18px 42px rgba(16,24,40,.09);
  z-index: 0;
}
[data-theme="dark"] .c-home2Promo::before{
  background:
    radial-gradient(130% 100% at 0% 0%, rgba(224,97,1,.14), transparent 52%),
    radial-gradient(120% 100% at 100% 100%, rgba(81,95,170,.16), transparent 52%),
    linear-gradient(155deg, rgba(13,20,35,.96), rgba(14,24,42,.86));
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 22px 44px rgba(0,0,0,.35);
}
.c-bgScrollPromo__bg{
  position: absolute;
  inset: -140px -60px -120px -60px;
  background-image:
    linear-gradient(120deg, rgba(224,97,1,.20), rgba(16,24,40,.10)),
    url('/media/wp-content/uploads/2023/03/309388108_469506861886164_1885833718055312896_n.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: 0;
  transform: translate3d(0,0,0);
}
.c-home2Promo__inner{
  position: relative;
  z-index: 1;
}
.c-home2Benefits__inner,
.c-home2Cta__inner{
  position: relative;
  z-index: 1;
}
.c-home2Promo__badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224,97,1,.15);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 8px;
}
.c-home2Promo__title{
  margin: 0 0 8px 0;
}
.c-home2Promo__text{
  margin: 0 0 12px 0;
  color: var(--muted);
}
.c-home2Promo__multi{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.c-home2Promo__header{
  position: relative;
  z-index: 1;
  margin: 0 auto 14px auto;
  max-width: 780px;
}
.c-home2Promo__kicker{
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(224,97,1,.14);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.c-home2Promo__sectionTitle{
  margin: 0 0 6px 0;
  font-size: clamp(1.18rem, 2vw, 1.8rem);
}
.c-home2Promo__sectionSubtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: .94rem;
}
.c-home2Promo__inner{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  min-height: 100%;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid rgba(16,24,40,.08);
  box-shadow: 0 12px 22px rgba(16,24,40,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,252,255,.86));
}
[data-theme="dark"] .c-home2Promo__inner{
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  background:
    linear-gradient(180deg, rgba(20,30,48,.93), rgba(15,24,40,.88));
}
.c-home2Promo__img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(16,24,40,.12);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(16,24,40,.15);
}
.c-home2Promo__title{
  margin: 0 0 6px 0;
  font-size: clamp(.96rem, 1.25vw, 1.08rem);
  letter-spacing: .01em;
}
.c-home2Promo__text{
  font-size: .86rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
}
.c-home2Promo__meta{
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: .85rem;
}
.c-home2Promo__inner .c-btn{
  margin-top: auto;
  align-self: flex-start;
  min-height: 34px;
  padding: 7px 10px;
  font-size: .82rem;
}

.c-doraFloatBadge{
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 110;
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16,24,40,.16);
  padding: 10px 12px;
  max-width: min(470px, calc(100vw - 32px));
  opacity: 0;
  transform: translate3d(120%, 18px, 0);
  pointer-events: none;
  transform-style: preserve-3d;
  transition: transform .35s ease, opacity .35s ease, box-shadow .2s ease;
}
.c-doraFloatBadge.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
.c-doraFloatBadge:hover{
  box-shadow: 0 16px 32px rgba(16,24,40,.12);
}
[data-theme="dark"] .c-doraFloatBadge{
  background: #121b2d;
}
.c-doraFloatBadge__iconWrap{
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(240,244,255,.9));
  padding: 6px;
}
[data-theme="dark"] .c-doraFloatBadge__iconWrap{
  background: linear-gradient(180deg, #1e2a42, #141d30);
  border-color: rgba(230,238,252,.16);
}
.c-doraFloatBadge__icon{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.c-doraFloatBadge__eyebrow{
  margin: 0 0 4px 0;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--muted);
  font-weight: 800;
}
.c-doraFloatBadge__countRow{
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.c-doraFloatBadge__count{
  font-size: clamp(1.3rem, 2.8vw, 2.05rem);
  font-weight: 1000;
  color: var(--brand);
  line-height: 1;
}
.c-doraFloatBadge__countLabel{
  color: var(--muted);
  font-weight: 700;
  font-size: .86rem;
}
.c-doraFloatBadge__meta{
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: .78rem;
}
.c-doraFloatBadge__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid rgba(224,97,1,.34);
  background: rgba(224,97,1,.14);
  color: var(--brand);
  font-weight: 800;
  font-size: .82rem;
  padding: 7px 12px;
}

.c-home2Stats .c-sectionTitle{
  margin-bottom: 12px;
}
.c-home2Stats__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.c-home2Stat{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface2);
  box-shadow: 0 12px 28px rgba(16,24,40,.08);
  padding: 16px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.c-home2Stat:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16,24,40,.11);
}
.c-home2Stat__value{
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 1000;
  color: var(--brand);
}
.c-home2Stat__label{
  color: var(--muted);
  font-weight: 700;
}

.c-home2Mission__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.c-home2MissionCard{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface2);
  padding: 16px;
  box-shadow: var(--shadow);
}

[data-theme="dark"] .c-home2MissionCard{
  background: rgba(11,18,32,.86);
}
.c-home2MissionCard__num{
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 8px;
}
.c-home2MissionCard h3{
  margin: 0 0 8px 0;
}
.c-home2MissionCard p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.c-home2Facebook__frameWrap{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.c-home2Facebook__frame{
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}

.c-home2Cta__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* Bottom big background image (aerial view) behind lower sections */
.c-home2BottomBgWrap{
  position: relative;
  z-index: 0;
  padding-top: 58px;
  padding-bottom: 90px;
  min-height: 820px;
}
.c-geoDivider{
  display: none;
}
.c-home2BottomBg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.c-home2BottomBg__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.02);
}
.c-home2BottomBg__bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.28) 52%, rgba(255,255,255,.52) 100%);
}
[data-theme="dark"] .c-home2BottomBg__bg::after{
  background:
    linear-gradient(180deg, rgba(11,18,32,.10) 0%, rgba(11,18,32,.35) 52%, rgba(11,18,32,.60) 100%);
}

.c-home2BottomBgWrap .c-home2Mission,
.c-home2BottomBgWrap .c-home2Benefits{
  position: relative;
  z-index: 1;
}

.c-home2Cta{
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-bottom: 70px;
}

/* Homepage mini collage */
.c-home2Collage{
  padding: 24px 18px;
}
.c-home2Collage__inner{
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 18px;
}
[data-theme="dark"] .c-home2Collage__inner{
  background: rgba(11,18,32,.82);
}
.c-home2Collage__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.c-home2Collage__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.c-home2Collage__tile{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 24px rgba(16,24,40,.10);
  display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.c-home2Collage__tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16,24,40,.14);
}
.c-home2Collage__tile img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.c-fbFloat{
  position: fixed;
  right: 14px;
  top: 92px;
  width: 360px;
  max-width: calc(100vw - 28px);
  z-index: 35;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface2);
  box-shadow: 0 14px 38px rgba(16,24,40,.22);
}
.c-fbFloat__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.c-fbFloat__frame{
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}
.c-fbFloat.is-hidden{
  display: none;
}

.c-fbFloatTab{
  position: fixed;
  top: 180px;
  right: 0;
  z-index: 36;
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: var(--surface2);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(16,24,40,.18);
  font-weight: 800;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 12px 10px;
  cursor: pointer;
  transition: right .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity: .92;
}
.c-fbFloatTab:hover{
  right: 0;
  box-shadow: 0 16px 30px rgba(16,24,40,.22);
  opacity: 1;
}
.c-fbFloatTab.is-hidden{
  display: none;
}

@media (max-width: 980px) and (min-width: 901px){
  .c-header__inner{
    padding: 10px 14px;
  }
  .c-nav{
    gap: 4px;
    padding: 4px;
  }
  .c-nav__link{
    padding: 7px 10px;
    font-size: .92rem;
  }
}
@media (max-width: 980px){
  .c-home2Hero{
    min-height: 760px;
  }
  .c-home2Hero__bg{
    inset: 0;
  }
  .c-home2Hero__year{
    margin-right: 18px;
  }
  .c-home2Hero__lede{
    margin-left: 18px;
  }
  .c-home2Hero__grid{
    grid-template-columns: auto 1fr auto;
    align-items: end;
  }
  .c-home2Stats__grid,
  .c-home2Mission__grid{
    grid-template-columns: 1fr;
  }
  .c-home2Promo__multi{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .c-home2Promo__sectionSubtitle{
    max-width: 620px;
    margin: 0 auto;
  }
  .c-doraFloatBadge{
    right: 12px;
    bottom: 76px;
    grid-template-columns: 74px 1fr;
    max-width: min(420px, calc(100vw - 24px));
  }
  .c-home2Facebook__frame{
    min-height: 560px;
  }
  .c-home2Cta{
    margin-top: 0;
    padding-bottom: 84px;
  }
  .c-home2Collage{
    padding: 18px 12px;
  }
  .c-home2Collage__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .c-fbFloat{
    top: auto;
    bottom: 88px;
    right: 10px;
    width: 320px;
  }
  .c-fbFloat__frame{
    height: 420px;
  }
}

@media (max-width: 640px){
  .c-memberGrid--3{
    grid-template-columns: 1fr;
  }
  .c-modal--member .c-modal__panel{
    overflow: auto;
  }
  .c-modal--member .c-modal__body{
    max-height: none;
    overflow: visible;
    padding-top: 16px;
  }

  .c-modal--newsletter{
    align-items: flex-start;
    justify-content: center;
    padding: max(10px, env(safe-area-inset-top, 0px)) 12px 20px;
    box-sizing: border-box;
  }
  .c-modal--newsletter .c-modal__panel{
    width: min(300px, calc(100% - 16px));
    max-height: min(62vh, 420px);
    margin-top: 0;
  }
  .c-modal--newsletter .c-modal__title{
    font-size: 1.08rem;
  }
  .c-modal--newsletter .c-modal__subtitle{
    font-size: 0.88rem;
  }
  .c-modal--newsletter .c-modal__header{
    padding: 12px 12px 8px 12px;
  }
  .c-modal--newsletter .c-modal__body{
    padding: 12px;
  }
  .c-logoMini{
    position: static;
    width: 100%;
    transform: none;
    margin: 6px 0 12px 0;
  }
  .c-home2Hero{
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 24px;
  }
  .c-home2Promo__multi{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .c-home2Promo__header{
    margin-bottom: 10px;
  }
  .c-home2Promo__sectionTitle{
    font-size: clamp(1.05rem, 4.6vw, 1.28rem);
  }
  .c-home2Promo__sectionSubtitle{
    font-size: .84rem;
    line-height: 1.35;
  }
  .c-home2Hero__bg{
    inset: 0;
  }
  .c-home2Hero__content{
    padding: 16px 12px;
    max-width: 100%;
  }
  .c-home2Hero__title{
    font-size: clamp(1.34rem, 6.8vw, 1.86rem);
    line-height: 1.12;
    margin-bottom: 8px;
  }
  .c-home2Hero__subtitle{
    font-size: .92rem;
    line-height: 1.28;
    margin-bottom: 10px;
  }
  .c-home2Hero__subtitle--tag::before,
  .c-home2Hero__subtitle--tag::after{
    width: 14px;
  }
  .c-home2Hero__joinBtn{
    width: auto;
    min-height: 36px;
    padding: 8px 12px;
    font-size: .86rem;
  }
  .c-home2Hero__lede{
    position: static;
    margin: 0;
    opacity: .88;
    text-align: center;
    justify-self: center;
    align-self: center;
  }
  .c-home2Hero__ledeValue{
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    -webkit-text-stroke-width: 1.2px;
  }
  .c-home2Hero__ledeLabel{
    font-size: .62rem;
    margin-top: -2px;
  }
  .c-home2Hero__year{
    position: static;
    margin: 0;
    opacity: .86;
    text-align: center;
    justify-self: center;
    align-self: center;
    padding: 0;
  }
  .c-home2Hero__yearLabel{
    margin-bottom: -3px;
    font-size: .62rem;
  }
  .c-home2Hero__yearValue{
    font-size: clamp(2.5rem, 11.5vw, 3.5rem);
    -webkit-text-stroke-width: 1.2px;
  }
  .c-home2Stat{
    border-radius: var(--radius);
  }
  .c-doraFloatBadge{
    right: 10px;
    left: 10px;
    bottom: 74px;
    max-width: none;
    grid-template-columns: 68px 1fr;
  }
  .c-fbFloat{
    width: calc(100vw - 16px);
    max-width: none;
    right: 8px;
    bottom: 72px;
    border-radius: 12px;
  }
  .c-fbFloat__frame{
    height: 300px;
  }
  .c-fbFloatTab{
    top: auto;
    bottom: 220px;
    right: 0;
  }
}

/* Kontak: lid CTA, bank card, kontakvorm */
.c-kontakExtras{
  padding: 8px 18px 18px 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.c-kontakExtras__inner{
  width: 100%;
}
.c-kontakExtras__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.c-kontakMember{
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 22px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.c-kontakMember::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}
[data-theme="dark"] .c-kontakMember{
  background: rgba(11,18,32,.86);
}
.c-kontakMember__eyebrow{
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
}
.c-kontakMember__title{
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 1000;
  line-height: 1.15;
}
.c-kontakMember__lead{
  margin: 0 0 4px 0;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 42ch;
}
.c-kontakMember__price{
  margin: 8px 0 14px 0;
  font-size: 1rem;
  color: var(--text);
}
.c-kontakMember__priceAmt{
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 1000;
  color: var(--brand);
  letter-spacing: .02em;
}
.c-kontakMember__priceUnit{
  font-weight: 600;
  color: var(--muted);
  font-size: .88rem;
}
.c-kontakMember__btn{
  width: 100%;
  max-width: 100%;
  padding: 14px 20px;
  font-size: 1.02rem;
  font-weight: 750;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
}
.c-kontakMember__ledeLink{
  margin-top: 10px;
  font-size: .92rem;
  font-weight: 750;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-kontakMember__ledeLink:hover{
  color: var(--brand2);
}

.c-bankCard{
  position: relative;
  border-radius: 20px;
  padding: 22px 20px 24px 20px;
  color: #f4f7ff;
  background:
    radial-gradient(120% 80% at 90% 10%, rgba(255,255,255,.14), transparent 52%),
    linear-gradient(145deg, #1a2744 0%, #0d1528 48%, #121a2e 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 18px 40px rgba(16,24,40,.22),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}
[data-theme="dark"] .c-bankCard{
  background:
    radial-gradient(120% 80% at 90% 10%, rgba(224,97,1,.12), transparent 52%),
    linear-gradient(145deg, #152038 0%, #0a101f 52%, #0d1426 100%);
  border-color: rgba(255,255,255,.1);
}
.c-bankCard__shine{
  position: absolute;
  inset: -40% -20% auto auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), transparent 55%);
  pointer-events: none;
}
.c-bankCard__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.c-bankCard__chip{
  width: 42px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(145deg, #e8c066, #b8860b 55%, #8a6408);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.c-bankCard__org{
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.c-bankCard__title{
  margin: 0 0 14px 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.c-bankCard__dl{
  margin: 0;
}
.c-bankCard__row{
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
  line-height: 1.45;
}
.c-bankCard__row:first-of-type{
  border-top: none;
  padding-top: 0;
}
.c-bankCard__row dt{
  margin: 0;
  color: rgba(244,247,255,.65);
  font-weight: 650;
}
.c-bankCard__row dd{
  margin: 0;
  font-weight: 650;
}
.c-bankCard__mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .04em;
}

.c-contactFormShell{
  padding: 10px 18px 40px 18px;
  max-width: 720px;
  margin: 0 auto;
  scroll-margin-top: 88px;
}
.c-contactFormShell__inner{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  box-shadow: var(--shadow);
  padding: 22px 20px 24px 20px;
}
[data-theme="dark"] .c-contactFormShell__inner{
  background: rgba(11,18,32,.86);
}
.c-contactFormShell__title{
  margin: 0 0 8px 0;
  font-size: 1.35rem;
  font-weight: 1000;
}
.c-contactFormShell__intro{
  margin: 0 0 18px 0;
  font-size: .9rem;
  line-height: 1.5;
}
.c-contactForm__textarea{
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}
.c-contactForm__hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.c-contactForm{
  position: relative;
}
.c-contactForm__actions{
  margin-top: 4px;
}
.c-contactForm__status{
  margin: 12px 0 0 0;
  min-height: 1.25em;
  font-size: .9rem;
  font-weight: 650;
}
.c-contactForm__status--ok{
  color: #15803d;
}
[data-theme="dark"] .c-contactForm__status--ok{
  color: #4ade80;
}
.c-contactForm__status--err{
  color: #b91c1c;
}
[data-theme="dark"] .c-contactForm__status--err{
  color: #fca5a5;
}

@media (max-width: 960px){
  .c-kontakExtras__grid{
    grid-template-columns: 1fr;
  }
}