/* ================================================================
   DRESS FOR SUCCESS MARIBOR — v3 (DFS 2026 Brand Toolkit)
   Palette: Tan #F7EAE1 | Red #EE1000 | Black #111111 (footer/contact only)
   Type: Barlow Condensed (display) + Barlow (body) + Barlow Semi Condensed (quotes)
   ================================================================ */

:root {
  /* Brand palette */
  --tan:       #F7EAE1;
  --tan-2:     #EFE0D5;
  --red:       #EE1000;
  --red-lt:    #FF3319;
  --black:     #111111;
  --white:     #FFFFFF;

  /* Text */
  --text:      #1A1A1A;
  --text-mid:  #4A4A4A;
  --text-lt:   #7A7A7A;

  /* Typography */
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-sans:    'Barlow', sans-serif;
  --ff-semi:    'Barlow Semi Condensed', sans-serif;

  /* Spacing */
  --section:   clamp(90px, 12vw, 160px);
  --container: 1280px;
  --gap:       clamp(20px, 5vw, 72px);

  /* Easing */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--ff-sans); background: var(--tan); color: var(--text); overflow-x: hidden; }
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }
button, select, input, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ================================================================
   GRAIN OVERLAY
   ================================================================ */
.grain {
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none; opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}
.cursor {
  display: none;
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
}
@media (pointer: fine) {
  .cursor { display: block; }
}
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(238,16,0,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}

/* ================================================================
   TYPOGRAPHY UTILITIES
   ================================================================ */
.section-label {
  font-family: var(--ff-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red);
  display: inline-block; margin-bottom: 16px;
}
.section-label--light { color: var(--red-lt); }

/* Split text — chars wrapped in spans by JS */
.split-text .char {
  display: inline-block;
  overflow: hidden;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: currentColor; opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 0.08; }
.btn__arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: #cc0e00; }

