@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

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

:root {
  --dark: #243447;
  --yellow: #F9C80E;
  --mint: #C8F4DE;
  --peach: #F5E6D3;
  --bg-light: #ffffff;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: transparent;
  border-bottom: none;
}

.navbar.scrolled {
  background: rgba(36, 52, 71, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
}
.nav-brand .yellow { color: var(--yellow); }
.nav-brand .white { color: #fff; }

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-yellow:hover { background: rgba(249,200,14,0.9); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
}

.menu-toggle svg { width: 24px; height: 24px; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(36,52,71,0.4), #243447);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 4s ease-in-out infinite;
}

.glow-orb.yellow {
  top: 0;
  left: 25%;
  background: var(--yellow);
}

.glow-orb.mint {
  bottom: 25%;
  right: 25%;
  background: var(--mint);
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem 0;
}

.hero-text {
  max-width: 64rem;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(1.875rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-balance: balance;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  padding: 0 1rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* ── Sections ── */
.section-dark {
  position: relative;
  padding: 4rem 1rem;
  background: var(--dark);
}

@media (min-width: 768px) {
  .section-dark { padding: 6rem 1.5rem; }
}

.section-light {
  position: relative;
  padding: 4rem 1rem;
  background: var(--bg-light);
}

@media (min-width: 768px) {
  .section-light { padding: 6rem 1.5rem; }
}

.section-glow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  overflow: hidden;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.section-label {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-label.light { color: rgba(255,255,255,0.6); }
.section-label.dark { color: rgba(36,52,71,0.6); }

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title.white { color: #fff; }
.section-title.dark { color: var(--dark); }
.section-title .yellow { color: var(--yellow); }

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-desc.light { color: rgba(255,255,255,0.8); }
.section-desc.dark { color: rgba(36,52,71,0.7); }

.section-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-subtitle.light { color: rgba(255,255,255,0.9); }

/* ── Glass Cards ── */
.glass-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.glass-card-lg {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 3rem; }
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
}

.stat-number {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

/* ── Checklist Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 3rem; }
}

.checklist h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checklist-item:last-child { margin-bottom: 0; }

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-icon.yellow { color: var(--yellow); }
.check-icon.mint { color: var(--mint); }

.checklist-item span {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

/* ── Steps (light section) ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.step-card {
  background: #fff;
  border: 1px solid rgba(36,52,71,0.1);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}

.step-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(249,200,14,0.5);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--yellow), rgba(249,200,14,0.8));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.step-card p {
  color: rgba(36,52,71,0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-card .italic {
  font-size: 0.875rem;
  color: rgba(36,52,71,0.6);
  font-style: italic;
}

/* ── Private CTA ── */
.private-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: var(--dark);
  text-align: center;
}

.private-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.private-section .yellow { color: var(--yellow); }

.private-section p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.private-section p.main { color: rgba(255,255,255,0.9); }
.private-section p.sub { color: rgba(255,255,255,0.8); }

/* ── Om oss ── */
.om-intro {
  padding: 4rem 1rem;
  text-align: center;
  background: var(--bg-light);
}

@media (min-width: 768px) {
  .om-intro { padding: 6rem 1.5rem; }
}

.om-image-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .om-image-section { height: 500px; }
}

.om-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.om-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(36,52,71,0.4), #243447);
}

.om-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .om-quote { padding: 3rem; }
}

.om-quote h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-balance: balance;
}

.om-quote p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.om-content {
  padding: 4rem 1rem;
  background: var(--bg-light);
}

@media (min-width: 768px) {
  .om-content { padding: 6rem 1.5rem; }
}

.om-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .om-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

.om-grid h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.om-text p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: rgba(36,52,71,0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.approach-card {
  background: #fff;
  border: 1px solid rgba(36,52,71,0.1);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.approach-card h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.approach-card > p:first-of-type {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: rgba(36,52,71,0.8);
  margin-bottom: 1.5rem;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.approach-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.375rem;
  flex-shrink: 0;
}

.approach-item .title {
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.approach-item .desc {
  color: rgba(36,52,71,0.8);
  font-size: 1rem;
}

.approach-footer {
  padding-top: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── Contact ── */
.contact-section {
  position: relative;
  padding: 5rem 1rem;
  background: var(--dark);
}

@media (min-width: 768px) {
  .contact-section { padding: 8rem 1.5rem; }
}

.contact-inner {
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-header { margin-bottom: 3rem; }
}

.contact-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-balance: balance;
  padding: 0 1rem;
}

.contact-header .yellow { color: var(--yellow); }

.contact-header p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: rgba(255,255,255,0.7);
  padding: 0 1rem;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form { padding: 2rem; }
}

@media (min-width: 1024px) {
  .contact-form { padding: 3rem; }
}

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

@media (min-width: 768px) {
  .form-group { margin-bottom: 1.5rem; }
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 0.375rem;
  padding: 1.25rem 1rem 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group select {
  height: 3.5rem;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--dark);
  color: #fff;
}

.form-group input {
  height: 3.5rem;
}

.form-group textarea {
  resize: none;
  min-height: 6rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(249,200,14,0.2);
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  font-size: 0.75rem;
  color: var(--yellow);
  pointer-events: none;
}

.form-label-textarea {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  font-size: 0.75rem;
  color: var(--yellow);
  pointer-events: none;
}

.btn-yellow.full { width: 100%; }

/* ── Footer ── */
.footer {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .footer { padding: 3rem 1.5rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.footer-brand {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand .yellow { color: var(--yellow); }

.footer-info {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-social { justify-content: flex-start; }
}

@media (min-width: 768px) {
  .footer-social { justify-content: center; }
}

.social-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .social-circle { width: 3rem; height: 3rem; }
}

.social-circle:hover {
  background: var(--yellow);
  transform: scale(1.1);
}

.social-circle svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .social-circle svg { width: 1.25rem; height: 1.25rem; }
}

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

@media (min-width: 640px) {
  .footer-links { grid-column: span 2; text-align: center; }
}

@media (min-width: 768px) {
  .footer-links { grid-column: auto; text-align: right; }
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 72rem;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
  .footer-bottom { margin-top: 2rem; padding-top: 2rem; }
}

/* ── Content Pages (personvern, brukervilkar) ── */
.content-page {
  padding: 8rem 1rem 4rem;
  background: var(--dark);
  min-height: 100vh;
}

.content-page .container {
  max-width: 48rem;
}

.content-page h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.content-page .updated {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}

.content-page h2 {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.content-page h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-page p,
.content-page li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.content-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.content-page a {
  color: var(--yellow);
  transition: opacity 0.2s;
}

.content-page a:hover { opacity: 0.8; }

.content-page strong { color: rgba(255,255,255,0.9); }

/* ── Karriere ── */
.karriere-header {
  padding: 8rem 1rem 3rem;
  text-align: center;
  background: var(--dark);
}

.karriere-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.karriere-header p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto;
}

.badge-green {
  display: inline-block;
  background: rgba(200,244,222,0.15);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
}

.karriere-tags {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.karriere-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.karriere-content {
  padding: 3rem 1rem 5rem;
  background: var(--dark);
}

.karriere-content .container {
  max-width: 48rem;
}

.karriere-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.karriere-content p,
.karriere-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.karriere-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(36,52,71,0.98);
  backdrop-filter: blur(20px);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
}
