


:root {
  
  --color-dark-900: #0f0e0d;
  --color-dark-800: #1a1917;
  --color-dark-700: #252320;
  --color-dark-600: #302e2a;
  --color-light-100: #faf9f7;
  --color-light-200: #f2f0ec;
  --color-light-300: #e8e5e0;
  --color-light-400: #d4d0c8;

  --color-accent-500: #d4861a;
  --color-accent-400: #e09830;
  --color-accent-300: #eaad55;
  --color-accent-600: #b8720f;

  --color-text-dark: #1a1917;
  --color-text-mid: #4a4640;
  --color-text-light: #faf9f7;
  --color-text-muted-dark: #8a8278;
  --color-text-muted-light: #c4bfb5;

  
  --surface-dark: #0f0e0d;
  --surface-dark-2: #1a1917;
  --surface-light: #faf9f7;
  --surface-light-2: #f2f0ec;
  --surface-accent: #b8720f;

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

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(15,14,13,0.12), 0 1px 2px rgba(15,14,13,0.08);
  --shadow-md: 0 4px 12px rgba(15,14,13,0.15), 0 2px 4px rgba(15,14,13,0.1);
  --shadow-lg: 0 10px 30px rgba(15,14,13,0.2), 0 4px 10px rgba(15,14,13,0.12);
  --shadow-xl: 0 20px 50px rgba(15,14,13,0.25), 0 8px 20px rgba(15,14,13,0.15);
  --shadow-accent: 0 4px 20px rgba(212,134,26,0.3), 0 2px 6px rgba(212,134,26,0.2);
  --shadow-inset: inset 0 2px 6px rgba(15,14,13,0.15);

  
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  
  --nav-height: 72px;
}


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

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

body.canvas {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--surface-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

address { font-style: normal; }


h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--color-text-mid);
}

strong { font-weight: 600; color: var(--color-text-dark); }


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

.container--narrow { max-width: 760px; }
.container--legal { max-width: 860px; }


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

.nav-header--scrolled {
  background: var(--surface-dark-2);
  box-shadow: 0 2px 20px rgba(15,14,13,0.4);
}

.nav-header--scrolled .nav-link {
  color: var(--color-text-muted-light);
}

.nav-header--scrolled .nav-link:hover {
  color: var(--color-text-light);
}

.nav-header--scrolled .nav-logo-text {
  color: var(--color-text-light);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(250,249,247,0.8);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-400);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link--active {
  color: var(--color-text-light);
}

.nav-cta {
  background: var(--color-accent-500);
  color: var(--color-text-light);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
  background: var(--color-accent-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,134,26,0.4);
}

.nav-cta--active {
  background: var(--color-accent-600);
}


.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-light);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  transform-origin: center;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.drawer {
  background: var(--surface-dark-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  border-top: 1px solid var(--color-dark-600);
}

.drawer.is-open {
  max-height: 400px;
}

.drawer-link {
  display: block;
  padding: var(--space-4) var(--space-6);
  color: var(--color-text-muted-light);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-dark-600);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.drawer-link:hover,
.drawer-link--active {
  color: var(--color-text-light);
  background: var(--color-dark-700);
}

.drawer-link--cta {
  color: var(--color-accent-400);
  font-weight: 600;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent-500);
  color: var(--color-text-light);
  border-color: var(--color-accent-500);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: var(--color-accent-400);
  border-color: var(--color-accent-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,134,26,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(250,249,247,0.4);
}

.btn--outline:hover {
  background: rgba(250,249,247,0.1);
  border-color: rgba(250,249,247,0.7);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.btn--outline-white:hover {
  background: var(--color-text-light);
  color: var(--color-text-dark);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-text-light);
  color: var(--color-text-dark);
  border-color: var(--color-text-light);
}

.btn--white:hover {
  background: var(--color-light-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--light {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(250,249,247,0.5);
}

.btn--light:hover {
  background: rgba(250,249,247,0.1);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn--text {
  background: none;
  border: none;
  color: var(--color-accent-500);
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn--text:hover {
  color: var(--color-accent-400);
  gap: var(--space-3);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

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


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--surface-dark);
  overflow: hidden;
  padding: var(--space-32) 0 var(--space-20);
  padding-top: calc(var(--nav-height) + var(--space-20));
}

.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212,134,26,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(212,134,26,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--surface-light));
  pointer-events: none;
}

.stage-curtain {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4861a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.stage-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

.stage-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-400);
  margin-bottom: var(--space-4);
}

.stage-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--color-text-light);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  max-width: 900px;
}

