/*
  Vibedsites by Pressific. Holding page stylesheet.
  Website developed by pressific.com Dileep C. Kaluaratchie and Emily Park.
*/

:root {
  --ink:        #0a0a0a;
  --ink-2:      #111111;
  --cream:      #ece6d8;
  --cream-soft: rgba(236, 230, 216, 0.72);
  --muted:      #8a857c;
  --line:       rgba(236, 230, 216, 0.18);
  --gold:       #c9a96e;
  --gold-2:     #d8be88;
  --gold-soft:  rgba(201, 169, 110, 0.18);
  --serif:      "Cormorant Garamond", "Times New Roman", serif;
  --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
::selection { background: var(--gold); color: var(--ink); }

/* Atmospheric backdrop */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201, 169, 110, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(20, 20, 20, 0.4) 0%, rgba(10, 10, 10, 1) 100%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--line) 30%, var(--line) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.6s var(--ease) 0.8s forwards;
}

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

/* Stage */
.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  z-index: 2;
}

/* Corner brackets — subtle editorial framing */
.bracket {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.4s forwards;
}
.bracket--tl { top: 28px; left: 28px;    border-right: 0; border-bottom: 0; }
.bracket--tr { top: 28px; right: 28px;   border-left: 0;  border-bottom: 0; }
.bracket--bl { bottom: 28px; left: 28px; border-right: 0; border-top: 0;   }
.bracket--br { bottom: 28px; right: 28px;border-left: 0;  border-top: 0;   }

/* Content block */
.content {
  text-align: center;
  max-width: 640px;
  position: relative;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 1s var(--ease) 0.2s forwards;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 14px;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.4s forwards;
}
.wordmark em { font-style: italic; color: var(--gold); font-weight: 300; }

.byline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 1s var(--ease) 0.55s forwards;
}
.byline__link {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.byline__link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 44px;
  opacity: 0;
  animation: rule 0.9s var(--ease) 0.7s forwards;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.85s forwards;
}

.status {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--cream-soft);
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 1s var(--ease) 1.05s forwards;
}
.status a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
.status a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.contact {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: rise 1s var(--ease) 1.25s forwards;
}
.contact a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.contact a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }

.foot {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
  opacity: 0;
  animation: rise 0.9s var(--ease) 1.5s forwards;
  white-space: nowrap;
}
.foot__sep { color: var(--gold); }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rule {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 640px) {
  .bracket { width: 16px; height: 16px; }
  .bracket--tl, .bracket--tr { top: 18px; }
  .bracket--bl, .bracket--br { bottom: 68px; }
  .bracket--tl, .bracket--bl { left: 18px; }
  .bracket--tr, .bracket--br { right: 18px; }
  .foot { bottom: 18px; font-size: 0.55rem; letter-spacing: 0.18em; gap: 10px; }
  .eyebrow { letter-spacing: 0.24em; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}
