:root {
  --cream: #f6efe2;
  --cream-deep: #ebe1cf;
  --ink: #142018;
  --forest: #1c3a2c;
  --moss: #2f5a42;
  --gold: #c9a14a;
  --gold-bright: #e8c56a;
  --gold-deep: #9a7428;
  --lavender: #b8a4c9;
  --blossom: #d4a0b8;
  --sky: #dce8f0;
  --white: #fffdf8;
  --glass: rgba(246, 239, 226, 0.72);
  --shadow: 0 24px 60px rgba(20, 32, 24, 0.18);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Imperial Script", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 161, 74, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(184, 164, 201, 0.2), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 45%, #e4dcc8 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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

.petal-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -10%;
  width: 10px;
  height: 14px;
  border-radius: 60% 40% 60% 40%;
  background: linear-gradient(135deg, var(--blossom), var(--lavender));
  opacity: 0.55;
  animation: drift linear infinite;
  filter: blur(0.2px);
}

.petal:nth-child(odd) {
  background: linear-gradient(135deg, var(--gold-bright), #f0d98a);
  width: 8px;
  height: 11px;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.55;
  }
  100% {
    transform: translate3d(var(--dx), 110vh, 0) rotate(360deg);
    opacity: 0;
  }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  background: rgba(246, 239, 226, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(246, 239, 226, 0.9);
  box-shadow: 0 8px 30px rgba(20, 32, 24, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: softPulse 4s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(201, 161, 74, 0); }
}

.nav-name {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-deep);
}

.nav-ticker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--gold-bright);
}

.nav-links {
  display: none;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.icon-link {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(20, 32, 24, 0.12);
  color: var(--forest);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
}

.icon-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.icon-link:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--gold);
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out);
}

.nav-toggle.open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(246, 239, 226, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 161, 74, 0.25);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.35s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
}

.btn-lg {
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(201, 161, 74, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(201, 161, 74, 0.45);
}

.btn-gold:hover::before {
  transform: translateX(120%);
}

.btn-ghost {
  border: 1.5px solid rgba(20, 32, 24, 0.2);
  background: rgba(255, 253, 248, 0.35);
  color: var(--ink);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.08);
  animation: heroKen 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, 1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 32, 24, 0.72) 0%, rgba(20, 32, 24, 0.45) 42%, rgba(20, 32, 24, 0.15) 70%, rgba(20, 32, 24, 0.35) 100%),
    linear-gradient(180deg, rgba(20, 32, 24, 0.25) 0%, transparent 30%, rgba(20, 32, 24, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.hero-title .script {
  font-family: var(--font-script);
  font-size: clamp(5rem, 18vw, 8.5rem);
  line-height: 0.85;
  font-weight: 400;
  background: linear-gradient(180deg, #fff6d6 0%, var(--gold-bright) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  animation: goldShimmer 5s ease-in-out infinite;
  background-size: 100% 200%;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.88);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  max-width: 28rem;
  color: rgba(255, 253, 248, 0.82);
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-ctas .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.35);
  background: rgba(255, 253, 248, 0.08);
}

.hero-ctas .btn-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.pill {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
}

.ca-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.85);
  font-size: 0.78rem;
  max-width: 100%;
  position: relative;
}

.ca-label {
  font-weight: 700;
  color: var(--gold-bright);
}

.ca-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 16rem;
}

.ca-copied {
  position: absolute;
  right: 0.75rem;
  opacity: 0;
  color: var(--gold-bright);
  font-weight: 600;
  transition: opacity 0.3s;
}

.ca-btn.copied .ca-copied {
  opacity: 1;
}

.ca-btn.copied .ca-value {
  opacity: 0.2;
}

.hero-float {
  display: none;
  position: absolute;
  right: 4%;
  bottom: 12%;
  z-index: 2;
  width: min(34vw, 380px);
  pointer-events: none;
}

.snoot-float {
  width: 100%;
  border-radius: 48% 52% 42% 58% / 55% 45% 55% 45%;
  box-shadow: var(--shadow);
  animation: floatSnoot 6s ease-in-out infinite;
  border: 3px solid rgba(232, 197, 106, 0.55);
}

