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

:root {
  --terracotta-50: #fdf0eb;
  --terracotta-100: #fce4d9;
  --terracotta-200: #f8c4b0;
  --terracotta-300: #f3a082;
  --terracotta-400: #ec7a56;
  --terracotta-500: #e05c35;
  --terracotta-600: #c04828;
  --terracotta-700: #9e3920;
  --terracotta-800: #7f2f1c;
  --terracotta-900: #672817;

  --sand-50: #fdfbf7;
  --sand-100: #faf5ed;
  --sand-200: #f5ead6;
  --sand-300: #eddbb8;
  --sand-400: #e2c68f;
  --sand-500: #d4ab62;
  --sand-600: #c49a52;
  --sand-700: #a67c3f;
  --sand-800: #866231;
  --sand-900: #6c4f28;

  --warm-dark: #2a1a12;
  --warm-dark-soft: #3d2b20;
  --warm-mid: #5c4033;
  --warm-light: #f9f3eb;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(42, 26, 18, 0.06), 0 1px 2px rgba(42, 26, 18, 0.04);
  --shadow-md: 0 4px 16px rgba(42, 26, 18, 0.08), 0 2px 4px rgba(42, 26, 18, 0.04);
  --shadow-lg: 0 12px 40px rgba(42, 26, 18, 0.12), 0 4px 12px rgba(42, 26, 18, 0.06);
  --shadow-xl: 0 24px 60px rgba(42, 26, 18, 0.16);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-dark);
  background-color: var(--sand-50);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--terracotta-600);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus {
  top: 16px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192, 72, 40, 0.08);
  transition: box-shadow var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--terracotta-700);
  transition: color var(--transition-fast);
}

.logo-icon {
  color: var(--terracotta-600);
}

.logo:hover .logo-icon {
  color: var(--terracotta-500);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--warm-mid);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-menu a:hover {
  background: var(--terracotta-50);
  color: var(--terracotta-700);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-dark);
  border-radius: 2px;
  transition: transform var(--transition-med), opacity var(--transition-fast);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger { top: 50%; transform: translate(-50%, -50%); }
.hamburger::before { content: ''; top: -7px; left: 0; }
.hamburger::after { content: ''; bottom: -7px; left: 0; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 50%;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 50%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.938rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--terracotta-600);
  color: #fff;
  border-color: var(--terracotta-600);
  box-shadow: 0 4px 14px rgba(192, 72, 40, 0.3);
}
.btn-primary:hover {
  background: var(--terracotta-700);
  border-color: var(--terracotta-700);
  box-shadow: 0 6px 20px rgba(192, 72, 40, 0.4);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-outline-terracotta {
  background: transparent;
  color: var(--terracotta-600);
  border-color: var(--terracotta-600);
}
.btn-outline-terracotta:hover {
  background: var(--terracotta-600);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-nav {
  background: var(--terracotta-600);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 10px 22px;
}
.btn-nav:hover {
  background: var(--terracotta-700);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-dark);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42, 26, 18, 0.88) 0%,
    rgba(61, 43, 32, 0.78) 50%,
    rgba(127, 47, 28, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 240, 235, 0.12);
  border: 1px solid rgba(253, 240, 235, 0.2);
  color: var(--sand-200);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.12;
  color: var(--sand-50);
  margin-bottom: 24px;
}

.text-accent {
  color: var(--terracotta-300);
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--sand-200);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sand-300);
  font-weight: 600;
  font-size: 0.938rem;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  color: var(--sand-50);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  background: var(--terracotta-50);
  border: 1px solid var(--terracotta-200);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  color: var(--warm-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--warm-mid);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  background: var(--sand-50);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(192, 72, 40, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--terracotta-50);
  color: var(--terracotta-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--terracotta-600);
  color: #fff;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--warm-dark);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--warm-mid);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  background: var(--sand-100);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--sand-100);
  box-shadow: var(--shadow-lg);
}

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

.about-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--terracotta-600);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.badge-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  color: var(--warm-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0 40px;
  padding: 24px 0;
  border-top: 1px solid var(--terracotta-100);
  border-bottom: 1px solid var(--terracotta-100);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--terracotta-600);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--warm-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: var(--terracotta-200);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-content .btn {
  margin-top: 8px;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--sand-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img,
.gallery-item--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/3;
  transition: transform var(--transition-slow);
}

.gallery-item--wide img {
  aspect-ratio: 8/5;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--sand-100);
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(192, 72, 40, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--sand-500);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.02rem;
  color: var(--warm-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--terracotta-100);
  color: var(--terracotta-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--warm-dark);
}

.author-location {
  display: block;
  font-size: 0.82rem;
  color: var(--warm-mid);
  font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 47, 28, 0.92) 0%, rgba(42, 26, 18, 0.88) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sand-50);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--sand-200);
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== VISIT ===== */
.visit {
  background: var(--sand-50);
}

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

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 72, 40, 0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--terracotta-50);
  color: var(--terracotta-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-label {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--terracotta-600);
  margin-bottom: 4px;
}

.info-card p {
  color: var(--warm-dark);
  font-size: 0.97rem;
  line-height: 1.6;
}

.info-card a {
  color: var(--warm-dark);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.info-card a:hover {
  color: var(--terracotta-600);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--warm-dark);
  color: var(--sand-200);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.logo-light {
  color: var(--sand-200);
  margin-bottom: 16px;
}

.logo-light .logo-icon {
  color: var(--terracotta-300);
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--sand-300);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sand-50);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--sand-300);
  font-weight: 600;
  font-size: 0.938rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--terracotta-300);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.938rem;
  color: var(--sand-300);
  line-height: 1.5;
}

.footer-contact a {
  color: var(--sand-300);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--terracotta-300);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--terracotta-400);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 235, 214, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--sand-400);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform var(--transition-med);
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-menu a {
    display: block;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
  }

  .nav-menu a:hover {
    background: var(--terracotta-50);
  }

  .btn-nav {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 20px 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-wave svg {
    height: 50px;
  }

  .section {
    padding: 72px 0;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary {
    right: 0;
    bottom: -20px;
  }

  .about-badge {
    left: 0;
    top: -12px;
  }

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

  .gallery-item--wide {
    grid-column: span 1;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .cta-banner {
    padding: 72px 20px;
  }

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

  .visit-map {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 2px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

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