/* Nomades Landes — version statique légère
   Palette reprise de l'identité visuelle visible sur l'ancien site :
   bleu lagon #82c0c7 · sable #ddbe8b · eau claire #afe2de · anthracite #2d3940
*/

:root {
  --ink: #2d3940;
  --teal: #82c0c7;
  --teal-soft: #afe2de;
  --sand: #ddbe8b;
  --paper: #fffdf9;
  --white: #ffffff;
  --max: 1120px;
  --radius: 22px;
  --shadow: 0 14px 40px rgba(45,57,64,.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--white);
  padding: .7rem 1rem;
  border-radius: 8px;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.hero {
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: 48px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.brand-tagline {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.logo {
  max-width: min(100%, 420px);
  height: auto;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  margin-bottom: 24px;
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 2px solid var(--ink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
}

.section-sand {
  background: var(--sand);
}

.section-teal {
  background: var(--teal);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-block;
  margin-bottom: 40px;
  font-size: .75rem;
  font-weight: 700;
  opacity: .6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.press-card {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}

.press-meta {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .72;
}

.social-block {
  background: rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 30px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  background: var(--white);
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}

.footer p {
  margin: 5px 0 0;
  opacity: .8;
}

.footer-note {
  text-align: right;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .cards,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: block;
  }

  .footer-note {
    text-align: left;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* Logo original Nomades Landes */
.logo-card {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
