/* Nav offset */
main {
  padding-top: 64px;
}
@media (min-width: 768px) {
  main {
    padding-top: 72px;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Hero */
@media (max-width: 767px) {
  .hero-section {
    min-height: calc(100svh - 64px);
    display: flex;
    flex-direction: column;
  }
  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.hero-inner {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero-inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.hero-title {
  font-size: clamp(2rem, 8.5vw, 2.75rem);
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
    line-height: 1.05;
  }
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

.hero-section .hero-eyebrow {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Section headings (mobile-first, larger on phone) */
.section-heading {
  font-size: clamp(1.75rem, 6.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 22rem;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    gap: 0.875rem;
  }
}

.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 640px) {
  .btn-hero {
    width: auto;
    min-width: 11rem;
    border-radius: 9999px;
    padding: 0.875rem 1.75rem;
  }
}

.btn-hero-primary {
  background: #fdbe56;
  color: #604000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.btn-hero-primary:hover {
  background: #f5b24a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.btn-hero-primary:active {
  transform: translateY(0);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Europe CTA band */
.europe-cta-band {
  background: linear-gradient(135deg, #0f2747 0%, #00122b 50%, #1a3a6e 100%);
  box-shadow: 0 8px 32px rgba(0, 18, 43, 0.25);
}
.europe-cta-band h2 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.europe-cta-band .europe-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 600;
}

/* Vacancy buttons */
.vacancy-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.vacancy-apply-btn .material-symbols-outlined {
  font-size: 1rem;
}

.vacancy-apply-btn--primary {
  background: #fdbe56;
  color: #604000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.vacancy-apply-btn--primary:hover {
  background: #f5b24a;
  transform: translateY(-1px);
}

.vacancy-apply-btn--glass {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vacancy-apply-btn--glass:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Form section header */
.form-section-header h2 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.form-section-header p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(0, 18, 43, 0.85);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* TikTok */
.tiktok-section-header {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.tiktok-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00122b;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 18, 43, 0.06);
  border: 1px solid rgba(0, 18, 43, 0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tiktok-channel-link:hover {
  background: #00122b;
  color: #fdbe56;
  border-color: #00122b;
}
.tiktok-channel-link::after {
  content: "→";
  font-size: 1rem;
  opacity: 0.7;
}

.tiktok-embed-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.tiktok-embed-wrap blockquote {
  margin: 0 auto !important;
}

/* Mobile FAB */
.mobile-fab {
  bottom: 1rem;
  right: 1rem;
}
@media (max-width: 767px) {
  .mobile-fab {
    padding: 0.875rem;
    border-radius: 9999px;
  }
  .mobile-fab .fab-label {
    display: none;
  }
}