/* Keep --rose alias for any legacy references */
.btn--rose { background: var(--red); color: var(--white); }
.btn--rose:hover { background: #cc0e00; }

.btn--outline-light {
  background: transparent; color: var(--text);
  border: 1px solid rgba(0,0,0,0.25);
}
.btn--outline-light:hover { border-color: var(--black); background: var(--black); color: var(--tan); }

.btn--ghost-dark {
  background: transparent; color: var(--text);
  border: 1px solid rgba(0,0,0,0.25); font-size: 12px;
}
.btn--ghost-dark:hover { border-color: var(--black); background: var(--black); color: var(--tan); }

/* Legacy alias */
.btn--ghost-green {
  background: transparent; color: var(--text);
  border: 1px solid rgba(0,0,0,0.25); font-size: 12px;
}
.btn--ghost-green:hover { border-color: var(--black); background: var(--black); color: var(--tan); }

.btn--full { width: 100%; justify-content: center; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px var(--gap);
  background: rgba(247,234,225,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: background 0.5s ease, padding 0.3s ease, box-shadow 0.3s ease;
  transform-origin: top;
}
.nav.is-scrolled {
  background: rgba(247,234,225,0.97);
  padding: 14px var(--gap);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center;
  padding: 4px 8px 4px 0;
}
.nav__logo-img {
  height: 52px; width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.nav__list {
  display: flex; align-items: center; gap: 32px;
}
.nav__list a {
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
}
.nav__list a::after {
  content: ''; position: absolute; bottom: -4px;
  left: 0; right: 100%; height: 1px;
  background: var(--red);
  transition: right 0.4s var(--ease-out);
}
.nav__list a:hover::after, .nav__list a:focus-visible::after { right: 0; }
.nav__list a:hover { color: var(--red); }
.nav__cta {
  padding: 9px 18px;
  border: 1px solid var(--red) !important;
  border-radius: 2px;
  color: var(--red) !important;
  letter-spacing: 0.08em !important;
  font-size: 11px !important;
  white-space: nowrap;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--red) !important; color: var(--white) !important; }

/* Language switcher */
.nav__lang {
  display: flex; align-items: center; gap: 2px;
  margin-right: 20px;
}
.nav__lang-btn {
  font-family: var(--ff-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: none; border: none;
  padding: 4px 6px;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.nav__lang-btn:hover { color: var(--red); }
.nav__lang-btn--active {
  color: var(--red);
  background: rgba(238,16,0,0.07);
}
.nav__lang-sep {
  font-size: 10px; color: var(--text-lt); user-select: none; pointer-events: none;
}
.nav__ww {
  font-family: var(--ff-sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__ww:hover { color: var(--red); }
.nav__ww-arrow { font-size: 12px; line-height: 1; }
.nav__lang-sep--ww { margin: 0 4px; }
@media (max-width: 720px) {
  .nav__ww { font-size: 10px; padding: 4px 4px; letter-spacing: 0.05em; }
  .nav__ww-arrow { display: none; }
}

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; z-index: 1001;
}
.nav__burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--text); border-radius: 1px;
  transition: all 0.35s var(--ease-out);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================================
   HERO — split layout: tan left / portrait right
   ================================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: var(--tan);
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__photo {
  position: absolute; inset: 0;
  background-image: url('images/hero-portrait.jpg');
  background-size: 78%;
  background-position: right 2% center;
  background-repeat: no-repeat;
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  /* Gradient fades left ~40% into tan, leftmost woman safely on the right */
  background: linear-gradient(90deg,
    var(--tan) 0%,
    var(--tan) 18%,
    rgba(247,234,225,0.9) 28%,
    rgba(247,234,225,0.35) 37%,
    transparent 46%
  );
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,234,225,0.08) 0%, rgba(247,234,225,0.0) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 10;
  padding: 160px var(--gap) 120px;
  max-width: calc(var(--container) + var(--gap) * 2);
  margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero__text-col { grid-column: 1; }
.hero__kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  opacity: 0;
}
.hero__kicker-line {
  display: block; width: 44px; height: 1px;
  background: var(--red); flex-shrink: 0;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 500; line-height: 0.9;
  color: var(--text);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 860px;
  opacity: 0;
}
.hero__title-prefix { display: block; }
.hero__morph {
  display: inline-block;
  position: relative;
  color: var(--red);
  /* Reserve space for the longest word so layout never shifts */
  min-width: 6ch;
}
.hero__morph-word {
  display: inline-block;
  opacity: 0;
  position: absolute; left: 0; top: 0;
  transition: opacity 0.6s ease;
  white-space: nowrap;
  /* Prevent invisible words from being clickable/interfering */
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}
.hero__morph-word[data-active] {
  opacity: 1;
  position: relative;
  visibility: visible;
  pointer-events: auto;
  user-select: auto;
}
.hero__sub {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7;
  color: var(--text-mid); font-weight: 400;
  max-width: 480px; margin-bottom: 44px;
  opacity: 0;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
}
.hero__scroll {
  position: absolute; bottom: 48px; right: var(--gap);
  width: 1px; height: 80px;
  background: rgba(0,0,0,0.12);
  z-index: 10;
}
.hero__scroll-thumb {
  width: 100%; height: 40%;
  background: var(--red);
  animation: scrollThumb 2.4s ease infinite;
}
@keyframes scrollThumb {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(150%); opacity: 0; }
  81% { transform: translateY(-20%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Hero counter bar */
.hero__counter {
  position: relative; z-index: 10;
  display: flex; align-items: center;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 32px var(--gap);
  max-width: calc(var(--container) + var(--gap) * 2);
  margin: 0 auto; width: 50%;
  gap: 0;
}
.hc-item { flex: 1; text-align: center; }
.hc-num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600; color: var(--text);
  line-height: 1; text-transform: uppercase;
}
.hc-suffix { font-family: var(--ff-display); font-size: 0.7em; color: var(--red); }
.hc-label {
  display: block; font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-lt);
  margin-top: 6px; font-weight: 500;
}
.hc-divider {
  width: 1px; height: 40px;
  background: rgba(0,0,0,0.10);
  flex-shrink: 0;
}

/* ================================================================
   IMPACT
   ================================================================ */
.impact {
  padding: var(--section) var(--gap);
  background: var(--tan);
}
.impact__inner { max-width: var(--container); margin: 0 auto; }
.impact__label { margin-bottom: 48px; }
.impact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; align-items: start;
}
.impact__item { position: relative; padding: 40px 0; }
.impact__bg-num {
  position: absolute; top: -20px; left: -10px;
  font-family: var(--ff-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700; line-height: 1;
  color: rgba(200,180,170,0.35); z-index: 0;
  pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.impact__body { position: relative; z-index: 1; }
.impact__num {
  font-family: var(--ff-display);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 600; line-height: 1;
  color: var(--text); letter-spacing: -0.02em;
  display: inline-block; text-transform: uppercase;
}
.impact__unit {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 60px);
  color: var(--red); display: inline;
}
.impact__desc_OLD {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.7;
  color: var(--text-mid); max-width: 380px;
  margin-top: 12px; font-weight: 400;
}
.impact__right {
  display: contents; /* let children sit directly in the 3-col grid */
}

/* ================================================================
   SHOWROOM
   ================================================================ */
.showroom {
  padding: var(--section) var(--gap);
  background: var(--white);
}
.showroom__inner {
  max-width: var(--container); margin: 0 auto;
}
.showroom__header {
  max-width: 680px;
  margin-bottom: 56px;
}
.showroom__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 500; line-height: 0.9;
  color: var(--text); text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.showroom__desc {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.7;
  color: var(--text-mid); font-weight: 400;
  max-width: 560px;
}
.showroom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.showroom__img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--tan-2);
  transition: transform 0.5s var(--ease-out);
}
.showroom__img:hover { transform: scale(1.02); }
.showroom__img--1 { background-image: url('images/program-boutique.jpg'); }
.showroom__img--2 { background-image: url('images/team-thumbs.jpg'); background-position: center top; }
.showroom__img--3 { background-image: url('images/hero.jpg'); }

/* ================================================================
   ABOUT — new layout: full-width photo → caption → text + pillars
   ================================================================ */
.about {
  padding: var(--section) var(--gap);
  background: var(--tan-2);
}
.about__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
}
/* Full-width photo block */
.about__photo-wrap {
  width: 100%;
}
.about__photo {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--tan);
  background-size: cover;
  background-position: center center;
  border-radius: 2px;
}
/* Caption below photo */
.about__caption {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--black);
  border-left: 4px solid var(--red);
}
.about__caption-mark {
  font-family: var(--ff-display); font-size: 48px;
  line-height: 0.7; color: var(--red);
  font-weight: 700; flex-shrink: 0; margin-top: 4px;
}
.about__quote {
  font-family: var(--ff-semi);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px); line-height: 1.6;
  color: rgba(247,234,225,0.92);
}
/* Text block */
.about__text {
  max-width: 900px;
}
.about__title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500; line-height: 1.05;
  color: var(--text); margin-bottom: 24px;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.about__desc {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.1vw, 16px); line-height: 1.8;
  color: var(--text-mid); font-weight: 400;
  margin-bottom: 20px;
}
.about__pillars {
  margin-top: 40px; display: flex; flex-direction: column; gap: 24px;
}
.pillar {
  display: flex; gap: 20px;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.09);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) var(--delay, 0s),
              transform 0.6s var(--ease-out) var(--delay, 0s);
}
.pillar.is-visible { opacity: 1; transform: none; }
.pillar__num {
  font-family: var(--ff-display); font-size: 14px;
  color: var(--red); font-weight: 700;
  letter-spacing: 0.08em; flex-shrink: 0; margin-top: 1px;
}
.pillar__body h3 {
  font-family: var(--ff-sans); font-size: 14px;
  font-weight: 700; color: var(--text); margin-bottom: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.pillar__body p {
  font-size: 13px; line-height: 1.7; color: var(--text-lt);
}

/* ================================================================
   STORIES — featured woman story block
   ================================================================ */
.stories {
  padding: var(--section) var(--gap);
  background: var(--tan);
}
.stories__inner { max-width: var(--container); margin: 0 auto; }
.stories__hd { margin-bottom: 56px; }
.stories__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; line-height: 1;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 8px;
}
.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

