/* ── RESET & TOKENS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:   #0b1120;
  --navy2:  #0e1528;
  --navy3:  #111a30;
  --gold:   #c9a84c;
  --gold2:  #e2c06a;
  --golddim:#8a6e30;
  --white:  #ffffff;
  --offwhite: #e8e8e8;
  --muted:  #8899aa;
  --border: rgba(201,168,76,0.22);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--golddim); }

/* ── SHARED ── */
.gold-text { color: var(--gold); }
.white     { color: var(--white); }
.section-tag {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  text-align: center;
}

/* ══════════════════════════════
   SECTION 1 — HERO
══════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #152040 0%, #0b1120 60%, #060c18 100%);
}

#stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-top-rule {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-top-rule .rule-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
}

.eyebrow {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.title-white {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 9rem);
  color: var(--white);
  letter-spacing: .02em;
}
.title-gold {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 9rem);
  color: var(--gold);
  letter-spacing: .02em;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--offwhite);
  margin-bottom: .7rem;
  letter-spacing: .04em;
}

.hero-cs {
  font-size: .55rem;
  font-weight: 300;
  letter-spacing: .65em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--golddim);
  opacity: .5;
}
.dot.active {
  background: var(--gold);
  opacity: 1;
}

.launch-btn {
  display: inline-block;
  padding: 1rem 3.5rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.launch-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* scroll mouse */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.mouse-icon {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.mouse-wheel {
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease infinite;
}
@keyframes scroll-anim {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

/* ══════════════════════════════
   SECTION 2 — STORY
══════════════════════════════ */
#story {
  background: var(--navy2);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
}

.story-card {
  position: relative;
  max-width: 760px;
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  padding: 4rem 4.5rem;
  text-align: center;
}

/* gold corner brackets */
.card-corner {
  position: absolute;
  width: 18px; height: 18px;
}
.card-corner.tl { top: -1px; left: -1px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.card-corner.tr { top: -1px; right: -1px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.card-corner.bl { bottom: -1px; left: -1px; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.card-corner.br { bottom: -1px; right: -1px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

.story-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1.3rem;
}
.story-body {
  font-size: .85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.story-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ══════════════════════════════
   SECTION 3 — GALLERY
══════════════════════════════ */
#gallery {
  background: var(--navy3);
  padding: 7rem 3rem;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  margin-bottom: .6rem;
  letter-spacing: .02em;
}

.gallery-underline {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 0 auto 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.g-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .5rem;
  overflow: hidden;
  transition: transform .4s, border-color .4s;
  cursor: default;
}
.g-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
}
.g-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #0d1424;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.g-card-img img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  transition: transform .5s;
}
.g-card:hover .g-card-img img { transform: scale(1.04); }

.g-card-info {
  background: rgba(13,20,36,.85);
  padding: 1.2rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.g-card-rule {
  width: 28px; height: 1.5px;
  background: var(--gold);
  margin-bottom: .7rem;
}
.g-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.g-card-sub {
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════
   SECTION 4 — QUOTE
══════════════════════════════ */
#quote {
  background: var(--navy2);
  padding: 7rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.quote-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2.5rem;
}
.quote-ornament.bottom { margin-top: 2.5rem; margin-bottom: 0; }
.q-line {
  display: block;
  width: 60px; height: 1px;
  background: rgba(201,168,76,.3);
}
.q-diamond {
  display: block;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.25;
  color: var(--white);
  font-style: normal;
  max-width: 800px;
}
.quote-gold {
  font-style: italic;
  color: var(--gold);
}

/* ══════════════════════════════
   SECTION 5 — NOTIFY
══════════════════════════════ */
#notify {
  background: var(--navy);
  padding: 7rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coming-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.coming-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 3rem;
  letter-spacing: .04em;
}

/* glowing gold orb */
.orb-wrap {
  margin-bottom: 3.5rem;
}
.orb {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold2), var(--gold), var(--golddim));
  box-shadow: 0 0 40px rgba(201,168,76,.4), 0 0 80px rgba(201,168,76,.15);
  animation: orb-pulse 3s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,.4), 0 0 80px rgba(201,168,76,.15); transform: scale(1); }
  50%       { box-shadow: 0 0 60px rgba(201,168,76,.6), 0 0 120px rgba(201,168,76,.25); transform: scale(1.05); }
}

.notify-form {
  display: flex;
  max-width: 460px;
  width: 100%;
  gap: 0;
  margin-bottom: 1rem;
}
.notify-inp {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-right: none;
  padding: .85rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 200;
  letter-spacing: .06em;
  color: var(--white);
  outline: none;
  transition: border-color .3s;
}
.notify-inp::placeholder { color: rgba(255,255,255,.2); }
.notify-inp:focus { border-color: var(--gold); }
.notify-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: .85rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s;
}
.notify-btn:hover { background: var(--gold2); border-color: var(--gold2); }
.notify-ok {
  display: none;
  font-size: .62rem;
  font-weight: 200;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .5rem;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: .08em;
}
.footer-divider {
  width: 36px; height: 1px;
  background: var(--golddim);
  margin: .4rem 0;
}
.footer-copy {
  font-size: .52rem;
  font-weight: 200;
  letter-spacing: .25em;
  color: var(--muted);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .story-card { padding: 2.5rem 1.8rem; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
  .notify-inp { border-right: 1px solid var(--border); border-bottom: none; }
  .notify-btn { padding: .85rem; }
}
