/* ============================================================
   OIPN TRAVELS — Global Design System
   Palette:
     Deep Navy    #0A1628
     Ocean Blue   #1A4B8C
     Horizon Gold #D4A843
     Sky Mist     #E8F4FD
     Coral Warm   #E8622A
     Off White    #F9F7F4
   ============================================================ */

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

:root {
  --navy: #0A1628;
  --ocean: #1A4B8C;
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --sky: #E8F4FD;
  --coral: #E8622A;
  --off-white: #F9F7F4;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: rgba(26,75,140,0.12);
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 24px 64px rgba(10,22,40,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { line-height: 1.75; color: var(--text-mid); }

a { color: inherit; text-decoration: none; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}
.navbar__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em;
}
.navbar__logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--white);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.navbar__nav {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.navbar__nav a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px; border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.navbar__nav a:hover, .navbar__nav a.active {
  color: var(--white);
  background: rgba(212,168,67,0.18);
}
.navbar__cta {
  background: linear-gradient(135deg, var(--gold), #C4941F) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}
.navbar__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,67,0.4) !important; }

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

/* ── MOBILE NAV ── */
.navbar__mobile {
  position: fixed; top: 76px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 40px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar__mobile.open { transform: translateY(0); }
.navbar__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.navbar__mobile a {
  display: block; padding: 12px 16px;
  color: rgba(255,255,255,0.85); font-weight: 500;
  border-radius: 8px; transition: all var(--transition);
}
.navbar__mobile a:hover { background: rgba(212,168,67,0.15); color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), #C4941F);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(212,168,67,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,168,67,0.5); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--dark {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--dark:hover { background: var(--ocean); transform: translateY(-2px); }

/* ── SECTION HEADERS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--gold);
}

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
}
.footer__brand { max-width: 300px; }
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.footer__tagline { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.footer__social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer__heading {
  font-family: 'Inter', sans-serif; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; margin-bottom: 12px; color: rgba(255,255,255,0.65);
}
.footer__contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
}

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

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 480px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  position: relative; overflow: hidden; padding-top: 76px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero__content { position: relative; z-index: 2; padding: 80px 0; }
.page-hero__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.page-hero__eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 24px; list-style: none;
}
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .active { color: var(--gold); }

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-sky { background: var(--sky); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.fw-600 { font-weight: 600; }
.text-center { text-align: center; }
.section-pad { padding: 100px 0; }
.section-pad--lg { padding: 120px 0; }
.section-pad--sm { padding: 64px 0; }

/* ── STAT COUNTER ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item {
  background: var(--white); padding: 40px 32px; text-align: center;
}
.stat-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700; color: var(--navy);
  line-height: 1;
}
.stat-item__label { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; letter-spacing: 0.04em; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.03em; }
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px rgba(26,75,140,0.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,22,40,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); object-fit: contain;
  transform: scale(0.92); transition: transform 0.3s;
}
.lightbox-overlay.active .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: fixed; top: 24px; right: 32px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  transition: all 0.3s;
}
.lightbox-close:hover { background: var(--coral); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  transition: all 0.3s;
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 0.9rem; text-align: center;
  background: rgba(0,0,0,0.4); padding: 8px 20px; border-radius: 50px;
}

/* ── TEAM POPUP ── */
.team-popup-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,22,40,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 24px;
}
.team-popup-overlay.active { opacity: 1; pointer-events: all; }
.team-popup {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: scale(0.9) translateY(20px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-lg);
}
.team-popup-overlay.active .team-popup { transform: scale(1) translateY(0); }
.team-popup__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  padding: 40px; display: flex; align-items: center; gap: 24px;
}
.team-popup__img {
  width: 96px; height: 96px; border-radius: 50%;
  border: 3px solid var(--gold); object-fit: cover; flex-shrink: 0;
}
.team-popup__name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); font-weight: 600; }
.team-popup__title { color: var(--gold); font-size: 0.88rem; margin-top: 4px; }
.team-popup__body { padding: 32px 40px; }
.team-popup__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15); border: none;
  border-radius: 50%; color: var(--white); font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.team-popup__close:hover { background: var(--coral); }
.team-popup__header { position: relative; }
.team-popup__detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.team-popup__detail i { color: var(--ocean); margin-top: 2px; flex-shrink: 0; width: 16px; }
.team-popup__detail p { font-size: 0.9rem; color: var(--text-mid); }
.team-popup__skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.team-popup__skill {
  background: var(--sky); color: var(--ocean);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(26,75,140,0.15);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; left: 28px;
  font-family: 'Cormorant Garamond', serif; font-size: 8rem;
  line-height: 1; color: var(--gold); opacity: 0.12;
  pointer-events: none;
}
.testimonial-card__text {
  font-size: 1rem; color: var(--text-mid); line-height: 1.8;
  font-style: italic; margin-bottom: 28px; position: relative; z-index: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 16px; }
.testimonial-card__img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.testimonial-card__name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testimonial-card__role { font-size: 0.82rem; color: var(--text-light); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }

/* ── CALENDAR ── */
.calendar-grid {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.calendar-header {
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; color: var(--white);
}
.calendar-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); }
.calendar-nav-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.calendar-nav-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.calendar-days-header {
  display: grid; grid-template-columns: repeat(7,1fr);
  background: var(--sky); border-bottom: 1px solid var(--border);
}
.calendar-days-header span {
  text-align: center; padding: 12px 0;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--ocean); text-transform: uppercase;
}
.calendar-body { display: grid; grid-template-columns: repeat(7,1fr); }
.calendar-day {
  min-height: 72px; padding: 10px; border: 1px solid var(--border);
  position: relative; cursor: pointer; transition: background 0.2s;
  font-size: 0.85rem; color: var(--text-mid);
}
.calendar-day:hover { background: var(--sky); }
.calendar-day.other-month { color: var(--text-light); background: #FAFAFA; }
.calendar-day.today { background: rgba(212,168,67,0.08); }
.calendar-day.today .day-num { background: var(--gold); color: var(--navy); }
.day-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem; margin-bottom: 4px;
}
.event-dot {
  font-size: 0.68rem; color: var(--white); background: var(--ocean);
  border-radius: 4px; padding: 2px 6px; margin-bottom: 2px;
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.event-dot.travel { background: var(--coral); }
.event-dot.recruitment { background: var(--ocean); }
.event-dot.info { background: #7B5EA7; }

/* ── RESOURCES ── */
.resource-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: all var(--transition); border: 1px solid var(--border);
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--ocean); }
.resource-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), rgba(26,75,140,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0; color: var(--ocean);
}
.resource-card h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.resource-card p { font-size: 0.85rem; color: var(--text-light); }
.resource-card a { font-size: 0.82rem; color: var(--ocean); font-weight: 600; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; }
.resource-card a:hover { color: var(--gold); }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card__img { width: 100%; height: 220px; object-fit: cover; }
.service-card__body { padding: 28px; }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #C4941F);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); margin-bottom: 16px;
}
.service-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; }
.service-card__tag {
  display: inline-block; background: var(--sky);
  color: var(--ocean); font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; aspect-ratio: 1;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; display: flex;
  align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { color: var(--white); font-size: 0.88rem; font-weight: 600; }
.gallery-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.9rem; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ── PROGRESS / TAG ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sky); color: var(--ocean);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid rgba(26,75,140,0.12);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar { padding: 0 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .container--wide { padding: 0 20px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
