@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --color-earth: oklch(42% 0.06 60);
  --color-sage: oklch(52% 0.07 150);
  --color-warm: oklch(96% 0.02 80);

  --primary: var(--color-earth);
  --primary-light: color-mix(in oklch, var(--color-earth), white 40%);
  --primary-lighter: color-mix(in oklch, var(--color-earth), white 70%);
  --primary-dark: color-mix(in oklch, var(--color-earth), black 20%);

  --secondary: var(--color-sage);
  --secondary-light: color-mix(in oklch, var(--color-sage), white 50%);
  --secondary-dark: color-mix(in oklch, var(--color-sage), black 15%);

  --accent: oklch(55% 0.12 38);
  --accent-light: color-mix(in oklch, oklch(55% 0.12 38), white 40%);
  --accent-dark: color-mix(in oklch, oklch(55% 0.12 38), black 15%);

  --bg: oklch(97% 0.012 75);
  --bg-tinted: color-mix(in oklch, var(--color-warm), var(--primary-lighter) 15%);
  --bg-dark: oklch(22% 0.04 60);

  --text-primary: oklch(20% 0.04 60);
  --text-secondary: oklch(42% 0.04 60);
  --text-muted: oklch(60% 0.03 60);
  --text-on-dark: oklch(96% 0.01 80);

  --border: color-mix(in oklch, var(--color-earth), white 75%);
  --border-light: color-mix(in oklch, var(--color-earth), white 88%);

  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--color-earth), transparent 88%),
               0 1px 3px color-mix(in oklch, var(--color-earth), transparent 92%);
  --shadow-md: 0 6px 20px color-mix(in oklch, var(--color-earth), transparent 82%),
               0 2px 8px color-mix(in oklch, var(--color-earth), transparent 90%);
  --shadow-lg: 0 16px 48px color-mix(in oklch, var(--color-earth), transparent 78%),
               0 4px 16px color-mix(in oklch, var(--color-earth), transparent 88%);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--text-primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }
.section--tinted { background-color: var(--bg-tinted); }

.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  min-height: 48px;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--light {
  background-color: #fff;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  background-color: var(--bg);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}

.highlight-box {
  background: var(--bg-tinted);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md);
  margin: var(--space-md) 0;
}
.highlight-box__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.75;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: color-mix(in oklch, var(--bg), transparent 12%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

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

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.header__hamburger:hover { background: var(--border-light); }

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.drawer[aria-hidden="false"] { pointer-events: all; }

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}
.drawer[aria-hidden="false"] .drawer__overlay { background: rgba(0,0,0,0.45); }

.drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--bg);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer[aria-hidden="false"] .drawer__panel { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all var(--transition);
}
.drawer__close:hover { background: var(--bg-tinted); color: var(--text-primary); }

.drawer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  display: block;
}

.drawer__nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

.drawer__item { }

.drawer__link {
  display: block;
  padding: 0.75rem var(--space-sm);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}
.drawer__link:hover { color: var(--text-primary); background: var(--bg-tinted); }
.drawer__link--active {
  color: var(--accent);
  background: color-mix(in oklch, var(--accent), white 88%);
}

.drawer__footer {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.drawer__contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer__contact i { color: var(--accent); width: 16px; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in oklch, var(--bg-dark), transparent 5%) 0%,
    color-mix(in oklch, var(--primary-dark), transparent 35%) 60%,
    color-mix(in oklch, var(--bg-dark), transparent 25%) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: calc(var(--header-h) + 2rem) var(--space-md) var(--space-md);
  margin-left: max(var(--space-md), calc((100vw - 1200px) / 2 + var(--space-md)));
}

.hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: color-mix(in oklch, white, transparent 20%);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

