/* Disrupia — page d’attente autonome, sans dépendance ni JavaScript. */
:root {
  color-scheme: light;
  --petrol: #125c58;
  --ink: #123f3d;
  --ivory: #f5f1e7;
  --amber: #efa93d;
  --muted: #4e625d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
a:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 6px;
}
.welcome {
  position: relative;
  isolation: isolate;
  min-height: max(780px, calc(100svh - 78px));
  overflow: hidden;
  padding-bottom: 210px;
}
.landscape {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 5vw;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
.brand img { display: block; width: 220px; height: auto; }
.brand span { font-size: 13px; }
.status {
  padding: 8px 16px;
  border: 1px solid #b5c6bd;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
}
.content {
  width: 50%;
  max-width: 740px;
  margin-left: 5vw;
  padding-top: clamp(35px, 5vw, 80px);
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 22px;
}
h1 {
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 28px;
}
h1 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--petrol);
}
.intro { font-size: 23px; line-height: 1.5; margin: 0 0 16px; }
.description { max-width: 460px; color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 16px 23px;
  border-radius: 7px;
  background: var(--amber);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.button:hover { background: #f5b852; }
.button span { font-size: 23px; line-height: 1; }
.contact-note { color: var(--muted); font-size: 13px; margin: 12px 0 0; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
  padding: 23px 5vw;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid #d6dbd1;
}
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 3; padding: 10px 16px; background: white; }
.skip-link:focus { top: 12px; }
@media (max-width: 900px) {
  .welcome { display: flex; flex-direction: column; min-height: 0; padding-bottom: 0; }
  .header { padding: 24px 6vw; }
  .brand img { width: 180px; }
  .content { width: auto; max-width: 640px; margin: 0 6vw; padding-top: 30px; }
  h1 { font-size: clamp(43px, 7.4vw, 66px); }
  .landscape { position: relative; inset: auto; order: 3; height: auto; margin-top: 12px; mask-image: linear-gradient(to bottom, transparent, #000 20%); }
  .footer { padding: 22px 6vw; }
}
@media (max-width: 520px) {
  .header { align-items: flex-start; flex-direction: column; gap: 20px; }
  .brand span { font-size: 12px; }
  .status { padding: 5px 12px; font-size: 13px; }
  .content { padding-top: 18px; }
  .intro { font-size: 20px; }
  .button { max-width: 100%; gap: 18px; font-size: 15px; }
  .footer { flex-direction: column; gap: 6px; }
}