@keyframes floatSnoot {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 3;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.4rem;
  border: 1.5px solid rgba(255, 253, 248, 0.45);
  border-radius: 999px;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 4px;
  margin: 0.45rem auto 0;
  border-radius: 50%;
  background: var(--gold-bright);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@media (min-width: 960px) {
  .hero {
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero-float {
    display: block;
  }
}

/* SECTIONS */
.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1.05rem;
  color: rgba(20, 32, 24, 0.78);
  max-width: 36rem;
}

.section-body strong {
  color: var(--gold-deep);
}

/* ABOUT */
.about {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
}

.about .section-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about .section-inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }
}

.about-visual {
  display: flex;
  justify-content: center;
}

.logo-frame {
  position: relative;
  width: min(100%, 420px);
}

.about-logo {
  width: 100%;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 2.4rem;
  border: 1.5px solid rgba(201, 161, 74, 0.45);
  animation: ringSpin 14s linear infinite;
  background:
    conic-gradient(from 0deg, transparent 0 70%, rgba(201, 161, 74, 0.5) 80%, transparent 90%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.traits {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.traits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(20, 32, 24, 0.1);
}

.traits span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-deep);
  min-width: 2rem;
}

/* MARQUEE */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.4rem 0;
  background: var(--forest);
  color: var(--gold-bright);
  border-block: 1px solid rgba(201, 161, 74, 0.3);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "·";
  margin-left: 2.5rem;
  opacity: 0.45;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* GALLERY */
.gallery {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
}

.gallery-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-head .section-body {
  margin-inline: auto;
}

.gallery-grid {
  width: min(1200px, calc(100% - 1.5rem));
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.video-card {
  background: rgba(255, 253, 248, 0.55);
  border: 1px solid rgba(201, 161, 74, 0.28);
  border-radius: 1.35rem;
  padding: 1.15rem 1.15rem 0.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  overflow: hidden;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.views {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--moss);
  background: rgba(47, 90, 66, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.video-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.tiktok-wrap {
  min-height: 480px;
  display: flex;
  justify-content: center;
}

.tiktok-wrap .tiktok-embed {
  margin: 0 !important;
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* JOIN */
.join {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.join-bg {
  position: absolute;
  inset: 10% 5% auto;
  height: 70%;
  border-radius: 3rem;
  background:
    radial-gradient(circle at 20% 40%, rgba(201, 161, 74, 0.25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(184, 164, 201, 0.28), transparent 40%),
    linear-gradient(160deg, rgba(28, 58, 44, 0.92), rgba(20, 32, 24, 0.95));
  transform: rotate(-1.5deg);
}

.join-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  padding: 3.5rem 1.25rem;
}

.join .section-kicker {
  color: var(--gold-bright);
}

.join .section-title {
  color: var(--white);
}

.join .section-body {
  margin-inline: auto;
  color: rgba(246, 239, 226, 0.78);
  margin-bottom: 2.25rem;
}

.social-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 760px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(232, 197, 106, 0.25);
  background: rgba(255, 253, 248, 0.06);
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 253, 248, 0.12);
  border-color: var(--gold-bright);
}

.social-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 161, 74, 0.18);
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.social-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.social-handle {
  font-size: 0.88rem;
  color: rgba(246, 239, 226, 0.65);
}

.join-buy {
  margin-top: 0.5rem;
}

/* FOOTER */
.footer {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(20, 32, 24, 0.1);
}

.footer-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-brand span {
  font-size: 0.85rem;
  opacity: 0.65;
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.55;
  max-width: 28rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  transition-delay: 0.05s;
}

.hero .hero-title.reveal {
  transition-delay: 0.15s;
}

.hero .hero-lead.reveal {
  transition-delay: 0.28s;
}

.hero .hero-ctas.reveal {
  transition-delay: 0.4s;
}

.hero .hero-ticker.reveal {
  transition-delay: 0.52s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