/* Story card */
.sc {
  background: var(--tan-2);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s),
              transform 0.7s var(--ease-out) var(--delay, 0s);
}
.sc.is-visible { opacity: 1; transform: none; }
.sc:hover .sc__photo { transform: scale(1.03); }
.sc__photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--tan);
  background-size: cover;
  background-position: center top;
  transition: transform 0.7s var(--ease-out);
  overflow: hidden;
}
.sc__body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.sc__meta {
  display: flex; flex-direction: column; gap: 2px;
}
.sc__name {
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text);
}
.sc__loc {
  font-family: var(--ff-sans);
  font-size: 11px; color: var(--text-mid);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.sc__quote {
  font-family: var(--ff-semi);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  color: var(--red);
  padding-left: 16px;
  border-left: 3px solid var(--red);
}
.sc__text {
  font-family: var(--ff-sans);
  font-size: 13px; line-height: 1.75;
  color: var(--text-mid);
}

@media (max-width: 1024px) {
  .stories__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stories__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   MARQUEE — RED background
   ================================================================ */
.marquee-section {
  background: var(--red);
  padding: 48px 0; overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: flex; gap: 40px;
  width: max-content;
}
.marquee-row--fwd .marquee-track { animation: marqFwd 30s linear infinite; }
.marquee-row--rev .marquee-track { animation: marqRev 36s linear infinite; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marqFwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqRev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.marquee-item {
  font-family: var(--ff-semi);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.88); white-space: nowrap;
  letter-spacing: 0.01em;
}
.marquee-sep { color: rgba(255,255,255,0.5); font-size: 10px; align-self: center; }

/* ================================================================
   PROGRAMS (grid)
   ================================================================ */
.programs {
  padding: var(--section) 0;
  background: var(--tan);
}
.programs__header {
  padding: 0 var(--gap);
  max-width: calc(var(--container) + var(--gap) * 2);
  margin: 0 auto 56px;
}
.programs__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500; line-height: 0.95;
  color: var(--text); letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.programs__sub {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.7;
  color: var(--text-lt); max-width: 460px; font-weight: 400;
}
.programs__scroll-wrap {
  overflow: visible;
  padding-bottom: 20px;
}
.programs__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 var(--gap);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .programs__track { grid-template-columns: 1fr; }
}
.prog-card {
  width: 100%; flex-shrink: 0;
  background: var(--tan-2);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(10,18,9,0.10);
}
.prog-card__photo { position: relative; overflow: hidden; }
.prog-card__img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2a2a, #111111);
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.prog-card:hover .prog-card__img { transform: scale(1.04); }
#prog-img-1 { background-image: url('images/program-boutique.jpg'); }
#prog-img-2 { background-image: url('images/program-house.jpg'); }
#prog-img-3 { background-image: url('images/program-language.jpg'); }
.prog-card__num-bg {
  position: absolute; bottom: -24px; right: 16px;
  font-family: var(--ff-display); font-size: 100px;
  font-weight: 700; line-height: 1; color: rgba(247,234,225,0.18);
  pointer-events: none; user-select: none;
}
.prog-card__body { padding: 32px; }
.prog-card__title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2vw, 28px); font-weight: 500;
  color: var(--text); line-height: 1.1;
  margin: 12px 0 14px; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.prog-card__text {
  font-family: var(--ff-sans);
  font-size: 14px; line-height: 1.75; color: var(--text-mid);
  font-weight: 400; margin-bottom: 20px;
}
.prog-card__detail {
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  font-weight: 700;
}