.stage-gradient-text {
  background: linear-gradient(135deg, var(--color-accent-300) 0%, var(--color-accent-500) 50%, var(--color-accent-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stage-typed-wrap {
  color: var(--color-text-light);
}

.stage-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted-light);
  max-width: 600px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.stage-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.canvas-section {
  padding: var(--space-24) 0;
  position: relative;
}

.canvas-section--light {
  background: var(--surface-light);
}

.canvas-section--dark {
  background: var(--surface-dark);
}

.canvas-section--accent {
  background: linear-gradient(135deg, var(--color-accent-600) 0%, var(--color-accent-500) 100%);
}

.canvas-section--form-page {
  padding: var(--space-20) 0 var(--space-32);
}

.canvas-section--map {
  padding-bottom: 0;
}


.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-eyebrow {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: var(--space-3);
  display: block;
}

.section-eyebrow--light {
  color: var(--color-accent-300);
}

.section-heading {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
}

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

.section-intro {
  color: var(--color-text-mid);
  font-size: 1.05rem;
}

.section-intro--light {
  color: var(--color-text-muted-light);
}


.divider-wave {
  position: relative;
  height: 60px;
  background: var(--surface-dark);
  overflow: hidden;
}

.divider-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

.divider-wave--light {
  background: var(--surface-light);
}

.divider-dots {
  padding: var(--space-8) 0;
  background: var(--surface-light);
  display: flex;
  justify-content: center;
}

.divider-dots-inner {
  width: 200px;
  height: 12px;
  background-image: radial-gradient(circle, var(--color-accent-400) 2px, transparent 2px);
  background-size: 20px 12px;
  background-repeat: repeat-x;
  opacity: 0.6;
}


.gallery--services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.gallery-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-card--dark {
  background: var(--color-dark-700);
  border: 1px solid var(--color-dark-600);
}

.gallery-card--dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent-600);
}

.gallery-card--light {
  background: var(--surface-light);
  border: 1px solid var(--color-light-300);
}

.gallery-card--light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-400);
}

.gallery-card--bordered {
  box-shadow: var(--shadow-sm);
}

.gallery-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(212,134,26,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.25rem;
  color: var(--color-accent-400);
  transition: background var(--transition-base);
}

.gallery-card--dark:hover .gallery-card-icon {
  background: rgba(212,134,26,0.25);
}

.gallery-card-icon--accent {
  background: rgba(212,134,26,0.12);
  color: var(--color-accent-500);
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text-light);
}

.gallery-card--light .gallery-card-title {
  color: var(--color-text-dark);
}

.gallery-card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted-light);
}

.gallery-card--light .gallery-card-text {
  color: var(--color-text-mid);
}

.gallery-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
}

.gallery-card-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.gallery-card-list li {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  padding-left: var(--space-4);
  position: relative;
}

.gallery-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent-500);
  font-size: 0.8rem;
}


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

.shelf--two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.shelf--feature-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.shelf--image-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.shelf-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.shelf-img--rounded {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.shelf--process {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.shelf--process::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-500), transparent);
}

.shelf-process-item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  position: relative;
}

.shelf-process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-accent-500);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-accent);
}

.shelf-process-content h3 {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.shelf-process-content p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
}


.shelf--prereqs {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 700px;
  margin: 0 auto;
}

.prereq-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.prereq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(212,134,26,0.15);
  color: var(--color-accent-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.prereq-text strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: 1rem;
}

.prereq-text p {
  font-size: 0.9rem;
}


