/* ————————————————————————————————————————
   KETOCOCKTAIL.PARTY — neon night bar
   ———————————————————————————————————————— */

:root {
  --bg: #0D0F1A;
  --surface: #151827;
  --line: #272B42;
  --text: #F0F2F8;
  --muted: #9BA0B8;
  --lime: #B8E63C;
  --pink: #F556A8;
  --display: "Archivo", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --gutter: clamp(16px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(90% 60% at 50% -10%, #131628, transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #fff; }

a { color: var(--lime); }

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

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}

.wordmark span { color: var(--lime); }

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 26px);
  font-size: 13.5px;
  font-weight: 600;
}

.site-header nav a { text-decoration: none; color: var(--muted); transition: color 0.2s; }
.site-header nav a:hover { color: var(--text); }

/* hero */

.hero {
  position: relative;
  padding: clamp(80px, 13vh, 150px) var(--gutter) clamp(76px, 12vh, 130px);
  overflow: hidden;
}

.neon-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 32% at 82% 8%, rgba(245, 86, 168, 0.18), transparent 65%),
    radial-gradient(45% 36% at 12% 88%, rgba(184, 230, 60, 0.12), transparent 65%);
}

.kicker {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.hero h1 {
  position: relative;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(46px, 9vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 13ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
  text-shadow: 0 0 34px rgba(184, 230, 60, 0.35);
}

.lede {
  position: relative;
  max-width: 58ch;
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15.5px;
  color: #131802;
  background: var(--lime);
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 28px;
  box-shadow: 0 12px 32px rgba(184, 230, 60, 0.25);
  transition: transform 0.15s, filter 0.2s;
}

.hero-cta:hover { filter: brightness(1.07); transform: translateY(-2px); }

/* sections */

.section {
  padding: clamp(62px, 9vh, 112px) var(--gutter);
  border-top: 1px solid var(--line);
}

.section-head { max-width: 800px; margin-bottom: clamp(28px, 4vh, 44px); }

.section-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.section-head p { color: var(--muted); max-width: 58ch; }

/* drinks */

.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.drink {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.25s, border-color 0.25s;
}

.drink:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--lime) 50%, var(--line));
}

.d-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.d-head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.d-carbs {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  color: var(--bg);
  background: var(--lime);
  border-radius: 999px;
  padding: 3px 12px;
  white-space: nowrap;
}

.d-desc { color: var(--pink); font-size: 13.5px; font-weight: 600; margin-bottom: 14px; }

.drink ul { list-style: none; margin-bottom: 12px; }

.drink li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
}

.drink li::before {
  content: "▸";
  position: absolute;
  left: 2px;
  color: var(--lime);
}

.d-note { font-size: 13.5px; color: var(--muted); font-style: italic; }

/* truths */

.truths { list-style: none; max-width: 780px; }

.truths li {
  padding: 16px 4px;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
  font-size: 16px;
}

.truths li:first-child { border-top: 1px dashed var(--line); }

.truths strong { color: var(--text); font-family: var(--display); font-weight: 800; }

.fine {
  max-width: 780px;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--pink);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
}

/* footer */

.site-footer {
  padding: 38px var(--gutter) 52px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links span { color: var(--muted); }
.footer-links a { text-decoration: none; color: var(--lime); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.site-footer > p { color: var(--muted); font-size: 13px; }

/* reveal */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .drink:hover, .hero-cta:hover { transform: none; }
}

@media (max-width: 760px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .site-header nav { flex-wrap: wrap; row-gap: 8px; }
}
