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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

/* ===== Hero — nom centré ===== */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
  font-family: 'Satoshi', sans-serif;
  display: inline-block;
}

.text-atelier {
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  font-size: 0.75em;
}

.text-bokyela {
  font-weight: 700;
  display: block;
}

/* ===== Logo / About toggle ===== */
.hero h1 {
  transition: opacity 0.3s ease;
}

.hero h1.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.about-text {
  max-width: 540px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.about-text.visible {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.about-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid #1a1a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 0;
}

.footer-col {
  padding: 2rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

.footer-name {
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-col-center {
  text-align: center;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
}

.footer-col-right {
  text-align: right;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid #1a1a1a;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #aaa;
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .footer {
    padding: 2rem 1.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .footer-col-center,
  .footer-col-right {
    text-align: left;
  }
}
