/* ============================================================
   XYNZOREKXOL — MASTER STYLESHEET
   Warm Palette / Street Photography Documentary
   ============================================================ */


:root {
  --color-bg: #faf7f2;
  --color-bg-alt: #f5efe6;
  --color-bg-dark: #2a1f14;
  --color-bg-card: #fffcf8;
  --color-surface: rgba(255, 252, 248, 0.85);

  --color-primary: #c4622d;
  --color-primary-dark: #a04d22;
  --color-primary-light: #e8845a;
  --color-secondary: #6b4f3a;
  --color-accent: #d4943a;
  --color-accent-muted: #e8c17a;

  --color-text: #2a1f14;
  --color-text-mid: #5a4535;
  --color-text-muted: #8a7060;
  --color-text-light: #faf7f2;

  --color-border: rgba(100, 70, 40, 0.12);
  --color-border-strong: rgba(100, 70, 40, 0.25);

  --shadow-xs: 0 1px 3px rgba(42, 31, 20, 0.06), 0 1px 2px rgba(42, 31, 20, 0.04);
  --shadow-sm: 0 2px 8px rgba(42, 31, 20, 0.08), 0 1px 3px rgba(42, 31, 20, 0.05);
  --shadow-md: 0 4px 16px rgba(42, 31, 20, 0.1), 0 2px 6px rgba(42, 31, 20, 0.06);
  --shadow-lg: 0 8px 32px rgba(42, 31, 20, 0.14), 0 4px 12px rgba(42, 31, 20, 0.08);
  --shadow-xl: 0 16px 48px rgba(42, 31, 20, 0.18), 0 8px 24px rgba(42, 31, 20, 0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --nav-height: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}


.pace .pace-progress { background: var(--color-primary) !important; }
.pace .pace-progress-inner { box-shadow: 0 0 10px var(--color-primary), 0 0 5px var(--color-primary) !important; }
.pace .pace-activity {
  border-top-color: var(--color-primary) !important;
  border-left-color: var(--color-primary) !important;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover { color: var(--color-primary-dark); }

ul { list-style: none; }


h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

.SectionLabel {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(196, 98, 45, 0.1);
  border-radius: var(--radius-pill);
}

.SectionLabel--light {
  color: rgba(250, 247, 242, 0.9);
  background: rgba(250, 247, 242, 0.15);
}

.SectionHeading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 20px;
}

.SectionHeading--light { color: var(--color-text-light); }

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


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

.Container--narrow {
  max-width: 760px;
}

.Container--legal {
  max-width: 860px;
  padding: var(--space-xl) var(--space-md);
}


.Btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
}

.Btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(196, 98, 45, 0.3), 0 1px 3px rgba(196, 98, 45, 0.2);
}

.Btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.4), 0 2px 6px rgba(196, 98, 45, 0.25);
  transform: translateY(-1px);
}

.Btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.Btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.Btn--ghost {
  background: transparent;
  color: rgba(250, 247, 242, 0.85);
  border-color: rgba(250, 247, 242, 0.4);
}

.Btn--ghost:hover {
  background: rgba(250, 247, 242, 0.1);
  color: #fff;
  border-color: rgba(250, 247, 242, 0.7);
}

.Btn--light {
  background: var(--color-bg);
  color: var(--color-primary);
  border-color: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.Btn--light:hover {
  background: #fff;
  color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}


.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.SiteHeader.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.SiteHeader--solid {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
}

.SiteHeader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.SiteHeader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.SiteHeader-logoImg { width: 36px; height: 36px; }

.SiteHeader-logoText {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-light);
  transition: color var(--transition);
  letter-spacing: -0.02em;
}

