/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  
  --clr-bg: #0d0f14;
  --clr-bg-2: #12151c;
  --clr-bg-3: #181c26;
  --clr-surface: #1e2330;
  --clr-surface-2: #252c3d;
  --clr-border: rgba(255,255,255,0.08);
  --clr-text: #e8eaf0;
  --clr-text-muted: #8a91a8;
  --clr-text-dim: #5a6178;
  --clr-primary: #e8c547;
  --clr-primary-dark: #c9a82e;
  --clr-primary-glow: rgba(232,197,71,0.18);
  --clr-accent: #4a7cf7;
  --clr-accent-glow: rgba(74,124,247,0.15);
  --clr-white: #f5f6fa;

  
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.5);
  --shadow-primary: 0 8px 32px rgba(232,197,71,0.25), 0 2px 8px rgba(232,197,71,0.15);
  --shadow-accent: 0 8px 32px rgba(74,124,247,0.25), 0 2px 8px rgba(74,124,247,0.1);

  
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--clr-white); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-4);
}

em { font-style: italic; color: var(--clr-primary); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  min-height: 44px;
}

.btn--primary {
  background: var(--clr-primary);
  color: #0d0f14;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  background: #f0d060;
  box-shadow: 0 12px 40px rgba(232,197,71,0.4), 0 4px 12px rgba(232,197,71,0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--clr-white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn--sm { padding: var(--sp-3) var(--sp-5); font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(13,15,20,0.97);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav__link:hover { color: var(--clr-white); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--clr-white); }
.nav__link--active::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  backdrop-filter: blur(4px);
}
.nav__overlay.visible { display: block; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-12);
  padding: calc(80px + var(--sp-16)) var(--sp-6) var(--sp-16);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero__bg-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 22rem);
  color: rgba(232,197,71,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
  user-select: none;
}

.hero__content { position: relative; z-index: 1; }

.hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-6);
  display: block;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
}

.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--clr-primary); }
.hero__title-line--thin {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--clr-text-muted);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--clr-text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-4);
}

.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.hero__img-wrap--main {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(232,197,71,0.08);
}
.hero__img-wrap--secondary {
  grid-column: 1 / 2;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero__img-wrap:hover .hero__img { transform: scale(1.04); }

.hero__badge {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.hero__badge-icon {
  font-size: 2rem;
  color: var(--clr-primary);
}
.hero__badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}


.hero__title [data-splitting] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  animation: charReveal 0.6s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.word { display: inline-block; overflow: hidden; }

@keyframes charReveal {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* ===========================
   STATEMENT
=========================== */
.statement {
  background: var(--clr-bg-2);
  padding: var(--sp-24) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.statement__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.statement__big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--clr-primary);
}

.statement__body {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ===========================
   LEARN
=========================== */
.learn {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
}

.learn__header {
  margin-bottom: var(--sp-12);
}

.learn__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.learn__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-6);
}

.learn__card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-md);
}
.learn__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(232,197,71,0.06);
  border-color: rgba(232,197,71,0.2);
}

.learn__card--featured {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-surface-2) 100%);
}

.learn__card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(232,197,71,0.15);
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.learn__card-title {
  font-size: 1.3rem;
  margin-bottom: var(--sp-3);
  color: var(--clr-white);
}

.learn__card-body {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.learn__card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.learn__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.learn__card-img:hover img { transform: scale(1.05); }

/* ===========================
   WORKFLOW
=========================== */
.workflow {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.workflow__header { margin-bottom: var(--sp-16); }

.workflow__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.workflow__steps {
  max-width: 720px;
}

.workflow__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-6);
  align-items: start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6) var(--sp-8);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.workflow__step:hover {
  border-color: rgba(232,197,71,0.25);
  box-shadow: var(--shadow-md), 0 0 20px rgba(232,197,71,0.05);
}

.workflow__step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-glow);
  border: 1px solid rgba(232,197,71,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.workflow__step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-2);
}

.workflow__step-title {
  font-size: 1.1rem;
  margin-bottom: var(--sp-2);
}