/* ================================================================
   SPONSORS
   ================================================================ */
.sponsors {
  padding: var(--section) var(--gap);
  background: var(--white);
}
.sponsors__inner {
  max-width: var(--container); margin: 0 auto;
  text-align: center;
}
.sponsors__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500; line-height: 0.95;
  color: var(--text); text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.sponsors__sub {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.2vw, 17px); line-height: 1.7;
  color: var(--text-mid); font-weight: 400;
  max-width: 520px; margin: 0 auto 52px;
}
.sponsors__grid {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  margin-bottom: 48px;
}
.sponsor-slot {
  width: 200px; height: 80px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sponsor-slot:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(238,16,0,0.08);
}
.sponsor-slot span {
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-lt);
}

/* ================================================================
   NEWS
   ================================================================ */
.news {
  padding: var(--section) var(--gap);
  background: var(--tan-2);
}
.news__inner { max-width: var(--container); margin: 0 auto; }
.news__hd {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.news__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500; line-height: 1.0;
  color: var(--text); letter-spacing: -0.01em;
  text-transform: uppercase;
}
.news__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px; align-items: start;
}
.nc {
  background: var(--tan); overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s),
              transform 0.7s var(--ease-out) var(--delay, 0s);
}
.nc.is-visible { opacity: 1; transform: none; }
.nc:hover .nc__img { transform: scale(1.03); }
.nc__img-wrap { overflow: hidden; }
.nc__img {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, #2a2a2a, #111111);
  background-size: cover; background-position: center 28%;
  transition: transform 0.7s var(--ease-out);
}
.nc--feat .nc__img { aspect-ratio: 16/9; background-position: center 24%; }
.nc__body { padding: 28px 28px 32px; }
.nc__date {
  font-family: var(--ff-sans);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); font-weight: 700; display: block;
}
.nc__title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500; line-height: 1.2; color: var(--text);
  margin: 10px 0 12px; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.nc--feat .nc__title { font-size: clamp(22px, 2.2vw, 30px); }
