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

:root {
  --green: #245d51;
  --green-dark: #1a4a3f;
  --green-light: #286054;
  --copper: #cb8461;
  --copper-dark: #b97e5a;
  --cream: #ede5d7;
  --dark: #131309;
  --gray: #f8f8f8;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #ffffff;
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.orange { color: var(--copper); }
.green-text { color: var(--green); }
.italic { font-style: italic; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(26, 74, 63, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 10px 60px;
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img { height: 52px; width: auto; display: block; }
.logo-img-nav { /* no filter — logo2-nobg.png is already cream/correct for dark bg */ }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper); }

.nav-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

.btn-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  transition: color 0.2s;
}
.btn-login:hover { color: var(--copper); }

.btn-register {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  background: var(--copper);
  padding: 10px 24px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-register:hover { background: var(--copper-dark); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--green);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 110px 60px 60px;
  gap: 40px;
}

.hero-text {
  flex: 0 0 480px;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--copper-dark);
}

.hero-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 400px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-hero:hover { background: var(--copper-dark); }

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 400px;
}

.hero-calligraphy {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  font-size: 200px;
  color: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', serif;
  user-select: none;
  pointer-events: none;
}

.hero-student {
  height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ===================== BENEFITS ===================== */
.benefits {
  padding: 80px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.benefits-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.benefits-left p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.benefits-divider {
  width: 80px;
  height: 3px;
  background: var(--dark);
  margin-top: 32px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.benefit-card { display: flex; flex-direction: column; gap: 8px; }

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.benefit-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.benefit-more {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--copper);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-more:hover { background: var(--copper-dark); }

/* ===================== BANNER SECTION ===================== */
.banner-section {
  background: var(--cream);
  padding: 60px 60px 0;
  position: relative;
  overflow: hidden;
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 260px;
}

.banner-text h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.banner-image {
  flex-shrink: 0;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
}

.banner-image img {
  height: 320px;
  width: auto;
  object-fit: contain;
  display: block;
}

.btn-subscribe-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-subscribe-green:hover { background: var(--green-dark); }

/* ===================== COURSES ===================== */
.courses {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.courses::before,
.courses::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 6px;
}
.courses::before { background: rgba(255,255,255,0.08); top: 40px; left: 60px; transform: rotate(20deg); }
.courses::after { background: var(--copper); width: 20px; height: 20px; border-radius: 50%; top: 50px; right: 120px; opacity: 0.7; }

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

.courses .section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.courses .section-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
  margin: 0 auto;
}

.courses-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.courses-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  flex: 1;
  transition: transform 0.4s ease;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.course-thumb {
  position: relative;
  height: 200px;
  background: #e0d8cc;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-thumb.no-img {
  background: linear-gradient(135deg, #c5bdb4 0%, #d8d0c5 100%);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green);
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }

.course-info { padding: 20px; }

.course-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.course-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.instructor, .participants {
  display: flex;
  align-items: center;
  gap: 8px;
}

.instructor-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a87c, #9e7a5a);
  flex-shrink: 0;
}

.instructor .name, .participants .name { font-size: 13px; font-weight: 600; color: var(--dark); display: block; }
.instructor .role, .participants .role { font-size: 11px; color: var(--text-light); display: block; }

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-cart:hover { background: var(--green-dark); }

.price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.price .period { font-size: 11px; font-weight: 400; color: var(--text-light); }

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: rgba(255,255,255,0.25); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

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

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

/* ===================== SKILL SHOOT ===================== */
.skillshoot {
  padding: 80px 0;
  background: var(--white);
}

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

.skillshoot-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
}

.green-circle {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--green);
  bottom: 0;
  left: 0;
  z-index: 0;
}

.skillshoot-image img {
  height: 480px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.skill-logo-badge {
  position: absolute;
  bottom: 40px;
  left: 20px;
  width: 90px;
  height: 90px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 8px;
  overflow: hidden;
}
.skill-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.skillshoot-content h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.underline-copper {
  width: 80px;
  height: 3px;
  background: var(--copper);
  margin-bottom: 24px;
}

.skillshoot-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.stat-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  padding: 60px 0;
}

.cta-inner {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
}
.cta-dot.top-left { top: 24px; left: 24px; }
.cta-dot.bottom-right { bottom: 24px; right: 24px; opacity: 0.4; }

