/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #152447;
  --cream:      #ffffff;
  --cream-dark: #ede8df;
  --gold:       #b8975a;
  --text-main:  #152447;
  --text-muted: #5a6a8a;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--cream);
  color: var(--text-main);
  font-family: 'Cormorant Garamond', Georgia, serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ─── Background Texture ────────────────────────────────────── */
.bg-texture {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(21, 36, 71, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 151, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 1;
}

/* ─── Logo ───────────────────────────────────────────────────── */
.logo-wrap {
  margin-bottom: 36px;
}

.logo {
  width: 280px;
  max-width: 80vw;
  height: auto;
  display: block;
}

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 260px;
  max-width: 70vw;
  margin-bottom: 32px;
}

.divider--sm {
  width: 180px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.ornament {
  color: var(--gold);
  font-size: 10px;
  line-height: 1;
  opacity: 0.85;
}

.ornament--sm {
  font-size: 7px;
}

/* ─── Heading ────────────────────────────────────────────────── */
.heading {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.1;
}

/* ─── Tagline ────────────────────────────────────────────────── */
.tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* ─── Sub text ───────────────────────────────────────────────── */
.sub {
  font-size: 0.85rem;
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.8;
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 20px 24px 28px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--cream-dark);
}

footer p {
  font-size: 0.78rem;
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .logo {
    width: 220px;
  }

  .heading {
    letter-spacing: 0.12em;
  }
}

.btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background-color: var(--navy);
  color: #ffffff;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: transparent;
  color: var(--navy);
}