.nc__text {
  font-family: var(--ff-sans);
  font-size: 14px; line-height: 1.75; color: var(--text-mid);
  font-weight: 400; margin-bottom: 20px;
}
.nc__link {
  font-family: var(--ff-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  transition: gap 0.2s;
  display: inline-flex; gap: 6px;
}
.nc__link:hover { gap: 10px; }

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}
.news-modal.is-open { display: block; }
.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(3px);
}
.news-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  margin: 16px auto;
  background: var(--tan);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.news-modal__media {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2a2a, #111111);
  background-size: cover;
  background-position: center 24%;
}
.news-modal__content {
  padding: 28px 28px 36px;
}
.news-modal__date {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: block;
}
.news-modal__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  color: var(--text);
  margin: 12px 0 18px;
  text-transform: uppercase;
}
.news-modal__text {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
}
.news-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
body.modal-open {
  overflow: hidden;
}

/* ================================================================
   MISSION STATEMENT — tan background, bold Barlow Condensed
   ================================================================ */
.mission-statement {
  background: var(--tan);
  padding: clamp(80px, 12vw, 160px) var(--gap);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mission-statement__inner {
  max-width: var(--container); margin: 0 auto;
}
.ms__text {
  font-family: var(--ff-display);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 700; line-height: 0.9;
  color: var(--black); letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 20px;
}
.ms__text em { font-style: normal; color: var(--red); }
.ms__body {
  max-width: 920px;
  margin-top: 28px;
  font-family: var(--ff-sans);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.85;
  color: var(--text-mid);
}

/* ================================================================
   HELP
   ================================================================ */
.help {
  padding: var(--section) var(--gap);
  background: var(--tan);
}
.help__inner { max-width: var(--container); margin: 0 auto; }
.help__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500; line-height: 0.95;
  color: var(--text); letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.help__cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(0,0,0,0.07);
}
.help-card {
  background: var(--tan-2); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out) var(--delay, 0s),
              transform 0.6s var(--ease-out) var(--delay, 0s),
              border-color 0.3s, background 0.3s;
}
.help-card.is-visible { opacity: 1; transform: none; }
.help-card:hover { background: var(--tan); border-top-color: var(--red); }
.help-card--featured { background: var(--tan); border-top-color: var(--red) !important; }
.help-card--featured:hover { background: var(--tan-2); border-top-color: var(--red); }
.help-card__num {
  font-family: var(--ff-display); font-size: 48px;
  font-weight: 700; line-height: 1;
  color: rgba(0,0,0,0.08);
}
.help-card__icon { width: 36px; height: 36px; color: var(--red); }
.help-card__icon svg { width: 100%; height: 100%; }
.help-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.8vw, 26px); font-weight: 500;
  color: var(--text); line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.help-card p {
  font-family: var(--ff-sans);
  font-size: 13px; line-height: 1.7; color: var(--text-mid);
  font-weight: 400; flex: 1;
}
.help-card--donation {
  gap: 18px;
}
.donation-block {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}
.donation-block__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.donation-block__btn {
  min-width: 110px;
  justify-content: center;
}
.donation-block__qr-wrap {
  display: flex;
  justify-content: center;
  padding: 14px;
  background: rgba(0,0,0,0.03);
}
.donation-block__qr {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}
.donation-block__details {
  display: grid;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-mid);
}
.donation-block__details strong {
  color: var(--text);
}

