/* ==========================================================================
   NAZZIFEST — landing page
   ========================================================================== */

:root {
  --bg-cream: #F2E8D8;           /* soft ivory, matches logo bg */
  --bg-cream-deep: #E6D8C2;      /* deeper blush for alt sections */
  --mocha: #C9A99A;              /* warm beige crescent from logo */
  --ink-black: #0C0C0C;
  --ink-90: #1a1a1a;
  --gold: #D4A84F;               /* vivid gold ring from logo */
  --gold-dark: #A88336;          /* hover/accent darker */
  --muted: #756858;
  --hairline: rgba(12,12,12,.08);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Parisienne", cursive;

  --container: 1160px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(12,12,12,.04);
  --shadow: 0 12px 40px rgba(12,12,12,.08);
  --nav-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--ink-black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }

a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* typography */
.display, .display-sm {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
.display { font-size: clamp(2.6rem, 6vw + 1rem, 5.2rem); }
.display-sm { font-size: clamp(1.9rem, 2.2vw + 1.2rem, 3rem); line-height: 1.12; }
.display em, .display-sm em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1rem;
  font-weight: 600;
}
.eyebrow--light { color: var(--gold); }

.muted { color: var(--muted); }
.centered { text-align: center; }

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--ink-black); color: var(--bg-cream); }
.btn--primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn--outline { border-color: var(--ink-black); color: var(--ink-black); }
.btn--outline:hover { background: var(--ink-black); color: var(--bg-cream); }
.btn--ghost { border-color: rgba(245,236,219,.35); color: var(--bg-cream); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(245,236,219,.12); border-color: var(--bg-cream); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* ==== NAV ==== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,236,219,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink-black);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .18em;
  font-size: 1rem;
}
.nav__logo-mark { display: inline-block; width: 48px; height: 48px; object-fit: contain; }
.nav__logo-wordmark { display: none; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  text-decoration: none;
  color: var(--ink-90);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink-black);
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 860px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    background: var(--bg-cream);
    padding: 2rem 24px;
    gap: 1.2rem;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-120%);
    transition: transform .28s ease;
  }
  .nav--open .nav__links { transform: translateY(0); }
}

/* ==== HERO ==== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--bg-cream);
  color: var(--ink-black);
  overflow: hidden;
}
.hero__content {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
}
.hero__content .eyebrow { color: var(--gold-dark); }
.hero__content .display em { color: var(--gold-dark); }
.hero__lede {
  font-size: clamp(1.05rem, .5vw + .95rem, 1.2rem);
  max-width: 52ch;
  margin: 1rem 0 2rem;
  color: var(--muted);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__ctas .btn--ghost { border-color: var(--ink-black); color: var(--ink-black); }
.hero__ctas .btn--ghost:hover { background: var(--ink-black); color: var(--bg-cream); }

.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: radial-gradient(ellipse at center, #1a1814 0%, #0C0C0C 70%);
}

/* reel = fixed-aspect 9:16 card; guarantees full portrait visible */
.hero__reel {
  position: relative;
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - var(--nav-h) - 4rem);
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* big center play button — visible until first play */
.hero__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: linear-gradient(180deg, rgba(12,12,12,.15) 0%, rgba(12,12,12,.55) 100%);
  border: 0;
  color: var(--bg-cream);
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 3;
}
.hero__play svg { position: relative; z-index: 1; transform: translateX(2px); }
.hero__play-ring {
  position: absolute;
  width: 88px;
  height: 88px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 10px 30px rgba(212,168,79,.45), 0 0 0 6px rgba(242,232,216,.18);
  pointer-events: none;
  transition: transform .35s ease;
}
.hero__play:hover .hero__play-ring { transform: translate(-50%, calc(-50% - 20px)) scale(1.06); }
.hero__play-label {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(242,232,216,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.hero__reel.is-playing .hero__play { opacity: 0; visibility: hidden; pointer-events: none; }

/* elegant mute toggle — appears after play */
.hero__mute {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 4;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--ink-black);
  border: 2px solid rgba(242,232,216,.5);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero__mute:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,.38); }
.hero__mute:focus-visible { outline: 2px solid var(--bg-cream); outline-offset: 3px; }
.hero__mute .hero__mute-icon--off { display: none; }
.hero__mute[aria-pressed="true"] .hero__mute-icon--on { display: none; }
.hero__mute[aria-pressed="true"] .hero__mute-icon--off { display: inline-block; }

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(12,12,12,.3);
  border-radius: 14px;
  display: block;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 6px;
  background: var(--ink-black);
  margin: 6px auto 0;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__media { order: -1; padding: 1rem; }
  .hero__reel { height: auto; width: min(78vw, 420px); max-height: 72vh; }
  .hero__content {
    padding: 3rem 1.5rem 2.5rem;
    max-width: none;
    margin: 0;
  }
  .hero__scroll { display: none; }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50%      { transform: translateY(10px); opacity: 1; }
}

/* ==== SECTIONS ==== */
.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section--gold { background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-deep) 100%); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.section--dark { background: var(--ink-black); color: var(--bg-cream); }
.section--dark .muted { color: rgba(245,236,219,.6); }
.section--cream-deep { background: var(--bg-cream-deep); }
.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }

