/* ═══════════════════════════════════════════════════════════════════════
   Office Social de Dudelange — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════════════ */

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

/* ── Variables ────────────────────────────────────────────────────────── */
:root {
  --red:       #F16648;
  --dark:      #121212;
  --light:     #F5F5F2;
  --white:     #ffffff;
  --border:    rgba(18,18,18,.13);
  --nav-h:     132px;

  /* Horizontal padding matching Wix site (96px at 1920px = 5vw) */
  --px: clamp(32px, 5vw, 96px);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ── Typography helpers ───────────────────────────────────────────────── */
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Section label (01 / Notre mission) ──────────────────────────────── */
.section-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
}
.section-label .num {
  font-size: clamp(36px, 2.7vw, 52px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--dark);
}
.section-label .name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--dark);
  opacity: .55;
}

/* ── Divider with animated dot ───────────────────────────────────────── */
.divider {
  position: relative;
  height: 1px;
  margin-bottom: 56px;
  overflow: visible;
}
/* Static line (always full width, faint) */
.divider::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 1px;
  width: 0;                        /* starts at 0, grows on .animated */
  background: var(--border);
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}
/* Travelling dot */
.divider::after {
  content: '';
  position: absolute;
  left: 0;                         /* starts at left, moves right on .animated */
  top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  background: var(--dark);
  border-radius: 50%;
  transition: left 1.1s cubic-bezier(.4,0,.2,1);
}
/* Triggered state */
.divider.animated::before { width: 100%; }
.divider.animated::after  { left: calc(100% - 9px); }

/* On red bg: divider stays dark (original uses dark on red) */
.section-red .divider::before { background: rgba(18,18,18,.2); }
.section-red .divider::after  { background: var(--dark); }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background .25s, color .25s;
}
.btn-outline .btn-text {
  display: inline-block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
/* SVG arrow — matches Wix icon exactly, uses currentColor */
.btn-outline .arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m147.839 102.831-46.038 46.498a3.928 3.928 0 0 1-5.6 0 4.027 4.027 0 0 1 0-5.656L135.48 104H52.96c-2.187 0-3.96-1.791-3.96-4s1.773-4 3.96-4h82.519L96.201 56.328a4.027 4.027 0 0 1 0-5.656 3.932 3.932 0 0 1 5.6 0l46.038 46.498c.185.187.351.392.496.613.064.097.108.201.162.302.07.127.146.25.201.386.054.132.085.27.125.405.033.114.077.223.1.341.102.517.102 1.05 0 1.566-.023.118-.067.227-.1.341-.039.136-.071.273-.125.405-.056.135-.132.258-.201.386-.055.101-.098.205-.162.302a3.967 3.967 0 0 1-.496.614z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m147.839 102.831-46.038 46.498a3.928 3.928 0 0 1-5.6 0 4.027 4.027 0 0 1 0-5.656L135.48 104H52.96c-2.187 0-3.96-1.791-3.96-4s1.773-4 3.96-4h82.519L96.201 56.328a4.027 4.027 0 0 1 0-5.656 3.932 3.932 0 0 1 5.6 0l46.038 46.498c.185.187.351.392.496.613.064.097.108.201.162.302.07.127.146.25.201.386.054.132.085.27.125.405.033.114.077.223.1.341.102.517.102 1.05 0 1.566-.023.118-.067.227-.1.341-.039.136-.071.273-.125.405-.056.135-.132.258-.201.386-.055.101-.098.205-.162.302a3.967 3.967 0 0 1-.496.614z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  font-size: 0;
  line-height: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.btn-outline:hover .btn-text  { transform: scale(1.04); }
.btn-outline:hover .arrow     { transform: translateX(4px); }

/* Card buttons — not full-width */
.card .btn-outline { align-self: flex-start; }

/* Dark button (on white bg) */
.btn-dark {
  color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark);
  color: var(--white);
}
/* Light button (on red bg) */
.btn-light {
  color: var(--white);
}
.btn-light:hover {
  background: rgba(255,255,255,.12);
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--dark);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s, letter-spacing .3s;
}
.btn-submit:hover {
  background: #2c2c2c;
  letter-spacing: .18em;
}

/* ── Navbar ───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 24px;
  left: var(--px);
  right: var(--px);
  z-index: 100;
  height: 94px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 32px;
  border-radius: 10px;
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  transition: box-shadow .3s, transform .35s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,.13);
}
.navbar.nav-hidden {
  transform: translateY(calc(-100% - 32px));
}
.nav-mobile.nav-hidden {
  transform: translateY(calc(-100% - 32px));
  opacity: 0;
  pointer-events: none;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 50px; height: 50px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
/* Fallback text logo */
.logo-icon-fallback {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-dot {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  bottom: 5px; right: 5px;
}
.logo-text { line-height: 1.25; }
.logo-text .l1 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .5;
}
.logo-text .l2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}

