@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

:root {
  --ochre: #c8812a;
  --ochre-light: #e5a24d;
  --deep: #1a1208;
  --earth: #3d2b0f;
  --cream: #faf5ec;
  --warm-white: #fdf9f2;
  --text: #2c1e08;
  --muted: #7a6248;
  --accent: #e8c87a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(26, 18, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 129, 42, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav.scrolled {
  padding: 0.8rem 5%;
  background: rgba(26, 18, 8, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.nav-logo .wordmark {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo .sub {
  font-size: 0.6rem;
  color: var(--ochre-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(250, 245, 236, 0.75);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ochre-light);
}

.nav-cta {
  background: var(--ochre);
  color: var(--deep) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--ochre-light) !important;
}

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

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(200, 129, 42, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(200, 129, 42, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #1a1208 0%, #2c1a06 50%, #1a1208 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--ochre) 0,
    var(--ochre) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--ochre-light);
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--ochre-light);
  display: block;
}
.hero-text .tagline {
  font-size: 1.05rem;
  color: rgba(250, 245, 236, 0.6);
  line-height: 1.7;
  margin: 1.5rem 0 2.5rem;
  max-width: 420px;
}

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

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--ochre);
  color: var(--deep);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ochre);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(200, 129, 42, 0.2);
}
.btn-primary:hover {
  background: transparent;
  color: var(--ochre-light);
  border-color: var(--ochre-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 129, 42, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(250, 245, 236, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.btn-outline:hover {
  border-color: var(--ochre-light);
  color: var(--ochre-light);
  background: rgba(200, 129, 42, 0.05);
  transform: translateY(-2px);
}
.btn-outline:active {
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(200, 129, 42, 0.08);
  border: 1px solid rgba(200, 129, 42, 0.2);
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card:hover {
  background: rgba(200, 129, 42, 0.12);
  border-color: rgba(200, 129, 42, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 129, 42, 0.15);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--ochre);
  transition: width 0.3s ease;
}
.stat-card:hover::before {
  width: 5px;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ochre-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(250, 245, 236, 0.5);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 245, 236, 0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-cue span {
  width: 1px;
  height: 40px;
  background: rgba(200, 129, 42, 0.4);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── SECTIONS ── */
section {
  padding: 6rem 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}

h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 1.5rem;
}
h2.section-title em {
  font-style: italic;
  color: var(--ochre);
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}

/* ── ABOUT STRIP ── */
#about-strip {
  background: var(--deep);
  padding: 5rem 5%;
}
#about-strip .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
#about-strip h2.section-title {
  color: var(--cream);
}
#about-strip .section-body {
  color: rgba(250, 245, 236, 0.6);
}
#about-strip .section-label {
  color: var(--ochre-light);
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(200, 129, 42, 0.07);
  border: 1px solid rgba(200, 129, 42, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pillar:hover {
  background: rgba(200, 129, 42, 0.12);
  border-color: rgba(200, 129, 42, 0.25);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(200, 129, 42, 0.1);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pillar-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.pillar-text p {
  font-size: 0.82rem;
  color: rgba(250, 245, 236, 0.5);
  line-height: 1.6;
}

/* ── JDTS ── */
#jdts {
  background: var(--cream);
}
#jdts .section-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.jdts-visual {
  position: relative;
}
.jdts-img-frame {
  background: linear-gradient(135deg, var(--ochre) 0%, var(--earth) 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  font-family: "Playfair Display", serif;
  position: relative;
  overflow: hidden;
}
.jdts-img-frame::after {
  content: "JDTS";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.02em;
}
.year-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--deep);
  color: var(--ochre-light);
  padding: 0.8rem 1.2rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  border: 1px solid rgba(200, 129, 42, 0.3);
}

.jdts-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.timeline-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--ochre);
  margin-top: 0.35rem;
}
.timeline-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
}
.timeline-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.2rem;
}

/* ── GALLERY ── */
#gallery {
  background: var(--warm-white);
}

/* Year filter tabs */
.gallery-year-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.year-tab {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid rgba(200, 129, 42, 0.2);
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.year-tab:hover {
  background: rgba(200, 129, 42, 0.1);
  border-color: var(--ochre);
  color: var(--deep);
}

.year-tab.active {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 129, 42, 0.3);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--earth);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Lazy loaded images */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image.loaded {
  opacity: 1;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

/* Gallery overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 8, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--cream);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-year-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--ochre);
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.gallery-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--ochre-light);
  opacity: 0.9;
  transition: all 0.3s;
  pointer-events: none;
}

.gallery-item:hover .gallery-video-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Lightbox styles */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lightbox-image-container,
.lightbox-video-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 48px;
  height: 48px;
  background: rgba(200, 129, 42, 0.2);
  border: 2px solid var(--ochre);
  border-radius: 4px;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--ochre);
  color: var(--deep);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(200, 129, 42, 0.2);
  border: 2px solid var(--ochre);
  border-radius: 4px;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--ochre);
  color: var(--deep);
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

