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

:root {
  --bronze: #b97332;
  --bronze-light: #d4904a;
  --charcoal: #2a2a2a;
  --white: #ffffff;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--charcoal);
}

/* ── PAGE LAYOUT ── */
.cs-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── VIDEO ── */
.cs-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,20,14,0.88) 0%,
    rgba(42,35,25,0.75) 50%,
    rgba(26,20,14,0.88) 100%
  );
}

/* ── CONTENT ── */
.cs-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 5%;
  max-width: 780px;
  width: 100%;
}

/* ── LOGO ── */
.cs-logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* ── DIVIDER ── */
.cs-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  margin: 2rem 0 1.75rem;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-divider.drawn { width: 200px; }

/* ── EYEBROW ── */
.cs-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}

/* ── HEADING ── */
.cs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.cs-heading em {
  font-style: italic;
  color: var(--bronze-light);
}

/* ── SUBTEXT ── */
.cs-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.25rem;
}

/* ── EMAIL LINK ── */
.cs-email {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--bronze-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(185,115,50,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.cs-email:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ── FOOTER ── */
.cs-footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cs-footer-icon {
  height: 32px;
  width: 32px;
  object-fit: contain;
  opacity: 0.6;
}

.cs-footer p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* ── ENTRANCE ANIMATIONS ── */
.cs-anim-1, .cs-anim-2, .cs-anim-3,
.cs-anim-4, .cs-anim-5, .cs-anim-6, .cs-anim-7 {
  opacity: 0;
  transform: translateY(20px);
  animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cs-anim-1 { animation-delay: 0.2s; }
.cs-anim-2 { animation-delay: 0.4s; transform: none; }
.cs-anim-3 { animation-delay: 0.55s; }
.cs-anim-4 { animation-delay: 0.7s; }
.cs-anim-5 { animation-delay: 0.9s; }
.cs-anim-6 { animation-delay: 1.05s; }
.cs-anim-7 { animation-delay: 1.2s; }

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

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  html, body { overflow: auto; }
  .cs-page { height: auto; min-height: 100vh; padding: 4rem 0 6rem; }
  .cs-logo img { height: 44px; }
  .cs-heading br { display: none; }
  .cs-sub br { display: none; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .cs-anim-1, .cs-anim-2, .cs-anim-3,
  .cs-anim-4, .cs-anim-5, .cs-anim-6, .cs-anim-7 {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .cs-divider { width: 200px; transition: none; }
}
