/* ── Reset ──────────────────────────────────────────── */

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

/* ── Design Tokens ──────────────────────────────────── */

:root {
  --primary:       #bd5d31;
  --primary-soft:  rgba(189, 93, 49, 0.08);
  --secondary:     #f6d7ca;
  --bg-top:        #fdfaf7;
  --bg-bottom:     #f4ebe1;
  --text:          #18100a;
  --text-body:     #4a3628;
  --text-muted:    #9a8074;
  --rule:          rgba(189, 93, 49, 0.30);
}

/* ── Base ───────────────────────────────────────────── */

html, body {
  min-height: 100vh;
}

body {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* ── Decorative background glyph ───────────────────── 

body::before {
  content: 'L';
  position: fixed;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(280px, 42vw, 600px);
  line-height: 1;
  color: var(--primary-soft);
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
*/

/* ── Main container ─────────────────────────────────── */

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 48px;
  max-width: 680px;
  width: 100%;
}

/* ── Logo ───────────────────────────────────────────── */

.logo-wrap {
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(-16px);
  animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.logo-wrap img {
  display: block;
  max-width: 230px;
  width: 100%;
  height: auto;
}

/* ── Ornamental divider ─────────────────────────────── */

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 280px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.5s forwards;
}

.divider-line {
  flex: 1;
  height: 1px;
}

.divider-line:first-child {
  background: linear-gradient(90deg, transparent, var(--rule));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--rule), transparent);
}

.divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Headline ───────────────────────────────────────── */

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(54px, 10vw, 84px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

h1 .accent {
  color: var(--primary);
  font-style: normal;
}

/* ── Subline ────────────────────────────────────────── */

.subline {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.9s forwards;
}

/* ── Body copy ──────────────────────────────────────── */

.description {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeIn 0.9s ease 1.1s forwards;
}

/* ── Footer ─────────────────────────────────────────── */

footer {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 0.9s ease 1.3s forwards;
}

footer .sep {
  color: var(--primary);
  opacity: 0.6;
  margin: 0 10px;
}

/* ── Keyframes ──────────────────────────────────────── */

@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 520px) {
  .container { padding: 60px 28px; }
  .logo-wrap img { max-width: 180px; }

  body::before {
    font-size: 60vw;
    right: -8vw;
    opacity: 0.5;
  }
}
