/* ===========================================================
   GS Elite Event — base.css
   Shared variables, reset, typography, header & footer.
   Loaded on every page.
=========================================================== */

:root{
  /* ---- GS Elite Event brand palette ---- */
  --black:#0D0B0B;
  --burgundy:#5A1725;
  --burgundy-light:#7C2236;
  --gold-antique:#C9A227;
  --gold-soft:#E8C766;
  --cream:#FFF3D6;
  --cream-dim:#F3E3B8;
  --cream-dim2:#E9D49C;

  /* ---- existing variable names, remapped to the palette above ----
     (kept so every rule below still works without a rewrite) */
  --maroon-950:var(--black);
  --maroon-800:var(--burgundy);
  --maroon-700:var(--burgundy);
  --maroon-600:var(--burgundy);
  --maroon-500:var(--burgundy-light);

  --gold-300:var(--gold-soft);
  --gold-400:var(--gold-soft);
  --gold-500:var(--gold-antique);
  --gold-700:#8F7018;

  --cream-50:var(--cream);
  --cream-100:var(--cream-dim);
  --cream-200:var(--cream-dim2);

  --ink-900:var(--black);
  --ink-700:#3A2A22;
  --ink-500:#6B5A4C;
  --burgundy-deep:#230A11;

  --radius:16px;
  --header-h:150px;
  --banner-gradient: radial-gradient(120% 140% at 15% -10%, var(--burgundy) 0%, var(--black) 55%, #050404 100%);
  --banner-gradient-deep: radial-gradient(120% 140% at 15% 110%, #3A0F1A 0%, #0D0B0B 55%, #050404 100%);
}

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

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:'Inter', sans-serif;
  color:var(--ink-700);
  background:var(--cream-50);
  -webkit-font-smoothing:antialiased;
  padding-top:var(--header-h);
}

h1,h2,h3,h4{ font-family:'Playfair Display', serif; margin:0; }
p{ margin:0; }
a{ text-decoration:none; color:inherit; }
button{ font-family:'Inter', sans-serif; cursor:pointer; }
input, select, textarea{ font-family:'Inter', sans-serif; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

.container{ max-width:1080px; margin:0 auto; padding:0 20px; }

/* ---------- buttons (shared) ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 22px; border-radius:12px; border:none; font-weight:600; font-size:14.5px;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease; white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--block{ width:100%; }
.btn--primary{ background:linear-gradient(135deg,var(--maroon-500),var(--maroon-800)); color:var(--cream); box-shadow:0 10px 24px -10px rgba(103,28,57,.65); }
.btn--primary:hover{ box-shadow:0 14px 30px -10px rgba(103,28,57,.75); transform:translateY(-1px); }
.btn--primary:disabled{ opacity:.7; cursor:default; transform:none; }
.btn--ghost{ background:var(--cream-100); color:var(--ink-700); border:1px solid var(--cream-200); }
.btn--ghost:hover{ background:var(--cream-200); }
.btn--sm{ padding:9px 16px; font-size:13.5px; border-radius:10px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:6px; padding:6px 14px; border-radius:999px;
  background:var(--cream-100); border:1px solid var(--gold-400); color:var(--maroon-700);
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
}

.divider{ display:flex; align-items:center; justify-content:center; gap:8px; margin:22px 0; }
.divider__line{ width:52px; height:1px; background:var(--gold-500); }
.divider--cream .divider__line{ background:rgba(255,255,255,.55); }
.divider__diamond{ width:7px; height:7px; background:var(--gold-500); transform:rotate(45deg); }
.divider--cream .divider__diamond{ background:var(--gold-300); }
.divider__diamond--sm{ width:5px; height:5px; opacity:.85; }

.spin{ animation:spin .9s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes riseIn{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }

/* =============================================================
   HEADER
============================================================= */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100; height:var(--header-h);
  display:flex; align-items:center;
  background:var(--banner-gradient);
  border-bottom:1px solid rgba(241,222,156,.22);
  transition:box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled{
  border-bottom-color:rgba(241,222,156,.4);
  box-shadow:0 16px 34px -18px rgba(0,0,0,.6);
}
.site-header__inner{
  width:100%; max-width:1080px; margin:0 auto; padding:0 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.site-header__brand{ display:flex; align-items:center; }
.site-header__logo{ height:110px; width:auto; opacity:.98; transition:transform .2s ease; }
.site-header__brand:hover .site-header__logo{ transform:scale(1.03); }

.site-nav{ display:flex; align-items:center; gap:6px; }
.site-nav a{
  padding:9px 16px; border-radius:999px; font-size:13.5px; font-weight:600; color:rgba(243,230,214,.82);
  transition:background .18s ease, color .18s ease;
}
.site-nav a:hover{ background:rgba(241,222,156,.12); color:var(--gold-300); }
.site-nav a.is-active{ background:rgba(241,222,156,.16); color:var(--gold-300); box-shadow:inset 0 0 0 1px rgba(241,222,156,.4); }

.site-header__cta{ display:flex; align-items:center; gap:10px; }

.btn--gold{ background:linear-gradient(135deg,var(--gold-300),var(--gold-500)); color:var(--maroon-950); font-weight:700; box-shadow:0 10px 22px -10px rgba(201,162,39,.55); }
.btn--gold:hover{ transform:translateY(-1px); box-shadow:0 14px 26px -10px rgba(201,162,39,.65); }

.nav-toggle{
  display:none; width:40px; height:40px; border-radius:10px; border:1px solid rgba(241,222,156,.35);
  background:rgba(241,222,156,.1); align-items:center; justify-content:center; flex-direction:column; gap:4px;
}
.nav-toggle span{ width:18px; height:2px; background:var(--gold-300); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }

@media (max-width:860px){
  :root{ --header-h:104px; }
  .site-nav{
    position:fixed; top:var(--header-h); left:0; right:0; flex-direction:column; align-items:stretch;
    background:var(--maroon-950); border-bottom:1px solid rgba(241,222,156,.25);
    padding:10px 16px 18px; gap:2px;
    transform:translateY(-8px); opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .site-nav a{ padding:12px 14px; border-radius:10px; }
  .nav-toggle{ display:flex; }
  .site-header__logo{ height:66px; }
}

/* =============================================================
   FOOTER
============================================================= */
.site-footer{
  position:relative; margin-top:40px; padding:0 20px 26px; overflow:hidden;
  background:var(--banner-gradient-deep); color:var(--cream);
}
.site-footer__glow{ position:absolute; inset:0; background:radial-gradient(60% 80% at 50% 0%, rgba(201,162,39,.14), transparent 70%); pointer-events:none; }

.site-footer__top{ position:relative; display:flex; justify-content:center; padding:34px 0 6px; }

.site-footer__grid{
  position:relative; max-width:1080px; margin:0 auto; padding-top:26px;
  display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:32px;
}
@media (max-width:760px){ .site-footer__grid{ grid-template-columns:1fr; gap:30px; } }

.footer-reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.footer-reveal.is-visible{ opacity:1; transform:translateY(0); }
.footer-reveal:nth-child(2){ transition-delay:.08s; }
.footer-reveal:nth-child(3){ transition-delay:.16s; }

.site-footer__brand{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.site-footer__logo{ height:100px; width:auto; opacity:.98; }
.site-footer__brand strong{ font-family:'Playfair Display',serif; font-size:16px; color:var(--gold-300); }
.site-footer__tag{ font-size:13px; color:rgba(243,230,214,.7); line-height:1.7; max-width:280px; }

.site-footer h4{
  font-family:'Inter',sans-serif; font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--gold-300); margin-bottom:16px; font-weight:700; position:relative; padding-bottom:10px;
}
.site-footer h4::after{ content:''; position:absolute; left:0; bottom:0; width:24px; height:2px; background:var(--gold-500); border-radius:2px; }

.site-footer__links{ display:flex; flex-direction:column; gap:10px; }
.site-footer__links a{
  font-size:13.5px; color:rgba(243,230,214,.82); width:fit-content; position:relative; padding-bottom:1px;
  background-image:linear-gradient(var(--gold-300),var(--gold-300));
  background-repeat:no-repeat; background-position:0 100%; background-size:0% 1px;
  transition:color .2s ease, background-size .25s ease;
}
.site-footer__links a:hover{ color:var(--gold-300); background-size:100% 1px; }

.site-footer__contact{ display:flex; flex-direction:column; gap:4px; font-size:13.5px; color:rgba(243,230,214,.82); }
.site-footer__contact li{
  display:flex; align-items:flex-start; gap:10px; padding:7px 8px; border-radius:9px; margin:0 -8px;
  transition:background .18s ease;
}
.site-footer__contact li:hover{ background:rgba(241,222,156,.07); }
.site-footer__contact svg{ flex:none; margin-top:2px; color:var(--gold-400); }

.site-footer__bottom{
  position:relative; max-width:1080px; margin:36px auto 0; padding-top:20px;
  border-top:1px solid rgba(241,222,156,.18);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.site-footer__copy{ font-size:12.5px; color:rgba(243,230,214,.6); }

.site-footer__social{ display:flex; gap:12px; }
.icon-pulse{ display:flex; align-items:center; justify-content:center; animation:iconZoom 2.6s ease-in-out infinite; }
.site-footer__social a:nth-child(1) .icon-pulse{ animation-delay:0s; }
.site-footer__social a:nth-child(2) .icon-pulse{ animation-delay:.25s; }
.site-footer__social a:nth-child(3) .icon-pulse{ animation-delay:.5s; }
.site-footer__social a:nth-child(4) .icon-pulse{ animation-delay:.75s; }
@keyframes iconZoom{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.14); } }
.site-footer__social a{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--gold-300),var(--gold-500)); color:var(--maroon-950);
  border:1.5px solid rgba(255,255,255,.4);
  box-shadow:0 8px 18px -9px rgba(0,0,0,.55);
  transition:transform .2s ease, box-shadow .25s ease, filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.site-footer__social a.is-muted{ background:rgba(255,255,255,.08); color:rgba(246,236,211,.55); border-color:rgba(241,222,156,.3); box-shadow:none; }

/* ---- Glow on hover / keyboard focus (footer + Follow Us icons) ----
   Active icons glow strongly; icons with no link yet glow softly so the
   hover is still visible while links are being filled in. */
.site-footer__social a,
.follow__icon{ position:relative; }
.site-footer__social a svg,
.follow__icon svg{ transition:filter .25s ease; }

.site-footer__social a:hover,
.site-footer__social a:focus-visible,
.follow__icon:hover,
.follow__icon:focus-visible{
  transform:translateY(-5px) scale(1.08);
  outline:none;
  border-color:rgba(255,243,214,.9);
  box-shadow:
    0 0 0 3px rgba(232,199,102,.35),
    0 0 14px 3px rgba(255,226,140,.9),
    0 0 32px 10px rgba(232,199,102,.65),
    0 0 60px 20px rgba(201,162,39,.35);
}
.site-footer__social a:hover svg,
.site-footer__social a:focus-visible svg,
.follow__icon:hover svg,
.follow__icon:focus-visible svg{ filter:drop-shadow(0 0 5px rgba(255,243,214,.95)); }

.site-footer__social a.is-muted:hover,
.site-footer__social a.is-muted:focus-visible,
.follow__icon.is-muted:hover,
.follow__icon.is-muted:focus-visible{
  transform:translateY(-3px) scale(1.05);
  color:var(--gold-300);
  background:rgba(232,199,102,.16);
  border-color:rgba(232,199,102,.85);
  box-shadow:
    0 0 0 2px rgba(232,199,102,.25),
    0 0 12px 2px rgba(232,199,102,.65),
    0 0 28px 8px rgba(201,162,39,.4);
}

/* =============================================================
   Placeholder "coming soon" pages (home/services/gallery stubs)
============================================================= */
.coming-soon{
  min-height:calc(100vh - var(--header-h) - 340px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  gap:14px; padding:80px 20px; max-width:560px; margin:0 auto;
}
.coming-soon h1{ font-size:clamp(28px,5vw,40px); color:var(--maroon-800); }
.coming-soon p{ color:var(--ink-500); font-size:15px; line-height:1.7; }
