/* =========================================================
   NEXT LEVEL BEAUTY — design tokens & base
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500&display=swap');

:root{
  /* --- color tokens --- */
  --bg:            #120B10;
  --bg-elevated:   #1C1218;
  --bg-elevated-2: #251722;
  --line:          rgba(248,243,239,0.09);
  --line-strong:   rgba(248,243,239,0.16);

  --pink:          #FF2E7E;
  --pink-2:        #FF5C93;
  --pink-soft:     #FF8FB8;
  --blush:         #F6D9E3;
  --gold:          #CDA35D;
  --gold-soft:     #E7CB98;

  --ivory:         #F8F3EF;
  --muted:         #B9A6AF;
  --muted-2:       #83717A;

  --grad-signature: linear-gradient(135deg, var(--pink) 0%, #FF6FA0 45%, var(--gold) 100%);

  /* --- type --- */
  --f-display: 'Fraunces', 'Iowan Old Style', serif;
  --f-body: 'Manrope', -apple-system, sans-serif;
  --f-mono: 'Space Grotesk', monospace;

  /* --- layout --- */
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

html, body{ margin:0; padding:0; }
body{
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* subtle grain + vignette across whole site */
body::before{
  content:"";
  position: fixed; inset:0;
  pointer-events:none;
  z-index: 2;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
body::after{
  content:"";
  position: fixed; inset:0;
  pointer-events:none;
  z-index: 1;
  background: radial-gradient(circle at 50% 0%, transparent 0%, rgba(0,0,0,0.55) 100%);
}

h1,h2,h3,h4{
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em{ font-style: italic; font-weight: 400; color: var(--pink-soft); }

p{ margin: 0; color: var(--muted); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap{ max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.eyebrow{
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 1px;
  background: var(--pink-soft);
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring{
  position: fixed;
  top:0; left:0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot{
  width: 7px; height: 7px;
  background: var(--pink);
  transition: opacity .2s;
}
.cursor-ring{
  width: 34px; height: 34px;
  border: 1px solid var(--pink-soft);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, background .25s, opacity .2s;
}
.cursor-ring.is-hover{
  width: 64px; height: 64px;
  background: rgba(255,46,126,0.08);
  border-color: var(--pink);
}
.cursor-ring.is-drag{
  width: 46px; height: 46px;
  background: var(--pink);
  border-color: var(--pink);
}
@media (hover:none), (pointer:coarse){
  .cursor-dot, .cursor-ring{ display:none; }
}

/* ---------- preloader ---------- */
.preloader{
  position: fixed; inset:0;
  background: var(--bg);
  z-index: 10000;
  display:flex; align-items:center; justify-content:center;
  flex-direction: column;
  gap: 18px;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-hidden{ opacity:0; visibility:hidden; }
.preloader-mark{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--pink-soft);
  letter-spacing: 0.08em;
}
.preloader-bar{
  width: 180px; height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.preloader-bar::after{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width: 40%;
  background: var(--grad-signature);
  animation: loadbar 1.1s var(--ease-soft) infinite;
}
@keyframes loadbar{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(350%); }
}

/* ---------- nav ---------- */
.site-nav{
  position: fixed; top:0; left:0; right:0;
  z-index: 500;
  padding: 26px var(--pad);
  display:flex; align-items:center; justify-content:space-between;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s;
}
.site-nav.is-scrolled{
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(18,11,16,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand{
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.01em;
  display:flex; align-items:baseline; gap:8px;
}
.brand em{ font-style: italic; color: var(--pink); font-weight: 400; }
.brand-sub{
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  display:block;
  margin-top: 2px;
}

.nav-links{
  display:flex; align-items:center; gap: 38px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  position: relative;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding: 4px 0;
  transition: color .3s;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:-2px;
  height:1px; background: var(--pink);
  transition: right .35s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active{ color: var(--ivory); }
.nav-links a:hover::after, .nav-links a.is-active::after{ right:0; }

.nav-cta{
  display:flex; align-items:center; gap: 22px;
}

.hamburger{
  display:none;
  width: 26px; height: 18px;
  position: relative;
  z-index: 600;
}
.hamburger span{
  position:absolute; left:0; right:0; height:1px; background: var(--ivory);
  transition: transform .35s var(--ease), opacity .3s;
}
.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:50%; transform: translateY(-50%); }
.hamburger span:nth-child(3){ bottom:0; }
.hamburger.is-open span:nth-child(1){ transform: translateY(8.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-8.5px) rotate(-45deg); }

.mobile-nav{
  position: fixed; inset:0;
  background: var(--bg);
  z-index: 400;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  gap: 22px;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav a{ font-family: var(--f-display); font-size: 42px; color: var(--muted); }
.mobile-nav a:hover{ color: var(--pink-soft); }

/* ---------- buttons ---------- */
.btn{
  position: relative;
  display: inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 13.5px; letter-spacing: 0.03em;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-primary{
  background: var(--grad-signature);
  color: #17090F;
}
.btn-primary:hover{ box-shadow: 0 12px 34px -8px rgba(255,46,126,0.55); }
.btn-ghost{
  border: 1px solid var(--line-strong);
  color: var(--ivory);
}
.btn-ghost:hover{ border-color: var(--pink-soft); background: rgba(255,143,184,0.06); }
.btn-arrow{ transition: transform .35s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(4px); }
.magnetic{ will-change: transform; }

/* ---------- marquee ---------- */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg-elevated);
}
.marquee-track{
  display:flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--muted-2);
  padding: 0 28px;
  display:flex; align-items:center; gap:28px;
  white-space: nowrap;
}
.marquee-track span::after{
  content:"✦";
  font-style: normal;
  font-size: 12px;
  color: var(--pink);
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ---------- footer ---------- */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 80px var(--pad) 30px;
  position: relative;
  z-index: 3;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand p{ margin-top: 14px; max-width: 280px; font-size: 14px; }
.footer-col h4{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.footer-col a, .footer-col p{ font-size: 14px; color: var(--muted); transition: color .3s; }
.footer-col a:hover{ color: var(--pink-soft); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials{ display:flex; gap: 18px; }
.footer-socials a{ color: var(--muted); transition: color .3s; }
.footer-socials a:hover{ color: var(--pink); }

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }

/* ---------- section basics ---------- */
section{ position: relative; z-index: 3; }
.section-pad{ padding: 120px var(--pad); }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 30px; margin-bottom: 56px; flex-wrap: wrap;
}
.section-head h2{ font-size: clamp(32px, 4.2vw, 54px); max-width: 640px; }

.divider-bulbs{
  display:flex; align-items:center; justify-content:center; gap:14px;
  margin: 6px 0;
}
.divider-bulbs span{
  width:5px; height:5px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 8px 1px rgba(205,163,93,0.6);
  animation: bulbflicker 3.4s ease-in-out infinite;
}
.divider-bulbs span:nth-child(2n){ animation-delay: .6s; }
.divider-bulbs span:nth-child(3n){ animation-delay: 1.2s; }
@keyframes bulbflicker{
  0%,100%{ opacity: .45; }
  50%{ opacity: 1; }
}

::selection{ background: var(--pink); color: #17090F; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 1.5px solid var(--pink-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* scrollbar */
::-webkit-scrollbar{ width: 9px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: var(--bg-elevated-2); border-radius: 10px; }

@media (max-width: 980px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .hamburger{ display:block; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
}
@media (max-width: 480px){
  .site-nav{ padding-left: 20px; padding-right: 20px; }
  .brand{ font-size: 16px; }
  .brand-sub{ display:none; }
  .nav-cta .btn-primary{ padding: 12px 18px; font-size: 12.5px; }
}
@media (max-width: 640px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ---------- swatch art (real photo slots — drop a file in /images to replace) ---------- */
img.swatch{ width:100%; height:100%; object-fit:cover; display:block; }
.swatch{ position: relative; background: var(--bg-elevated-2); overflow:hidden; }
.swatch::after{
  content:"";
  position:absolute; inset:0;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.swatch::before{
  content:"";
  position:absolute; inset:0;
  opacity: .9;
}
.sw-1::before{ background: radial-gradient(circle at 30% 20%, #FF6FA0, #7A1240 65%, #2A0C18); }
.sw-2::before{ background: radial-gradient(circle at 70% 30%, #E7CB98, #7A5A2A 60%, #241708); }
.sw-3::before{ background: radial-gradient(circle at 40% 70%, #FF2E7E, #430A26 65%, #17070F); }
.sw-4::before{ background: radial-gradient(circle at 60% 40%, #F6D9E3, #A85A78 55%, #2A0C1B); }
.sw-5::before{ background: radial-gradient(circle at 50% 20%, #CDA35D, #5C3A18 60%, #1B1108); }
.sw-6::before{ background: radial-gradient(circle at 30% 60%, #FF8FB8, #5A1030 65%, #1A0710); }
.sw-7::before{ background: radial-gradient(circle at 65% 65%, #B983FF, #5A2470 60%, #1C0C22); }
.sw-8::before{ background: radial-gradient(circle at 40% 30%, #FFD9A0, #8A4A1E 60%, #241105); }
.sw-9::before{ background: radial-gradient(circle at 50% 50%, #FF4F8B, #33091D 70%, #120810); }
.sw-10::before{ background: radial-gradient(circle at 25% 75%, #E7CB98, #FF2E7E 45%, #2A0C18); }
.sw-11::before{ background: radial-gradient(circle at 75% 25%, #F6D9E3, #C4708F 55%, #1F0B14); }
.sw-12::before{ background: radial-gradient(circle at 50% 50%, #FF8FB8, #A6437B 55%, #260A18); }
/* Ensure header flexbox centers and allows taller logo elements */
.site-nav {
  display: flex;
  align-items: center;
  min-height: 90px; /* Gives the header enough room for a larger logo */
}

/* Allow the brand link to overflow flex constraints */
.site-nav .brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* Target the logo specifically and override any existing max-height constraints */
.site-nav .brand-logo {
  height: 75px !important; /* Forces a clear, visible height */
  width: auto !important;
  max-height: none !important;
  object-fit: contain;
}

/* Footer sizing bump */
.site-footer .brand-logo {
  height: 60px !important;
  width: auto;
  object-fit: contain;
}

/* Ensure navbar scales nicely on smaller screens */
@media (max-width: 768px) {
  .site-nav .brand-logo {
    height: 52px !important;
  }
}