/* ============================================================
   Seminole Experience Technologies (SET) — Design tokens
   Black / gold / garnet, adapted from the SET wordmark.
   Gold plays the primary-accent role; garnet is a sparing
   secondary accent (CTA band + one card variant only).
   ============================================================ */
:root {
  --bg:         #0a0806;     /* page background, near-black with a warm whisper */
  --bg-2:       #100c08;
  --surface:    #191410;     /* cards */
  --surface-2:  #221b14;
  --surface-3:  #2c2219;
  --line:       rgba(217, 167, 39, 0.14);
  --line-2:     rgba(217, 167, 39, 0.30);
  --gold:       #D9A727;     /* primary accent */
  --gold-2:     #F2C94C;     /* bright / hover */
  --gold-deep:  #9C7A1E;
  --garnet:       #8B0E1C;   /* secondary accent — used sparingly, see CTA band + one card variant */
  --garnet-deep:  #5C0A13;
  --text:       #F5F3EE;
  --text-soft:  #d8cfbf;
  --muted:      #a99d89;
  --glow:       0 0 0 1px var(--line-2), 0 18px 60px -20px rgba(217, 167, 39, 0.35);
  --glow-soft:  0 16px 50px -24px rgba(217, 167, 39, 0.22);
  --maxw:       1180px;
  --radius:     16px;
  --radius-lg:  22px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --font-head:  "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 112px; }
section[id], [id].section { scroll-margin-top: 88px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle ambient glow + faint grid texture behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(217, 167, 39, 0.16), transparent 60%),
    radial-gradient(760px 520px at -6% 12%, rgba(139, 14, 28, 0.07), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(217, 167, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 167, 39, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 .4em; }
p { margin: 0 0 1em; color: var(--text-soft); }

::selection { background: var(--gold); color: #1a1006; }

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }
.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.center { text-align: center; }

/* Photo-backed sections — event imagery behind a dark, gold-tinted
   gradient so copy stays legible. Image supplied via --sec-bg. */
.section--bg { overflow: hidden; }
.section--bg > .container { position: relative; z-index: 1; }
.section--bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,8,6,.94) 0%, rgba(10,8,6,.74) 46%, rgba(10,8,6,.95) 100%),
    var(--sec-bg) center/cover no-repeat;
}
.section--bg::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(217,167,39,.10), transparent 60%);
}

/* recurring hashmark motif  ///// */
.hashes { display: inline-flex; gap: 5px; height: 16px; align-items: center; }
.hashes i {
  display: block; width: 5px; height: 16px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  transform: skewX(-22deg);
  border-radius: 1px;
  opacity: .9;
}
.hashes--fade i:nth-child(4) { opacity: .55; }
.hashes--fade i:nth-child(5) { opacity: .3; }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-top: 6px; }

/* mono-gold gradient only — gold+garnet on small text reads muddy */
.accent { color: transparent; background: linear-gradient(100deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  color: #1a1006;
  background: linear-gradient(100deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 30px -10px rgba(217, 167, 39, .6);
}
.btn--primary:hover { transform: translateY(-2px); color: #1a1006; box-shadow: 0 16px 40px -10px rgba(242, 201, 76, .7); }
.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.02);
  border-color: var(--line-2);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-2); background: rgba(217,167,39,.06); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 8, 6, .94);
  border-bottom: 1px solid var(--line);
}
.site-header .container { max-width: 1440px; padding-inline: clamp(18px, 3vw, 56px); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__logo { display: block; height: 63px; width: auto; max-width: 400px; }
.site-footer .brand__logo { height: 197px; max-width: 600px; }
.site-footer .brand { justify-content: flex-start; text-align: left; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  position: relative; display: block; color: var(--text-soft);
  font-size: 1.08rem; font-weight: 500; padding: 10px 16px; border-radius: 10px;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); border-radius: 2px;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px;
  background: transparent; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-block: clamp(64px, 11vw, 132px); overflow: hidden; }
.hero__inner { max-width: 880px; position: relative; z-index: 1; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(10,8,6,.74) 0%, rgba(10,8,6,.6) 30%, rgba(10,8,6,.92) 78%, var(--bg) 100%),
    var(--hero-bg) center/cover no-repeat;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -.03em;
  margin: 18px 0 18px;
}
.hero__lead { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-soft); max-width: 640px; margin-bottom: 14px; }
.hero__sub { color: var(--muted); max-width: 600px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__glow {
  position: absolute; right: -10%; top: 6%; width: 620px; height: 620px; z-index: -1;
  background: radial-gradient(circle, rgba(217,167,39,.30), transparent 62%);
  filter: blur(8px);
}

/* stat strip under hero */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: clamp(40px, 6vw, 64px);
}
.stat { background: linear-gradient(180deg, rgba(25,20,16,.9), rgba(16,12,8,.9)); padding: 26px 22px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: .9rem; }
.stat b .accent { font-size: inherit; }