.SiteHeader.is-scrolled .SiteHeader-logoText,
.SiteHeader--solid .SiteHeader-logoText {
  color: var(--color-text);
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.SiteHeader-navLink {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.85);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.SiteHeader-navLink:hover,
.SiteHeader-navLink.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.SiteHeader.is-scrolled .SiteHeader-navLink,
.SiteHeader--solid .SiteHeader-navLink {
  color: var(--color-text-mid);
}

.SiteHeader.is-scrolled .SiteHeader-navLink:hover,
.SiteHeader.is-scrolled .SiteHeader-navLink.is-active,
.SiteHeader--solid .SiteHeader-navLink:hover,
.SiteHeader--solid .SiteHeader-navLink.is-active {
  color: var(--color-primary);
  background: rgba(196, 98, 45, 0.08);
}

.SiteHeader-navCta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.SiteHeader-navCta:hover {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
}

.SiteHeader.is-scrolled .SiteHeader-navCta,
.SiteHeader--solid .SiteHeader-navCta {
  color: #fff !important;
}

.SiteHeader-scrollBorder {
  height: 1px;
  background: var(--color-border-strong);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.SiteHeader.is-scrolled .SiteHeader-scrollBorder,
.SiteHeader--solid .SiteHeader-scrollBorder {
  transform: scaleX(1);
}

.SiteHeader-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.SiteHeader-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(250, 247, 242, 0.9);
  border-radius: 2px;
  transition: all var(--transition);
}

.SiteHeader.is-scrolled .SiteHeader-hamburger span,
.SiteHeader--solid .SiteHeader-hamburger span {
  background: var(--color-text);
}


.MobileMenu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.MobileMenu.is-open {
  pointer-events: all;
  opacity: 1;
}

.MobileMenu-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 360px;
  background: var(--color-bg-dark);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.MobileMenu.is-open .MobileMenu-panel {
  transform: translateX(0);
}

.MobileMenu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 80%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.MobileMenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.MobileMenu-logoText {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-light);
}

.MobileMenu-close {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.MobileMenu-close:hover { background: rgba(255, 255, 255, 0.1); }

.MobileMenu-link {
  display: block;
  padding: 14px 16px;
  color: rgba(250, 247, 242, 0.8);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-20px);
  min-height: 44px;
}

.MobileMenu.is-open .MobileMenu-link {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease calc(var(--i) * 0.06s + 0.1s);
}

.MobileMenu-link:hover {
  color: #fff;
  background: rgba(196, 98, 45, 0.2);
}


.PageHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.PageHero-imageWrap {
  position: absolute;
  inset: 0;
}

.PageHero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.PageHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 31, 20, 0.75) 0%,
    rgba(42, 31, 20, 0.5) 50%,
    rgba(42, 31, 20, 0.3) 100%
  );
}

.PageHero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.PageHero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.PageHero-shape--circle1 {
  width: 600px;
  height: 600px;
  background: var(--color-accent);
  top: -200px;
  right: -100px;
}

.PageHero-shape--circle2 {
  width: 300px;
  height: 300px;
  background: var(--color-primary-light);
  bottom: 100px;
  left: -80px;
}

.PageHero-shape--rect1 {
  width: 200px;
  height: 200px;
  background: var(--color-accent-muted);
  border-radius: var(--radius-xl);
  top: 30%;
  right: 20%;
  transform: rotate(20deg);
}

.PageHero-shape--rect2 {
  width: 120px;
  height: 120px;
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  bottom: 25%;
  right: 35%;
  transform: rotate(-15deg);
}

.PageHero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: var(--nav-height);
}

.PageHero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(196, 98, 45, 0.3);
  border: 1px solid rgba(196, 98, 45, 0.5);
  border-radius: var(--radius-pill);
  color: var(--color-accent-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.PageHero-heading {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.PageHero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250, 247, 242, 0.8);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.PageHero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.PageHero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 242, 0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.PageHero-scrollLine {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250, 247, 242, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}


.InnerHero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.InnerHero--short { min-height: 320px; }

.InnerHero-bg {
  position: absolute;
  inset: 0;
}

.InnerHero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.InnerHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 31, 20, 0.82) 0%, rgba(42, 31, 20, 0.4) 60%, rgba(42, 31, 20, 0.2) 100%);
}

.InnerHero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 40px);
}

.InnerHero-heading {
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.InnerHero-sub {
  font-size: 17px;
  color: rgba(250, 247, 242, 0.75);
  max-width: 560px;
  line-height: 1.6;
}


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

.IntroSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.IntroSection-text p {
  color: var(--color-text-mid);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}

.IntroSection-text .Btn { margin-top: 8px; }

.IntroSection-imageWrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.IntroSection-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.IntroSection-imageWrap:hover .IntroSection-image {
  transform: scale(1.03);
}

.IntroSection-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}


.FeaturesSection { padding: var(--space-xl) 0; }