.cta-block {
  text-align: center;
  margin-top: var(--space-16);
  padding: var(--space-10);
  background: var(--surface-light-2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-light-300);
}

.cta-block p {
  font-size: 1.1rem;
  margin-bottom: var(--space-5);
  color: var(--color-text-dark);
}


.not-for-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.not-for-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.not-for-icon {
  color: #e05a5a;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.not-for-item strong {
  display: block;
  color: var(--color-text-light);
  margin-bottom: var(--space-1);
}

.not-for-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
}


.text-light { color: var(--color-text-muted-light) !important; }


.spotlight {
  background: var(--surface-light-2);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  border: 1px solid var(--color-light-300);
  box-shadow: var(--shadow-md);
}

.spotlight-question {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-5);
  line-height: 1.3;
}

.spotlight-answer {
  font-size: 1.05rem;
  color: var(--color-text-mid);
  max-width: 700px;
}

.spotlight--cta {
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.spotlight-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
}

.spotlight-text {
  color: rgba(250,249,247,0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.spotlight--notify {
  text-align: center;
  background: var(--surface-light-2);
  border: 1px solid var(--color-light-300);
  box-shadow: var(--shadow-md);
}

.spotlight-icon {
  font-size: 2.5rem;
  color: var(--color-accent-500);
  margin-bottom: var(--space-5);
  display: block;
}

.spotlight--notify .spotlight-heading {
  color: var(--color-text-dark);
}

.spotlight--notify .spotlight-text {
  color: var(--color-text-mid);
}


.page-hero {
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-20);
}

.page-hero--dark {
  background: var(--surface-dark);
}

.page-hero--light {
  background: var(--surface-light-2);
  border-bottom: 1px solid var(--color-light-300);
}

.page-hero--compact {
  padding-bottom: var(--space-12);
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
  line-height: 1.15;
}

.page-hero-heading--dark {
  color: var(--color-text-dark);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted-light);
  max-width: 600px;
  line-height: 1.7;
}

.page-hero-sub--dark {
  color: var(--color-text-mid);
}


.gallery--approach {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.gallery--profiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.gallery-card--profile {
  padding: var(--space-7);
}


.shelf--modules {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.module-card {
  border: 1px solid var(--color-light-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.module-header {
  background: var(--surface-light-2);
  padding: var(--space-5) var(--space-7);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-bottom: 1px solid var(--color-light-300);
}

.module-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  flex-shrink: 0;
}

.module-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.module-body {
  padding: var(--space-6) var(--space-7);
}

.module-body p {
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.module-list li {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  padding-left: var(--space-5);
  position: relative;
}

.module-list li::before {
  content: '•';
  position: absolute;
  left: var(--space-2);
  color: var(--color-accent-500);
}


.gallery--format {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
}


.shelf--faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-light-300);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent-500);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent-500);
  transition: transform var(--transition-base);
  font-size: 0.85rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-answer.is-open {
  max-height: 300px;
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-mid);
}


.shelf--events {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  background: var(--surface-light);
  border: 1px solid var(--color-light-300);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--color-accent-400);
}

.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-3) var(--space-4);
  background: var(--color-dark-800);
  border-radius: var(--radius-md);
  min-width: 72px;
  text-align: center;
}

.event-card-month {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-400);
}

.event-card-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-light);
  line-height: 1;
}

.event-card-year {
  font-size: 0.7rem;
  color: var(--color-text-muted-light);
}

.event-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.event-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-light-200);
  color: var(--color-text-mid);
}

.event-tag--online {
  background: rgba(212,134,26,0.15);
  color: var(--color-accent-600);
}

.event-tag--presencial {
  background: rgba(60,120,80,0.1);
  color: #2d6b3f;
}

.event-card-title {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
}

.event-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-mid);
  margin-bottom: var(--space-4);
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.event-card-meta span {
  font-size: 0.8rem;
  color: var(--color-text-mid);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.event-card-meta i {
  color: var(--color-accent-500);
}


.form-stage {
  background: var(--surface-light);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-light-300);
}

.form-stage-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-2);
}

