/* ============================================================
   Jules Therapies — Coming Soon
   ============================================================ */

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

html, body {
  height: 100%;
}

body {
  font-family: "Lora", Georgia, serif;
  background-color: #ffffff;
  color: #666666;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}

/* ── Layout ── */

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, 4vw, 96px);
  text-align: center;
}

/* ── Logo ── */

.logo img {
  display: block;
  width: clamp(160px, 12vw, 280px);
  height: auto;
}

/* ── Content ── */

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.coming-soon {
  font-size: clamp(33px, 2.5vw, 52px);
  font-weight: 400;
  line-height: 1.32;
  color: #666666;
}

/* ── Identity ── */

.identity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.name {
  font-size: clamp(26px, 2vw, 41px);
  font-weight: 400;
  line-height: 1.3;
  color: #666666;
}

.title {
  font-size: clamp(20px, 1.5vw, 33px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #999999;
}

/* ── Contact ── */

.contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(16px, 1.2vw, 26px);
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}

.contact a {
  color: #666666;
  text-decoration: none;
}

.contact a:hover {
  color: #999999;
}

/* ── Responsive ── */

@media (max-width: 480px) {
  .coming-soon {
    font-size: 26px;
    line-height: 36px;
  }

  .name {
    font-size: 20px;
    line-height: 32px;
  }

  .title {
    font-size: 16px;
    line-height: 28px;
  }
}