/* ================================================================
   CONTACT — dark section
   ================================================================ */
.contact {
  background: var(--black);
  padding: var(--section) var(--gap);
}
.contact__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 100px); align-items: start;
}
.contact__title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 500; line-height: 1.0;
  color: var(--tan); letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact__sub {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.75;
  color: rgba(247,234,225,0.80); font-weight: 400;
  margin-bottom: 48px; max-width: 360px;
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.ci__label {
  font-family: var(--ff-sans);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red-lt); font-weight: 700; display: block; margin-bottom: 5px;
}
.ci__val { font-size: 15px; color: var(--tan); font-weight: 400; display: block; }
a.ci__val:hover { color: var(--red-lt); }
.ci__social { display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.ci__social a {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; color: rgba(247,234,225,0.75);
  padding: 6px 14px; border: 1px solid rgba(247,234,225,0.15);
  transition: all 0.25s;
}
.ci__social a:hover { color: var(--tan); border-color: var(--red); }

/* Form */
.cf { display: flex; flex-direction: column; gap: 22px; }
.cf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf__group { display: flex; flex-direction: column; gap: 8px; }
.cf__group label {
  font-family: var(--ff-sans);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,234,225,0.65); font-weight: 700;
}
.cf__group input, .cf__group select, .cf__group textarea {
  background: rgba(247,234,225,0.07);
  border: 1px solid rgba(247,234,225,0.15);
  border-radius: 2px; padding: 14px 16px;
  color: var(--tan); font-size: 14px; font-weight: 400;
  outline: none; transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none; appearance: none;
}
.cf__group select option { background: #1A1A1A; color: var(--tan); }
.cf__group input::placeholder, .cf__group textarea::placeholder { color: rgba(247,234,225,0.25); }
.cf__group input:focus, .cf__group select:focus, .cf__group textarea:focus {
  border-color: var(--red); background: rgba(247,234,225,0.11);
}
.cf__group textarea { resize: vertical; min-height: 140px; }

/* ================================================================
   FOOTER — dark section
   ================================================================ */
.footer {
  background: #0A0A0A;
  padding: 72px var(--gap) 0;
}
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,234,225,0.06);
}
.footer__logo-img {
  height: 44px; width: auto;
  max-width: 200px;
  object-fit: contain;
}
.footer__city {
  font-family: var(--ff-sans);
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.footer__tagline {
  font-family: var(--ff-sans);
  font-size: 13px; line-height: 1.7;
  color: rgba(247,234,225,0.35); font-weight: 400;
}
.fn-col h4 {
  font-family: var(--ff-sans);
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(247,234,225,0.3); font-weight: 700; margin-bottom: 20px;
}
.fn-col ul { display: flex; flex-direction: column; gap: 10px; }
.fn-col a {
  font-family: var(--ff-sans);
  font-size: 13px; color: rgba(247,234,225,0.5);
  font-weight: 400; transition: color 0.2s;
}
.fn-col a:hover { color: var(--red-lt); }
.footer__bottom {
  max-width: var(--container); margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  font-size: 11px; color: rgba(247,234,225,0.2);
  flex-wrap: wrap;
}
.footer__bottom a { color: inherit; transition: color 0.2s; margin-left: 20px; }
.footer__bottom a:hover { color: var(--red-lt); }

/* ================================================================
   REVEAL ITEMS
   ================================================================ */
.reveal-item {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s),
              transform 0.7s var(--ease-out) var(--delay, 0s);
}
.reveal-item.is-visible { opacity: 1; transform: none; }