.FeaturesSection-bg {
  background: var(--color-bg-alt);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.FeaturesSection-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.FeaturesGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.FeatureItem {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.FeatureItem:nth-child(odd) { border-right: 1px solid var(--color-border); }

.FeatureItem:nth-last-child(-n+2) { border-bottom: none; }

.FeatureItem:hover { background: rgba(196, 98, 45, 0.03); }

.FeatureItem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(196, 98, 45, 0.12), rgba(212, 148, 58, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.FeatureItem:hover .FeatureItem-icon {
  background: linear-gradient(135deg, rgba(196, 98, 45, 0.2), rgba(212, 148, 58, 0.15));
  transform: scale(1.05);
}

.FeatureItem-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.FeatureItem-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}


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

.AboutPreview-inner {
  text-align: center;
}

.AboutPreview-inner .SectionLabel { margin-bottom: 16px; }
.AboutPreview-inner .SectionHeading { margin-bottom: 28px; }

.AboutPreview-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--color-text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.AboutPreview-inner p:not(.AboutPreview-lead) {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}


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

.CoursesSection-header {
  margin-bottom: var(--space-lg);
}

.CoursesGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.CourseCard {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.CourseCard:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}


.CourseCard--animated {
  position: relative;
}

.CourseCard--animated::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--color-primary) 0deg,
    var(--color-accent) 120deg,
    transparent 120deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.CourseCard--animated:hover::before {
  opacity: 1;
  animation: borderDraw 1.5s linear infinite;
}

@keyframes borderDraw {
  0% { background: conic-gradient(from 0deg, transparent 0deg, var(--color-primary) 0deg, var(--color-accent) 90deg, transparent 90deg); }
  25% { background: conic-gradient(from 90deg, transparent 0deg, var(--color-primary) 0deg, var(--color-accent) 90deg, transparent 90deg); }
  50% { background: conic-gradient(from 180deg, transparent 0deg, var(--color-primary) 0deg, var(--color-accent) 90deg, transparent 90deg); }
  75% { background: conic-gradient(from 270deg, transparent 0deg, var(--color-primary) 0deg, var(--color-accent) 90deg, transparent 90deg); }
  100% { background: conic-gradient(from 360deg, transparent 0deg, var(--color-primary) 0deg, var(--color-accent) 90deg, transparent 90deg); }
}

.CourseCard-image {
  overflow: hidden;
  height: 220px;
}

.CourseCard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.CourseCard:hover .CourseCard-image img { transform: scale(1.05); }

.CourseCard-body {
  padding: 28px;
}

.CourseCard-level {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.CourseCard-level--mid { color: var(--color-secondary); }

.CourseCard-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.CourseCard-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.CourseCard-list {
  margin-bottom: 20px;
}

.CourseCard-list li {
  font-size: 13px;
  color: var(--color-text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  padding-left: 16px;
  position: relative;
}

.CourseCard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.CourseCard-list li:last-child { border-bottom: none; }


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

.GalleryPreview-header {
  margin-bottom: var(--space-lg);
}

.GalleryPreview-sub {
  color: var(--color-text-muted);
  max-width: 540px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.65;
}

.GalleryPreview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin-bottom: 40px;
}

.GalleryPreview-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.GalleryPreview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.GalleryPreview-item:hover img { transform: scale(1.05); }

.GalleryPreview-item--tall {
  grid-row: 1 / 3;
}

.GalleryPreview-item--wide {
  grid-column: 2 / 4;
}

.GalleryPreview-cta { text-align: center; }


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

.CalculatorSection-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.CalculatorSection-info p {
  color: var(--color-text-mid);
  margin-top: 16px;
  line-height: 1.7;
}

.Calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.Calculator-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Calculator-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.Calculator-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-mid);
  letter-spacing: 0.02em;
}

.Calculator-select {
  padding: 12px 14px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a7060' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.Calculator-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.12);
}

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

.Calculator-result {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-secondary) 100%);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Calculator-resultInner { text-align: center; }

.Calculator-resultIcon {
  font-size: 36px;
  color: var(--color-accent-muted);
  margin-bottom: 16px;
  display: block;
}

.Calculator-resultTitle {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.Calculator-resultText {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}

.Calculator-resultCta { margin-top: 8px; }


.CtaBanner {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.CtaBanner-bg {
  position: absolute;
  inset: 0;
}

.CtaBanner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.CtaBanner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 31, 20, 0.82) 0%, rgba(107, 79, 58, 0.65) 100%);
}

