/* ManaKutumbam — Coming Soon
   Palette pulled from the brand mark: warm gold, deep maroon, ivory cream. */

:root {
  --gold: #c8a24a;
  --gold-light: #e8cf8f;
  --gold-deep: #9c7a26;
  --maroon: #7d1f34;
  --maroon-deep: #4a0f1e;
  --cream: #f8efdd;
  --cream-warm: #f1e2c2;
  --ink: #2c1017;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Marcellus', var(--serif);
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* subtle paper grain over everything, sits above video, below text */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.05;
  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");
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(74, 15, 30, 0.55), transparent);
}

.header-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1.5px rgba(232, 207, 143, 0.65);
}

.header-name {
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.header-name em {
  font-style: normal;
  color: var(--gold-light);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.9) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 65% at 50% 38%, rgba(74, 15, 30, 0.45), rgba(44, 16, 23, 0.78) 65%),
    linear-gradient(180deg, rgba(44,16,23,0.75) 0%, rgba(44,16,23,0.55) 30%, rgba(44,16,23,0.72) 70%, rgba(20,7,11,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) 1.75rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: clamp(96px, 16vw, 148px);
  height: clamp(96px, 16vw, 148px);
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.6rem;
  box-shadow:
    0 0 0 1px rgba(232, 207, 143, 0.8),
    0 0 0 7px rgba(232, 207, 143, 0.12),
    0 18px 40px -12px rgba(0,0,0,0.65);
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) both;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(0.7rem, 1.6vw, 0.82rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.headline {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.08;
  color: var(--cream);
  text-wrap: balance;
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.18s both;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 260px;
  margin: 0.3rem 0 1.4rem;
  color: var(--gold);
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.26s both;
}

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

.sub {
  margin: 0 0 2.1rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: rgba(248, 239, 221, 0.86);
  max-width: 480px;
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.34s both;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(200, 162, 74, 0.55);
  border-radius: 999px;
  background: rgba(200, 162, 74, 0.08);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.42s both;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(232, 207, 143, 0.7);
  animation: pulse 2.2s ease-out infinite;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.cta {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 70%);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 10px 30px -10px rgba(200, 162, 74, 0.55);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, background 0.35s ease;
  animation: rise 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

.cta-ghost {
  color: var(--gold-light);
  background: transparent;
  border: 1px solid rgba(232, 207, 143, 0.5);
  box-shadow: none;
  font-variant-numeric: tabular-nums;
}

.cta-ghost:hover,
.cta-ghost:focus-visible {
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 70%);
  border-color: var(--gold);
  box-shadow: 0 10px 30px -10px rgba(200, 162, 74, 0.55);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(200, 162, 74, 0.75);
  background: linear-gradient(180deg, #f2e2ab, var(--gold-deep) 90%);
}

.cta:active {
  transform: translateY(-1px);
}

.scroll-cue {
  position: absolute;
  bottom: clamp(1.25rem, 3vh, 2.25rem);
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(232, 207, 143, 0.55);
  border-radius: 999px;
  z-index: 1;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--maroon-deep);
  color: rgba(248, 239, 221, 0.75);
  padding: 3rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 1px rgba(232, 207, 143, 0.5);
}

.site-footer p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.footer-contact {
  font-variant-numeric: tabular-nums;
}

.footer-contact a {
  color: rgba(248, 239, 221, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-light);
}

.footer-contact .dot-sep {
  margin: 0 0.5rem;
  color: rgba(200, 162, 74, 0.6);
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 0.6rem !important;
}

/* ---------- motion ---------- */

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

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 207, 143, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(232, 207, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 207, 143, 0); }
}

@keyframes scrollDot {
  0%   { opacity: 0; top: 6px; }
  30%  { opacity: 1; }
  80%  { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 560px) {
  .site-header { padding: 0.9rem 1.1rem; }
  .header-name { font-size: 1rem; }
  .hero-content { padding-top: 5.5rem; }
  .scroll-cue { display: none; }
}