.workflow__step-body {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.workflow__connector {
  text-align: center;
  color: var(--clr-text-dim);
  font-size: 1rem;
  padding: var(--sp-2) 0;
  padding-left: 32px;
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.gallery__header { margin-bottom: var(--sp-12); }

.gallery__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 220px;
  gap: var(--sp-4);
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,15,20,0.4) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery__item:hover::after { opacity: 0; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item--tall { grid-row: 1 / 3; }
.gallery__item--wide { grid-column: 2 / 4; }

/* ===========================
   FORMAT NOTE
=========================== */
.format-note {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.format-note__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.format-note__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--sp-6);
}

.format-note__body {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.format-note__body:last-of-type { margin-bottom: var(--sp-8); }

.format-note__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl), 0 0 50px rgba(74,124,247,0.08);
}
.format-note__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.format-note__visual:hover img { transform: scale(1.04); }

/* ===========================
   CONTACT PREVIEW
=========================== */
.contact-preview {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.contact-preview__header { margin-bottom: var(--sp-10); }

.contact-preview__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.contact-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(232,197,71,0.06);
  border-color: rgba(232,197,71,0.2);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-1);
}

.contact-card__value {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.contact-card__link:hover { color: var(--clr-primary); }

.contact-preview__cta { text-align: center; }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  padding: calc(80px + var(--sp-20)) 0 var(--sp-16);
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(232,197,71,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero--dark {
  background: var(--clr-bg-2);
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  max-width: 700px;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ===========================
   STORY PAGE
=========================== */
.story {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.story__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-6);
}

.story__text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.story__text p:last-child { margin-bottom: 0; }

.story__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   PRINCIPLES
=========================== */
.principles {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.principles__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--sp-12);
}

.principles__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.principles__item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.principles__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.principles__item-icon {
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin-bottom: var(--sp-4);
}

.principles__item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
}

.principles__item p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===========================
   TIMELINE
=========================== */
.timeline {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.timeline__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--sp-12);
}

.timeline__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  position: relative;
}
.timeline__items::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-primary) 0%, transparent 100%);
  opacity: 0.3;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
}
.timeline__item:last-child { border-bottom: none; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-primary);
  box-shadow: 0 0 12px rgba(232,197,71,0.5);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--clr-primary);
  font-weight: 400;
  padding-top: 4px;
  text-align: right;
  padding-right: var(--sp-6);
}

.timeline__content h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
}

.timeline__content p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===========================
   LEVELS PAGE
=========================== */
.levels {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
}

.levels__intro { margin-bottom: var(--sp-12); }

.levels__intro-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-5);
}

.levels__intro-body {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.levels__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.levels__card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.levels__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.levels__card--featured {
  border-color: rgba(232,197,71,0.3);
  box-shadow: var(--shadow-md), 0 0 30px rgba(232,197,71,0.08);
  background: linear-gradient(160deg, var(--clr-surface) 0%, var(--clr-surface-2) 100%);
}

.levels__card-marker {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--sp-5);
}
.levels__card-marker--a { background: rgba(74,124,247,0.15); color: var(--clr-accent); }
.levels__card-marker--b { background: var(--clr-primary-glow); color: var(--clr-primary); }
.levels__card-marker--c { background: rgba(120,80,200,0.15); color: #a07ee8; }

.levels__card-title {
  font-size: 1.15rem;
  margin-bottom: var(--sp-4);
}

.levels__card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.levels__card-fit {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-4);
}
.levels__card-fit i { color: var(--clr-primary); margin-top: 2px; flex-shrink: 0; }

/* ===========================
   PREREQS
=========================== */
.prereqs {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.prereqs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.prereqs__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-6);
}

.prereqs__text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.prereqs__sub {
  font-size: 1.2rem;
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-6);
}

.prereqs__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.prereqs__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}
.prereqs__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-text-dim);
  flex-shrink: 0;
}

.prereqs__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 100px;
}
.prereqs__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   NOT FOR
=========================== */
.not-for {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.not-for__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-5);
}

.not-for__intro {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-10);
  max-width: 560px;
}

.not-for__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.not-for__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  box-shadow: var(--shadow-sm);
}
.not-for__item i { color: #e05c5c; flex-shrink: 0; margin-top: 2px; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.cta-section__inner {
  max-width: 640px;
}