/* ================================================================
   PREFERS-REDUCED-MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; }
  .hero__morph-word { transition: none !important; }
  .hero__scroll-thumb { animation: none !important; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .help__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .showroom__grid { gap: 10px; }
  .sponsors__grid { gap: 12px; }
  .sponsor-slot { width: 160px; height: 70px; }
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { max-width: 420px; }
  .news__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .impact__grid { grid-template-columns: 1fr; }
  .cf__row { grid-template-columns: 1fr; }
  .about__quote-card { right: -10px; }
  .showroom__grid { grid-template-columns: 1fr 1fr; }
  .showroom__img--3 { display: none; }
}
@media (max-width: 768px) {
  .nav__list { display: none; }
  .nav__list.is-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; z-index: 999;
    background: var(--black);
    align-items: center; justify-content: center;
    gap: 28px; padding: 40px;
  }
  .nav__list.is-open li a {
    font-size: clamp(24px, 7vw, 40px);
    color: var(--tan) !important;
    font-family: var(--ff-display); letter-spacing: 0.06em;
    font-weight: 500; text-transform: uppercase;
  }
  .nav__burger { display: flex; }
  .nav__lang { margin-right: 12px; }
  .help__cards { grid-template-columns: 1fr; gap: 0; }
  .showroom__grid { grid-template-columns: 1fr; }
  .showroom__img--2, .showroom__img--3 { display: none; }

  /* HERO — mobile: full-bleed image top, content below on tan */
  .hero {
    flex-direction: column;
    min-height: 100svh;
    justify-content: flex-start;
  }
  .hero__photo {
    position: relative;
    width: 100%;
    /* Push image down below fixed nav (100px) so heads aren't hidden */
    margin-top: 100px;
    height: calc(100vw * 2 / 3);
    max-height: 65vh;
    background-size: contain;
    background-position: center top;
    background-color: var(--tan);
    flex-shrink: 0;
  }
  .hero__photo::after {
    /* On mobile: fade bottom into tan, not left */
    background: linear-gradient(180deg,
      transparent 50%,
      rgba(247,234,225,0.7) 80%,
      var(--tan) 100%
    );
  }
  .hero__bg { position: relative; }
  .hero__overlay { display: none; }
  .hero__content {
    position: relative;
    padding: 28px var(--gap) 60px;
    grid-template-columns: 1fr;
    background: var(--tan);
  }
  .hero__text-col { grid-column: 1; }
  .hero__title { font-size: clamp(44px, 12vw, 72px); }
  .hero__sub { font-size: 15px; }
  .hero__counter {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 24px var(--gap);
    background: var(--tan);
  }
  .hero__scroll { display: none; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__counter { flex-direction: column; gap: 24px; }
  .hc-divider { width: 40px; height: 1px; }
  .footer__inner { grid-template-columns: 1fr; }
  .about__quote-card { position: relative; right: auto; bottom: auto; margin-top: 20px; max-width: none; }
  .sponsor-slot { width: 140px; height: 60px; }
  .hero__photo { height: calc(100vw * 2 / 3); margin-top: 100px; }
}

/* impact desc — high contrast fix */
.impact__desc {
  font-family: var(--ff-sans);
  font-size: clamp(11px, 1vw, 13px); line-height: 1.7;
  color: var(--text); max-width: 380px;
  margin-top: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ================================================================
   STORITVE service cards (01/02/03) — number + image + text
   ================================================================ */
.storitve__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 48px 32px 32px;
}
.storitev {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.storitev__num {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}
.storitev__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e0d5cc center/cover no-repeat;
  margin-bottom: 16px;
}
.storitev__body { flex: 1; }
.storitev__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 6px;
  color: var(--black);
}
.storitev__tag {
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 10px;
  line-height: 1.4;
}
.storitev__desc {
  font-size: .9rem;
  line-height: 1.65;
  color: #333;
  margin: 0;
}
@media (max-width: 900px) {
  .storitve__cards { grid-template-columns: 1fr; gap: 40px; padding: 32px 16px; }
  .storitev__img { aspect-ratio: 16/9; }
}

/* Annual reports bar */
.about__reports { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.about__reports-label { width: 100%; font-size: .85rem; color: #555; margin-bottom: 4px; }
.btn--outline {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--black);
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn--outline:hover { background: var(--black); color: var(--tan); }

/* impact items equal height, no override needed */
.impact__item { padding: 32px 0; }

/* ================================================================
   SOCIAL SIDEBAR — floating left (desktop) / inline (mobile)
   ================================================================ */
.social-sidebar {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-sidebar__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 12px rgba(17,17,17,0.15);
}
.social-sidebar__link:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}
.social-sidebar__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .social-sidebar {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 16px 0;
    margin: 0 auto;
    max-width: 280px;
  }
  .social-sidebar__link {
    width: 48px;
    height: 48px;
  }
}
