/* MARAZ — Coming Soon
   Self-contained CSS, no build step. Just upload the folder. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0f0f10;
  /* Subtle radial gradient: warm amber at top-left → neutral dark, evokes leather */
  background-image:
    radial-gradient(at 18% 12%, rgba(180, 130, 80, 0.18) 0%, transparent 55%),
    radial-gradient(at 88% 82%, rgba(70, 60, 50, 0.28) 0%, transparent 60%);
  color: #f1f1f2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Logo ─────────────────────────────────────────── */
.brand {
  text-align: center;
}

.logo {
  height: 44px;
  width: auto;
  display: inline-block;
}

/* ── Main content ─────────────────────────────────── */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(241, 241, 242, 0.65);
}

.title {
  margin: 0 0 28px;
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(56px, 12vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
}

.title-line--accent {
  font-style: italic;
  color: #d4a574; /* warm camel — leather accent */
}

.lead {
  margin: 0 auto;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(241, 241, 242, 0.78);
}

.lead--fr {
  margin-bottom: 14px;
}

.lead--en {
  font-size: 14px;
  color: rgba(241, 241, 242, 0.5);
  font-style: italic;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  text-align: center;
  padding-top: 32px;
}

.socials {
  display: inline-flex;
  gap: 18px;
  margin-bottom: 20px;
}

.socials a {
  color: rgba(241, 241, 242, 0.6);
  transition: color 0.2s ease;
  display: inline-flex;
}

.socials a:hover {
  color: #d4a574;
}

.contact {
  margin: 0 0 8px;
  font-size: 13px;
}

.contact a {
  color: rgba(241, 241, 242, 0.75);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact a:hover {
  border-bottom-color: rgba(241, 241, 242, 0.75);
}

.copyright {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(241, 241, 242, 0.35);
}

/* ── Responsive tweaks ───────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 32px 20px;
  }

  .content {
    padding: 40px 0;
  }

  .eyebrow {
    letter-spacing: 0.28em;
    font-size: 10px;
  }

  .lead {
    font-size: 15px;
  }
}

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