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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

:root {
  --cream: #FAF8F4;
  --cream-soft: #F0E9DE;
  --cream-deep: #E8DDD0;
  --rose: #B87B8E;
  --rose-dark: #9A6275;
  --rose-light: #D4A8B5;
  --rose-pale: #F5EBF0;
  --gold: #C8A96E;
  --gold-light: #EDD9A8;
  --gold-pale: #FAF3E0;
  --charcoal: #2E2420;
  --charcoal-soft: #6B5A55;
  --charcoal-muted: #9E8B85;
  --border: #E0D2C8;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(46, 36, 32, 0.06);
  --shadow-card: 0 2px 12px rgba(46, 36, 32, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-width: 1100px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

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

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184, 123, 142, 0.3);
}

.btn-primary:hover {
  background-color: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 123, 142, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}

.btn-gold:hover {
  background-color: #b8954e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(46, 36, 32, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--rose);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--rose);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .nav-links, .header-cta .btn {
    display: none;
  }
  .burger {
    display: flex;
  }
}

.hero {
  padding: 0;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: stretch;
  background-color: var(--cream-soft);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  max-width: 540px;
  margin-left: auto;
  padding-right: 60px;
  padding-left: 24px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--rose-pale);
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--charcoal-muted);
  margin-top: 2px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

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

.hero-image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--cream-soft), transparent);
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 60px 24px 40px;
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    align-items: center;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-image-wrap {
    height: 320px;
  }
  .hero-image-overlay {
    display: none;
  }
}

.about-skill {
  background-color: var(--cream);
}

.about-skill-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-skill-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}

.about-skill-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-skill-text h2 {
  margin-bottom: 24px;
}

.about-skill-text p {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-skill-text p:last-of-type {
  margin-bottom: 32px;
}

.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  padding-top: 10px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-skill-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.for-whom {
  background-color: var(--cream-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: var(--charcoal-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.whom-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.whom-card:hover {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-card);
}

.whom-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.whom-card h3 {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.whom-card p {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .whom-grid {
    grid-template-columns: 1fr;
  }
}

.program {
  background-color: var(--cream);
}

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

.program-intro h2 {
  margin-bottom: 20px;
}

.program-intro p {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 32px;
}

.program-cta {
  margin-top: 4px;
}

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

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.program-item:first-child {
  padding-top: 0;
}

.program-item:last-child {
  border-bottom: none;
}

.program-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  width: 40px;
  flex-shrink: 0;
  padding-top: 2px;
}

.program-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.program-info p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .program-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.results {
  background-color: var(--cream-soft);
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-card);
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  text-align: center;
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--charcoal-muted);
  font-style: italic;
}

@media (max-width: 600px) {
  .results-gallery {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

.format {
  background-color: var(--cream);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.format-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
}

.format-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}

.format-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.format-card p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .format-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }
}

.lead-form-section {
  background: linear-gradient(145deg, var(--cream-soft) 0%, var(--rose-pale) 100%);
  padding: 100px 0;
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.form-wrapper h2 {
  margin-bottom: 16px;
}

.form-wrapper .form-subtitle {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 40px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

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

.form-field label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
}

.form-field input {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--charcoal);
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-field input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184, 123, 142, 0.12);
}

.form-field input::placeholder {
  color: var(--charcoal-muted);
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--charcoal-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

.form-privacy a {
  color: var(--rose);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.form-privacy a:hover {
  border-color: var(--rose);
}

.form-field .error-msg {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}

.form-field.has-error input {
  border-color: #e74c3c;
}

.form-field.has-error .error-msg {
  display: block;
}

.faq {
  background-color: var(--cream);
}

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

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  user-select: none;
  transition: color 0.2s ease;
}

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

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-item.open .faq-icon {
  border-color: var(--rose);
  color: var(--rose);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  background-color: var(--charcoal);
  color: rgba(250, 248, 244, 0.7);
  padding: 56px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.45);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(250, 248, 244, 0.7);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--rose-light);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 500px;
}

.footer-copy {
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 680px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(46, 36, 32, 0.12);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--rose);
  border-bottom: 1px solid transparent;
}

.cookie-text a:hover {
  border-color: var(--rose);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept {
  padding: 8px 20px;
  background-color: var(--rose);
  color: white;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.cookie-accept:hover {
  background-color: var(--rose-dark);
}

.cookie-decline {
  padding: 8px 16px;
  color: var(--charcoal-muted);
  font-size: 0.825rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.cookie-decline:hover {
  color: var(--charcoal);
  border-color: var(--charcoal-muted);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-accept, .cookie-decline {
    flex: 1;
    text-align: center;
  }
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream-soft);
  padding: 40px 24px;
}

.success-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.success-card p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-card .btn {
  margin: 0 auto;
}

@media (max-width: 480px) {
  .success-card {
    padding: 40px 28px;
  }
}

.legal-page {
  padding: 80px 0 100px;
}

.legal-header {
  padding: 48px 0 40px;
  background-color: var(--cream-soft);
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.legal-header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.legal-header p {
  font-size: 0.875rem;
  color: var(--charcoal-muted);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--rose);
  border-bottom: 1px solid transparent;
}

.legal-content a:hover {
  border-color: var(--rose);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