.CtaBanner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.CtaBanner-heading {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.CtaBanner-sub {
  font-size: 17px;
  color: rgba(250, 247, 242, 0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}


.SiteFooter {
  background: var(--color-bg-dark);
  padding: var(--space-xl) 0 var(--space-md);
}

.SiteFooter-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.SiteFooter-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.SiteFooter-logoImg { width: 36px; height: 36px; }

.SiteFooter-logoText {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-light);
}

.SiteFooter-tagline {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.6;
}

.SiteFooter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.SiteFooter-navLink {
  padding: 6px 12px;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.SiteFooter-navLink:hover {
  color: var(--color-accent-muted);
  background: rgba(255, 255, 255, 0.05);
}

.SiteFooter-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
}

.SiteFooter-contact i {
  color: var(--color-primary);
  margin-right: 6px;
}

.SiteFooter-contact a {
  color: rgba(250, 247, 242, 0.55);
  transition: color var(--transition);
}

.SiteFooter-contact a:hover { color: var(--color-accent-muted); }

.SiteFooter-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  width: 100%;
}

.SiteFooter-legal a {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.35);
  transition: color var(--transition);
}

.SiteFooter-legal a:hover { color: rgba(250, 247, 242, 0.65); }

.SiteFooter-copy {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.25);
}




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

.MissionSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.MissionSection-text p {
  color: var(--color-text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.MissionSection-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ValueCard {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: padding-left var(--transition);
}

.ValueCard:last-child { border-bottom: none; }
.ValueCard:hover { padding-left: 8px; }

.ValueCard-num {
  font-size: 32px;
  font-weight: 700;
  color: rgba(196, 98, 45, 0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.ValueCard-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.ValueCard p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.ApproachSection-full {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ApproachSection-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ApproachSection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42, 31, 20, 0.88) 0%, rgba(42, 31, 20, 0.6) 100%);
}

.ApproachSection-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-xl) 0;
}

.ApproachSection-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}

.ApproachCol { }

.ApproachCol-icon {
  font-size: 28px;
  color: var(--color-accent-muted);
  margin-bottom: 16px;
  display: block;
}

.ApproachCol h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.ApproachCol p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.7;
}


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

.WhySection-inner { text-align: center; }

.WhySection-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--color-text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}

.WhySection-inner p:not(.WhySection-lead) {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.WhySection-inner .Btn { margin-top: 12px; }


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

.ModulesSection-intro {
  margin-bottom: var(--space-lg);
}

.ModulesSection-sub {
  color: var(--color-text-muted);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.65;
}

.ModulesList {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ModuleItem {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  transition: padding-left var(--transition);
}

.ModuleItem:last-child { border-bottom: none; }
.ModuleItem:hover { padding-left: 12px; }

.ModuleItem-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(196, 98, 45, 0.12);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -0.03em;
}

.ModuleItem-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.ModuleItem-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ModuleItem-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.Tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(196, 98, 45, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(196, 98, 45, 0.15);
}


.PracticalInfo { padding: var(--space-xl) 0; }

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

.PracticalInfo-header { margin-bottom: var(--space-lg); }

.PracticalInfo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.InfoCard {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.InfoCard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.InfoCard-icon {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.InfoCard-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.InfoCard p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}


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

.CourseCta-inner {
  text-align: center;
}

.CourseCta-inner p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}


.PhotoReportSection {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.PhotoReport { }

.PhotoReport-header {
  margin-bottom: 32px;
}

.PhotoReport-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.PhotoReport-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.PhotoReport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.PhotoReport-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 240px;
  transition: box-shadow var(--transition);
}

.PhotoReport-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.PhotoReport-item:hover { box-shadow: var(--shadow-lg); }
.PhotoReport-item:hover img { transform: scale(1.05); }

.PhotoReport-item--featured {
  grid-column: span 2;
  height: 320px;
}

.PhotoReport--alt .PhotoReport-grid {
  grid-template-columns: 1fr 1.5fr;
}

.PhotoReport--alt .PhotoReport-item--featured {
  grid-column: 1;
  order: 2;
}

.GalleryNote {
  padding: var(--space-lg) 0;
  background: var(--color-bg-alt);
}

.GalleryNote-inner {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.GalleryNote-icon {
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}

.GalleryNote-inner h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.GalleryNote-inner p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}


.ContactPage {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--color-bg);
}