.form-stage-sub {
  color: var(--color-text-mid);
  margin-bottom: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

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

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  letter-spacing: 0.01em;
}

.form-input {
  padding: var(--space-4) var(--space-5);
  border: 2px solid var(--color-light-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  background: var(--surface-light);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  width: 100%;
  min-height: 44px;
}

.form-input:focus {
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 3px rgba(212,134,26,0.15);
}

.form-input::placeholder {
  color: var(--color-text-muted-dark);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-helper {
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
}

.form-field--checkbox {
  flex-direction: column;
  gap: var(--space-2);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

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

.form-checkbox-text {
  font-size: 0.9rem;
  color: var(--color-text-mid);
  line-height: 1.5;
}

.form-checkbox-text a {
  color: var(--color-accent-500);
  text-decoration: underline;
}

.form-error {
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  color: #c0392b;
  font-size: 0.9rem;
  display: none;
}

.form-error.is-visible {
  display: block;
}


.shelf--urgent {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.urgent-block {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  background: var(--color-dark-700);
  border: 1px solid var(--color-dark-600);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.urgent-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(212,134,26,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent-400);
}

.urgent-title {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.urgent-text {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-5);
}


.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-300);
}


.thanks-stage {
  min-height: calc(100vh - var(--nav-height) - 300px);
  background: linear-gradient(135deg, var(--color-dark-800) 0%, var(--color-accent-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20) var(--space-6);
  margin-top: var(--nav-height);
}

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

.thanks-icon {
  font-size: 4rem;
  color: var(--color-accent-300);
  margin-bottom: var(--space-6);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
}

.thanks-text {
  font-size: 1.1rem;
  color: rgba(250,249,247,0.85);
  margin-bottom: var(--space-3);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-subtext {
  font-size: 0.95rem;
  color: rgba(250,249,247,0.65);
  margin-bottom: var(--space-8);
}


.legal-hero {
  background: var(--surface-dark);
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-12);
}

.legal-hero--light {
  background: var(--surface-light-2);
  border-bottom: 1px solid var(--color-light-300);
}

.legal-hero--accent {
  background: linear-gradient(135deg, var(--color-dark-800) 0%, var(--color-accent-600) 100%);
}

.legal-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.legal-hero-title--dark {
  color: var(--color-text-dark);
}

.legal-hero-meta {
  color: var(--color-text-muted-light);
  font-size: 0.9rem;
}

.legal-hero-meta--dark {
  color: var(--color-text-mid);
}

.legal-main {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--surface-light);
}

.legal-main--alt {
  background: var(--surface-light-2);
}

.legal-main--cookies {
  background: var(--surface-light);
}


.legal-timeline {
  position: relative;
  padding-left: var(--space-8);
}

.legal-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-500), var(--color-light-300));
}

.legal-timeline-item {
  position: relative;
  margin-bottom: var(--space-12);
}

.legal-timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) - 5px);
  top: var(--space-2);
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-accent-500);
  border: 2px solid var(--surface-light);
  box-shadow: 0 0 0 2px var(--color-accent-500);
}

.legal-timeline-marker {
  margin-bottom: var(--space-3);
}

.legal-timeline-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-500);
  background: rgba(212,134,26,0.1);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
}

.legal-timeline-content h2 {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-4);
}

.legal-timeline-content p {
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.legal-timeline-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.legal-timeline-content ul li {
  font-size: 0.9rem;
  color: var(--color-text-mid);
}

.legal-timeline-content a {
  color: var(--color-accent-500);
  text-decoration: underline;
}


.terms-section {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-light-300);
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-5);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-accent-500);
}

.terms-section p {
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.terms-section ul {
  list-style: disc;
  padding-left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.terms-section ul li {
  font-size: 0.9rem;
  color: var(--color-text-mid);
}


.cookies-intro {
  background: var(--color-dark-800);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-10);
}

.cookies-intro p {
  color: var(--color-text-muted-light);
  font-size: 0.95rem;
}

.cookies-block {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--color-light-300);
}

.cookies-block:last-child {
  border-bottom: none;
}

.cookies-block h2 {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-5);
}

