/* ============================================================
   Accent Event Group — Website (dark, dramatic, luxe)
   Shared stylesheet for all pages.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Hanken+Grotesk:wght@400;500;600;700&family=Kaushan+Script&display=swap');

:root {
  /* Brand */
  --gold:        #e8cc51;
  --gold-bright: #f5e493;
  --gold-deep:   #cbae3c;
  --gold-grad:   linear-gradient(118deg, #cba93b 0%, #f4e08c 30%, #e8cc51 52%, #f7ecbf 72%, #c99f31 100%);
  --gold-grad-soft: linear-gradient(118deg, #e8cc51, #f7ecbf);

  --purple:       #382245;
  --purple-lit:   #4a2e5b;
  --purple-deep:  #1e1229;
  --purple-glow:  rgba(120, 70, 150, 0.35);

  /* Surfaces */
  --bg:        #0a0a0a;
  --bg-2:      #0f0a14;
  --surface:   #140d1b;
  --surface-2: #1a1122;
  --surface-3: #211630;
  --line:      rgba(255,255,255,0.09);
  --line-2:    rgba(255,255,255,0.14);
  --gold-line: rgba(232,204,81,0.32);

  /* Text */
  --text:       #f0ece8;
  --text-muted: #b8b0c0;
  --text-dim:   #8a8194;

  /* Type */
  --f-display: 'Jost', system-ui, sans-serif;
  --f-body:    'Hanken Grotesk', system-ui, sans-serif;
  --f-script:  'Kaushan Script', cursive;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);

  /* Layout */
  --nav-h: 80px;
  --container: 1280px;
  --container-wide: 1480px;

  /* Shadow / glow */
  --glow-gold: 0 0 40px rgba(232,204,81,0.30);
  --glow-gold-sm: 0 0 20px rgba(232,204,81,0.22);
  --shadow: 0 24px 60px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #0a0a0a; }

/* ---- Typography helpers ---- */
.display {
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  color: var(--gold);
}
.script {
  font-family: var(--f-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-bright);
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.wide { max-width: var(--container-wide); }
.section { padding: clamp(44px, 6vw, 84px) 0; position: relative; }

/* ---- Buttons ---- */
.btn {
  --pad: 16px 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: var(--pad); border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; position: relative; white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-sm { --pad: 11px 22px; font-size: 0.74rem; }
.btn-lg { --pad: 19px 40px; font-size: 0.9rem; }
.btn-primary { background: var(--gold-grad); color: #1a0f24; box-shadow: var(--glow-gold-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-gold); }
.btn-primary:active { transform: translateY(-1px) scale(0.98); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-gold-outline { background: transparent; color: var(--gold); border-color: var(--gold-line); }
.btn-gold-outline:hover { background: var(--gold); color: #1a0f24; transform: translateY(-3px); box-shadow: var(--glow-gold-sm); }

/* ---- Tags / badges ---- */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-display); font-weight: 600; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--gold-line); color: var(--gold);
  background: rgba(232,204,81,0.06);
}
.tag-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,8,14,0.82); backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line); height: 68px;
}
.nav__inner { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 68px; transition: height 0.4s var(--ease); }
.nav.scrolled .nav__logo img { height: 56px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  position: relative; font-family: var(--f-display); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text);
  padding: 6px 0; transition: color 0.25s; cursor: pointer; background: none; border: none;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold-grad); transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__has-children { display: inline-flex; align-items: center; gap: 6px; }
.nav__chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.7; }