.cta-section__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--sp-5);
}

.cta-section__body {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

/* ===========================
   MANAGER PAGE
=========================== */
.manager-intro {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
}

.manager-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.manager-intro__text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: var(--sp-6);
}

.manager-intro__text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.manager-intro__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.manager-intro__img img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   WHAT CHANGES
=========================== */
.what-changes {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.what-changes__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--sp-12);
}

.what-changes__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.what-changes__item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: var(--sp-4);
  align-items: center;
}

.what-changes__before,
.what-changes__after {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.what-changes__after {
  border-color: rgba(232,197,71,0.2);
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(232,197,71,0.04) 100%);
}

.what-changes__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-2);
}
.what-changes__after .what-changes__label { color: var(--clr-primary); }

.what-changes__before p,
.what-changes__after p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.what-changes__arrow {
  text-align: center;
  color: var(--clr-primary);
  font-size: 1.2rem;
}

/* ===========================
   CASE PREVIEW
=========================== */
.case-preview {
  padding: var(--sp-24) 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.case-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.case-preview__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-6);
}

.case-preview__text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.case-preview__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.case-preview__img img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   FORMAT DETAILS
=========================== */
.format-details {
  padding: var(--sp-24) 0;
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
}

.format-details__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: var(--sp-12);
}

.format-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.format-details__item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.format-details__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.format-details__item > i {
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin-bottom: var(--sp-4);
  display: block;
}

.format-details__item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
}

.format-details__item p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-main {
  padding: var(--sp-16) 0 var(--sp-24);
  background: var(--clr-bg);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-16);
  margin-bottom: var(--sp-16);
  align-items: start;
}

.contact-main__form-title,
.contact-main__info-title {
  font-size: 1.8rem;
  margin-bottom: var(--sp-8);
}

/* ===========================
   FORM
=========================== */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  text-transform: uppercase;
}

.form-input {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
  width: 100%;
}
.form-input::placeholder { color: var(--clr-text-dim); }
.form-input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(232,197,71,0.12);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: var(--sp-3); }

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-checkbox-label input[type="checkbox"] { display: none; }
.form-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-surface);
  transition: all 0.25s ease;
  position: relative;
  margin-top: 1px;
}
.form-checkbox-label input:checked + .form-checkbox-custom {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}
.form-checkbox-label input:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #0d0f14;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-link { color: var(--clr-primary); text-decoration: underline; }

.form-error {
  font-size: 0.85rem;
  color: #e05c5c;
  min-height: 1.2em;
}


.contact-info-list { display: flex; flex-direction: column; gap: var(--sp-6); }

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-1);
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.5;
}
.contact-info-link { transition: color 0.25s ease; }
.contact-info-link:hover { color: var(--clr-primary); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===========================
   THANKS PAGE
=========================== */
.thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--sp-16)) var(--sp-6) var(--sp-16);
}

.thanks-inner {
  text-align: center;
  max-width: 560px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--clr-primary);
  margin-bottom: var(--sp-6);
  filter: drop-shadow(0 0 20px rgba(232,197,71,0.4));
}

.thanks-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-5);
}

.thanks-body {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}
.thanks-body a { color: var(--clr-primary); }

/* ===========================
   LEGAL PAGES
=========================== */
.legal-page {
  padding: calc(80px + var(--sp-16)) 0 var(--sp-24);
}

.legal-page__inner {
  max-width: 760px;
}

.legal-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-3);
}

.legal-page__date {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-12);
  display: block;
}

.legal-page__inner h2 {
  font-size: 1.3rem;
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  color: var(--clr-white);
}

.legal-page__inner h3 {
  font-size: 1.05rem;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  color: var(--clr-white);
}

.legal-page__inner p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}

.legal-page__inner ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.legal-page__inner ul li {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.legal-page__inner a { color: var(--clr-primary); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-16) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--clr-border);
}

.footer__logo { height: 32px; width: auto; margin-bottom: var(--sp-4); }

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  line-height: 1.7;
  max-width: 340px;
}

.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

.footer__nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-4);
}

