/* =============================================
   LOURENS DE KLERK ATTORNEYS
   Premium Law Firm Stylesheet
   Palette: Deep Navy, Platinum, Gold Accent, Dark Charcoal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* === TOKENS === */
:root {
  --navy:        #0A1628;
  --navy-mid:    #112240;
  --navy-light:  #1E3A5F;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --platinum:    #E8ECF0;
  --white:       #FFFFFF;
  --steel:       #4682B4;
  --steel-light: #5A9FD4;
  --charcoal:    #222831;
  --mid-grey:    #6B7280;
  --border:      rgba(201,168,76,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

header h1 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

header h1 span {
  color: var(--gold);
}

nav ul {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

nav ul li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* === BUTTONS === */
.btn, .cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold, .btn {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover, .btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(17,34,64,0.85) 60%, rgba(70,130,180,0.15) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* === SECTION WRAPPER === */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.cta-banner p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* === PRACTICE AREAS GRID (services / index) === */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.practice-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.practice-card:hover::before {
  transform: scaleY(1);
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.5);
}

.practice-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.practice-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === ABOUT PAGE === */
.about {
  background: var(--platinum);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-grid .text-col h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-grid .text-col h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.about-grid .text-col p {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.about-expertise-list {
  margin-top: 1rem;
}

.about-expertise-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.about-expertise-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.about-expertise-list strong {
  color: var(--navy);
}

.about-image-col {
  position: sticky;
  top: 100px;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--navy);
}

.about-image-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-image-card .card-caption {
  padding: 1.5rem;
  background: var(--navy);
}

.about-image-card .card-caption h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.about-image-card .card-caption p {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* === TEAM === */
.team {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
}

.team-member {
  max-width: 340px;
  margin: 0 auto;
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1.5rem;
}

.team-member h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.team-member p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.team-member p:first-of-type {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin: 0.4rem 0 0.75rem;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  text-align: center;
}

.testimonials h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.testimonial-container {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* === CONTACT === */
.contact-section {
  background: var(--platinum);
  padding: 5rem 2rem;
}

.contact-section .heading h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-section .paragraph {
  text-align: center;
  color: var(--mid-grey);
  margin-bottom: 3rem;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-container iframe {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.contact-info h3, .contact-info h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-info p {
  color: var(--white);
  font-size: 0.95rem;
}

.map {
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* === APPOINTMENT & REVIEW === */
.appointment, .review-section {
  background: var(--platinum);
  padding: 5rem 2rem;
  text-align: center;
}

.appointment h2, .review-section h2,
.heading h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.appointment p, .review-section p {
  color: var(--mid-grey);
  margin-bottom: 2rem;
}

.appointment-container, .review-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* === SERVICES PAGE === */
.practice-areas {
  background: var(--navy);
  padding: 5rem 2rem;
}

.practice-areas > h2 {
  color: var(--white);
  text-align: center;
  max-width: 1280px;
  margin: 0 auto 1rem;
}

.practice-areas > p {
  color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.area {
  max-width: 1280px;
  margin: 0 auto 1rem;
  display: none; /* replaced by grid below */
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--steel-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.service-card .icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.practice-areas .cta-banner {
  max-width: 1280px;
  margin: 3rem auto 0;
  border-radius: var(--radius-md);
}

/* === RETAINER PAGE === */
.retainer-benefits {
  background: var(--platinum);
  padding: 5rem 2rem;
}

.retainer-benefits .container,
.how-it-works .container {
  max-width: 1280px;
  margin: 0 auto;
}

.retainer-benefits h3, .how-it-works h3 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.benefit-item h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--mid-grey);
}

.how-it-works {
  background: var(--navy);
  padding: 5rem 2rem;
}

.how-it-works h3 {
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--steel));
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === ARTICLES PAGE === */
.article-carousel {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.carousel-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
  min-width: 100%;
  position: relative;
}

.carousel-item a { display: block; width: 100%; }

.carousel-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.7;
}

.carousel-text {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  color: var(--white);
  max-width: 600px;
}

.carousel-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.carousel-text p {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.more {
  background: var(--navy-mid);
  padding: 1.5rem 2rem 0;
  text-align: center;
}
.more h2 {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-display);
}

.article-grid {
  background: var(--navy-mid);
  padding: 2rem 2rem 5rem;
}

.grid-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* article-card styles (used in articles.html grid items) */
.article-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.45);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  padding: 1rem 1.25rem 0.5rem;
}

.article-card a {
  display: inline-block;
  margin: 0 1.25rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.article-card a:hover { border-color: var(--gold); }

/* grid-item legacy support */
.grid-item {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  padding: 0;
}

.grid-item a { display: block; }
.grid-item img { width: 100%; height: 180px; object-fit: cover; }
.grid-item h3 {
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 1.25rem 0.5rem;
}
.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* === FOOTER === */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.4;
}

footer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image-col { position: static; }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before { display: none; }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
  header .header-inner { position: relative; }
  .nav-toggle { display: flex; }

  nav {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy-mid);
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav.open { max-height: 600px; }

  nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }

  nav ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-size: 0.85rem;
  }

  .hero { min-height: 85vh; }
  .hero-content h2 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { margin-top: 3rem; }

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .contact-info { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 { animation-delay: 0.15s; }
.fade-up-delay-2 { animation-delay: 0.3s; }
.fade-up-delay-3 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; }
  * { transition-duration: 0.01ms !important; }
}