/* Real logo image */
.logo-img {
  height: 67px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover  { background: var(--light); color: var(--red); }
.nav-links a.active { background: var(--light); color: var(--dark); font-weight: 400; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 4px);
  left: var(--px);
  right: var(--px);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  padding: 16px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--red); }

/* ── Page Hero (internal pages) ───────────────────────────────────────── */
.page-hero {
  margin-top: 0;
  height: clamp(380px, 62vh, 580px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a4a4a 0%, #1e1e1e 100%);
  transition: transform .6s ease;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: brightness(.7);
  display: block;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.2) 50%,
    transparent 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
  padding-top: calc(var(--nav-h) + 48px);
  width: 100%;
}
.page-hero h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: none;
}

/* ── Sections ─────────────────────────────────────────────────────────── */
.section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.section-red  { background: var(--red); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

/* ── Big text blocks (mission sections) ──────────────────────────────── */
.section-body {
  font-size: clamp(22px, 3vw, 45px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -.015em;
  color: var(--dark);
  margin-bottom: 32px;
}
/* Red sections: label stays dark, body text is white */
.section-red .section-body { color: var(--white); }

/* ── Cards grid ───────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Service card */
.card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.09);
}
.section-light .card { background: var(--white); }

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--red);
  border-radius: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.card-title {
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--dark);
}
.card-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--dark);
  opacity: .7;
  flex: 1;
}

/* Person card (team members) */
.person-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.person-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}
.person-role {
  font-size: 13px;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 12px;
  line-height: 1.4;
}
.person-presence {
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
  opacity: .5;
  letter-spacing: .04em;
}

/* Sub-heading inside sections */
.sub-heading {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 28px;
  margin-top: 56px;
}

/* ── Contact form ─────────────────────────────────────────────────────── */
.contact-card {
  background: var(--red);
  border-radius: 6px;
  padding: 64px var(--px);
}
.contact-title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--dark);
  opacity: .65;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: 1px solid rgba(18,18,18,.25);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  resize: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(18,18,18,.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--dark); }
.form-group textarea { min-height: 120px; }

/* ── Info box (contact info + hours) ─────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--light);
  border-radius: 6px;
  padding: 48px 56px;
  margin-top: 32px;
}
.info-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .45;
  margin-bottom: 20px;
}
.info-col p, .info-col a {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dark);
  display: block;
  transition: color .2s;
}
.info-col a:hover { color: var(--red); }

/* ── Resource list (aide sociale links) ───────────────────────────────── */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.resource-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.resource-item:hover {
  border-color: var(--red);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.resource-item .r-arrow {
  margin-left: auto;
  color: var(--red);
  transition: transform .25s;
  flex-shrink: 0;
}
.resource-item:hover .r-arrow { transform: translateX(4px); }

/* ── Step list (GLS process) ──────────────────────────────────────────── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}
.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-size: 32px;
  font-weight: 300;
  color: var(--red);
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-content h4 {
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  opacity: .7;
}

/* ── Conseil page — mission text ──────────────────────────────────────── */
.conseil-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.conseil-body {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 20px;
}
.conseil-body strong {
  font-weight: 600;
  color: var(--dark);
}
.conseil-body-small {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .4;
  margin-bottom: 20px;
}
.conseil-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.conseil-list li {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.conseil-list li:first-child { border-top: 1px solid var(--border); }
.conseil-list li::before { content: '—'; color: var(--red); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 900px) {
  .conseil-mission-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Conseil page — heading + pill members ────────────────────────────── */
.conseil-heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 40px;
}
.council-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.council-pill {
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 20px 32px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--dark);
  transition: border-color .2s, background .2s;
}
.council-pill:hover {
  border-color: rgba(18,18,18,.25);
  background: var(--light);
}
.council-pill-role {
  font-size: 11px;
  font-weight: 400;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-left: 12px;
}

/* ── Council member list ──────────────────────────────────────────────── */
.council-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.council-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .2s;
}
.council-item:first-child { border-top: 1px solid var(--border); }
.council-item:hover { padding-left: 8px; }
.council-name {
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
}
.council-role {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 72px var(--px) 40px;
}
.footer-logo { margin-bottom: 52px; }
.footer-logo .logo-icon { background: rgba(255,255,255,.08); }
.footer-logo .logo-text .l1 { color: rgba(255,255,255,.4); }
.footer-logo .logo-text .l2 { color: var(--red); }
.footer-logo .logo-img { height: 72px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,.6);
  display: block;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.25);
  letter-spacing: .05em;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--white); }