/* grid */
.grid { display: grid; gap: 2.5rem; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--align { align-items: center; }
@media (max-width: 860px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

figure { margin: 0; }
figure img {
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}

/* ==== PROOF ==== */
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.proof__stat { padding: 1rem; }
.proof__n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: .5rem;
}
.proof__l {
  display: block;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--muted);
  max-width: 28ch;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .proof { grid-template-columns: 1fr; }
}

/* ==== ICEBERG ==== */
.iceberg {
  max-width: 780px;
  margin: 3rem auto;
  display: grid;
  gap: 1rem;
  counter-reset: ice;
}
.iceberg__layer {
  background: rgba(245,236,219,.06);
  border: 1px solid rgba(245,236,219,.14);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-sm);
}
.iceberg__layer h3 {
  font-family: var(--font-display);
  margin: 0 0 .35rem;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 600;
}
.iceberg__layer p { margin: 0; color: rgba(245,236,219,.82); }

/* ==== CARDS ==== */
.cards { gap: 1.8rem; }
.card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 .4rem;
  font-weight: 700;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 .2rem;
  font-weight: 600;
}
.card p { margin: 0; color: var(--muted); }
.card__cta {
  margin-top: auto;
  padding-top: .8rem;
  font-weight: 600;
  color: var(--ink-black);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease;
}
.card__cta:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.card--accent { background: var(--ink-black); color: var(--bg-cream); border-color: transparent; }
.card--accent .card__tag { color: var(--gold); }
.card--accent p { color: rgba(245,236,219,.75); }
.card--accent .card__cta { color: var(--bg-cream); border-color: var(--gold); }

/* ==== CHECK LIST ==== */
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 1.4rem; display: grid; gap: .55rem; }
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 1rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ==== QUOTES ==== */
.quote {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 18px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 1rem;
}
.quote cite { font-style: normal; font-size: .85rem; color: var(--muted); letter-spacing: .05em; }

/* ==== LEAD MAGNET ==== */
.lead-magnet { max-width: 680px; margin: 0 auto; text-align: center; }
.lead-magnet__lede { color: rgba(245,236,219,.78); max-width: 52ch; margin: 0 auto 2rem; }
.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}
.lead-form input[type="email"] {
  flex: 1 1 260px;
  min-width: 0;
  background: rgba(245,236,219,.08);
  border: 1.5px solid rgba(245,236,219,.25);
  border-radius: 999px;
  padding: 1rem 1.3rem;
  color: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease;
}
.lead-form input::placeholder { color: rgba(245,236,219,.45); }
.lead-form input:focus { outline: none; border-color: var(--gold); background: rgba(245,236,219,.12); }
.lead-form button { flex: 0 0 auto; }
.lead-form .btn--primary { background: var(--gold); color: var(--ink-black); border: 0; }
.lead-form .btn--primary:hover { background: var(--bg-cream); }
.lead-form__note { width: 100%; font-size: .8rem; color: rgba(245,236,219,.5); margin: .6rem 0 0; }
.lead-form__msg { width: 100%; min-height: 1.4em; margin: .8rem 0 0; font-size: .95rem; color: var(--gold); }
.lead-form__msg.is-error { color: #e8a5a5; }

/* ==== PRODUCTS ==== */
.product {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product__img {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  margin-bottom: .4rem;
  position: relative;
  overflow: hidden;
}
.product__img--cream { background: linear-gradient(135deg, #EDE1CA, #F5ECDB); }
.product__img--dark  { background: linear-gradient(135deg, #0C0C0C, #2a2620); }
.product__img--gold  { background: linear-gradient(135deg, #C9A96E, #8F7340); }
.product__img::after {
  content: "NAZZIFEST";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  letter-spacing: .3em;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  mix-blend-mode: overlay;
}
.product__img--cream::after { color: rgba(12,12,12,.4); mix-blend-mode: normal; }
.product h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0; font-weight: 600; }
.product__desc { color: var(--muted); margin: 0; font-size: .92rem; }
.product__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); margin: .4rem 0; font-weight: 600; }
.product--featured { border-color: var(--gold); box-shadow: 0 12px 30px rgba(201,169,110,.18); }

/* ==== FAQ ==== */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 1.3rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--gold-dark);
  font-weight: 300;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .8rem 0 0; color: var(--muted); }

/* ==== FOOTER ==== */
.footer { background: var(--ink-black); color: var(--bg-cream); padding: 3rem 0 2rem; }
.footer__inner {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.footer__brand { font-family: var(--font-display); letter-spacing: .2em; font-size: 1.3rem; margin: 0 0 .2rem; }
.footer__tag { margin: 0; color: rgba(245,236,219,.6); font-size: .92rem; }
.footer__links { display: flex; gap: 1.4rem; }
.footer__links a { text-decoration: none; color: var(--bg-cream); font-size: .9rem; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.footer__links a:hover { border-bottom-color: var(--gold); }
.footer__copy {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245,236,219,.1);
  font-size: .8rem;
  color: rgba(245,236,219,.45);
  letter-spacing: .05em;
}
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__links { justify-content: center; flex-wrap: wrap; }
}

/* ==== REVEAL ON SCROLL ==== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
