/* Trident Global FZE — Design System */
:root {
  --gold-light: #C9B584;
  --gold: #947946;
  --gold-dark: #6E5930;
  --ivory: #FDFCFA;
  --warm-gray: #F5F2EC;
  --ink: #1C1A16;
  --muted: #6B6558;
  --border: #EAE5DA;
  --white: #FFFFFF;
  --max-w: 1200px;
  --nav-h: 80px;
  --radius: 2px;
  --radius-card: 4px;
  --shadow-sm: 0 4px 20px rgba(28, 26, 22, 0.06);
  --shadow-md: 0 12px 40px rgba(28, 26, 22, 0.1);
  --transition: 0.3s ease;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
  --gold-grad: linear-gradient(135deg, #C9B584, #947946, #6E5930);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -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), border-color var(--transition), background var(--transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Typography */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1,
.h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
}

h2,
.h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3,
.h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
}

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

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0;
}

.gold-rule.centered {
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 120px 0;
  }
}

.section-header {
  margin-bottom: 3rem;
  max-width: 40rem;
}

.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

.section-header.centered .lead {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-top: 1.25rem;
}

.link-arrow:hover {
  color: var(--gold);
}

.link-arrow::after {
  content: "→";
  transition: transform var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.card-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--warm-gray);
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(148, 121, 70, 0.1);
  border: 1px solid rgba(148, 121, 70, 0.25);
  border-radius: 2px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}

.card-spec {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(253, 252, 250, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gold);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
}

.logo img {
  width: 42px;
  height: 42px;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold, #947946);
  line-height: 1.2;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links .btn {
  min-height: 42px;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-overlay.open a {
  opacity: 1;
  transform: none;
}

.nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.2s; }
.nav-overlay.open a:nth-child(5) { transition-delay: 0.25s; }

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }
}

/* Page heroes */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  background: var(--ivory);
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb span {
  color: var(--border);
}

/* Home hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
  background: var(--ivory);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  transform: scale(1.05);
  animation: kenburns 28s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--ivory) 35%, rgba(253, 252, 250, 0.85) 60%, rgba(253, 252, 250, 0.55) 100%);
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 620px);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  animation: scroll-dot 1.8s ease infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Stats */
.stats {
  background: var(--white);
  border-block: 1px solid var(--border);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Grids */
.grid-2 {
  display: grid;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  gap: 2rem;
}

.grid-products {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 480px) {
  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

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

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

@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* About teaser media */
.media-stack {
  position: relative;
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.media-stack .frame {
  position: absolute;
  inset: 0 1.5rem 1.5rem 0;
  border: 1px solid var(--gold);
  z-index: 0;
}

.media-stack .img-main {
  position: relative;
  z-index: 1;
  width: 85%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.media-stack .img-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-sm);
}

/* Feature icons */
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Sustainability */
.sustainability {
  background: var(--warm-gray);
  text-align: center;
}

.sustainability .icon-leaf {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.sustainability .lead {
  margin-inline: auto;
}

/* World map */
.world-map {
  text-align: center;
}

.world-map svg {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 1rem;
  height: auto;
}

.map-caption {
  font-size: 0.875rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: var(--ink);
  text-align: center;
  padding: 5rem 0;
}

.cta-band h2 {
  color: var(--ivory);
  margin-bottom: 2rem;
}

/* Credentials */
.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.cred-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.cred-card h3 {
  margin-bottom: 0.75rem;
}

.cred-card p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Mission / Values */
.mvv-item {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

.mvv-item h3 {
  margin-bottom: 0.75rem;
}

.mvv-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.values-list li {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
}

/* Capacity lists */
.terms-block h3 {
  margin-bottom: 1.25rem;
}

.terms-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.terms-block li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.terms-block li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  background: var(--gold);
  border-radius: 50%;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab {
  min-height: 44px;
  padding: 0.6rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.product-card.hidden {
  display: none;
}

.quality-strip {
  background: var(--warm-gray);
  text-align: center;
  padding: 3rem 0;
}

.quality-strip p {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-info h3 {
  margin-bottom: 0.5rem;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block p,
.contact-block a {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-block a:hover {
  color: var(--gold-dark);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group .error {
  border-color: #a33;
}

.form-error {
  display: none;
  font-size: 0.8125rem;
  color: #a33;
  margin-top: 0.35rem;
}

.form-group .error + .form-error,
.form-group.has-error .form-error {
  display: block;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(148, 121, 70, 0.08);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gold-dark);
}

.form-success.visible {
  display: block;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

.map-wrap {
  margin-top: 4rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(100%) contrast(1.05);
  transition: filter var(--transition);
}

.map-wrap:hover iframe {
  filter: grayscale(40%) sepia(20%) hue-rotate(5deg) saturate(1.2);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(253, 252, 250, 0.75);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(148, 121, 70, 0.25);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand .logo-text {
  color: var(--ivory);
}

.footer-brand .logo-tagline {
  color: var(--gold, #947946);
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 28rem;
}

.footer-brand .license {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--gold-light);
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact li {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(253, 252, 250, 0.45);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

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

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

body.menu-open {
  overflow: hidden;
}