.footer-bottom > p a {
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom > p a:hover { color: var(--white); }

/* ── GLS hero (centered + CTA buttons) ───────────────────────────────── */
.gls-hero {
  margin-top: 0;
  min-height: clamp(420px, 60vh, 600px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) var(--px) 60px;
}
.gls-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#2a3530 0%,#121e1a 100%); }
.gls-hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center bottom; filter:brightness(.55); display:block; }
.gls-hero-bg::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,.35); }
.gls-hero-content { position:relative; z-index:1; }
.gls-hero h1 {
  font-size: clamp(44px,6.5vw,88px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 40px;
}
.gls-hero-btns { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; width:100%; }
.gls-hero-btn {
  flex: 1;
  min-width: 280px;
  max-width: 48%;
  padding: 52px 40px;
  background: var(--red);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 300;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  transition: background .25s, transform .25s;
}
.gls-hero-btn:hover { background:#e05535; transform:translateY(-3px); }

/* ── Checklist with checkmarks ────────────────────────────────────────── */
.checklist { display:flex; flex-direction:column; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
}
.checklist-item:first-child { border-top: 1px solid var(--border); }
.checklist-item::before { content:'✓'; color:var(--red); font-weight:600; font-size:15px; flex-shrink:0; margin-top:1px; }

/* ── Conditions grid (title left + checklist right) ──────────────────── */
.conditions-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.conditions-title {
  font-size: clamp(36px,4.5vw,64px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.conditions-intro { font-size:15px; font-weight:300; line-height:1.8; color:var(--dark); opacity:.7; }

/* ── Split section (50/50 white + red) ───────────────────────────────── */
.split-section { display:grid; grid-template-columns:1fr 1fr; }
.split-half { padding:72px var(--px); }
.split-half-white { background:var(--white); }
.split-half-red   { background:var(--red); }
.split-half h3 { font-size:clamp(24px,3vw,40px); font-weight:300; letter-spacing:-.025em; line-height:1.15; margin-bottom:32px; }
.split-half-white h3 { color:var(--dark); }
.split-half-red   h3 { color:var(--white); }
.bullet-list { display:flex; flex-direction:column; }
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--dark);
}
.bullet-item:first-child { border-top:1px solid var(--border); }
.bullet-item::before { content:'—'; color:var(--red); flex-shrink:0; margin-top:2px; }
.step-list-light .step-item { border-color:rgba(255,255,255,.2); }
.step-list-light .step-num  { color:rgba(255,255,255,.5); }
.step-list-light .step-content h4 { color:var(--white); }
.step-list-light .step-content p  { color:rgba(255,255,255,.7); opacity:1; }

/* ── Mission bullet list ──────────────────────────────────────────────── */
.mission-list { list-style:none; margin:16px 0 24px; }
.mission-list li {
  font-size: clamp(15px,1.6vw,22px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  padding: 6px 0 6px 24px;
  position: relative;
}
.mission-list li::before { content:'—'; position:absolute; left:0; color:var(--dark); opacity:.4; }

/* Section large heading without section-label */
.section-large-heading {
  font-size: clamp(36px,4.5vw,64px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-top: 64px;
  margin-bottom: 24px;
}
.section-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dark);
  opacity: .7;
  max-width: 680px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .conditions-grid { grid-template-columns:1fr; gap:40px; }
  .split-section   { grid-template-columns:1fr; }
  .gls-hero-btns   { flex-direction:column; align-items:center; }
}

/* ── Scroll-reveal ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --px: clamp(32px, 5vw, 72px); }
  .cards-grid   { grid-template-columns: 1fr 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --px: 28px; }
  .nav-links            { display: none; }
  .navbar .lang-switcher { display: none; }
  .hamburger            { display: flex; margin-left: auto; }
  .cards-grid,
  .cards-grid-4,
  .cards-grid-2  { grid-template-columns: 1fr; }
  .form-grid    { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .info-grid    { grid-template-columns: 1fr; padding: 36px 32px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { padding: 48px var(--px); }
  .section      { padding-top: 64px; padding-bottom: 64px; }
}

@media (max-width: 480px) {
  :root { --px: 20px; }
}

/* ── Language switcher ─────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}
.lang-btn {
  background: none;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--dark);
  cursor: pointer;
  padding: 4px 7px;
  opacity: .35;
  transition: opacity .2s;
  border-radius: 4px;
  line-height: 1;
}
.lang-btn:hover { opacity: .7; }
.lang-btn.active { opacity: 1; color: var(--red); }

/* Mobile nav lang switcher */
.nav-mobile .lang-switcher {
  border-left: none;
  padding-left: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
  margin-left: 0;
  justify-content: center;
  gap: 8px;
}
.nav-mobile .lang-btn {
  font-size: 13px;
  padding: 6px 12px;
  opacity: .5;
}