.lightbox-info {
  background: rgba(26, 18, 8, 0.5);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(200, 129, 42, 0.3);
}

.lightbox-year {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--ochre);
  color: var(--deep);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lightbox-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--ochre-light);
  margin-bottom: 0.5rem;
}

.lightbox-description {
  color: rgba(250, 245, 236, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.lightbox-counter {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: right;
}

.gallery-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Placeholder fallback */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3d2b0f, #6b4a1e);
}

/* ── IMPACT ── */
#impact {
  background: var(--ochre);
}
#impact .section-inner {
  text-align: center;
}
#impact h2.section-title {
  color: var(--deep);
}
#impact .section-body {
  color: rgba(26, 18, 8, 0.7);
  margin: 0 auto;
}
#impact .section-label {
  color: var(--deep);
  opacity: 0.6;
  justify-content: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.1rem;
  margin-top: 3rem;
  background: rgba(26, 18, 8, 0.1);
}
.impact-item {
  background: var(--ochre);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.impact-item:hover {
  background: var(--ochre-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 129, 42, 0.3);
}
.impact-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--deep);
  line-height: 1;
}
.impact-desc {
  font-size: 0.8rem;
  color: rgba(26, 18, 8, 0.65);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ── CONTACT ── */
#contact {
  background: var(--cream);
}
#contact .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ochre-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.contact-detail:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 16px rgba(200, 129, 42, 0.3);
}
.contact-detail h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.6;
}
.contact-detail a:hover {
  color: var(--ochre);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 18, 8, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--deep);
  color: var(--ochre-light);
  border-color: var(--deep);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
}
input,
textarea,
select {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(26, 18, 8, 0.15);
  background: white;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(200, 129, 42, 0.1);
  transform: translateY(-1px);
}
textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  padding: 3rem 5% 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 129, 42, 0.15);
}
.footer-brand .wordmark {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(250, 245, 236, 0.4);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre-light);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(250, 245, 236, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--ochre-light);
}
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250, 245, 236, 0.25);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: var(--deep);
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(200, 129, 42, 0.12) 0%,
    transparent 60%
  );
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--ochre) 0,
    var(--ochre) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
}
.page-hero h1 em {
  color: var(--ochre-light);
  font-style: italic;
}
.page-hero .breadcrumb {
  font-size: 0.75rem;
  color: rgba(250, 245, 236, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a {
  color: var(--ochre-light);
  text-decoration: none;
}

/* ── ABOUT PAGE ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding-top: 2rem;
}
.about-lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.about-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.values-list li::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--ochre);
  flex-shrink: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.team-card {
  background: var(--cream);
  padding: 1.5rem;
  border-top: 3px solid var(--ochre);
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--earth);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--ochre-light);
  font-weight: 700;
}
.team-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep);
}
.team-card p {
  font-size: 0.78rem;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  #about-strip .section-inner,
  #jdts .section-inner {
    gap: 3.5rem;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 18, 8, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    z-index: 99;
    animation: fadeIn 0.3s ease;
  }

  nav {
    padding: 1rem 4%;
  }

  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 8rem 4% 4rem;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-text .tagline {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-card {
    flex: 1;
    min-width: calc(50% - 0.5rem);
    padding: 1.2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Sections */
  section {
    padding: 4rem 4%;
  }

  .section-inner {
    padding: 0;
  }

  h2.section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  /* Layouts */
  #about-strip .section-inner,
  #jdts .section-inner,
  #contact .section-inner,
  .footer-inner,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #about-strip {
    padding: 4rem 4%;
  }

  .mission-pillars {
    gap: 1rem;
  }

  .pillar {
    padding: 1rem;
  }

  /* JDTS Section */
  #jdts .section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .jdts-visual {
    order: 2;
  }

  .jdts-img-frame {
    aspect-ratio: 16/9;
  }

  .year-badge {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.5rem;
  }

  .gallery-item:first-child {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-item {
    min-height: 200px;
  }

  /* Impact */
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .impact-item {
    padding: 2rem 1rem;
  }

  .impact-num {
    font-size: 2.2rem;
  }

  /* Contact */
  #contact .section-inner {
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    gap: 1.5rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  /* Page Hero */
  .page-hero {
    min-height: 30vh;
    padding: 7rem 4% 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  /* About Page */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Mission/Vision boxes */
  section [style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column;
  }

  /* Three column grids */
  section [style*="grid-template-columns:repeat(3,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero-content {
    padding: 7rem 5% 3rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .stat-card {
    min-width: 100%;
  }

  section {
    padding: 3rem 5%;
  }

  .section-body {
    font-size: 0.95rem;
  }

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

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