.intro { }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.intro__text-col { }
.intro__lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
  font-weight: 500;
}
.intro__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}
.intro__image-col { position: relative; }
.intro__image-wrap { position: relative; }
.intro__image {
  width: 100%;
  border-radius: var(--radius-xl) var(--radius-lg) var(--radius-xl) var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent-light);
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-xl) var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.pillars__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.pillar__card {
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-lg) var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}
.pillar__card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.pillar__card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.pillar__card--accent .pillar__card-number,
.pillar__card--accent .pillar__card-icon,
.pillar__card--accent .pillar__card-title,
.pillar__card--accent .pillar__card-body { color: #fff; }

.pillar__card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.pillar__card--accent .pillar__card-number { color: rgba(255,255,255,0.3); }

.pillar__card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.pillar__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.pillar__card-body {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
.pillar__card--accent .pillar__card-body { color: rgba(255,255,255,0.85); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split__left { position: relative; overflow: hidden; }
.split__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split__right {
  background: var(--bg-tinted);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.split__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: var(--space-md);
}
.split__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.split__list-item i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.process__header { text-align: center; margin-bottom: var(--space-lg); }
.process__intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}
.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-light), var(--border-light));
}
.process__step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  align-items: start;
}
.process__step-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: var(--space-md);
  position: relative;
}
.process__step-marker::after {
  content: '';
  position: absolute;
  right: calc(var(--space-md) - 5px);
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-tinted);
}
.process__step-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.process__step-content { padding-bottom: var(--space-md); }
.process__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.process__step-body { color: var(--text-secondary); line-height: 1.75; }

.about-image__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-image__img {
  width: 100%;
  border-radius: var(--radius-md) var(--radius-xl) var(--radius-md) var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-image__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.about-image__col--text { display: flex; flex-direction: column; gap: var(--space-xs); }
.about-image__col--text .btn { align-self: flex-start; margin-top: var(--space-sm); }

.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--accent-dark) 50%,
    color-mix(in oklch, var(--accent), var(--secondary-dark) 40%) 100%
  );
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.cta-banner__inner { max-width: 680px; margin: 0 auto; }
.cta-banner__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-xs);
}
.cta-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: var(--space-sm);
}
.cta-banner__body {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-cards { }
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.contact-card {
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card__icon {
  width: 56px;
  height: 56px;
  background: color-mix(in oklch, var(--accent), white 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.3rem;
  color: var(--accent);
}
.contact-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-card__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.contact-card__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}
.contact-card__link:hover { color: var(--accent-dark); }

.page-hero {
  padding: calc(var(--header-h) + 4rem) var(--space-md) var(--space-xl);
  background: var(--bg-tinted);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, color-mix(in oklch, var(--accent), white 90%), transparent);
  pointer-events: none;
}
.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  max-width: 700px;
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
}
.page-hero--imprenditori .page-hero__title { max-width: 800px; }

.page-with-sidebar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.toc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  height: fit-content;
  padding: var(--space-md);
  align-self: start;
}
.toc-sidebar__inner {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.toc-sidebar__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.toc-sidebar__list { display: flex; flex-direction: column; gap: 0.25rem; }
.toc-sidebar__link {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.toc-sidebar__link:hover { color: var(--text-primary); background: var(--bg-tinted); }
.toc-sidebar__link--active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: color-mix(in oklch, var(--accent), white 92%);
  font-weight: 600;
}

.page-content { min-width: 0; }

.content-section { padding: var(--space-xl) var(--space-lg); }
.content-section--tinted { background: var(--bg-tinted); }
.content-section__inner { max-width: 800px; }
.content-section__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  font-size: 0.97rem;
}
.content-section__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-md) 0;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.content-section__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.content-section__col-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.content-section__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.content-section__list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}
.content-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.content-section__list--muted li::before { background: var(--text-muted); }
.content-section__list--muted li { color: var(--text-muted); }

.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--border-light);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: var(--space-sm);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--accent); }
.faq__icon { transition: transform var(--transition); flex-shrink: 0; }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq__answer.faq__answer--open {
  max-height: 300px;
  padding-bottom: var(--space-sm);
}
.faq__answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

.cal-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.cal-intro__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.cal-intro__img {
  width: 100%;
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-xl) var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.cal-windows__intro {
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}
.cal-windows__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.cal-window__card {
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cal-window__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cal-window__card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-light), var(--shadow-md);
}
.cal-window__card-header { margin-bottom: var(--space-sm); }
.cal-window__card-season {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.cal-window__card-period {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.cal-window__card-body {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.cal-window__card-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cal-events__intro {
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}
.cal-events__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.cal-event__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-md);
  align-items: start;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cal-event__item:hover { box-shadow: var(--shadow-md); }
.cal-event__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  text-align: center;
}
.cal-event__day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.cal-event__month {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cal-event__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cal-event__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cal-event__body { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.cal-event__cta { align-self: center; white-space: nowrap; }

.cal-schedule__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
  margin: var(--space-md) auto 0;
}
.cal-schedule__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-md);
  align-items: start;
}
.cal-schedule__step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cal-schedule__step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.cal-schedule__step-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

