/* Vamika Noir — landing only */

:root {
  --black: #060605;
  --bg: #0a0908;
  --cream: #e8e2d9;
  --muted: #7a756d;
  --gold: #c49a52;
  --gold-dim: rgba(196, 154, 82, 0.35);
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  cursor: none;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 50;
  opacity: 0.4;
}

.cursor {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.12s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.55;
}

/* Header — breathing room + readable over photography */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: max(20px, env(safe-area-inset-top)) max(40px, env(safe-area-inset-right)) 28px max(40px, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 5, 0.94) 0%,
    rgba(6, 6, 5, 0.55) 55%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}

.site-header--fixed .logo,
.site-header--fixed .header-links {
  pointer-events: auto;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-decoration: none;
}

.logo span {
  color: var(--gold);
}

.logo:hover {
  color: var(--gold);
}

.header-links {
  display: flex;
  gap: clamp(20px, 4vw, 32px);
  list-style: none;
}

.nav-placeholder {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

button.nav-placeholder {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: none;
  font: inherit;
  color: inherit;
}

button.nav-placeholder:hover {
  color: var(--cream);
}

/* Hero — keep face in frame; text sits low with safe margins */
.hero-full {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: env(safe-area-inset-top);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 5, 0.94) 0%,
    rgba(6, 6, 5, 0.45) 42%,
    rgba(6, 6, 5, 0.15) 72%,
    rgba(6, 6, 5, 0.35) 100%
  );
  z-index: 1;
}

.hero-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 24px) clamp(24px, 5vw, 48px) clamp(10vh, 12vw, 14vh);
  text-align: center;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 14vw, 160px);
  line-height: 0.92;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.65);
}

.hero-tagline {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.88);
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 24px clamp(24px, 5vw, 48px) max(40px, calc(env(safe-area-inset-bottom, 0px) + 28px));
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 96px);
  flex-wrap: wrap;
}

.hero-bottom-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(232, 226, 217, 0.55);
  border-bottom: 1px solid rgba(196, 154, 82, 0.2);
  padding-bottom: 6px;
}

button.hero-bottom-label {
  margin: 0;
  padding: 0 0 6px;
  border: none;
  border-bottom: 1px solid rgba(196, 154, 82, 0.2);
  background: none;
  cursor: none;
  font: inherit;
  color: inherit;
}

button.hero-bottom-label:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Mood panels — flex column so copy cannot float to top */
.mood-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: env(safe-area-inset-top);
}

.mood-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mood-panel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.mood-panel-photo--midnight {
  object-position: center 36%;
}

.mood-panel-photo--rain {
  object-position: center 32%;
}

.mood-panel-photo--honeyed {
  object-position: center 42%;
}

/* Tight editorial portrait — face-forward, keep eyes / freckles in frame */
.mood-panel-photo--editorial {
  object-position: center 35%;
}

.mood-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 6, 5, 0.96) 0%,
    rgba(6, 6, 5, 0.35) 48%,
    rgba(6, 6, 5, 0.5) 100%
  );
  z-index: 1;
}

.mood-panel-overlay--soft {
  background: linear-gradient(
    to top,
    rgba(6, 6, 5, 0.93) 0%,
    rgba(6, 6, 5, 0.2) 52%,
    rgba(6, 6, 5, 0.55) 100%
  );
}

.mood-panel-copy {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(24px, 5vw, 48px) max(22vh, calc(env(safe-area-inset-bottom, 0px) + 112px));
  text-align: center;
}

.mood-panel-copy--left {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  max-width: 520px;
  padding-left: clamp(24px, 6vw, 80px);
}

.mood-panel-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.75);
}

.mood-panel-line {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: rgba(232, 226, 217, 0.88);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
  max-width: 38em;
}

.mood-panel-copy--left .mood-panel-line {
  margin-left: 0;
}

/* Footer */
.site-footer {
  padding: 40px clamp(24px, 5vw, 48px) max(48px, calc(env(safe-area-inset-bottom, 0px) + 32px));
  border-top: 1px solid rgba(196, 154, 82, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.site-footer--landing {
  background: var(--bg);
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold);
}

/* Coming-soon tease overlay */
body.tease-open {
  overflow: hidden;
}

.tease-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.tease-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tease-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 3, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tease-overlay-panel {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  text-align: center;
  padding: 2.5rem 1.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.06s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.tease-overlay.is-open .tease-overlay-panel {
  opacity: 1;
  transform: translateY(0);
}

.tease-msg {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: rgba(232, 226, 217, 0.94);
  letter-spacing: 0.02em;
}

.tease-mark {
  margin-top: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.tease-mark span {
  opacity: 0.95;
}

@media (max-width: 768px) {
  .site-header {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-bottom: 22px;
  }

  .header-links {
    gap: 14px;
  }

  .nav-placeholder {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .hero-main {
    padding-bottom: clamp(8vh, 12vw, 12vh);
  }

  .mood-panel-copy,
  .mood-panel-copy--left {
    padding-left: clamp(20px, 5vw, 24px);
    padding-right: clamp(20px, 5vw, 24px);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .mood-panel-copy--left .mood-panel-line {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
