@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #5594CF;
  --yellow: #FFCC33;
  --red: #C92127;
  --bg: #09090b;
  --bg2: #111113;
  --border: rgba(255,255,255,0.1);
  --text-muted: rgba(255,255,255,0.6);
  --text-dim: rgba(255,255,255,0.4);
}

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

/* Hide any nav injected by the server that isn't ours. */
nav:not(#acurate-nav) { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #fff;
  line-height: 1.6;
}

.font-display { font-family: 'Oswald', sans-serif; }

img { display: block; max-width: 100%; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
#acurate-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo span.blue  { color: var(--primary); }
.nav-logo span.white { color: #fff; }
.nav-logo svg { color: var(--primary); flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.55rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--red) !important; color: #fff !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(9,9,11,0.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.55) 50%, transparent 100%),
              linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(201,33,39,0.5);
  background: rgba(201,33,39,0.15);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-badge svg { color: var(--red); flex-shrink: 0; }

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero h1 .blue   { color: var(--primary); }
.hero h1 .yellow { color: var(--yellow); }

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--red); color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-yellow {
  background: var(--yellow);
  color: #000;
}
.btn-yellow:hover { background: #fff; color: #000; }

.btn-full { width: 100%; text-align: center; padding: 1rem; }

/* ── STATS ── */
.stats {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(85,148,207,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-value span { color: var(--primary); }

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── MISSION ── */
.mission {
  padding: 7rem 0;
  background: var(--bg2);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) { .mission-grid { grid-template-columns: 1fr 1fr; } }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title .blue   { color: var(--primary); }
.section-title .yellow { color: var(--yellow); }
.section-title .red    { color: var(--red); }

.mission-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(85,148,207,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { color: var(--primary); }

.mission-img-wrap {
  position: relative;
}

.mission-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(85,148,207,0.2);
  transform: translate(12px, 12px);
  border-radius: 2px;
}

.mission-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
  filter: grayscale(1);
  transition: filter 0.7s;
}

.mission-img-wrap:hover img { filter: grayscale(0); }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.cta-band-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.cta-band p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ── PAGE HEADER ── */
.page-header {
  padding-top: 9rem;
  padding-bottom: 4rem;
}

.page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* ── EXPEDITIONS ── */
.expeditions-section { padding: 0 0 6rem; background: var(--bg2); }

.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; } }

.exp-card {
  background: #000;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.exp-card:hover { border-color: rgba(85,148,207,0.4); }

.exp-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.exp-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.exp-danger {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: rgba(201,33,39,0.9);
  color: #fff;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.exp-body { padding: 2rem; }

.exp-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.exp-card:hover .exp-body h3 { color: var(--primary); }

.exp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.exp-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.exp-meta-item svg { color: var(--yellow); flex-shrink: 0; }
.exp-meta-item .wind svg { color: var(--red); }

.exp-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── TEAM ── */
.team-section { padding: 0 0 6rem; background: var(--bg); }

.team-intro { text-align: center; max-width: 680px; margin: 0 auto 5rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;
}

.team-card { }

.team-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s;
}

.team-card:hover .team-photo img { filter: grayscale(0); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  gap: 1rem;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-overlay a {
  color: #fff;
  transition: color 0.2s;
}
.team-overlay a:hover { color: var(--primary); }

.team-info { text-align: center; }

.team-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── GALLERY ── */
.gallery-section { padding: 0 0 6rem; background: var(--bg2); }

.gallery-grid {
  columns: 1;
  column-gap: 1.25rem;
}

@media (min-width: 600px)  { .gallery-grid { columns: 2; } }
@media (min-width: 1000px) { .gallery-grid { columns: 3; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(85,148,207,0.2);
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: overlay;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* ── CONTACT ── */
.contact-section { padding: 0 0 6rem; background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid;
}

.contact-icon.blue  { background: rgba(85,148,207,0.1); border-color: rgba(85,148,207,0.3); }
.contact-icon.red   { background: rgba(201,33,39,0.1);  border-color: rgba(201,33,39,0.3); }
.contact-icon svg   { width: 20px; height: 20px; }
.contact-icon.blue svg { color: var(--primary); }
.contact-icon.red  svg { color: var(--red); }

.contact-info-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-info-text p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.contact-info-text .alert-note { color: var(--red); font-size: 0.75rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.1em; }

.contact-form-wrap {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
}

.contact-form-wrap h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group textarea { min-height: 150px; resize: vertical; }

.form-error { color: var(--red); font-size: 0.78rem; margin-top: 0.35rem; }

.form-success {
  background: rgba(85,148,207,0.15);
  border: 1px solid rgba(85,148,207,0.4);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-fail {
  background: rgba(201,33,39,0.15);
  border: 1px solid rgba(201,33,39,0.4);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo span.blue  { color: var(--primary); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-copy { font-size: 0.78rem; color: var(--text-dim); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate { opacity: 0; }
.animate.visible { animation: fadeInUp 0.6s ease forwards; }

/* ── UTILS ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
