/* Big Cheese Studios — shared chrome (nav, footer, buttons, capture form) */
:root {
  --cheese-1: #ffd84d; --cheese-2: #ffb524; --cheese-3: #ff8e3c;
  --text: #f5f1e8; --dim: #a89f8e;
  --card: rgba(255,255,255,.045); --line: rgba(255,255,255,.09);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  color: var(--text); line-height: 1.6; min-height: 100vh; overflow-x: hidden;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ————— Nav ————— */
.topnav { display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; }
.navbrand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  color: var(--text); font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.navbrand .wedge { font-size: 20px; display: inline-block;
  transition: transform .35s cubic-bezier(.2,.7,.2,1.4); }
.navbrand:hover .wedge { transform: rotate(-14deg) scale(1.15); }
.navbrand em { font-style: normal; font-weight: 600; color: var(--dim); }
.navlinks { display: flex; gap: 22px; font-size: 14.5px; font-weight: 600; }
.navlinks a { color: var(--dim); text-decoration: none; transition: color .15s ease; }
.navlinks a:hover, .navlinks a[aria-current] { color: var(--text); }

/* ————— Footer ————— */
.bcs-footer { border-top: 1px solid var(--line); margin-top: 24px; padding: 24px 0 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--dim); }
.bcs-footer a { color: inherit; }
.bcs-footer a:hover { color: var(--text); }

/* ————— Buttons ————— */
.btn { display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 999px;
  border: none; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-cheese { background: linear-gradient(90deg, var(--cheese-1), var(--cheese-2), var(--cheese-3));
  color: #241703; box-shadow: 0 0 28px rgba(255,181,36,.3); }
.btn-cheese:hover { box-shadow: 0 0 44px rgba(255,181,36,.5); }

/* ————— Email capture ————— */
.capture { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.capture input[type=email] { flex: 1; min-width: 220px; padding: 12px 18px;
  border-radius: 999px; border: 1px solid var(--line); background: var(--card);
  color: var(--text); font-size: 14.5px; outline: none; font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease; }
.capture input[type=email]:focus { border-color: var(--cheese-2);
  box-shadow: 0 0 14px rgba(255,181,36,.25); }
.capture input[type=email]::placeholder { color: var(--dim); }
.capture-note { width: 100%; font-size: 12.5px; color: var(--dim); margin-top: 2px; }

/* ————— Shared bits ————— */
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px;
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .02em; }

@media (max-width: 430px) {
  .btn { width: 100%; justify-content: center; }
  .capture input[type=email] { min-width: 0; width: 100%; }
  .capture button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
