/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Sections */
.section {
  padding: clamp(56px, 9vw, 104px) 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: var(--text);
  color: #F6F0E6;
}
.section--dark p,
.section--dark .section-title,
.section--dark .section-eyebrow,
.section--dark :where(h1,h2,h3,h4,p,li,span,a,small) {
  color: #F6F0E6;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h-mobile);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: var(--z-header);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .site-header { height: var(--header-h); }
  html { scroll-padding-top: var(--header-h); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo__picto {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}

/* Nav desktop */
.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    font-family: var(--ff-ui);
    font-size: .9rem;
    font-weight: 500;
  }
  .nav-desktop a {
    color: var(--text-2);
    transition: color .2s;
  }
  .nav-desktop a:hover { color: var(--accent); }
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Open-status badge */
.open-status {
  display: none;
  font-family: var(--ff-ui);
  font-size: .75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.open-status--open  { background: color-mix(in srgb, #22c55e 15%, transparent); color: #166534; }
.open-status--closed { background: color-mix(in srgb, #ef4444 12%, transparent); color: #991b1b; }
@media (min-width: 640px) { .open-status { display: block; } }

/* Footer */
.site-footer {
  background: var(--text);
  color: #F6F0E6;
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copy {
  font-size: .85rem;
  color: oklch(75% 0.01 63);
  line-height: 1.5;
}
.footer-copy a { color: oklch(80% 0.06 142); }
.footer-mentions {
  background: transparent;
  border: 1px solid oklch(40% 0.01 63);
  color: oklch(70% 0.01 63);
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: border-color .2s, color .2s;
}
.footer-mentions:hover { border-color: oklch(55% 0.01 63); color: #F6F0E6; }

/* Main body offset for fixed header */
main { padding-top: var(--header-h-mobile); }
@media (min-width: 768px) { main { padding-top: var(--header-h); } }
