/* ============================================
   Emory Smoke Shop — token system
   Direction: hand-painted storefront signage /
   marquee, flat poster color blocks, hard edges.
   ============================================ */

:root {
  --ink: #14110F;
  --cream: #EFE6D3;
  --pink: #F2367D;
  --cyan: #2FC6E8;
  --yellow: #FFC93C;

  --font-display: "Bungee", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;

  --rule: 3px solid var(--ink);
  --rule-light: 3px solid var(--cream);

  --gap: clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85em 1.4em;
  border-radius: 3px;
  border: 3px solid var(--ink);
  cursor: pointer;
  text-align: center;
}

.btn--ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* ============================================
   Age gate
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 100;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  max-width: 26rem;
  width: 100%;
  border: var(--rule-light);
  padding: clamp(1.5rem, 6vw, 2.5rem);
  color: var(--cream);
  text-align: left;
}

.age-gate__eyebrow {
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 0.4em;
}

.age-gate__heading {
  font-size: clamp(2rem, 8vw, 2.75rem);
  color: var(--pink);
}

.age-gate__body {
  margin-bottom: 1.5em;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================
   Marquee header
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  border-bottom: var(--rule-light);
}

.marquee__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.marquee__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  margin: 0;
}

.marquee__status {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.3em 0.8em;
  border: 2px solid var(--cream);
  border-radius: 999px;
  white-space: nowrap;
}

.marquee__status[data-open="true"] {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.marquee__row--sub {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.marquee__address {
  margin: 0;
  opacity: 0.85;
}

.marquee__nav {
  display: flex;
  gap: 1.25rem;
}

.marquee__nav a {
  text-decoration: none;
  color: var(--cream);
  border-bottom: 2px solid transparent;
}

.marquee__nav a:hover,
.marquee__nav a:focus-visible {
  border-bottom-color: var(--yellow);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--pink);
  color: var(--ink);
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  border-bottom: var(--rule);
}

.hero__headline {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  max-width: 14ch;
}

.hero__body {
  max-width: 42ch;
  font-size: 1.15rem;
  margin-bottom: 1.5em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================
   Info strip
   ============================================ */
.info-strip {
  background: var(--cream);
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--rule);
}

.info-block {
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 2rem);
  border-right: var(--rule);
}

.info-block:last-child { border-right: none; }

.info-block h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5em;
}

.info-block a {
  text-decoration: none;
  border-bottom: 2px solid var(--pink);
}

@media (max-width: 640px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-block { border-right: none; border-bottom: var(--rule); }
  .info-block:last-child { border-bottom: none; }
}

/* ============================================
   Map panel
   ============================================ */
.map-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-bottom: var(--rule);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

.photo-placeholder {
  background: repeating-linear-gradient(
    135deg,
    var(--ink) 0px,
    var(--ink) 12px,
    #1f1b17 12px,
    #1f1b17 24px
  );
  color: var(--cream);
  border-left: var(--rule-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  min-height: 220px;
}

@media (max-width: 640px) {
  .map-panel { grid-template-columns: 1fr; }
  .photo-placeholder { border-left: none; border-top: var(--rule-light); }
}

/* ============================================
   What we carry
   ============================================ */
.carry {
  background: var(--cyan);
  color: var(--ink);
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  border-bottom: var(--rule);
}

.carry h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 0.8em;
}

.carry__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
}

.carry__item {
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-right: var(--rule);
}

.carry__item:last-child { border-right: none; padding-right: 0; }

.carry__item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4em;
}

.carry__item p { font-size: 0.95rem; }

.carry__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 640px) {
  .carry__list { grid-template-columns: 1fr; }
  .carry__item { border-right: none; border-bottom: var(--rule); padding: 1.25rem 0; }
  .carry__item:first-child { padding-top: 0; }
  .carry__item:last-child { border-bottom: none; }
}

/* ============================================
   Follow
   ============================================ */
.follow {
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.25rem, 5vw, 3rem);
}

.follow h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.follow p {
  max-width: 40ch;
  margin-bottom: 1.25em;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 5vw, 3rem);
}

.footer__nap p { margin: 0 0 0.3em; font-size: 0.95rem; }
.footer__nap a { text-decoration: none; border-bottom: 2px solid var(--pink); }

.footer__disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(239, 230, 211, 0.3);
  font-size: 0.8rem;
  opacity: 0.75;
  max-width: 64ch;
}

.footer__copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}