.imp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.imp-intro__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.imp-intro__img {
  width: 100%;
  border-radius: var(--radius-md) var(--radius-xl) var(--radius-md) var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.imp-situations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.imp-situation__card {
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.imp-situation__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.imp-situation__card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.imp-situation__card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.imp-situation__card-body { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

.imp-diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.imp-diff__img {
  width: 100%;
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-xl) var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.imp-diff__body {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.imp-diff__text .btn { margin-top: var(--space-sm); }

.imp-not__intro {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}
.imp-not__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.imp-not__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.imp-not__icon {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.imp-not__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.imp-not__item p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form-wrap__desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.contact-form__steps { }
.contact-form__step { }
.contact-form__step--hidden { display: none; }

.contact-form__progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.contact-form__progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--border-light);
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
}
.contact-form__progress-step--active {
  background: var(--accent);
  color: #fff;
}
.contact-form__progress-step--done {
  background: var(--secondary);
  color: #fff;
}
.contact-form__progress-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  border-radius: 2px;
  transition: background var(--transition);
}
.contact-form__progress-line--done { background: var(--secondary); }

.contact-form__field { margin-bottom: var(--space-sm); }
.contact-form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem var(--space-sm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent), white 85%);
}
.contact-form__textarea { resize: vertical; min-height: 120px; }

.contact-form__field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-form__checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--accent);
  cursor: pointer;
}
.contact-form__label--checkbox {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}
.contact-form__label--checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form__actions {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-sm);
}

.contact-info { margin-bottom: var(--space-lg); }
.contact-info__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: color-mix(in oklch, var(--accent), white 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info__detail { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-info__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-info__value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}
a.contact-info__value:hover { color: var(--accent); }
.contact-info__note { font-size: 0.82rem; color: var(--text-muted); }

.contact-workspace__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.contact-workspace__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: var(--space-sm);
}
.contact-workspace__body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-map { margin-top: var(--space-lg); }
.contact-map__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.contact-map__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.thanks-hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--accent-dark) 50%,
    color-mix(in oklch, var(--accent), var(--secondary-dark) 40%) 100%
  );
  padding: calc(var(--header-h) + 5rem) var(--space-md) var(--space-xl);
  text-align: center;
}
.thanks-hero__inner { max-width: 600px; margin: 0 auto; }
.thanks-hero__icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}
.thanks-hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: var(--space-sm);
}
.thanks-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.thanks-next { }
.thanks-next__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.thanks-next__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.thanks-next__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.thanks-next__step {
  background: var(--bg-tinted);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
}
.thanks-next__step-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.thanks-next__step-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.thanks-next__step-body { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }
.thanks-next__actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

.legal-hero {
  padding: calc(var(--header-h) + 3rem) var(--space-md) var(--space-lg);
  background: var(--bg-dark);
  text-align: center;
}
.legal-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-on-dark);
  margin-bottom: var(--space-xs);
}
.legal-hero__meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
}
.legal-hero__ref {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.legal-body { }
.legal-timeline {
  position: relative;
  padding-left: 120px;
}
.legal-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent);
}

.legal-timeline__item {
  position: relative;
  margin-bottom: var(--space-xl);
}
.legal-timeline__marker {
  position: absolute;
  left: -120px;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  width: 100px;
}
.legal-timeline__dot {
  position: absolute;
  right: -10px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg);
}
.legal-timeline__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-timeline__heading {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.legal-timeline__content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-timeline__content p:last-child { margin-bottom: 0; }

.legal-box {
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-sm) 0;
  border: 1px solid var(--border-light);
}
.legal-box p {
  font-size: 0.88rem !important;
  line-height: 1.7 !important;
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cookie-table th {
  background: var(--bg-tinted);
  padding: 0.6rem var(--space-sm);
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border);
}
.cookie-table td {
  padding: 0.6rem var(--space-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.cookie-table code {
  font-family: monospace;
  font-size: 0.82rem;
  background: var(--bg-tinted);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--accent);
}
.legal-browser-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: var(--space-xs) 0 var(--space-sm);
}
.legal-browser-list li {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-xl) var(--space-md) var(--space-md);
  margin-top: auto;
}
.footer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.footer__logo-img { height: 32px; filter: brightness(0) invert(1) opacity(0.85); }
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 400px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem var(--space-sm);
}
.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  padding: 0.25rem 0;
}
.footer__link:hover { color: #fff; }
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem var(--space-md);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__contact a:hover { color: #fff; }
.footer__legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  text-align: center;
}
.footer__legal p { margin-bottom: 0.2rem; }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-sm);
  width: 100%;
  text-align: center;
}