.cta-text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.cta-text h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-join {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-join:hover { background: var(--copper-dark); }

/* ===================== VIDEO SECTION ===================== */
.video-section {
  display: flex;
  min-height: 400px;
}

.video-left {
  flex: 1;
  background: var(--copper);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-calligraphy {
  position: absolute;
  font-size: 180px;
  color: rgba(255,255,255,0.1);
  font-weight: 700;
  line-height: 1;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.video-calligraphy.sm {
  font-size: 100px;
  right: 0;
  left: auto;
  top: auto;
  bottom: 0;
  transform: none;
}

.video-left h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.video-attribution {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.dash { color: var(--white); font-size: 20px; margin-top: 4px; }

.video-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.video-name-ar {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.video-role {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.video-right {
  flex: 1.2;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.video-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.video-play-btn:hover { background: rgba(255,255,255,0.25); }

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 80px 0 100px;
  background: #f5f5f5;
  position: relative;
}

.testimonials-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.testimonials .section-header h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.testimonials .section-header p {
  font-size: 14px;
  color: var(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.testimonial-card.featured {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-16px);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 4px;
}
.testimonial-avatar.purple { background: linear-gradient(135deg, #9b6fd6, #7c4db4); }
.testimonial-avatar.yellow { background: linear-gradient(135deg, #f5d060, #e8b84b); }
.testimonial-avatar.blue { background: linear-gradient(135deg, #7ca8e0, #5a85c4); }

.stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }

.testimonial-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

.featured-bar {
  width: 60px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-top: 8px;
}

/* ===================== SUBSCRIBE ===================== */
.subscribe-section {
  position: relative;
}

.subscribe-bg {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.subscribe-shapes { position: absolute; inset: 0; pointer-events: none; }

.sub-calligraphy {
  position: absolute;
  font-size: 200px;
  color: rgba(255,255,255,0.04);
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
}
.sub-calligraphy.left { left: -20px; }
.sub-calligraphy.right { right: -20px; }

.sub-shape { position: absolute; }
.diamond {
  width: 28px; height: 28px;
  background: var(--copper);
  transform: rotate(45deg);
}
.copper-shape { top: 30px; left: 80px; opacity: 0.8; }
.copper-shape.sm { width: 16px; height: 16px; top: 60px; left: 120px; opacity: 0.5; }
.circle-outline {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(203, 132, 97, 0.5);
  top: 30px;
  right: 120px;
}

.subscribe-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.subscribe-content h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.subscribe-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
}

.subscribe-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--white);
}

.subscribe-form input::placeholder { color: rgba(255,255,255,0.5); }

.subscribe-form button {
  background: var(--copper);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: var(--copper-dark); }

/* ===================== FOOTER ===================== */
.footer {
  padding: 24px 0;
  background: var(--white);
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  background: #fff;
  letter-spacing: 0.3px;
  color: var(--text-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.payment-icon.mastercard {
  background: linear-gradient(135deg, #eb001b 0%, #f79e1b 100%);
  color: white;
  border-color: transparent;
  letter-spacing: 0.5px;
}
.payment-icon.paypal { color: #1a1f71; border-color: #c0c7ff; }
.payment-icon.gpay { color: #5f6368; font-weight: 700; }
.payment-icon.stripe { color: #635bff; border-color: #b0acff; }
.payment-icon.applepay { background: #000; color: #fff; border-color: transparent; }
.payment-icon.skrill { color: #862165; border-color: #d999c3; }

.footer-copy {
  font-size: 13px;
  color: var(--text-light);
}

.footer-copy a { color: var(--green); font-weight: 600; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .navbar { padding: 16px 24px; }
  .hero-content { padding: 120px 24px 40px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .skillshoot-grid { grid-template-columns: 1fr; }
  .skillshoot-image { height: 300px; }
  .courses-track { overflow-x: auto; }
  .course-card { flex: 0 0 280px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: block; }
  .hero-content { flex-direction: column; padding: 100px 24px 40px; }
  .hero-text { flex: none; }
  .hero-student { height: 260px; }
  .banner-inner { flex-direction: column; text-align: center; }
  .banner-image { margin: 0 auto; }
  .banner-image img { height: 200px; }
  .video-section { flex-direction: column; }
  .video-left { padding: 40px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .cta-buttons { justify-content: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .benefit-cards { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===================== NAV ACTIVE LINK ===================== */
.nav-links a.active { color: var(--copper); }

/* ===================== NAV MOBILE ===================== */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--green-dark);
  padding: 80px 24px 40px;
  z-index: 200;
  gap: 20px;
}
