/* ════════════════════════════════════════════════════════════════════════
   places.css — Tonight / Practices / Environs marketing pages
   Dark-first, Hanken Grotesk, brand tokens. Atmosphere without clutter.
   ════════════════════════════════════════════════════════════════════════ */
:root {
  --bone: #12161d;
  --bone-deep: #0c0f14;
  --shell: #1a1f28;
  --slate: #ece4d6;
  --stone: #b8bfc6;
  --amber: #e3b26a;
  --amber-lit: #f2dcae;
  --fog: #8b949e;
  --ash: #b8bfc6;
  --line: rgba(236, 228, 214, 0.16);
  --font: "Hanken Grotesk", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bone-deep);
  color: var(--stone);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  opacity: 0.35; mix-blend-mode: soft-light;
}
a { color: inherit; text-decoration: none; }
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 400;
  background: #26313C; color: #F5F0E8; padding: 10px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
}
.skip-link:focus { top: 16px; }
.wrap { max-width: 780px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.wrap-wide { max-width: 1100px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
@media (max-width: 560px) {
  .wrap, .wrap-wide { padding: 0 22px; }
}

/* Hero — full-bleed atmosphere */
.phero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  padding: 120px 0 72px; overflow: hidden;
}
.phero-world { position: absolute; inset: 0; z-index: 0; }
.phero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 15, 20, 0.35) 0%, rgba(12, 15, 20, 0.72) 45%, rgba(12, 15, 20, 0.96) 100%),
    radial-gradient(70% 50% at 50% 0%, rgba(227, 178, 106, 0.16), transparent 70%);
}
.phero-in { position: relative; z-index: 2; width: 100%; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin-bottom: 18px;
  animation: pRise 900ms ease both;
}
.phero h1 {
  font-weight: 400; font-size: clamp(36px, 6vw, 58px); line-height: 1.12;
  color: var(--slate); letter-spacing: -0.02em; max-width: 14ch;
  animation: pRise 1000ms ease 80ms both;
}
.phero h1 em { font-style: italic; color: var(--amber-lit); }
.phero-dek {
  margin-top: 22px; max-width: 38ch; font-size: 18px; color: var(--stone);
  font-style: italic; line-height: 1.65;
  animation: pRise 1000ms ease 160ms both;
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px;
  animation: pRise 1000ms ease 240ms both;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 4px;
  font-family: var(--font); font-size: 15px; font-weight: 600; cursor: pointer;
  border: 1px solid transparent; transition: background 0.25s ease, border-color 0.25s ease;
}
.btn.solid { background: var(--amber); color: var(--bone-deep); }
.btn.solid:hover { background: var(--amber-lit); }
.btn.ghost {
  background: transparent; color: var(--slate);
  border-color: rgba(236, 228, 214, 0.32);
}
.btn.ghost:hover { border-color: rgba(236, 228, 214, 0.6); background: rgba(236, 228, 214, 0.06); }

@keyframes pRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.band { padding: 88px 0; position: relative; z-index: 2; }
.band.alt { background: linear-gradient(180deg, rgba(26, 31, 40, 0.65), transparent); }
.kicker {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); font-weight: 500; margin-bottom: 14px;
}
.band h2 {
  font-weight: 400; font-size: clamp(28px, 4vw, 40px); color: var(--slate);
  line-height: 1.2; letter-spacing: -0.015em; max-width: 18ch; margin-bottom: 16px;
}
.band h2 em { font-style: italic; color: var(--amber-lit); }
.lead { max-width: 42ch; color: var(--stone); font-size: 17.5px; line-height: 1.7; }

.place-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px; margin-top: 36px;
}
.place-card {
  display: block; padding: 22px 20px; border-radius: 14px;
  background: var(--shell); border: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.35s ease;
}
.place-card:hover { border-color: rgba(227, 178, 106, 0.4); transform: translateY(-2px); }
.place-card h3 {
  font-weight: 500; font-size: 18px; color: var(--slate); margin-bottom: 8px;
}
.place-card p { font-size: 14.5px; color: var(--stone); line-height: 1.55; margin: 0; }
.place-card .go {
  display: inline-block; margin-top: 14px; font-size: 13px; color: var(--amber);
  letter-spacing: 0.04em;
}

.list-quiet { list-style: none; margin-top: 28px; max-width: 520px; }
.list-quiet li {
  padding: 16px 0; border-top: 1px solid var(--line);
  color: var(--stone); font-size: 16px; line-height: 1.55;
}
.list-quiet li strong { display: block; color: var(--slate); font-weight: 500; margin-bottom: 4px; }

.bridge {
  margin: 20px 0 100px; padding: 48px 36px; border-radius: 18px;
  background:
    radial-gradient(80% 80% at 20% 0%, rgba(227, 178, 106, 0.14), transparent 60%),
    var(--shell);
  border: 1px solid var(--line); text-align: center;
}
.bridge h2 {
  font-weight: 400; font-size: clamp(26px, 3.5vw, 36px); color: var(--slate);
  margin-bottom: 12px;
}
.bridge p { color: var(--stone); max-width: 36ch; margin: 0 auto 24px; font-style: italic; }

footer {
  position: relative; z-index: 2; padding: 48px 0 40px;
  border-top: 1px solid var(--line); color: var(--fog); font-size: 14px;
}
.foot-in {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.foot-mark { font-size: 18px; letter-spacing: 0.16em; color: var(--slate); }
.foot-mark span {
  display: block; font-size: 12px; letter-spacing: 0.04em; color: var(--fog);
  margin-top: 6px; text-transform: none;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.foot-links a:hover { color: var(--amber); }
.crisis { max-width: 620px; line-height: 1.65; margin-top: 8px; }
.crisis a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.foot-stamp {
  margin-top: 22px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fog);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