.cookie-trigger {
  position: fixed;
  bottom: var(--space-sm);
  left: var(--space-sm);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cookie-trigger:hover {
  color: var(--accent);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
}
.cookie-trigger i { font-size: 0.9rem; }
.cookie-trigger--pulse { animation: cookiePulse 2s ease-in-out 3; }
@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent), white 80%), var(--shadow-md); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cookie-modal-overlay--open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.cookie-modal-overlay--open .cookie-modal { transform: translateY(0); }
.cookie-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cookie-modal__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}
.cookie-modal__categories { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-md); }
.cookie-modal__category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.cookie-modal__category-info { flex: 1; }
.cookie-modal__category-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.cookie-modal__category-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.cookie-modal__toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-modal__toggle input { opacity: 0; width: 0; height: 0; }
.cookie-modal__toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal__toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-modal__toggle input:checked + .cookie-modal__toggle-slider { background: var(--accent); }
.cookie-modal__toggle input:checked + .cookie-modal__toggle-slider::before { transform: translateX(20px); }
.cookie-modal__toggle input:disabled + .cookie-modal__toggle-slider { background: var(--secondary-light); cursor: not-allowed; }
.cookie-modal__actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.cookie-modal__actions .btn { flex: 1; justify-content: center; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .page-with-sidebar {
    grid-template-columns: 1fr;
  }
  .toc-sidebar {
    display: none;
  }
  .intro__grid,
  .about-image__grid,
  .cal-intro__grid,
  .imp-intro__grid,
  .imp-diff__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .intro__image-col { order: -1; }
  .imp-diff__image { order: -1; }
  .split {
    grid-template-columns: 1fr;
  }
  .split__left { min-height: 300px; }
  .split__right { padding: var(--space-lg) var(--space-md); }
  .pillars__grid { grid-template-columns: 1fr; }
  .cal-windows__grid { grid-template-columns: 1fr; }
  .imp-situations__grid { grid-template-columns: 1fr; }
  .imp-not__grid { grid-template-columns: 1fr; }
  .contact-main__grid { grid-template-columns: 1fr; }
  .thanks-next__steps { grid-template-columns: 1fr; }
  .contact-cards__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }
  .section { padding: var(--space-lg) 0; }
  .pillars__grid { grid-template-columns: 1fr; }
  .content-section__two-col { grid-template-columns: 1fr; }
  .cal-event__item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .cal-event__cta { grid-column: 1 / -1; }
  .process__timeline::before { left: 60px; }
  .process__step { grid-template-columns: 80px 1fr; }
  .legal-timeline { padding-left: 80px; }
  .legal-timeline::before { left: 50px; }
  .legal-timeline__marker { left: -80px; width: 60px; }
  .contact-form__actions { flex-direction: column; }
  .contact-form__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 3rem;
    --space-lg: 2rem;
    --space-md: 1.25rem;
  }
  .hero__content {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__nav { gap: 0.5rem; }
  .legal-timeline { padding-left: 0; }
  .legal-timeline::before { display: none; }
  .legal-timeline__marker { position: static; flex-direction: row; align-items: center; margin-bottom: 0.5rem; width: auto; }
  .legal-timeline__dot { position: static; }
  .cal-event__item { grid-template-columns: 1fr; }
  .cal-event__date { flex-direction: row; align-items: center; gap: 0.5rem; width: fit-content; }
  .process__step { grid-template-columns: 1fr; }
  .process__step-marker { flex-direction: row; align-items: center; }
  .process__step-marker::after { position: static; }
  .process__timeline::before { display: none; }
}