/* ===================================================================
   Tuscany Wedding DJ — Coming Soon
   Palette   : Charcoal #1c1c1e / #242426 · Terracotta #c46a4b
               Oro #cda869 · Avorio #f6efe2
   Display   : "Italiana"  (elegant, monumental caps)
   Accent    : "Cormorant Garamond" italic (invitation-style script feel)
   Body      : "Jost" light (quiet, geometric)
   Signature : a quiet music-equalizer divider — the one accent on the page
=================================================================== */

:root{
  --bg: #1c1c1e;
  --bg-soft: #242426;
  --terracotta: #c46a4b;
  --terracotta-soft: #d98a63;
  --oro: #cda869;
  --avorio: #f6efe2;
  --avorio-dim: rgba(246,239,226,.68);

  --font-display: "Italiana", serif;
  --font-script: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --max-w: 720px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--avorio);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

.visually-hidden{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- subtle film grain texture over the flat background ---------- */
.grain{
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- stage ---------- */
.stage{
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
  background: var(--bg);
}

/* ---------- content ---------- */
.content{
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  text-align: center;
  animation: rise-fade 1.1s ease-out both;
}

.eyebrow{
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--oro);
}

.wordmark{
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  letter-spacing: .06em;
  line-height: 1.05;
  color: var(--avorio);
  text-transform: uppercase;
}
.wordmark-amp{
  display: inline-block;
  margin: 0 .18em;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--terracotta-soft);
  font-size: 1.06em;
}

.tagline{
  margin: .9rem 0 0;
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--avorio-dim);
  letter-spacing: .01em;
}

/* equalizer divider — a quiet nod to the DJ, doubling as a rule */
.rule{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 26px;
  margin: 2.4rem auto;
}
.rule i{
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--oro);
  opacity: .8;
  animation: eq 1.8s ease-in-out infinite;
}
.rule i:nth-child(1){ height: 8px;  animation-delay: -1.1s; }
.rule i:nth-child(2){ height: 16px; animation-delay: -.4s; }
.rule i:nth-child(3){ height: 24px; animation-delay: -1.6s; }
.rule i:nth-child(4){ height: 12px; animation-delay: -.8s; background: var(--terracotta-soft); }
.rule i:nth-child(5){ height: 22px; animation-delay: -.1s; }
.rule i:nth-child(6){ height: 15px; animation-delay: -1.3s; }
.rule i:nth-child(7){ height: 7px;  animation-delay: -.6s; }

.headline{
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--avorio);
}

.lede{
  margin: 0 auto 2.6rem;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--avorio-dim);
  font-weight: 300;
}

.meta{
  margin-top: 1.2rem;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--avorio-dim);
}
.meta-link{
  color: var(--avorio-dim);
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease;
}
.meta-link:hover{ color: var(--oro); border-color: var(--oro); }
.meta-sep{ margin: 0 .6em; color: rgba(246,239,226,.35); }

/* ---------- footer ---------- */
.site-footer{
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(246,239,226,.4);
  text-align: center;
}
.footer-sep{ margin: 0 .6em; }

/* ---------- motion ---------- */
@keyframes rise-fade{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes eq{
  0%, 100%{ transform: scaleY(.6); }
  50%{ transform: scaleY(1.3); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 560px){
  .stage{ padding: 5.5rem 1.2rem; }
  .lede{ font-size: .94rem; }
  .meta{
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  .meta-sep{ display: none; }
}

@media (min-width: 1400px){
  .content{ max-width: 800px; }
}