/* dropdown */
.nav__item { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 16px; padding: 10px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
}
.nav__item:hover .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav__menu a {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 11px;
  font-family: var(--f-body); font-weight: 600; font-size: 0.9rem; color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.nav__menu a:hover { background: var(--surface-3); color: var(--gold); }
.nav__menu a span.ic { font-size: 1rem; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.nav__burger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.32s var(--ease), opacity 0.2s var(--ease); transform-origin: center; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 99; pointer-events: none; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(5,3,8,0.72); opacity: 0; transition: opacity 0.35s; backdrop-filter: blur(6px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 400px);
  background: linear-gradient(180deg, #16101d 0%, var(--surface) 30%);
  border-left: 1px solid var(--gold-line); padding: 22px 26px 30px;
  box-shadow: -30px 0 80px rgba(0,0,0,0.5);
  transform: translateX(100%); transition: transform 0.42s var(--ease); overflow-y: auto;
  display: flex; flex-direction: column;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: flex-end; padding-bottom: 18px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.drawer__logo { height: 50px; }
.drawer__close { position: relative; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255,255,255,0.03); cursor: pointer; flex-shrink: 0; transition: border-color 0.25s, background 0.25s; }
.drawer__close:hover { border-color: var(--gold); background: rgba(232,204,81,0.08); }
.drawer__close span { position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: var(--text); border-radius: 2px; }
.drawer__close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.drawer__close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.drawer__close:hover span { background: var(--gold); }
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 2px; border-bottom: 1px solid var(--line);
  font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text);
  opacity: 0; transform: translateX(16px); transition: color 0.2s, opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.drawer__links a::after { content: "\2197"; color: var(--gold-deep); font-size: 0.9rem; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.drawer__links a:hover { color: var(--gold); padding-left: 8px; }
.drawer__links a:hover::after { opacity: 1; transform: none; }
.drawer.open .drawer__links a { opacity: 1; transform: none; }
.drawer.open .drawer__links a:nth-child(1) { transition-delay: 0.08s; }
.drawer.open .drawer__links a:nth-child(2) { transition-delay: 0.12s; }
.drawer.open .drawer__links a:nth-child(3) { transition-delay: 0.16s; }
.drawer.open .drawer__links a:nth-child(4) { transition-delay: 0.20s; }
.drawer.open .drawer__links a:nth-child(5) { transition-delay: 0.24s; }
.drawer.open .drawer__links a:nth-child(6) { transition-delay: 0.28s; }
.drawer.open .drawer__links a:nth-child(7) { transition-delay: 0.32s; }
.drawer.open .drawer__links a:nth-child(8) { transition-delay: 0.36s; }
.drawer.open .drawer__links a:nth-child(9) { transition-delay: 0.40s; }
.drawer__panel > .btn { margin-top: 24px; width: 100%; }
.drawer__foot { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.drawer__foot a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s; }
.drawer__foot a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer__logo { height: 64px; margin-bottom: 20px; }
.footer__about { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; max-width: 320px; }
.footer__col h4 { font-family: var(--f-display); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin: 0 0 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s, padding-left 0.2s; }
.footer__col a:hover { color: var(--gold); padding-left: 4px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-muted); transition: all 0.25s var(--ease); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); box-shadow: var(--glow-gold-sm); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-dim); font-size: 0.82rem; }

/* ============================================================
   MOTION — scroll reveal
   ============================================================ */
/* sticky mobile CTA bar */
.mobile-cta { display: none; }
@media (max-width: 860px) {
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(10,8,14,0.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line); }
  .mobile-cta a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--f-display); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 14px 10px; border-radius: 999px; }
  .mobile-cta__call { flex: 0 0 34%; background: transparent; color: var(--text); border: 1.5px solid var(--line-2); }
  .mobile-cta__quote { background: var(--gold-grad); color: #1a0f24; }
  body { padding-bottom: 72px; }
}

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */
/* embedded form shell (HoneyBook + custom) */
.form-shell { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: clamp(20px, 4vw, 36px); box-shadow: var(--shadow); }
.vfield { font-family: var(--f-body); font-size: 1rem; color: var(--text); background: var(--bg-2); border: 1.5px solid var(--line-2); border-radius: 12px; padding: 14px 16px; outline: none; width: 100%; transition: border-color 0.25s, box-shadow 0.25s; }
.vfield::placeholder { color: var(--text-dim); }
.vfield:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(232,204,81,0.14); }
/* glow blobs */
.glow-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }

/* feature/service card */
.scard {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-8px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.scard__media { aspect-ratio: 16/11; position: relative; overflow: hidden; background: var(--purple-deep); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.scard:hover .scard__media img { transform: scale(1.07); }
.scard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,8,14,0.85)); }
.scard__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.scard__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; font-size: 1.4rem; margin: 0; letter-spacing: -0.01em; }
.scard__kicker { font-family: var(--f-display); font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-top: 6px; }
.scard__list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.scard__list li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-muted); font-size: 0.94rem; line-height: 1.45; }
.scard__list li::before { content: "◆"; color: var(--gold-deep); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
.scard__link { margin-top: 22px; align-self: flex-start; font-family: var(--f-display); font-weight: 700; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border: 1.5px solid var(--gold-line); border-radius: 999px; transition: gap 0.25s, background 0.25s, color 0.25s, border-color 0.25s; }
.scard__link:hover { gap: 14px; background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }

/* stat */
.stat__num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-family: var(--f-display); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-top: 8px; }

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq__item.open { border-color: var(--gold-line); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--text);
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; }
.faq__q:hover { color: var(--gold); }
.faq__icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq__icon::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq__icon::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.faq__item.open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 26px 24px; color: var(--text-muted); line-height: 1.7; font-size: 0.98rem; }

/* section heading block */
.shead { max-width: 720px; }
.shead.center { margin: 0 auto; text-align: center; }
.shead__title { font-family: var(--f-display); font-weight: 800; text-transform: uppercase; line-height: 1.0; letter-spacing: -0.01em; font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 16px 0 0; }
.shead__sub { margin: 20px 0 0; color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; }
.shead.center .shead__sub { margin-left: auto; margin-right: auto; }

/* divider rule with diamond */
.rule { display: flex; align-items: center; gap: 16px; color: var(--gold-deep); }
.rule::before, .rule::after { content: ""; height: 1px; background: var(--gold-line); flex: 1; }
.rule span { font-size: 0.7rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .nav__logo img { height: 54px; }
  .nav.scrolled .nav__logo img { height: 46px; }
  .footer { padding: 56px 0 30px; }
  .footer__social { flex-wrap: wrap; }
  .shead__sub { font-size: 1rem; }
}
