/* KysKam Landing — design tokens + base */

:root {
  /* Palette: KYSKAM VENUES — "Stadium Daylight" (paper-cream + deep team red + bar amber) */
  --bg: #f7efe0;
  --bg-2: #efe5d1;
  --surface: #ffffff;
  --line: rgba(26, 18, 12, 0.10);
  --line-strong: rgba(26, 18, 12, 0.22);
  --fg: #1a120c;
  --fg-muted: rgba(26, 18, 12, 0.70);
  --fg-dim: rgba(26, 18, 12, 0.46);
  --accent: #c8102e;       /* deep team red — stronger contrast for black on red */
  --accent-2: #ffb43c;     /* bar amber */
  --accent-ink: #ffffff;
  --grad: linear-gradient(95deg, #b30c25 0%, #e85f1a 55%, #ffb43c 100%);
  --grad-soft: linear-gradient(95deg, rgba(200,16,46,0.14), rgba(255,180,60,0.18));
  --warn: #c8102e;

  /* Type */
  --font-display: "Archivo Black", "Anton", "Bebas Neue", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ── Typography scale ─────────────────────────────────────────── */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -2px;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 8.8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.display-xl em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(200, 16, 46, 0.25));
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.display-lg em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  text-transform: uppercase;
}
.display-md em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 56ch;
  text-wrap: pretty;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ── Layout ──────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.section {
  padding: clamp(80px, 11vw, 160px) 0;
}

.section-tight {
  padding: clamp(60px, 8vw, 120px) 0;
}

.divider {
  border-top: 1px solid var(--line);
}

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: none;
  transition: transform 0.18s cubic-bezier(.3,.7,.4,1), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: #ffffff;
  box-shadow: 0 14px 36px -10px rgba(200, 16, 46, 0.5), 0 0 0 1px rgba(255,255,255,0.08) inset;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 13.5px;
}
.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 13.5px;
}
.btn-ghost:hover { background: #fffaf0; border-color: var(--accent); }

.btn-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-ink);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  margin-right: -6px;
}
.btn-ghost .btn-arrow {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-sm { height: 40px; padding: 0 16px; font-size: 13.5px; }

.btn-nav {
  background: var(--grad);
  color: #ffffff;
  height: 42px;
  padding: 0 22px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(200, 16, 46, 0.45);
}
.btn-nav:hover { filter: brightness(1.08); }

/* ── Chips / tags ────────────────────────────────────────────── */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--accent) 55%, transparent);
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, transparent);
}
.chip i {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--accent);
}

/* ── Cards / surfaces ────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.surface {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

/* ── Marquee ─────────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 64px;
  padding: 18px 0;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.marquee-track > * { flex-shrink: 0; display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .accent { color: var(--accent); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ── Image placeholder ────────────────────────────────────────── */

.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(242,237,227,0.04) 0 8px,
      transparent 8px 16px
    ),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.placeholder-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 6px 10px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* ── Utility ─────────────────────────────────────────────────── */

.tabular { font-variant-numeric: tabular-nums; }
.text-muted { color: var(--fg-muted); }
.text-dim { color: var(--fg-dim); }
.text-accent { color: var(--accent); }
.flex { display: flex; }
.col { display: flex; flex-direction: column; }
.center { align-items: center; justify-content: center; }
.between { justify-content: space-between; }
.gap-sm { gap: 8px; } .gap { gap: 16px; } .gap-lg { gap: 32px; }

/* Underline link */
.ulink {
  position: relative;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s;
}
.ulink:hover { border-color: var(--accent); color: var(--accent); }

/* Fade-up on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