.ContactPage-header {
  margin-bottom: var(--space-lg);
}

.ContactPage-sub {
  color: var(--color-text-muted);
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.65;
}

.ContactPage-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.ContactInfo { }

.ContactInfo-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.ContactInfo-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.ContactInfo-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.ContactInfo-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.6;
}

.ContactInfo-item i {
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.ContactInfo-block p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}


.ContactFormWrap {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.ContactForm-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.ContactForm-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.ContactForm-stepNum {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border-strong);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.ContactForm-step--active .ContactForm-stepNum {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196, 98, 45, 0.3);
}

.ContactForm-stepLabel {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.ContactForm-step--active .ContactForm-stepLabel { color: var(--color-text); }

.ContactForm-stepLine {
  flex: 1;
  height: 1px;
  background: var(--color-border-strong);
  margin: 0 12px;
}

.ContactForm-panel { }

.ContactForm-panel--hidden { display: none; }

.ContactForm-panelTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
}

.ContactForm-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ContactForm-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-mid);
}

.ContactForm-input,
.ContactForm-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.ContactForm-input:focus,
.ContactForm-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.12);
}

.ContactForm-textarea { resize: vertical; min-height: 120px; }

.ContactForm-field--check { flex-direction: row; align-items: flex-start; gap: 0; }

.ContactForm-checkLabel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.ContactForm-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.ContactForm-checkText {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.ContactForm-checkText a {
  color: var(--color-primary);
  text-decoration: underline;
}

.ContactForm-next {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.ContactForm-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.ContactForm-actions .Btn:last-child {
  flex: 1;
  justify-content: center;
}


.MapSection {
  border-top: 1px solid var(--color-border);
}

.MapSection-wrap {
  width: 100%;
}

.MapSection-wrap iframe {
  display: block;
  width: 100%;
}


.LegalPage {
  padding-top: var(--nav-height);
  background: var(--color-bg);
  min-height: 80vh;
}

.LegalPage-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-border-strong);
}

.LegalPage-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text);
  margin-bottom: 8px;
}

.LegalPage-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.LegalPage-body {
  line-height: 1.75;
}

.LegalPage-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.LegalPage-body p {
  color: var(--color-text-mid);
  margin-bottom: 16px;
  font-size: 15px;
}

.LegalPage-body ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.LegalPage-body ul li {
  color: var(--color-text-mid);
  font-size: 15px;
  padding: 4px 0 4px 20px;
  position: relative;
}

.LegalPage-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.LegalTable {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.LegalTable thead tr {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.LegalTable thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.LegalTable tbody tr {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-card);
}

.LegalTable tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}

.LegalTable tbody tr:last-child { border-bottom: none; }

.LegalTable td {
  padding: 12px 16px;
  color: var(--color-text-mid);
  vertical-align: top;
  line-height: 1.6;
}

.LegalPage-section { margin-bottom: 0; }

.LegalDl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  margin: 16px 0 24px;
}

.LegalDl dt {
  font-weight: 600;
  color: var(--color-text);
  padding: 14px 20px 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.LegalDl dd {
  color: var(--color-text-mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.LegalDl dt:last-of-type,
.LegalDl dd:last-of-type {
  border-bottom: none;
}


.ThanksPage-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ThanksMain {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

.ThanksContent {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ThanksContent-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: dotExpand 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 0 0 0 rgba(196, 98, 45, 0.3);
}

@keyframes dotExpand {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.4); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 16px rgba(196, 98, 45, 0); }
}

.ThanksContent-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-text);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}

.ThanksContent-link {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.5s forwards;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.CookieConsent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 360px;
  width: calc(100vw - 48px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border);
  padding: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.CookieConsent.is-hidden {
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  pointer-events: none;
}

.CookieConsent-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.CookieConsent-title i { color: var(--color-primary); }

.CookieConsent-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.CookieConsent-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.CookieConsent-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.CookieConsent-btn {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  min-height: 44px;
}

.CookieConsent-btn--accept {
  background: var(--color-primary);
  color: #fff;
}

.CookieConsent-btn--accept:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.CookieConsent-btn--reject {
  background: var(--color-bg-alt);
  color: var(--color-text-mid);
}

.CookieConsent-btn--reject:hover {
  background: var(--color-border-strong);
}

.CookieConsent-btn--customize {
  background: none;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border-strong);
  font-size: 12px;
}

