/* ═══════════════════════════════════════════════════════════
   BE WEISZ EVENT PLANNING — Stylesheet
   Dark luxury aesthetic · Gold accents · Elegant typography
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Brand Palette */
  --gold: #c9a84c;
  --gold-light: #e2ca7e;
  --gold-dark: #a68a3e;
  --gold-glow: rgb(201, 168, 76, 0.25);
  --black: #0a0a0a;
  --black-rich: #111;
  --black-soft: #1a1a1a;
  --charcoal: #2a2a2a;
  --grey-dark: #3a3a3a;
  --grey: #888;
  --grey-light: #bbb;
  --white: #f5f0e8;
  --white-pure: #fff;

  /* Typography */
  --font-display: "Cormorant Garamond", georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-light);
  background-color: var(--black);
  overflow-x: hidden;
}

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

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

/* ── UTILITY ──────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--grey-light);
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgb(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ── NAVIGATION ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.4s;
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgb(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgb(201, 168, 76, 0.15);
  padding: 12px 0;
}

.nav-container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* ── HERO — PARTICLE FIELD ────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Canvas fills the entire hero */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* Radial vignette — frames the content, deepens edges */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    transparent 25%,
    rgb(10, 10, 10, 0.45) 65%,
    rgb(10, 10, 10, 0.88) 100%
  );
  pointer-events: none;
}

/* Text layer */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

/* Eyebrow label */
.hero-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(18px);
}

/* Decorative rule between label and title */
.hero-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 32px;
  opacity: 0;
}

/* Main display heading */
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* Subline tagline */
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--grey-light);
  letter-spacing: 0.03em;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(18px);
}

/* CTA row */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Hero entrance animations — triggered by JS adding .hero-visible to .hero */
.hero.hero-visible .hero-label {
  animation: heroFadeUp 1.1s var(--ease-out) 0.1s forwards;
}

.hero.hero-visible .hero-rule {
  animation: heroExpandRule 1.4s var(--ease-out) 0.35s forwards;
}

.hero.hero-visible .hero-title {
  animation: heroFadeUp 1.3s var(--ease-out) 0.5s forwards;
}

.hero.hero-visible .hero-tagline {
  animation: heroFadeUp 1.1s var(--ease-out) 0.9s forwards;
}

.hero.hero-visible .hero-actions {
  animation: heroFadeUp 1.1s var(--ease-out) 1.2s forwards;
}

.hero.hero-visible .hero-scroll-hint {
  animation: heroFadeUp 1s var(--ease-out) 1.8s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroExpandRule {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 110px;
    opacity: 1;
  }
}

/* ── CUSTOM CURSOR (desktop) ──────────────────────────── */
.cursor-orb {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease-out),
    height 0.25s var(--ease-out),
    opacity 0.3s;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s var(--ease-out),
    height 0.4s var(--ease-out);
  opacity: 0;
  will-change: left, top;
}

.cursor-orb.cursor-hover {
  width: 20px;
  height: 20px;
}

.cursor-ring.cursor-hover {
  width: 56px;
  height: 56px;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
}

.about-image-accent {
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-text .btn {
  margin-top: 1rem;
}

/* ── SERVICES GRID ────────────────────────────────────── */
.services-overview {
  background: var(--black-rich);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--black-soft);
  padding: clamp(30px, 4vw, 50px);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  background: var(--charcoal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── EXPERIENCE ───────────────────────────────────────── */
.experience {
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
}

.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
}

.experience-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.experience-content p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--grey-light);
}

.experience-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--gold) !important;
  margin-top: 1.5rem;
}

/* ── VALUE PROPS ──────────────────────────────────────── */
.value-props {
  background: var(--black-rich);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--charcoal);
  transition: all 0.5s var(--ease-out);
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  background: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--charcoal);
}

.faq-item summary {
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--black-rich) 0%, var(--black-soft) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-item strong {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-item a,
.contact-item span {
  color: var(--grey-light);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--grey);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

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

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--black-soft);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--grey);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: -8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--charcoal);
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--grey);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  transition: color 0.3s;
}

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

/* ── SCROLL ANIMATIONS ────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-down"] {
  transform: translateY(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 500px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: rgb(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Hide custom cursor on touch devices */
  .cursor-orb,
  .cursor-ring {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 14px 32px;
    font-size: 0.75rem;
  }
}
