/* ═══════════════════════════════════════════════
   V1 — WARM FESTIVE
   Burgundy · Gold · Ivory
   "This feels like a wedding"
   ═══════════════════════════════════════════════ */

:root {
  --burgundy:      #6B1D2A;
  --burgundy-deep: #4A1019;
  --burgundy-soft: #8B3344;
  --gold:          #C9963A;
  --gold-bright:   #E0B35B;
  --gold-pale:     #F0DEB3;
  --ivory:         #FBF7F0;
  --ivory-warm:    #F5EDE0;
  --charcoal:      #2A2322;
  --charcoal-mid:  #504440;
  --rose:          #B87878;

  --ff-display: 'Bodoni Moda', 'Georgia', serif;
  --ff-body:    'Outfit', -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ff-body); color: var(--charcoal); background: var(--ivory); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── HERO ── */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--burgundy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* Subtle radial warmth */
.hero::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 70%;
  bottom: -20%;
  left: -20%;
  background: radial-gradient(ellipse at center, var(--burgundy-soft) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

/* Fine grain */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem;
  position: relative;
  z-index: 5;
  animation: fadeIn 0.8s var(--ease) 0.1s both;
}

.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.nav__cta {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  transition: all 0.4s var(--ease);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--burgundy-deep);
}

/* Center content */
.hero__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}

.hero__badge-star {
  color: var(--gold-bright);
  font-size: 0.75rem;
}

.hero__badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.7;
  font-weight: 300;
}

.hero__title {
  font-family: var(--ff-display);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero__t1 {
  display: block;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--ivory-warm);
  opacity: 0.7;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero__t2 {
  display: block;
  font-size: clamp(3.2rem, 12vw, 7rem);
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
  line-height: 1.05;
  animation: fadeUp 0.9s var(--ease) 0.55s both;
}

.hero__sub {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ivory-warm);
  opacity: 0.6;
  max-width: 34ch;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  animation: fadeUp 0.9s var(--ease) 0.85s both;
}

.hero__btn:hover {
  background: var(--gold-bright);
  gap: 1.2rem;
}

.hero__btn-arrow {
  transition: transform 0.3s var(--ease);
}

.hero__btn:hover .hero__btn-arrow {
  transform: translateX(4px);
}

/* Footer strip */
.hero__foot {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(251, 247, 240, 0.08);
  position: relative;
  z-index: 2;
  animation: fadeIn 0.8s var(--ease) 1s both;
}

.hero__foot-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--ivory-warm);
  opacity: 0.4;
  font-weight: 300;
}

.hero__foot-icon { font-size: 0.7rem; }


/* ── SPACES ── */

.spaces {
  padding: 4rem 1.25rem;
  background: var(--ivory);
}

.spaces__top {
  margin-bottom: 3rem;
}

.spaces__label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-weight: 500;
}

.spaces__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

.spaces__title em {
  font-style: italic;
  color: var(--burgundy);
}

/* Cards */
.spaces__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scard {
  display: flex;
  gap: 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(42, 35, 34, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.scard:last-child { border-bottom: 1px solid rgba(42, 35, 34, 0.08); }

.scard.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accent bar */
.scard__accent {
  width: 3px;
  min-height: 100%;
  background: var(--burgundy);
  margin-right: 1.25rem;
  flex-shrink: 0;
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}

.scard:hover .scard__accent { width: 5px; }

.scard__accent--2 { background: var(--gold); }
.scard__accent--3 { background: var(--rose); }

.scard__body { flex: 1; }

.scard__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.scard__name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
}

.scard__cap {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  opacity: 0.5;
  font-weight: 400;
}

.scard__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--charcoal-mid);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.scard__tags {
  display: flex;
  gap: 0.5rem;
}

.scard__tags span {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(42, 35, 34, 0.12);
  color: var(--charcoal-mid);
  font-weight: 400;
}


/* ── ANIMATIONS ── */

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

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


/* ── DESKTOP ── */

@media (min-width: 768px) {
  .nav { padding: 2rem 3rem; }
  .hero__center { padding: 0 3rem; }
  .hero__foot { padding: 1rem 3rem; }

  .spaces { padding: 6rem 3rem; }

  .spaces__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .scard {
    flex-direction: column;
    padding: 0;
    border: none;
  }

  .scard:last-child { border: none; }

  .scard__accent {
    width: 100%;
    min-height: 0;
    height: 3px;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }

  .scard:hover .scard__accent {
    width: 100%;
    height: 5px;
  }
}
