/* ===== BEM UNM — styles.css ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --orange: #E77817;
  --orange-light: #f59d4b;
  --orange-dark: #c5620e;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --gray-100: #ededed;
  --gray-200: #d4d4d4;
  --gray-400: #8a8a8a;
  --gray-600: #555555;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  background: var(--black);
  color: var(--white);
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  transition: min-height 0.4s;
}

.navbar.scrolled .container {
  min-height: 52px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  align-self: stretch;
  padding: 0 1.1rem 0 0.75rem;
  background: var(--white);
  color: var(--black);
  border-right: 4px solid var(--orange);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  padding: 3px;
  border-radius: 0;
  background: var(--white);
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.nav-logo .accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  color: var(--gray-200);
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: background 0.3s, transform 0.3s;
}

.nav-links a.nav-cta:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-links a.nav-cta::after { 
  display: none; 
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 0;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
  background: url('assets/hero-dekstop.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 0;
  background: radial-gradient(circle, rgba(231,120,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--orange);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-200);
  max-width: 600px;
  margin: 0 0 2.5rem 0;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231,120,23,0.25);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-img-wrapper:hover img { transform: scale(1.04); }

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.25) 100%);
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: 0;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  animation: float-y 4s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.hero-float-card .info .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--black);
}

.hero-float-card .info span {
  font-size: 0.7rem;
  color: var(--gray-400);
}

/* ---------- Marquee ---------- */
.marquee-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track span::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--orange);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Rilis Section ---------- */
.rilis-section {
  padding: 8rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.section-header .title-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

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

.rilis-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rilis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.rilis-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.rilis-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.rilis-card:hover .rilis-img img {
  transform: scale(1.05);
}

.rilis-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 0;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rilis-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rilis-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.rilis-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--black);
  transition: color 0.3s;
}

.rilis-card:hover .rilis-content h3 {
  color: var(--orange);
}

.rilis-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.read-more {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more i {
  transition: transform 0.3s;
}

.rilis-card:hover .read-more i {
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .rilis-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .section-header .btn-outline {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

/* ---------- Sambutan ---------- */
.sambutan {
  padding: 8rem 0;
  background: var(--white);
}

.sambutan-card {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.sambutan-img-wrapper {
  flex: 0 0 320px;
  max-width: 100%;
  position: relative;
  aspect-ratio: 4/5;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.sambutan-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.sambutan-content {
  flex: 1;
}

.sambutan-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.sambutan-content p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.1rem;
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
}

@media (max-width: 900px) {
  .sambutan-card {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .sambutan-img-wrapper {
    margin: 0 auto;
  }

  .sambutan-content .section-label {
    justify-content: center;
  }

  .sambutan-content p {
    border-left: none;
    padding-left: 0;
  }
}

/* ---------- Struktur Pengurus ---------- */
.struktur-section {
  padding: 7rem 0 8rem;
  background: #090916;
  color: var(--white);
}

.struktur-section .section-header {
  margin-bottom: 3rem;
}

.struktur-section .section-header .title-wrap h2 {
  color: var(--white);
}

.struktur-organigram {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.struktur-group {
  position: relative;
}

.struktur-group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.65rem;
}

.struktur-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.struktur-group-title span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.struktur-group-title span::before {
  content: '';
  width: 4px;
  height: 24px;
  border-radius: 0;
  background: var(--orange);
}

.struktur-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 220px));
  justify-content: center;
  gap: 1.5rem;
}

.struktur-divider {
  width: 1px;
  height: 40px;
  margin: 0 auto 0.35rem;
  background: linear-gradient(180deg, var(--orange), rgba(231,120,23,0));
}

.pengurus-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--black);
  aspect-ratio: 4/5.25;
  min-height: 270px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  isolation: isolate;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.pengurus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.4);
}

.pengurus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease-out-expo), filter 0.7s var(--ease-out-expo);
}

.pengurus-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.pengurus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0) 42%, rgba(10,10,10,0.86) 100%),
    linear-gradient(135deg, rgba(231,120,23,0.14), transparent 42%);
}

.pengurus-overlay {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.85rem;
  z-index: 2;
  color: var(--white);
}

.pengurus-overlay h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.pengurus-overlay p {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.pengurus-overlay p span {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 0;
  background: var(--orange);
}

@media (max-width: 640px) {
  .struktur-section {
    padding: 5rem 0 6rem;
  }

  .struktur-section .section-header {
    margin-bottom: 2rem;
  }

  .struktur-cards {
    grid-template-columns: minmax(190px, 240px);
  }

  .struktur-divider {
    height: 30px;
  }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 7rem 0;
}

.cta-inner {
  background: var(--black);
  border-radius: 0;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(231,120,23,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-inner p {
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  position: relative;
}

.cta-inner .btn-primary { position: relative; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: url('assets/hero-dekstop.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85); /* dark overlay */
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-main > img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  flex: 0 0 92px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-logo .accent { color: var(--orange); }

.footer-brand p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 380px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.7rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Nav Overlay ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-logo {
    font-size: 1.15rem;
    gap: 0.55rem;
    padding: 0 0.85rem 0 0.55rem;
  }

  .nav-logo-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    padding: 3px;
  }

  .hero {
    background-image: url('assets/hero.jpg');
  }

  .footer {
    background-image: url('assets/hero.jpg');
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -16px; }
  @keyframes float-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
  }

  .about .container { grid-template-columns: 1fr; gap: 3rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 3.5rem 1.5rem; }

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

  .footer-brand-main > img {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .footer-brand .footer-logo {
    font-size: 1.75rem;
  }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }

  .footer-brand-main {
    align-items: flex-start;
  }
}