.footer__nav-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__nav-list a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color 0.25s ease;
}
.footer__nav-list a:hover { color: var(--clr-primary); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) 0;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copy,
.footer__address {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
}

/* ===========================
   FLOAT WIDGET
=========================== */
.float-widget {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-3);
}

.float-widget__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #0d0f14;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.float-widget__toggle:hover {
  background: #f0d060;
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(232,197,71,0.45);
}

.float-widget__icon-close { display: none; }
.float-widget.open .float-widget__icon-open { display: none; }
.float-widget.open .float-widget__icon-close { display: block; }

.float-widget__panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.float-widget.open .float-widget__panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.float-widget__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: var(--sp-3) var(--sp-5);
  font-size: 0.85rem;
  color: var(--clr-text);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
  min-height: 44px;
}
.float-widget__item i { color: var(--clr-primary); }
.float-widget__item:hover {
  background: var(--clr-surface-2);
  border-color: rgba(232,197,71,0.25);
  color: var(--clr-white);
}

/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
  display: none;
}
.cookie-banner.visible { display: block; }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: var(--sp-1);
  color: var(--clr-white);
  font-size: 0.9rem;
}
.cookie-banner__text p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.cookie-modal.visible { display: flex; }

.cookie-modal__inner {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__title {
  font-size: 1.3rem;
  margin-bottom: var(--sp-6);
}

.cookie-modal__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--clr-border);
}
.cookie-modal__item:last-of-type { border-bottom: none; }

.cookie-modal__item-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}
.cookie-modal__item-info p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.cookie-toggle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--clr-primary);
  cursor: pointer;
  margin-top: 2px;
}
.cookie-toggle:disabled { opacity: 0.5; cursor: not-allowed; }

.cookie-modal__actions {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

/* ===========================
   INTERSECTION OBSERVER ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: var(--sp-16);
  }
  .hero__bg-text { display: none; }
  .hero__visual {
    grid-template-columns: 1fr 1fr;
  }
  .statement__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .learn__card--featured { grid-template-columns: 1fr; }
  .format-note__inner { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .prereqs__inner { grid-template-columns: 1fr; }
  .prereqs__visual { position: static; aspect-ratio: 16/9; }
  .manager-intro__grid { grid-template-columns: 1fr; }
  .case-preview__inner { grid-template-columns: 1fr; }
  .contact-main__grid { grid-template-columns: 1fr; }
  .what-changes__item { grid-template-columns: 1fr 36px 1fr; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--clr-bg-2);
    border-left: 1px solid var(--clr-border);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(80px + var(--sp-8)) var(--sp-8) var(--sp-8);
    gap: var(--sp-5);
    z-index: 99;
    transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: var(--shadow-xl);
  }
  .nav__links.open { right: 0; }
  .nav__link { font-size: 1rem; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero__visual { grid-template-columns: 1fr; }
  .hero__img-wrap--main { grid-column: 1; }
  .hero__img-wrap--secondary { grid-column: 1; }
  .hero__badge { grid-column: 1; flex-direction: row; }

  .learn__grid { grid-template-columns: 1fr; }
  .learn__card--featured { grid-column: 1; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: auto; grid-column: 1 / 3; }
  .gallery__item--wide { grid-column: 1 / 3; }

  .contact-preview__cards { grid-template-columns: 1fr; }
  .levels__cards { grid-template-columns: 1fr; }
  .principles__list { grid-template-columns: 1fr; }
  .not-for__grid { grid-template-columns: 1fr; }
  .format-details__grid { grid-template-columns: 1fr; }

  .what-changes__item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .what-changes__arrow { text-align: left; padding-left: var(--sp-4); }

  .footer__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }

  .timeline__item { grid-template-columns: 80px 1fr; }
  .timeline__items::before { left: 48px; }
  .timeline__item::before { left: 44px; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .hero { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
  .hero__badge { flex-direction: column; }
  .cookie-banner__actions { flex-direction: column; width: 100%; }
  .cookie-banner__actions .btn { width: 100%; justify-content: center; }
  .float-widget { bottom: var(--sp-4); right: var(--sp-4); }
}