.CookieConsent-btn--customize:hover {
  border-color: var(--color-primary);
  background: rgba(196, 98, 45, 0.04);
}

.CookieConsent-customize {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  display: none;
}

.CookieConsent-customize.is-open { display: block; }

.CookieConsent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--color-text-mid);
}

.CookieConsent-optionLabel { font-weight: 500; }
.CookieConsent-optionRequired { font-size: 11px; color: var(--color-text-muted); }

.CookieConsent-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.CookieConsent-toggle input { opacity: 0; width: 0; height: 0; }

.CookieConsent-toggleSlider {
  position: absolute;
  inset: 0;
  background: var(--color-border-strong);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition);
}

.CookieConsent-toggleSlider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
}

.CookieConsent-toggle input:checked + .CookieConsent-toggleSlider {
  background: var(--color-primary);
}

.CookieConsent-toggle input:checked + .CookieConsent-toggleSlider::before {
  transform: translateX(16px);
}

.CookieConsent-toggle input:disabled + .CookieConsent-toggleSlider {
  opacity: 0.6;
  cursor: not-allowed;
}

.CookieConsent-saveBtn {
  margin-top: 12px;
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
}

.CookieConsent-saveBtn:hover { background: var(--color-primary-dark); }


@media (max-width: 1024px) {
  .IntroSection-grid { gap: 40px; }
  .CalculatorSection-inner { gap: 40px; }
  .MissionSection-grid { gap: 40px; }
  .ContactPage-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .SiteHeader-nav { display: none; }
  .SiteHeader-hamburger { display: flex; }

  .IntroSection-grid { grid-template-columns: 1fr; gap: 32px; }
  .IntroSection-imageWrap { order: -1; }
  .IntroSection-image { height: 320px; }

  .FeaturesGrid { grid-template-columns: 1fr; }
  .FeatureItem:nth-child(odd) { border-right: none; }
  .FeatureItem:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .FeatureItem:last-child { border-bottom: none; }

  .CoursesGrid { grid-template-columns: 1fr; gap: 24px; }

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

  .CalculatorSection-inner { grid-template-columns: 1fr; gap: 32px; }
  .Calculator { grid-template-columns: 1fr; }
  .Calculator-result { min-height: 200px; }

  .MissionSection-grid { grid-template-columns: 1fr; }

  .ApproachSection-cols { grid-template-columns: 1fr 1fr; gap: 24px; }

  .PracticalInfo-grid { grid-template-columns: 1fr; }

  .ContactPage-grid { grid-template-columns: 1fr; }

  .ModuleItem { grid-template-columns: 60px 1fr; gap: 20px; }
  .ModuleItem-num { font-size: 36px; }

  .PhotoReport-grid { grid-template-columns: 1fr 1fr; }
  .PhotoReport--alt .PhotoReport-grid { grid-template-columns: 1fr; }
  .PhotoReport-item--featured { grid-column: 1 / 3; height: 280px; }

  .LegalDl { grid-template-columns: 1fr; }
  .LegalDl dt { border-bottom: none; padding-bottom: 4px; }
}

@media (max-width: 600px) {
  :root { --space-xl: 56px; --space-2xl: 80px; }

  .PageHero-heading { font-size: clamp(40px, 12vw, 64px); }

  .GalleryPreview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .GalleryPreview-item--wide { grid-column: 1; }

  .ApproachSection-cols { grid-template-columns: 1fr; }

  .PhotoReport-grid { grid-template-columns: 1fr; }
  .PhotoReport-item--featured { grid-column: 1; }
  .PhotoReport--alt .PhotoReport-item--featured { order: 0; }

  .ContactFormWrap { padding: 24px; }
  .ContactForm-actions { flex-direction: column; }

  .InnerHero { min-height: 340px; }
  .InnerHero--short { min-height: 260px; }

  .CookieConsent { left: 12px; bottom: 12px; width: calc(100vw - 24px); }

  .SiteFooter-contact { flex-direction: column; align-items: center; gap: 8px; }

  .PageHero-actions { flex-direction: column; }
  .PageHero-actions .Btn { width: 100%; justify-content: center; }
}