/* ──────────────────────────────────────────
   VARIABLES & RESET
────────────────────────────────────────── */
:root {
  --red:       #CC0000;
  --red-dark:  #A00000;
  --red-deep:  #7A0000;
  --gold:      #F5C400;
  --gold-light:#FFD93D;
  --white:     #FFFFFF;
  --off-white: #F9F7F2;
  --dark:      #1A1A1A;
  --gray:      #444444;
  --light-gray:#F0EEEA;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

.section { padding: 100px 0; }

/* ──────────────────────────────────────────
   SECTION HEADERS
────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold); background: rgba(245,196,0,0.15); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

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

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,0.4); }
.btn-primary.full { width: 100%; text-align: center; border: none; font-size: 0.95rem; padding: 16px; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-nav {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all var(--transition);
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ──────────────────────────────────────────
   SCROLL ANIMATIONS
────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal         { transform: translateY(40px); }
.reveal-left    { transform: translateX(-50px); }
.reveal-right   { transform: translateX(50px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* stagger children */
.pillars-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pillars-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.pillars-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.pillars-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.pillars-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.timeline-item:nth-child(2) .reveal { transition-delay: 0.1s; }
.timeline-item:nth-child(3) .reveal { transition-delay: 0.2s; }

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,0,0,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:not(.btn-nav):hover { color: var(--white); }
.nav-links a:not(.btn-nav):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(120,0,0,0.88) 0%,
    rgba(80,0,0,0.75) 40%,
    rgba(20,10,0,0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation-delay: 0.2s;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation-delay: 0.3s;
}
.hero-title .line2 {
  color: var(--gold);
  display: block;
}
.hero-title .line1 { display: block; }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  animation-delay: 0.4s;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation-delay: 0.5s;
}

/* hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 1.8s ease-in-out infinite;
}
.hero-scroll-indicator p {
  font-family: var(--font-head);
  font-size: 0.6rem;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* hero reveal animations */
.hero-content .reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-content .reveal:nth-child(1) { animation-delay: 0.4s; }
.hero-content .reveal:nth-child(2) { animation-delay: 0.6s; }
.hero-content .reveal:nth-child(3) { animation-delay: 0.8s; }
.hero-content .hero-cta.reveal     { animation-delay: 1s; }

/* ──────────────────────────────────────────
   TICKER
────────────────────────────────────────── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
}
.ticker .dot { color: var(--gold); padding: 0 4px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 3px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
}
.accent-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}
.accent-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  max-width: 120px;
  display: block;
  line-height: 1.3;
  margin-top: 4px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1.4;
}

/* ──────────────────────────────────────────
   VISION
────────────────────────────────────────── */
.vision {
  position: relative;
  background: var(--red-deep);
  overflow: hidden;
}
.vision-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(204,0,0,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,196,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.vision .section-title.light { color: var(--white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all var(--transition);
  cursor: default;
}
.pillar:hover {
  background: rgba(255,255,255,0.11);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* ──────────────────────────────────────────
   EXPERIENCE / TIMELINE
────────────────────────────────────────── */
.experience { background: var(--off-white); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}
.timeline-item {
  position: relative;
  padding-left: 68px;
  margin-bottom: 44px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.15);
}
.timeline-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  transition: all var(--transition);
}
.timeline-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--gold);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,0,0,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.timeline-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.tl-org {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.timeline-card p:last-child {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ──────────────────────────────────────────
   EDUCATION
────────────────────────────────────────── */
.education { background: var(--white); }

.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.edu-card {
  text-align: center;
  padding: 48px 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.07);
  background: var(--off-white);
  transition: all var(--transition);
}
.edu-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.edu-icon { font-size: 2.5rem; margin-bottom: 20px; }
.edu-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.edu-degree {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.edu-card p { font-size: 0.88rem; line-height: 1.7; color: var(--gray); }

/* ──────────────────────────────────────────
   GALLERY
────────────────────────────────────────── */
.gallery { background: var(--light-gray); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(120,0,0,0.5), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gi-1 { aspect-ratio: 1; }
.gi-2 { aspect-ratio: 1; }
.gi-3 { aspect-ratio: 1; }
.gi-4 { aspect-ratio: 1; }
.gi-5 { aspect-ratio: 1; }
.gi-6 { aspect-ratio: 1; }

/* ──────────────────────────────────────────
   QUOTE BANNER
────────────────────────────────────────── */
.quote-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: Georgia, serif;
  font-size: 20rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
blockquote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
}
blockquote p,
blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
}
.quote-author {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  font-style: normal;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}
.ci-icon { font-size: 1.2rem; flex-shrink: 0; }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}
.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tag {
  display: block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; gap: 60px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid     { grid-template-columns: 1fr; }
  .about-stats  { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,0,0,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .timeline::before { left: 12px; }
  .timeline-item    { padding-left: 48px; }
  .timeline-dot     { left: 4px; }

  .hero-title { font-size: clamp(2.4rem, 11vw, 4rem); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats  { grid-template-columns: 1fr; }
  .hero-cta     { flex-direction: column; }
  .contact-form-wrap { padding: 28px 20px; }
}