.cookies-block p {
  font-size: 0.95rem;
  margin-bottom: var(--space-4);
}

.cookies-block ul {
  list-style: disc;
  padding-left: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.cookies-block ul li {
  font-size: 0.9rem;
  color: var(--color-text-mid);
}

.cookies-block a {
  color: var(--color-accent-500);
  text-decoration: underline;
}

.cookies-table-wrap {
  overflow-x: auto;
  margin: var(--space-5) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-300);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookies-table th {
  background: var(--surface-light-2);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-weight: 600;
  color: var(--color-text-dark);
  border-bottom: 1px solid var(--color-light-300);
  white-space: nowrap;
}

.cookies-table td {
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-light-200);
  vertical-align: top;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

code {
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  background: var(--surface-light-2);
  padding: 1px 5px;
  border-radius: var(--radius-sm);
  color: var(--color-accent-600);
}


.canvas-footer {
  position: relative;
  background: var(--surface-dark);
  padding-top: var(--space-20);
}

.canvas-footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-600), var(--color-accent-400), var(--color-accent-600));
}

.canvas-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-dark-600);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-5);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 320px;
}

.footer-address p {
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-address i {
  color: var(--color-accent-400);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.85rem;
}

.footer-address a {
  color: var(--color-text-muted-light);
  transition: color var(--transition-fast);
}

.footer-address a:hover {
  color: var(--color-accent-300);
}

.footer-nav-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-5);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--color-accent-300);
  padding-left: var(--space-2);
}

.canvas-footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.canvas-footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
}

.footer-disclaimer {
  color: var(--color-dark-600) !important;
  font-size: 0.75rem !important;
}


.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark-800);
  border-top: 1px solid var(--color-dark-600);
  box-shadow: 0 -4px 30px rgba(15,14,13,0.5);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-bar-text {
  font-size: 0.875rem;
  color: var(--color-text-muted-light);
  line-height: 1.6;
}

.cookie-bar-text a {
  color: var(--color-accent-300);
  text-decoration: underline;
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.cookie-btn {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-base);
  min-height: 44px;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: var(--color-accent-500);
  color: var(--color-text-light);
  border-color: var(--color-accent-500);
}

.cookie-btn--accept:hover {
  background: var(--color-accent-400);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--color-text-muted-light);
  border-color: var(--color-dark-600);
}

.cookie-btn--reject:hover {
  color: var(--color-text-light);
  border-color: var(--color-text-muted-light);
}

.cookie-btn--customize {
  background: transparent;
  color: var(--color-accent-300);
  border-color: transparent;
  text-decoration: underline;
  font-size: 0.8rem;
}

.cookie-bar-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  border-top: 1px solid var(--color-dark-600);
}

.cookie-bar-expanded.is-open {
  max-height: 300px;
}

.cookie-categories {
  padding: var(--space-5) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-1);
}

.cookie-category-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--color-dark-600);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
}

.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: white;
  transition: transform var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-accent-500);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-save-btn {
  margin: var(--space-3) var(--space-6) var(--space-4);
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent-500);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background var(--transition-base);
  min-height: 44px;
}

.cookie-save-btn:hover {
  background: var(--color-accent-400);
}


@media (min-width: 640px) {
  .shelf--urgent {
    grid-template-columns: 1fr 1fr;
  }
  .canvas-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cookie-bar-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-bar-text {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-burger {
    display: none;
  }
  .shelf--intro {
    grid-template-columns: 1fr 1fr;
  }
  .shelf--two-col {
    grid-template-columns: 1fr 1fr;
  }
  .shelf--feature-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  .shelf--feature-reverse > * {
    direction: ltr;
  }
  .shelf--image-text {
    grid-template-columns: 1fr 1fr;
  }
  .canvas-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .event-card {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .stage-headline {
    max-width: 800px;
  }
  .shelf--prereqs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .shelf--prereqs .prereq-item {
    flex-direction: column;
    gap: var(--space-4);
  }
  .prereq-icon {
    margin-top: 0;
  }
}


[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}