/* ============================================================
   Trusted-by collage
   Single pre-built logo collage panel.
   ============================================================ */
.trust-collage-panel {
  background: transparent; border: 1px solid var(--line-2); border-radius: 20px; padding: clamp(16px, 4vw, 36px);
  box-shadow: var(--glow-soft), 0 20px 50px -24px rgba(0,0,0,.55);
}
.trust-collage-panel img { display: block; width: 100%; height: auto; border-radius: 6px; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--gold), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s var(--ease); pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--glow-soft); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(217,167,39,.22), rgba(217,167,39,.05));
  border: 1px solid var(--line-2); color: var(--gold-2);
}
.card__icon svg { width: 26px; height: 26px; }
/* secondary garnet variant — used on exactly one industry card for visual variety */
.card__icon--garnet {
  background: radial-gradient(120% 120% at 30% 20%, rgba(139,14,28,.28), rgba(139,14,28,.06));
  border-color: rgba(139,14,28,.4); color: #d9737e;
}
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.card__num {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .1em;
  color: var(--gold); opacity: .8; margin-bottom: 14px; display: block;
}

/* ============================================================
   Check lists
   ============================================================ */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks.grid--2 { grid-template-columns: repeat(2, 1fr); }
.checks li {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.checks li:hover { border-color: var(--line-2); transform: translateX(4px); }
.checks .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; margin-top: 1px;
  background: linear-gradient(140deg, var(--gold), var(--gold-deep)); color: #1a1006;
  box-shadow: 0 6px 16px -6px rgba(217,167,39,.6);
}
.checks .tick svg { width: 15px; height: 15px; }
.checks li b { color: var(--text); font-weight: 600; }
.checks li span { color: var(--muted); }
.checks li .ctext { display: block; }
.checks li .ctext b + span { display: block; margin-top: 2px; font-size: .96rem; }

/* large lead/closing line */
.lede { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-family: var(--font-head); font-weight: 500; color: var(--text); letter-spacing: -.01em; line-height: 1.3; }
.closing {
  margin-top: clamp(28px, 4vw, 44px); text-align: center; font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 600; color: var(--text); letter-spacing: -.01em;
  padding: 26px; border: 1px dashed var(--line-2); border-radius: var(--radius); background: rgba(217,167,39,.04);
}
.closing .accent { font-weight: 700; }

/* ============================================================
   Notable-events photo gallery
   (new component — no equivalent in the reference site)
   ============================================================ */
.event-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.event-gallery + .event-gallery { margin-top: 20px; }
.event-gallery-group { margin-bottom: clamp(28px, 4vw, 44px); }
.event-gallery-group h3 { font-family: var(--font-head); font-size: 1rem; letter-spacing: .04em; color: var(--text-soft); margin-bottom: 14px; }
.event-card {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.event-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.event-card:hover img { transform: scale(1.06); }
.event-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,8,6,.92) 100%);
}
.event-card__label {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--text);
}
.event-card__label small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .78rem; color: var(--gold-2); letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.contact-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--glow-soft);
}

/* simple front-end-only form — see theme.js, no live backend yet */
.cform { display: grid; gap: 14px; }
.cform label { font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.cform input, .cform textarea {
  width: 100%; font: inherit; color: var(--text); background: rgba(255,255,255,.02);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 15px; transition: border-color .2s var(--ease);
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--gold); }
.cform .field { display: grid; gap: 7px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform .note { color: var(--muted); font-size: .82rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(217,167,39,.20), transparent 60%),
    linear-gradient(160deg, var(--garnet-deep) 0%, var(--surface-2) 55%, var(--bg-2) 100%);
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: var(--text-soft); max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); margin-top: 20px; padding-block: 54px 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.footer-grid p { color: var(--muted); font-size: .96rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--text-soft); font-size: .96rem; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: .86rem; }

/* ============================================================
   Scroll-reveal (progressive enhancement)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 96px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(10,8,6,.98); border-bottom: 1px solid var(--line); padding: 14px clamp(18px,4vw,36px) 22px;
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
  }
  body.nav-open .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 12px 6px; font-size: 1.02rem; }
  .nav-menu a::after { display: none; }
  .nav-cta .btn--book { display: none; }
}
@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2, .checks.grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .trust-chip { height: 90px; padding: 14px 22px; }
  .cform .row { grid-template-columns: 1fr; }
}

/* ============================================================
   Contact form status text + spam honeypot
   (front-end only — no live backend yet, see theme.js)
   ============================================================ */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cform-status { margin: 4px 0 0; min-height: 1.25em; font-size: .92rem; }
.cform-status--ok { color: var(--gold-2); }
.cform-status--err { color: #ff9c9c; }
.cform button[disabled] { opacity: .6; cursor: progress; transform: none; }
